blob: 0ab749638a89780f82259a1a3ee188594a158c91 [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;
Duncan Sandsb6862bb2008-12-14 09:43:15 +000058 bool TypesNeedLegalizing;
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:
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000140 explicit SelectionDAGLegalize(SelectionDAG &DAG, bool TypesNeedLegalizing);
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
Duncan Sandsd038e042008-07-21 10:20:31 +0000268 /// isShuffleLegal - Return non-null if a vector shuffle is legal with the
Chris Lattner4352cc92006-04-04 17:23:26 +0000269 /// specified mask and type. Targets can specify exactly which masks they
270 /// support and the code generator is tasked with not creating illegal masks.
271 ///
272 /// Note that this will also return true for shuffles that are promoted to a
273 /// different type.
274 ///
275 /// If this is a legal shuffle, this method returns the (possibly promoted)
276 /// build_vector Mask. If it's not a legal shuffle, it returns null.
Dan Gohman475871a2008-07-27 21:46:04 +0000277 SDNode *isShuffleLegal(MVT VT, SDValue Mask) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000278
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000279 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000280 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000281
Dale Johannesenbb5da912009-02-02 20:41:04 +0000282 void LegalizeSetCCOperands(SDValue &LHS, SDValue &RHS, SDValue &CC,
283 DebugLoc dl);
284 void LegalizeSetCCCondCode(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
285 DebugLoc dl);
286 void LegalizeSetCC(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
287 DebugLoc dl) {
288 LegalizeSetCCOperands(LHS, RHS, CC, dl);
289 LegalizeSetCCCondCode(VT, LHS, RHS, CC, dl);
Evan Cheng7f042682008-10-15 02:05:31 +0000290 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000291
Dan Gohman475871a2008-07-27 21:46:04 +0000292 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
293 SDValue &Hi);
Dale Johannesenaf435272009-02-02 19:03:57 +0000294 SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl);
Chris Lattnercad063f2005-07-16 00:19:57 +0000295
Dale Johannesen8a782a22009-02-02 22:12:50 +0000296 SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000297 SDValue ExpandBUILD_VECTOR(SDNode *Node);
298 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Scott Michelfdc40a02009-02-17 22:15:04 +0000299 SDValue LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +0000300 SDValue Op, DebugLoc dl);
301 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT,
302 DebugLoc dl);
303 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned,
304 DebugLoc dl);
305 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned,
306 DebugLoc dl);
Jeff Cohen00b168892005-07-27 06:12:32 +0000307
Dale Johannesen8a782a22009-02-02 22:12:50 +0000308 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
309 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000310 bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +0000311 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000312 void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +0000313 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000314
Dan Gohman475871a2008-07-27 21:46:04 +0000315 SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op);
316 SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000317};
318}
319
Chris Lattner4352cc92006-04-04 17:23:26 +0000320/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
321/// specified mask and type. Targets can specify exactly which masks they
322/// support and the code generator is tasked with not creating illegal masks.
323///
324/// Note that this will also return true for shuffles that are promoted to a
325/// different type.
Dan Gohman475871a2008-07-27 21:46:04 +0000326SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDValue Mask) const {
Chris Lattner4352cc92006-04-04 17:23:26 +0000327 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
328 default: return 0;
329 case TargetLowering::Legal:
330 case TargetLowering::Custom:
331 break;
332 case TargetLowering::Promote: {
333 // If this is promoted to a different type, convert the shuffle mask and
334 // ask if it is legal in the promoted type!
Duncan Sands83ec4b62008-06-06 12:08:01 +0000335 MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
Duncan Sandsd038e042008-07-21 10:20:31 +0000336 MVT EltVT = NVT.getVectorElementType();
Chris Lattner4352cc92006-04-04 17:23:26 +0000337
338 // If we changed # elements, change the shuffle mask.
339 unsigned NumEltsGrowth =
Duncan Sands83ec4b62008-06-06 12:08:01 +0000340 NVT.getVectorNumElements() / VT.getVectorNumElements();
Chris Lattner4352cc92006-04-04 17:23:26 +0000341 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
342 if (NumEltsGrowth > 1) {
343 // Renumber the elements.
Dan Gohman475871a2008-07-27 21:46:04 +0000344 SmallVector<SDValue, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000345 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +0000346 SDValue InOp = Mask.getOperand(i);
Chris Lattner4352cc92006-04-04 17:23:26 +0000347 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
348 if (InOp.getOpcode() == ISD::UNDEF)
Dale Johannesene8d72302009-02-06 23:05:02 +0000349 Ops.push_back(DAG.getUNDEF(EltVT));
Chris Lattner4352cc92006-04-04 17:23:26 +0000350 else {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000351 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getZExtValue();
Duncan Sandsd038e042008-07-21 10:20:31 +0000352 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, EltVT));
Chris Lattner4352cc92006-04-04 17:23:26 +0000353 }
354 }
355 }
Scott Michel4214a552009-02-22 23:36:09 +0000356 Mask = DAG.getBUILD_VECTOR(NVT, Mask.getDebugLoc(), &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000357 }
358 VT = NVT;
359 break;
360 }
361 }
Gabor Greifba36cb52008-08-28 21:40:38 +0000362 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.getNode() : 0;
Chris Lattner4352cc92006-04-04 17:23:26 +0000363}
364
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000365SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag, bool types)
366 : TLI(dag.getTargetLoweringInfo()), DAG(dag), TypesNeedLegalizing(types),
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000367 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000368 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000369 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000370}
371
Chris Lattner3e928bb2005-01-07 07:47:09 +0000372void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000373 LastCALLSEQ_END = DAG.getEntryNode();
374 IsLegalizingCall = false;
Mon P Wange5ab34e2009-02-04 19:38:14 +0000375 IsLegalizingCallArgs = false;
376
Chris Lattnerab510a72005-10-02 17:49:46 +0000377 // The legalize process is inherently a bottom-up recursive process (users
378 // legalize their uses before themselves). Given infinite stack space, we
379 // could just start legalizing on the root and traverse the whole graph. In
380 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000381 // blocks. To avoid this problem, compute an ordering of the nodes where each
382 // node is only legalized after all of its operands are legalized.
Dan Gohmanf06c8352008-09-30 18:30:35 +0000383 DAG.AssignTopologicalOrder();
384 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
385 E = prior(DAG.allnodes_end()); I != next(E); ++I)
386 HandleOp(SDValue(I, 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000387
388 // Finally, it's possible the root changed. Get the new root.
Dan Gohman475871a2008-07-27 21:46:04 +0000389 SDValue OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000390 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
391 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000392
393 ExpandedNodes.clear();
394 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000395 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000396 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000397 ScalarizedNodes.clear();
Mon P Wang0c397192008-10-30 08:01:45 +0000398 WidenNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000399
400 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000401 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000402}
403
Chris Lattner6831a812006-02-13 09:18:02 +0000404
405/// FindCallEndFromCallStart - Given a chained node that is part of a call
406/// sequence, find the CALLSEQ_END node that terminates the call sequence.
407static SDNode *FindCallEndFromCallStart(SDNode *Node) {
408 if (Node->getOpcode() == ISD::CALLSEQ_END)
409 return Node;
410 if (Node->use_empty())
411 return 0; // No CallSeqEnd
Scott Michelfdc40a02009-02-17 22:15:04 +0000412
Chris Lattner6831a812006-02-13 09:18:02 +0000413 // The chain is usually at the end.
Dan Gohman475871a2008-07-27 21:46:04 +0000414 SDValue TheChain(Node, Node->getNumValues()-1);
Chris Lattner6831a812006-02-13 09:18:02 +0000415 if (TheChain.getValueType() != MVT::Other) {
416 // Sometimes it's at the beginning.
Dan Gohman475871a2008-07-27 21:46:04 +0000417 TheChain = SDValue(Node, 0);
Chris Lattner6831a812006-02-13 09:18:02 +0000418 if (TheChain.getValueType() != MVT::Other) {
419 // Otherwise, hunt for it.
420 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
421 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman475871a2008-07-27 21:46:04 +0000422 TheChain = SDValue(Node, i);
Chris Lattner6831a812006-02-13 09:18:02 +0000423 break;
424 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000425
426 // Otherwise, we walked into a node without a chain.
Chris Lattner6831a812006-02-13 09:18:02 +0000427 if (TheChain.getValueType() != MVT::Other)
428 return 0;
429 }
430 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000431
Chris Lattner6831a812006-02-13 09:18:02 +0000432 for (SDNode::use_iterator UI = Node->use_begin(),
433 E = Node->use_end(); UI != E; ++UI) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000434
Chris Lattner6831a812006-02-13 09:18:02 +0000435 // Make sure to only follow users of our token chain.
Dan Gohman89684502008-07-27 20:43:25 +0000436 SDNode *User = *UI;
Chris Lattner6831a812006-02-13 09:18:02 +0000437 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
438 if (User->getOperand(i) == TheChain)
439 if (SDNode *Result = FindCallEndFromCallStart(User))
440 return Result;
441 }
442 return 0;
443}
444
Scott Michelfdc40a02009-02-17 22:15:04 +0000445/// FindCallStartFromCallEnd - Given a chained node that is part of a call
Chris Lattner6831a812006-02-13 09:18:02 +0000446/// sequence, find the CALLSEQ_START node that initiates the call sequence.
447static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
448 assert(Node && "Didn't find callseq_start for a call??");
449 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Scott Michelfdc40a02009-02-17 22:15:04 +0000450
Chris Lattner6831a812006-02-13 09:18:02 +0000451 assert(Node->getOperand(0).getValueType() == MVT::Other &&
452 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000453 return FindCallStartFromCallEnd(Node->getOperand(0).getNode());
Chris Lattner6831a812006-02-13 09:18:02 +0000454}
455
456/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
Scott Michelfdc40a02009-02-17 22:15:04 +0000457/// see if any uses can reach Dest. If no dest operands can get to dest,
Chris Lattner6831a812006-02-13 09:18:02 +0000458/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000459///
460/// Keep track of the nodes we fine that actually do lead to Dest in
461/// NodesLeadingTo. This avoids retraversing them exponential number of times.
462///
463bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000464 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000465 if (N == Dest) return true; // N certainly leads to Dest :)
Scott Michelfdc40a02009-02-17 22:15:04 +0000466
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000467 // If we've already processed this node and it does lead to Dest, there is no
468 // need to reprocess it.
469 if (NodesLeadingTo.count(N)) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +0000470
Chris Lattner6831a812006-02-13 09:18:02 +0000471 // If the first result of this node has been already legalized, then it cannot
472 // reach N.
473 switch (getTypeAction(N->getValueType(0))) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000474 case Legal:
Dan Gohman475871a2008-07-27 21:46:04 +0000475 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000476 break;
477 case Promote:
Dan Gohman475871a2008-07-27 21:46:04 +0000478 if (PromotedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000479 break;
480 case Expand:
Dan Gohman475871a2008-07-27 21:46:04 +0000481 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000482 break;
483 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000484
Chris Lattner6831a812006-02-13 09:18:02 +0000485 // Okay, this node has not already been legalized. Check and legalize all
486 // operands. If none lead to Dest, then we can legalize this node.
487 bool OperandsLeadToDest = false;
488 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
489 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Gabor Greifba36cb52008-08-28 21:40:38 +0000490 LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000491
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000492 if (OperandsLeadToDest) {
493 NodesLeadingTo.insert(N);
494 return true;
495 }
Chris Lattner6831a812006-02-13 09:18:02 +0000496
497 // Okay, this node looks safe, legalize it and return false.
Dan Gohman475871a2008-07-27 21:46:04 +0000498 HandleOp(SDValue(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000499 return false;
500}
501
Mon P Wang0c397192008-10-30 08:01:45 +0000502/// HandleOp - Legalize, Promote, Widen, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000503/// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000504void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000505 MVT VT = Op.getValueType();
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000506 // If the type legalizer was run then we should never see any illegal result
507 // types here except for target constants (the type legalizer does not touch
Mon P Wang87c8a8f2008-12-18 20:03:17 +0000508 // those) or for build vector used as a mask for a vector shuffle.
509 // FIXME: We can removed the BUILD_VECTOR case when we fix PR2957.
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000510 assert((TypesNeedLegalizing || getTypeAction(VT) == Legal ||
Mon P Wange5ab34e2009-02-04 19:38:14 +0000511 IsLegalizingCallArgs || Op.getOpcode() == ISD::TargetConstant ||
Mon P Wang87c8a8f2008-12-18 20:03:17 +0000512 Op.getOpcode() == ISD::BUILD_VECTOR) &&
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000513 "Illegal type introduced after type legalization?");
Dan Gohman7f321562007-06-25 16:23:39 +0000514 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000515 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000516 case Legal: (void)LegalizeOp(Op); break;
Mon P Wang0c397192008-10-30 08:01:45 +0000517 case Promote:
518 if (!VT.isVector()) {
519 (void)PromoteOp(Op);
520 break;
521 }
522 else {
523 // See if we can widen otherwise use Expand to either scalarize or split
524 MVT WidenVT = TLI.getWidenVectorType(VT);
525 if (WidenVT != MVT::Other) {
526 (void) WidenVectorOp(Op, WidenVT);
527 break;
528 }
529 // else fall thru to expand since we can't widen the vector
530 }
Chris Lattnerc7029802006-03-18 01:44:44 +0000531 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000532 if (!VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +0000533 // If this is an illegal scalar, expand it into its two component
534 // pieces.
Dan Gohman475871a2008-07-27 21:46:04 +0000535 SDValue X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000536 if (Op.getOpcode() == ISD::TargetConstant)
537 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000538 ExpandOp(Op, X, Y);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000539 } else if (VT.getVectorNumElements() == 1) {
Dan Gohman7f321562007-06-25 16:23:39 +0000540 // If this is an illegal single element vector, convert it to a
541 // scalar operation.
542 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000543 } else {
Mon P Wang0c397192008-10-30 08:01:45 +0000544 // This is an illegal multiple element vector.
Dan Gohman7f321562007-06-25 16:23:39 +0000545 // Split it in half and legalize both parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000546 SDValue X, Y;
Dan Gohman7f321562007-06-25 16:23:39 +0000547 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000548 }
549 break;
550 }
551}
Chris Lattner6831a812006-02-13 09:18:02 +0000552
Evan Cheng9f877882006-12-13 20:57:08 +0000553/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
554/// a load from the constant pool.
Dan Gohman475871a2008-07-27 21:46:04 +0000555static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Dan Gohman0d137d72009-01-15 16:43:02 +0000556 SelectionDAG &DAG, const TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000557 bool Extend = false;
Dale Johannesen33c960f2009-02-04 20:06:27 +0000558 DebugLoc dl = CFP->getDebugLoc();
Evan Cheng00495212006-12-12 21:32:44 +0000559
560 // If a FP immediate is precise when represented as a float and if the
561 // target can do an extending load from float to double, we put it into
562 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000563 // double. This shrinks FP constants and canonicalizes them for targets where
564 // an FP extending load is the same cost as a normal load (such as on the x87
565 // fp stack or PPC FP unit).
Duncan Sands83ec4b62008-06-06 12:08:01 +0000566 MVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000567 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000568 if (!UseCP) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000569 if (VT!=MVT::f64 && VT!=MVT::f32)
570 assert(0 && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000571 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000572 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000573 }
574
Duncan Sands83ec4b62008-06-06 12:08:01 +0000575 MVT OrigVT = VT;
576 MVT SVT = VT;
Evan Chengef120572008-03-04 08:05:30 +0000577 while (SVT != MVT::f32) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000578 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Chengef120572008-03-04 08:05:30 +0000579 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
580 // Only do this if the target has a native EXTLOAD instruction from
581 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000582 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000583 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000584 const Type *SType = SVT.getTypeForMVT();
Evan Chengef120572008-03-04 08:05:30 +0000585 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
586 VT = SVT;
587 Extend = true;
588 }
Evan Cheng00495212006-12-12 21:32:44 +0000589 }
590
Dan Gohman475871a2008-07-27 21:46:04 +0000591 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +0000592 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Chengef120572008-03-04 08:05:30 +0000593 if (Extend)
Dale Johannesen33c960f2009-02-04 20:06:27 +0000594 return DAG.getExtLoad(ISD::EXTLOAD, dl,
Dale Johannesen39355f92009-02-04 02:34:38 +0000595 OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000596 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman50284d82008-09-16 22:05:41 +0000597 0, VT, false, Alignment);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000598 return DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +0000599 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +0000600}
601
Chris Lattner6831a812006-02-13 09:18:02 +0000602
Evan Cheng912095b2007-01-04 21:56:39 +0000603/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
604/// operations.
605static
Dan Gohman475871a2008-07-27 21:46:04 +0000606SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
Dan Gohman0d137d72009-01-15 16:43:02 +0000607 SelectionDAG &DAG,
608 const TargetLowering &TLI) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000609 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000610 MVT VT = Node->getValueType(0);
611 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000612 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
613 "fcopysign expansion only supported for f32 and f64");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000614 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000615
Evan Cheng912095b2007-01-04 21:56:39 +0000616 // First get the sign bit of second operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000617 SDValue Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000618 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
619 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000620 Mask1 = DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT, Mask1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000621 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT,
Dale Johannesenbb5da912009-02-02 20:41:04 +0000622 Node->getOperand(1));
623 SignBit = DAG.getNode(ISD::AND, dl, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000624 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000625 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng912095b2007-01-04 21:56:39 +0000626 if (SizeDiff > 0) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000627 SignBit = DAG.getNode(ISD::SRL, dl, SrcNVT, SignBit,
Evan Cheng912095b2007-01-04 21:56:39 +0000628 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000629 SignBit = DAG.getNode(ISD::TRUNCATE, dl, NVT, SignBit);
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000630 } else if (SizeDiff < 0) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000631 SignBit = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, SignBit);
632 SignBit = DAG.getNode(ISD::SHL, dl, NVT, SignBit,
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000633 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
634 }
Evan Cheng068c5f42007-01-05 21:31:51 +0000635
636 // Clear the sign bit of first operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000637 SDValue Mask2 = (VT == MVT::f64)
Evan Cheng068c5f42007-01-05 21:31:51 +0000638 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
639 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000640 Mask2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask2);
641 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
642 Result = DAG.getNode(ISD::AND, dl, NVT, Result, Mask2);
Evan Cheng068c5f42007-01-05 21:31:51 +0000643
644 // Or the value with the sign bit.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000645 Result = DAG.getNode(ISD::OR, dl, NVT, Result, SignBit);
Evan Cheng912095b2007-01-04 21:56:39 +0000646 return Result;
647}
648
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000649/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
650static
Dan Gohman475871a2008-07-27 21:46:04 +0000651SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
Dan Gohman0d137d72009-01-15 16:43:02 +0000652 const TargetLowering &TLI) {
Dan Gohman475871a2008-07-27 21:46:04 +0000653 SDValue Chain = ST->getChain();
654 SDValue Ptr = ST->getBasePtr();
655 SDValue Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000656 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000657 int Alignment = ST->getAlignment();
658 int SVOffset = ST->getSrcValueOffset();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000659 DebugLoc dl = ST->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000660 if (ST->getMemoryVT().isFloatingPoint() ||
661 ST->getMemoryVT().isVector()) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000662 MVT intVT = MVT::getIntegerVT(VT.getSizeInBits());
663 if (TLI.isTypeLegal(intVT)) {
664 // Expand to a bitconvert of the value to the integer type of the
665 // same size, then a (misaligned) int store.
666 // FIXME: Does not handle truncating floating point stores!
Dale Johannesenbb5da912009-02-02 20:41:04 +0000667 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, intVT, Val);
668 return DAG.getStore(Chain, dl, Result, Ptr, ST->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000669 SVOffset, ST->isVolatile(), Alignment);
670 } else {
671 // Do a (aligned) store to a stack slot, then copy from the stack slot
672 // to the final destination using (unaligned) integer loads and stores.
673 MVT StoredVT = ST->getMemoryVT();
674 MVT RegVT =
675 TLI.getRegisterType(MVT::getIntegerVT(StoredVT.getSizeInBits()));
676 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
677 unsigned RegBytes = RegVT.getSizeInBits() / 8;
678 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000679
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000680 // Make sure the stack slot is also aligned for the register type.
681 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
682
683 // Perform the original store, only redirected to the stack slot.
Scott Michelfdc40a02009-02-17 22:15:04 +0000684 SDValue Store = DAG.getTruncStore(Chain, dl,
Dale Johannesenbb5da912009-02-02 20:41:04 +0000685 Val, StackPtr, NULL, 0,StoredVT);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000686 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
687 SmallVector<SDValue, 8> Stores;
688 unsigned Offset = 0;
689
690 // Do all but one copies using the full register width.
691 for (unsigned i = 1; i < NumRegs; i++) {
692 // Load one integer register's worth from the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000693 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr, NULL, 0);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000694 // Store it to the final location. Remember the store.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000695 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000696 ST->getSrcValue(), SVOffset + Offset,
697 ST->isVolatile(),
698 MinAlign(ST->getAlignment(), Offset)));
699 // Increment the pointers.
700 Offset += RegBytes;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000701 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000702 Increment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000703 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000704 }
705
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000706 // The last store may be partial. Do a truncating store. On big-endian
707 // machines this requires an extending load from the stack slot to ensure
708 // that the bits are in the right place.
709 MVT MemVT = MVT::getIntegerVT(8 * (StoredBytes - Offset));
Duncan Sands05e11fa2008-12-12 21:47:02 +0000710
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000711 // Load from the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000712 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000713 NULL, 0, MemVT);
714
Dale Johannesenbb5da912009-02-02 20:41:04 +0000715 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000716 ST->getSrcValue(), SVOffset + Offset,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000717 MemVT, ST->isVolatile(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000718 MinAlign(ST->getAlignment(), Offset)));
719 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000720 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sands05e11fa2008-12-12 21:47:02 +0000721 Stores.size());
722 }
Dale Johannesen907f28c2007-09-08 19:29:23 +0000723 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000724 assert(ST->getMemoryVT().isInteger() &&
725 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000726 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000727 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000728 MVT NewStoredVT =
729 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
730 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000731 int IncrementSize = NumBits / 8;
732
733 // Divide the stored value in two parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000734 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
735 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000736 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000737
738 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000739 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000740 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000741 ST->getSrcValue(), SVOffset, NewStoredVT,
742 ST->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000743 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000744 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000745 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000746 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000747 ST->getSrcValue(), SVOffset + IncrementSize,
748 NewStoredVT, ST->isVolatile(), Alignment);
749
Dale Johannesenbb5da912009-02-02 20:41:04 +0000750 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000751}
752
753/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
754static
Dan Gohman475871a2008-07-27 21:46:04 +0000755SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
Dan Gohmane9530ec2009-01-15 16:58:17 +0000756 const TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000757 int SVOffset = LD->getSrcValueOffset();
Dan Gohman475871a2008-07-27 21:46:04 +0000758 SDValue Chain = LD->getChain();
759 SDValue Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000760 MVT VT = LD->getValueType(0);
761 MVT LoadedVT = LD->getMemoryVT();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000762 DebugLoc dl = LD->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000763 if (VT.isFloatingPoint() || VT.isVector()) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000764 MVT intVT = MVT::getIntegerVT(LoadedVT.getSizeInBits());
765 if (TLI.isTypeLegal(intVT)) {
766 // Expand to a (misaligned) integer load of the same size,
767 // then bitconvert to floating point or vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000768 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000769 SVOffset, LD->isVolatile(),
Dale Johannesen907f28c2007-09-08 19:29:23 +0000770 LD->getAlignment());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000771 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, LoadedVT, newLoad);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000772 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesenbb5da912009-02-02 20:41:04 +0000773 Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000774
Duncan Sands05e11fa2008-12-12 21:47:02 +0000775 SDValue Ops[] = { Result, Chain };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000776 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000777 } else {
778 // Copy the value to a (aligned) stack slot using (unaligned) integer
779 // loads and stores, then do a (aligned) load from the stack slot.
780 MVT RegVT = TLI.getRegisterType(intVT);
781 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
782 unsigned RegBytes = RegVT.getSizeInBits() / 8;
783 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
784
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000785 // Make sure the stack slot is also aligned for the register type.
786 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
787
Duncan Sands05e11fa2008-12-12 21:47:02 +0000788 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
789 SmallVector<SDValue, 8> Stores;
790 SDValue StackPtr = StackBase;
791 unsigned Offset = 0;
792
793 // Do all but one copies using the full register width.
794 for (unsigned i = 1; i < NumRegs; i++) {
795 // Load one integer register's worth from the original location.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000796 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000797 SVOffset + Offset, LD->isVolatile(),
798 MinAlign(LD->getAlignment(), Offset));
799 // Follow the load with a store to the stack slot. Remember the store.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000800 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000801 NULL, 0));
802 // Increment the pointers.
803 Offset += RegBytes;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000804 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
805 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000806 Increment);
807 }
808
809 // The last copy may be partial. Do an extending load.
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000810 MVT MemVT = MVT::getIntegerVT(8 * (LoadedBytes - Offset));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000811 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000812 LD->getSrcValue(), SVOffset + Offset,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000813 MemVT, LD->isVolatile(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000814 MinAlign(LD->getAlignment(), Offset));
815 // Follow the load with a store to the stack slot. Remember the store.
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000816 // On big-endian machines this requires a truncating store to ensure
817 // that the bits end up in the right place.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000818 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000819 NULL, 0, MemVT));
Duncan Sands05e11fa2008-12-12 21:47:02 +0000820
821 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000822 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sands05e11fa2008-12-12 21:47:02 +0000823 Stores.size());
824
825 // Finally, perform the original load only redirected to the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000826 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000827 NULL, 0, LoadedVT);
828
829 // Callers expect a MERGE_VALUES node.
830 SDValue Ops[] = { Load, TF };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000831 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000832 }
Dale Johannesen907f28c2007-09-08 19:29:23 +0000833 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000834 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000835 "Unaligned load of unsupported type.");
836
Dale Johannesen8155d642008-02-27 22:36:00 +0000837 // Compute the new VT that is half the size of the old one. This is an
838 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000839 unsigned NumBits = LoadedVT.getSizeInBits();
840 MVT NewLoadedVT;
841 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000842 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000843
Chris Lattnere400af82007-11-19 21:38:03 +0000844 unsigned Alignment = LD->getAlignment();
845 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000846 ISD::LoadExtType HiExtType = LD->getExtensionType();
847
848 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
849 if (HiExtType == ISD::NON_EXTLOAD)
850 HiExtType = ISD::ZEXTLOAD;
851
852 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000853 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000854 if (TLI.isLittleEndian()) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000855 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000856 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000857 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000858 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000859 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000860 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000861 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000862 } else {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000863 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
864 SVOffset, NewLoadedVT,LD->isVolatile(), Alignment);
865 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000866 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000867 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000868 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000869 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000870 }
871
872 // aggregate the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000873 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000874 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
875 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000876
Dale Johannesenbb5da912009-02-02 20:41:04 +0000877 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000878 Hi.getValue(1));
879
Dan Gohman475871a2008-07-27 21:46:04 +0000880 SDValue Ops[] = { Result, TF };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000881 return DAG.getMergeValues(Ops, 2, dl);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000882}
Evan Cheng912095b2007-01-04 21:56:39 +0000883
Dan Gohman82669522007-10-11 23:57:53 +0000884/// UnrollVectorOp - We know that the given vector has a legal type, however
885/// the operation it performs is not legal and is an operation that we have
886/// no way of lowering. "Unroll" the vector, splitting out the scalars and
887/// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000888SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000889 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000890 assert(isTypeLegal(VT) &&
891 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000892 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman82669522007-10-11 23:57:53 +0000893 "Can't unroll a vector with multiple results!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000894 unsigned NE = VT.getVectorNumElements();
895 MVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000896 DebugLoc dl = Op.getDebugLoc();
Dan Gohman82669522007-10-11 23:57:53 +0000897
Dan Gohman475871a2008-07-27 21:46:04 +0000898 SmallVector<SDValue, 8> Scalars;
899 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman82669522007-10-11 23:57:53 +0000900 for (unsigned i = 0; i != NE; ++i) {
901 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +0000902 SDValue Operand = Op.getOperand(j);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000903 MVT OperandVT = Operand.getValueType();
904 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000905 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000906 MVT OperandEltVT = OperandVT.getVectorElementType();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000907 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dan Gohman82669522007-10-11 23:57:53 +0000908 OperandEltVT,
909 Operand,
910 DAG.getConstant(i, MVT::i32));
911 } else {
912 // A scalar operand; just use it as is.
913 Operands[j] = Operand;
914 }
915 }
Mon P Wange9f10152008-12-09 05:46:39 +0000916
917 switch (Op.getOpcode()) {
918 default:
Dale Johannesenbb5da912009-02-02 20:41:04 +0000919 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT,
Mon P Wange9f10152008-12-09 05:46:39 +0000920 &Operands[0], Operands.size()));
921 break;
922 case ISD::SHL:
923 case ISD::SRA:
924 case ISD::SRL:
Duncan Sands92abc622009-01-31 15:50:11 +0000925 case ISD::ROTL:
926 case ISD::ROTR:
Dale Johannesenbb5da912009-02-02 20:41:04 +0000927 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT, Operands[0],
Duncan Sands92abc622009-01-31 15:50:11 +0000928 DAG.getShiftAmountOperand(Operands[1])));
Mon P Wange9f10152008-12-09 05:46:39 +0000929 break;
930 }
Dan Gohman82669522007-10-11 23:57:53 +0000931 }
932
Scott Michel4214a552009-02-22 23:36:09 +0000933 return DAG.getBUILD_VECTOR(VT, dl, &Scalars[0], Scalars.size());
Dan Gohman82669522007-10-11 23:57:53 +0000934}
935
Duncan Sands007f9842008-01-10 10:28:30 +0000936/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000937static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000938 RTLIB::Libcall Call_F32,
939 RTLIB::Libcall Call_F64,
940 RTLIB::Libcall Call_F80,
941 RTLIB::Libcall Call_PPCF128) {
942 return
943 VT == MVT::f32 ? Call_F32 :
944 VT == MVT::f64 ? Call_F64 :
945 VT == MVT::f80 ? Call_F80 :
946 VT == MVT::ppcf128 ? Call_PPCF128 :
947 RTLIB::UNKNOWN_LIBCALL;
948}
949
Nate Begeman68679912008-04-25 18:07:40 +0000950/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
951/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
952/// is necessary to spill the vector being inserted into to memory, perform
953/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000954SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000955PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
956 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000957 SDValue Tmp1 = Vec;
958 SDValue Tmp2 = Val;
959 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000960
Nate Begeman68679912008-04-25 18:07:40 +0000961 // If the target doesn't support this, we have to spill the input vector
962 // to a temporary stack slot, update the element, then reload it. This is
963 // badness. We could also load the value into a vector register (either
964 // with a "move to register" or "extload into register" instruction, then
965 // permute it into place, if the idx is a constant and if the idx is
966 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000967 MVT VT = Tmp1.getValueType();
968 MVT EltVT = VT.getVectorElementType();
969 MVT IdxVT = Tmp3.getValueType();
970 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000971 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000972
Gabor Greifba36cb52008-08-28 21:40:38 +0000973 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman68679912008-04-25 18:07:40 +0000974
975 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000976 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Mon P Wang0c397192008-10-30 08:01:45 +0000977 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000978
979 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000980 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000981 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000982 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000983 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000984 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
985 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000986 // Store the scalar value.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000987 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2,
Dan Gohmana54cf172008-07-11 22:44:52 +0000988 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman68679912008-04-25 18:07:40 +0000989 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000990 return DAG.getLoad(VT, dl, Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +0000991 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000992}
993
Mon P Wange9f10152008-12-09 05:46:39 +0000994
Dan Gohmana3466152007-07-13 20:14:11 +0000995/// LegalizeOp - We know that the specified value has a legal type, and
996/// that its operands are legal. Now ensure that the operation itself
997/// is legal, recursively ensuring that the operands' operations remain
998/// legal.
Dan Gohman475871a2008-07-27 21:46:04 +0000999SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +00001000 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1001 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00001002
Chris Lattnerc9c60f62005-08-24 16:35:28 +00001003 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +00001004 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +00001005 SDNode *Node = Op.getNode();
Dale Johannesen7d2ad622009-01-30 23:10:59 +00001006 DebugLoc dl = Node->getDebugLoc();
Chris Lattnere3304a32005-01-08 20:35:13 +00001007
Chris Lattner3e928bb2005-01-07 07:47:09 +00001008 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +00001009 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +00001010 if (Node->getNumValues() > 1) {
1011 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +00001012 if (getTypeAction(Node->getValueType(i)) != Legal) {
1013 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001014 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +00001015 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +00001016 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +00001017 }
1018 }
1019
Chris Lattner45982da2005-05-12 16:53:42 +00001020 // Note that LegalizeOp may be reentered even from single-use nodes, which
1021 // means that we always must cache transformed nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00001022 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +00001023 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001024
Dan Gohman475871a2008-07-27 21:46:04 +00001025 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
1026 SDValue Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +00001027 bool isCustom = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001028
Chris Lattner3e928bb2005-01-07 07:47:09 +00001029 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +00001030 case ISD::FrameIndex:
1031 case ISD::EntryToken:
1032 case ISD::Register:
1033 case ISD::BasicBlock:
1034 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +00001035 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +00001036 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +00001037 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +00001038 case ISD::TargetConstantPool:
1039 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001040 case ISD::TargetGlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +00001041 case ISD::TargetExternalSymbol:
Chris Lattner948c1b12006-01-28 08:31:04 +00001042 case ISD::VALUETYPE:
1043 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +00001044 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +00001045 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +00001046 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +00001047 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00001048 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +00001049 "This must be legal!");
1050 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001051 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001052 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
1053 // If this is a target node, legalize it by legalizing the operands then
1054 // passing it through.
Dan Gohman475871a2008-07-27 21:46:04 +00001055 SmallVector<SDValue, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001056 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001057 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001058
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001059 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001060
1061 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1062 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001063 return Result.getValue(Op.getResNo());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001064 }
1065 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001066#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00001067 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001068#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00001069 assert(0 && "Do not know how to legalize this operator!");
1070 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +00001071 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +00001072 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001073 case ISD::GlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +00001074 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +00001075 case ISD::ConstantPool:
1076 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001077 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1078 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +00001079 case TargetLowering::Custom:
1080 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001081 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner948c1b12006-01-28 08:31:04 +00001082 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001083 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001084 break;
1085 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001086 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +00001087 case ISD::FRAMEADDR:
1088 case ISD::RETURNADDR:
1089 // The only option for these nodes is to custom lower them. If the target
1090 // does not custom lower them, then return zero.
1091 Tmp1 = TLI.LowerOperation(Op, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00001092 if (Tmp1.getNode())
Nate Begemanbcc5f362007-01-29 22:58:52 +00001093 Result = Tmp1;
1094 else
1095 Result = DAG.getConstant(0, TLI.getPointerTy());
1096 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +00001097 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001098 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001099 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1100 default: assert(0 && "This action is not supported yet!");
1101 case TargetLowering::Custom:
1102 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001103 if (Result.getNode()) break;
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001104 // Fall Thru
1105 case TargetLowering::Legal:
1106 Result = DAG.getConstant(0, VT);
1107 break;
1108 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +00001109 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001110 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +00001111 case ISD::EXCEPTIONADDR: {
1112 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001113 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001114 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1115 default: assert(0 && "This action is not supported yet!");
1116 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +00001117 unsigned Reg = TLI.getExceptionAddressRegister();
Dale Johannesenc460ae92009-02-04 00:13:36 +00001118 Result = DAG.getCopyFromReg(Tmp1, dl, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001119 }
1120 break;
1121 case TargetLowering::Custom:
1122 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001123 if (Result.getNode()) break;
Jim Laskey2bc210d2007-02-22 15:37:19 +00001124 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001125 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001126 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Dale Johannesenca57b842009-02-02 23:46:53 +00001127 Result = DAG.getMergeValues(Ops, 2, dl);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001128 break;
1129 }
1130 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001131 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001132 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +00001133
Gabor Greifba36cb52008-08-28 21:40:38 +00001134 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +00001135 "Cannot return more than two values!");
1136
1137 // Since we produced two values, make sure to remember that we
1138 // legalized both of them.
1139 Tmp1 = LegalizeOp(Result);
1140 Tmp2 = LegalizeOp(Result.getValue(1));
1141 AddLegalizedOperand(Op.getValue(0), Tmp1);
1142 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001143 return Op.getResNo() ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +00001144 case ISD::EHSELECTION: {
1145 Tmp1 = LegalizeOp(Node->getOperand(0));
1146 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001147 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +00001148 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1149 default: assert(0 && "This action is not supported yet!");
1150 case TargetLowering::Expand: {
1151 unsigned Reg = TLI.getExceptionSelectorRegister();
Dale Johannesenc460ae92009-02-04 00:13:36 +00001152 Result = DAG.getCopyFromReg(Tmp2, dl, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +00001153 }
1154 break;
1155 case TargetLowering::Custom:
1156 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001157 if (Result.getNode()) break;
Jim Laskey8782d482007-02-28 20:43:58 +00001158 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001159 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001160 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Dale Johannesenca57b842009-02-02 23:46:53 +00001161 Result = DAG.getMergeValues(Ops, 2, dl);
Jim Laskey8782d482007-02-28 20:43:58 +00001162 break;
1163 }
1164 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001165 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001166 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +00001167
Gabor Greifba36cb52008-08-28 21:40:38 +00001168 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +00001169 "Cannot return more than two values!");
1170
1171 // Since we produced two values, make sure to remember that we
1172 // legalized both of them.
1173 Tmp1 = LegalizeOp(Result);
1174 Tmp2 = LegalizeOp(Result.getValue(1));
1175 AddLegalizedOperand(Op.getValue(0), Tmp1);
1176 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001177 return Op.getResNo() ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001178 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001179 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001180 // The only "good" option for this node is to custom lower it.
1181 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1182 default: assert(0 && "This action is not supported at all!");
1183 case TargetLowering::Custom:
1184 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001185 if (Result.getNode()) break;
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001186 // Fall Thru
1187 case TargetLowering::Legal:
1188 // Target does not know, how to lower this, lower to noop
1189 Result = LegalizeOp(Node->getOperand(0));
1190 break;
1191 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001192 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001193 break;
Chris Lattner08951a32005-09-02 01:15:01 +00001194 case ISD::AssertSext:
1195 case ISD::AssertZext:
1196 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001197 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +00001198 break;
Chris Lattner308575b2005-11-20 22:56:56 +00001199 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001200 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif99a6cb92008-08-26 22:36:50 +00001201 Result = Node->getOperand(Op.getResNo());
Chris Lattner456a93a2006-01-28 07:39:30 +00001202 break;
Chris Lattner69a52152005-01-14 22:38:01 +00001203 case ISD::CopyFromReg:
1204 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001205 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001206 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001207 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +00001208 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001209 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001210 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001211 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001212 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1213 } else {
1214 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1215 }
Chris Lattner7310fb12005-12-18 15:27:43 +00001216 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1217 }
Chris Lattner13c184d2005-01-28 06:27:38 +00001218 // Since CopyFromReg produces two values, make sure to remember that we
1219 // legalized both of them.
1220 AddLegalizedOperand(Op.getValue(0), Result);
1221 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001222 return Result.getValue(Op.getResNo());
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001223 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001224 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001225 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +00001226 default: assert(0 && "This action is not supported yet!");
1227 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001228 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001229 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001230 else if (VT.isFloatingPoint())
1231 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +00001232 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001233 else
1234 assert(0 && "Unknown value type!");
1235 break;
Nate Begemanea19cd52005-04-02 00:41:14 +00001236 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001237 break;
1238 }
1239 break;
1240 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001241
Chris Lattner48b61a72006-03-28 00:40:33 +00001242 case ISD::INTRINSIC_W_CHAIN:
1243 case ISD::INTRINSIC_WO_CHAIN:
1244 case ISD::INTRINSIC_VOID: {
Dan Gohman475871a2008-07-27 21:46:04 +00001245 SmallVector<SDValue, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001246 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1247 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001248 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001249
Chris Lattner10d7fa62006-03-26 09:12:51 +00001250 // Allow the target to custom lower its intrinsics if it wants to.
Scott Michelfdc40a02009-02-17 22:15:04 +00001251 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001252 TargetLowering::Custom) {
1253 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001254 if (Tmp3.getNode()) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001255 }
1256
Gabor Greifba36cb52008-08-28 21:40:38 +00001257 if (Result.getNode()->getNumValues() == 1) break;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001258
1259 // Must have return value and chain result.
Gabor Greifba36cb52008-08-28 21:40:38 +00001260 assert(Result.getNode()->getNumValues() == 2 &&
Chris Lattner13fc2f12006-03-27 20:28:29 +00001261 "Cannot return more than two values!");
1262
Scott Michelfdc40a02009-02-17 22:15:04 +00001263 // Since loads produce two values, make sure to remember that we
Chris Lattner13fc2f12006-03-27 20:28:29 +00001264 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001265 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1266 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001267 return Result.getValue(Op.getResNo());
Scott Michelfdc40a02009-02-17 22:15:04 +00001268 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001269
Dan Gohman7f460202008-06-30 20:59:49 +00001270 case ISD::DBG_STOPPOINT:
1271 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner36ce6912005-11-29 06:21:05 +00001272 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00001273
Dan Gohman7f460202008-06-30 20:59:49 +00001274 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner36ce6912005-11-29 06:21:05 +00001275 case TargetLowering::Promote:
1276 default: assert(0 && "This action is not supported yet!");
Bill Wendling92c1e122009-02-13 02:16:35 +00001277 case TargetLowering::Expand: {
1278 DwarfWriter *DW = DAG.getDwarfWriter();
1279 bool useDEBUG_LOC = TLI.isOperationLegalOrCustom(ISD::DEBUG_LOC,
1280 MVT::Other);
1281 bool useLABEL = TLI.isOperationLegalOrCustom(ISD::DBG_LABEL, MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00001282
Bill Wendling92c1e122009-02-13 02:16:35 +00001283 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
1284 GlobalVariable *CU_GV = cast<GlobalVariable>(DSP->getCompileUnit());
1285 if (DW && (useDEBUG_LOC || useLABEL) && !CU_GV->isDeclaration()) {
1286 DICompileUnit CU(cast<GlobalVariable>(DSP->getCompileUnit()));
1287 unsigned SrcFile = DW->RecordSource(CU.getDirectory(),
1288 CU.getFilename());
Scott Michelfdc40a02009-02-17 22:15:04 +00001289
Bill Wendling92c1e122009-02-13 02:16:35 +00001290 unsigned Line = DSP->getLine();
1291 unsigned Col = DSP->getColumn();
Bill Wendling86e6cb92009-02-17 01:04:54 +00001292 const Function *F = DAG.getMachineFunction().getFunction();
1293
1294 if (!F->hasFnAttr(Attribute::OptimizeForSize)) {
1295 // A bit self-referential to have DebugLoc on Debug_Loc nodes, but it
1296 // won't hurt anything.
1297 if (useDEBUG_LOC) {
1298 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Bill Wendling92c1e122009-02-13 02:16:35 +00001299 DAG.getConstant(Col, MVT::i32),
1300 DAG.getConstant(SrcFile, MVT::i32) };
Bill Wendling86e6cb92009-02-17 01:04:54 +00001301 Result = DAG.getNode(ISD::DEBUG_LOC, dl, MVT::Other, Ops, 4);
1302 } else {
1303 unsigned ID = DW->RecordSourceLine(Line, Col, SrcFile);
1304 Result = DAG.getLabel(ISD::DBG_LABEL, dl, Tmp1, ID);
1305 }
Bill Wendling92c1e122009-02-13 02:16:35 +00001306 } else {
Bill Wendling86e6cb92009-02-17 01:04:54 +00001307 Result = Tmp1; // chain
Bill Wendling92c1e122009-02-13 02:16:35 +00001308 }
1309 } else {
1310 Result = Tmp1; // chain
1311 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001312 break;
Bill Wendling92c1e122009-02-13 02:16:35 +00001313 }
Evan Cheng71e86852008-07-08 20:06:39 +00001314 case TargetLowering::Legal: {
1315 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1316 if (Action == Legal && Tmp1 == Node->getOperand(0))
1317 break;
1318
Dan Gohman475871a2008-07-27 21:46:04 +00001319 SmallVector<SDValue, 8> Ops;
Evan Cheng71e86852008-07-08 20:06:39 +00001320 Ops.push_back(Tmp1);
1321 if (Action == Legal) {
1322 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1323 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1324 } else {
1325 // Otherwise promote them.
1326 Ops.push_back(PromoteOp(Node->getOperand(1)));
1327 Ops.push_back(PromoteOp(Node->getOperand(2)));
Chris Lattner36ce6912005-11-29 06:21:05 +00001328 }
Evan Cheng71e86852008-07-08 20:06:39 +00001329 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1330 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1331 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001332 break;
1333 }
Evan Cheng71e86852008-07-08 20:06:39 +00001334 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001335 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001336
1337 case ISD::DECLARE:
1338 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1339 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1340 default: assert(0 && "This action is not supported yet!");
1341 case TargetLowering::Legal:
1342 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1343 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1344 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1345 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1346 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001347 case TargetLowering::Expand:
1348 Result = LegalizeOp(Node->getOperand(0));
1349 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001350 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001351 break;
1352
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001353 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001354 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001355 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001356 default: assert(0 && "This action is not supported yet!");
Evan Cheng71e86852008-07-08 20:06:39 +00001357 case TargetLowering::Legal: {
1358 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001359 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng71e86852008-07-08 20:06:39 +00001360 if (Action == Legal && Tmp1 == Node->getOperand(0))
1361 break;
1362 if (Action == Legal) {
1363 Tmp2 = Node->getOperand(1);
1364 Tmp3 = Node->getOperand(2);
1365 Tmp4 = Node->getOperand(3);
1366 } else {
1367 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1368 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1369 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1370 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001371 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001372 break;
1373 }
Evan Cheng71e86852008-07-08 20:06:39 +00001374 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001375 break;
Jim Laskeyabf6d172006-01-05 01:25:28 +00001376
Dan Gohman44066042008-07-01 00:05:16 +00001377 case ISD::DBG_LABEL:
1378 case ISD::EH_LABEL:
1379 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1380 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001381 default: assert(0 && "This action is not supported yet!");
1382 case TargetLowering::Legal:
1383 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001384 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001385 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001386 case TargetLowering::Expand:
1387 Result = LegalizeOp(Node->getOperand(0));
1388 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001389 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001390 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001391
Evan Cheng27b7db52008-03-08 00:58:38 +00001392 case ISD::PREFETCH:
1393 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1394 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1395 default: assert(0 && "This action is not supported yet!");
1396 case TargetLowering::Legal:
1397 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1398 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1399 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1400 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1401 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1402 break;
1403 case TargetLowering::Expand:
1404 // It's a noop.
1405 Result = LegalizeOp(Node->getOperand(0));
1406 break;
1407 }
1408 break;
1409
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001410 case ISD::MEMBARRIER: {
1411 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001412 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1413 default: assert(0 && "This action is not supported yet!");
1414 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001415 SDValue Ops[6];
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001416 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001417 for (int x = 1; x < 6; ++x) {
1418 Ops[x] = Node->getOperand(x);
1419 if (!isTypeLegal(Ops[x].getValueType()))
1420 Ops[x] = PromoteOp(Ops[x]);
1421 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001422 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1423 break;
1424 }
1425 case TargetLowering::Expand:
1426 //There is no libgcc call for this op
1427 Result = Node->getOperand(0); // Noop
1428 break;
1429 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001430 break;
1431 }
1432
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001433 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001434 unsigned int num_operands = 4;
1435 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001436 SDValue Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001437 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001438 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001439 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Scott Michelfdc40a02009-02-17 22:15:04 +00001440
Mon P Wang63307c32008-05-05 19:05:59 +00001441 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1442 default: assert(0 && "This action is not supported yet!");
1443 case TargetLowering::Custom:
1444 Result = TLI.LowerOperation(Result, DAG);
1445 break;
1446 case TargetLowering::Legal:
1447 break;
1448 }
Dan Gohman475871a2008-07-27 21:46:04 +00001449 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1450 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001451 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001452 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001453 case ISD::ATOMIC_LOAD_ADD:
1454 case ISD::ATOMIC_LOAD_SUB:
1455 case ISD::ATOMIC_LOAD_AND:
1456 case ISD::ATOMIC_LOAD_OR:
1457 case ISD::ATOMIC_LOAD_XOR:
1458 case ISD::ATOMIC_LOAD_NAND:
1459 case ISD::ATOMIC_LOAD_MIN:
1460 case ISD::ATOMIC_LOAD_MAX:
1461 case ISD::ATOMIC_LOAD_UMIN:
1462 case ISD::ATOMIC_LOAD_UMAX:
1463 case ISD::ATOMIC_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001464 unsigned int num_operands = 3;
1465 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001466 SDValue Ops[3];
Mon P Wang63307c32008-05-05 19:05:59 +00001467 for (unsigned int x = 0; x < num_operands; ++x)
1468 Ops[x] = LegalizeOp(Node->getOperand(x));
1469 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001470
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001471 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001472 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001473 case TargetLowering::Custom:
1474 Result = TLI.LowerOperation(Result, DAG);
1475 break;
1476 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001477 break;
1478 }
Dan Gohman475871a2008-07-27 21:46:04 +00001479 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1480 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001481 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001482 }
Scott Michelc1513d22007-08-08 23:23:31 +00001483 case ISD::Constant: {
1484 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1485 unsigned opAction =
1486 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1487
Chris Lattner3e928bb2005-01-07 07:47:09 +00001488 // We know we don't need to expand constants here, constants only have one
1489 // value and we check that it is fine above.
1490
Scott Michelc1513d22007-08-08 23:23:31 +00001491 if (opAction == TargetLowering::Custom) {
1492 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001493 if (Tmp1.getNode())
Scott Michelc1513d22007-08-08 23:23:31 +00001494 Result = Tmp1;
1495 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001496 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001497 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001498 case ISD::ConstantFP: {
1499 // Spill FP immediates to the constant pool if the target cannot directly
1500 // codegen them. Targets often have some immediate values that can be
1501 // efficiently generated into an FP register without a load. We explicitly
1502 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001503 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1504
Chris Lattner3181a772006-01-29 06:26:56 +00001505 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1506 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001507 case TargetLowering::Legal:
1508 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001509 case TargetLowering::Custom:
1510 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001511 if (Tmp3.getNode()) {
Chris Lattner3181a772006-01-29 06:26:56 +00001512 Result = Tmp3;
1513 break;
1514 }
1515 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001516 case TargetLowering::Expand: {
1517 // Check to see if this FP immediate is already legal.
1518 bool isLegal = false;
1519 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1520 E = TLI.legal_fpimm_end(); I != E; ++I) {
1521 if (CFP->isExactlyValue(*I)) {
1522 isLegal = true;
1523 break;
1524 }
1525 }
1526 // If this is a legal constant, turn it into a TargetConstantFP node.
1527 if (isLegal)
1528 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001529 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001530 }
Nate Begemane1795842008-02-14 08:57:00 +00001531 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001532 break;
1533 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001534 case ISD::TokenFactor:
1535 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001536 Tmp1 = LegalizeOp(Node->getOperand(0));
1537 Tmp2 = LegalizeOp(Node->getOperand(1));
1538 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1539 } else if (Node->getNumOperands() == 3) {
1540 Tmp1 = LegalizeOp(Node->getOperand(0));
1541 Tmp2 = LegalizeOp(Node->getOperand(1));
1542 Tmp3 = LegalizeOp(Node->getOperand(2));
1543 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001544 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001545 SmallVector<SDValue, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001546 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001547 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1548 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001549 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001550 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001551 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001552
Chris Lattnerfdfded52006-04-12 16:20:43 +00001553 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001554 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001555 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001556 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001557 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001558 // A call within a calling sequence must be legalized to something
1559 // other than the normal CALLSEQ_END. Violating this gets Legalize
1560 // into an infinite loop.
1561 assert ((!IsLegalizingCall ||
1562 Node->getOpcode() != ISD::CALL ||
Gabor Greifba36cb52008-08-28 21:40:38 +00001563 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesen0ea03562008-03-05 19:14:03 +00001564 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001565
1566 // The number of incoming and outgoing values should match; unless the final
1567 // outgoing value is a flag.
Gabor Greifba36cb52008-08-28 21:40:38 +00001568 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1569 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1570 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001571 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001572 "Lowering call/formal_arguments produced unexpected # results!");
Scott Michelfdc40a02009-02-17 22:15:04 +00001573
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001574 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001575 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greifba36cb52008-08-28 21:40:38 +00001576 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1577 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001578 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001579 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001580 if (Op.getResNo() == i)
Chris Lattnere2e41732006-05-16 05:49:56 +00001581 Tmp2 = Tmp1;
Dan Gohman475871a2008-07-27 21:46:04 +00001582 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Chris Lattnere2e41732006-05-16 05:49:56 +00001583 }
1584 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001585 case ISD::EXTRACT_SUBREG: {
1586 Tmp1 = LegalizeOp(Node->getOperand(0));
1587 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1588 assert(idx && "Operand must be a constant");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001589 Tmp2 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lamb557c3632007-07-26 07:34:40 +00001590 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1591 }
1592 break;
1593 case ISD::INSERT_SUBREG: {
1594 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001595 Tmp2 = LegalizeOp(Node->getOperand(1));
Christopher Lamb557c3632007-07-26 07:34:40 +00001596 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1597 assert(idx && "Operand must be a constant");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001598 Tmp3 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lamb557c3632007-07-26 07:34:40 +00001599 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1600 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001601 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001602 case ISD::BUILD_VECTOR:
1603 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001604 default: assert(0 && "This action is not supported yet!");
1605 case TargetLowering::Custom:
1606 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001607 if (Tmp3.getNode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001608 Result = Tmp3;
1609 break;
1610 }
1611 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001612 case TargetLowering::Expand:
Gabor Greifba36cb52008-08-28 21:40:38 +00001613 Result = ExpandBUILD_VECTOR(Result.getNode());
Chris Lattnerb2827b02006-03-19 00:52:58 +00001614 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001615 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001616 break;
1617 case ISD::INSERT_VECTOR_ELT:
1618 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001619 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001620
1621 // The type of the value to insert may not be legal, even though the vector
1622 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1623 // here.
1624 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1625 default: assert(0 && "Cannot expand insert element operand");
1626 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1627 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Mon P Wang0c397192008-10-30 08:01:45 +00001628 case Expand:
1629 // FIXME: An alternative would be to check to see if the target is not
Scott Michelfdc40a02009-02-17 22:15:04 +00001630 // going to custom lower this operation, we could bitcast to half elt
Mon P Wang0c397192008-10-30 08:01:45 +00001631 // width and perform two inserts at that width, if that is legal.
1632 Tmp2 = Node->getOperand(1);
1633 break;
Nate Begeman0325d902008-02-13 06:43:04 +00001634 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001635 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00001636
Chris Lattner2332b9f2006-03-19 01:17:20 +00001637 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1638 Node->getValueType(0))) {
1639 default: assert(0 && "This action is not supported yet!");
1640 case TargetLowering::Legal:
1641 break;
1642 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001643 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001644 if (Tmp4.getNode()) {
Nate Begeman2281a992008-01-05 20:47:37 +00001645 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001646 break;
1647 }
1648 // FALLTHROUGH
Mon P Wang0c397192008-10-30 08:01:45 +00001649 case TargetLowering::Promote:
1650 // Fall thru for vector case
Chris Lattner2332b9f2006-03-19 01:17:20 +00001651 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001652 // If the insert index is a constant, codegen this as a scalar_to_vector,
1653 // then a shuffle that inserts it into the right position in the vector.
1654 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001655 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1656 // match the element type of the vector being created.
Scott Michelfdc40a02009-02-17 22:15:04 +00001657 if (Tmp2.getValueType() ==
Duncan Sands83ec4b62008-06-06 12:08:01 +00001658 Op.getValueType().getVectorElementType()) {
Dale Johannesenca57b842009-02-02 23:46:53 +00001659 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Nate Begeman0325d902008-02-13 06:43:04 +00001660 Tmp1.getValueType(), Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00001661
Duncan Sands83ec4b62008-06-06 12:08:01 +00001662 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1663 MVT ShufMaskVT =
1664 MVT::getIntVectorWithNumElements(NumElts);
1665 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001666
Nate Begeman0325d902008-02-13 06:43:04 +00001667 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1668 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1669 // elt 0 of the RHS.
Dan Gohman475871a2008-07-27 21:46:04 +00001670 SmallVector<SDValue, 8> ShufOps;
Nate Begeman0325d902008-02-13 06:43:04 +00001671 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001672 if (i != InsertPos->getZExtValue())
Nate Begeman0325d902008-02-13 06:43:04 +00001673 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1674 else
1675 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1676 }
Scott Michel4214a552009-02-22 23:36:09 +00001677 SDValue ShufMask = DAG.getBUILD_VECTOR(ShufMaskVT, dl,
1678 &ShufOps[0], ShufOps.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001679
Dale Johannesenca57b842009-02-02 23:46:53 +00001680 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Tmp1.getValueType(),
Nate Begeman0325d902008-02-13 06:43:04 +00001681 Tmp1, ScVec, ShufMask);
1682 Result = LegalizeOp(Result);
1683 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001684 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001685 }
Dale Johannesenbb5da912009-02-02 20:41:04 +00001686 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3, dl);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001687 break;
1688 }
1689 }
1690 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001691 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001692 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1693 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1694 break;
1695 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001696
Chris Lattnerce872152006-03-19 06:31:19 +00001697 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1698 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1699 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1700 Node->getValueType(0))) {
1701 default: assert(0 && "This action is not supported yet!");
1702 case TargetLowering::Legal:
1703 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001704 case TargetLowering::Custom:
1705 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001706 if (Tmp3.getNode()) {
Chris Lattner4d3abee2006-03-19 06:47:21 +00001707 Result = Tmp3;
1708 break;
1709 }
1710 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001711 case TargetLowering::Expand:
1712 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001713 break;
1714 }
Chris Lattnerce872152006-03-19 06:31:19 +00001715 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001716 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001717 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1718 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1719 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1720
1721 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001722 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1723 default: assert(0 && "Unknown operation action!");
1724 case TargetLowering::Legal:
1725 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1726 "vector shuffle should not be created if not legal!");
1727 break;
1728 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001729 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001730 if (Tmp3.getNode()) {
Evan Cheng18dd6d02006-04-05 06:07:11 +00001731 Result = Tmp3;
1732 break;
1733 }
1734 // FALLTHROUGH
1735 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001736 MVT VT = Node->getValueType(0);
1737 MVT EltVT = VT.getVectorElementType();
1738 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00001739 SDValue Mask = Node->getOperand(2);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001740 unsigned NumElems = Mask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00001741 SmallVector<SDValue,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001742 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001743 SDValue Arg = Mask.getOperand(i);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001744 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00001745 Ops.push_back(DAG.getUNDEF(EltVT));
Evan Cheng18dd6d02006-04-05 06:07:11 +00001746 } else {
1747 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001748 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng18dd6d02006-04-05 06:07:11 +00001749 if (Idx < NumElems)
Dale Johannesenca57b842009-02-02 23:46:53 +00001750 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp1,
Evan Cheng18dd6d02006-04-05 06:07:11 +00001751 DAG.getConstant(Idx, PtrVT)));
1752 else
Dale Johannesenca57b842009-02-02 23:46:53 +00001753 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp2,
Evan Cheng18dd6d02006-04-05 06:07:11 +00001754 DAG.getConstant(Idx - NumElems, PtrVT)));
1755 }
1756 }
Scott Michel4214a552009-02-22 23:36:09 +00001757 Result = DAG.getBUILD_VECTOR(VT, dl, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001758 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001759 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001760 case TargetLowering::Promote: {
1761 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001762 MVT OVT = Node->getValueType(0);
1763 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001764
1765 // Cast the two input vectors.
Dale Johannesenca57b842009-02-02 23:46:53 +00001766 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
1767 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00001768
Chris Lattner4352cc92006-04-04 17:23:26 +00001769 // Convert the shuffle mask to the right # elements.
Dan Gohman475871a2008-07-27 21:46:04 +00001770 Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001771 assert(Tmp3.getNode() && "Shuffle not legal?");
Dale Johannesenca57b842009-02-02 23:46:53 +00001772 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, NVT, Tmp1, Tmp2, Tmp3);
1773 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Chris Lattner4352cc92006-04-04 17:23:26 +00001774 break;
1775 }
Chris Lattner87100e02006-03-20 01:52:29 +00001776 }
1777 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001778
Chris Lattner384504c2006-03-21 20:44:12 +00001779 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001780 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001781 Tmp2 = LegalizeOp(Node->getOperand(1));
1782 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001783 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001784 break;
1785
Scott Michelfdc40a02009-02-17 22:15:04 +00001786 case ISD::EXTRACT_SUBVECTOR:
Dan Gohman7f321562007-06-25 16:23:39 +00001787 Tmp1 = Node->getOperand(0);
1788 Tmp2 = LegalizeOp(Node->getOperand(1));
1789 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1790 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001791 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001792
Mon P Wang0c397192008-10-30 08:01:45 +00001793 case ISD::CONCAT_VECTORS: {
1794 // Use extract/insert/build vector for now. We might try to be
1795 // more clever later.
1796 MVT PtrVT = TLI.getPointerTy();
1797 SmallVector<SDValue, 8> Ops;
1798 unsigned NumOperands = Node->getNumOperands();
1799 for (unsigned i=0; i < NumOperands; ++i) {
1800 SDValue SubOp = Node->getOperand(i);
1801 MVT VVT = SubOp.getNode()->getValueType(0);
1802 MVT EltVT = VVT.getVectorElementType();
1803 unsigned NumSubElem = VVT.getVectorNumElements();
1804 for (unsigned j=0; j < NumSubElem; ++j) {
Dale Johannesenca57b842009-02-02 23:46:53 +00001805 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, SubOp,
Mon P Wang0c397192008-10-30 08:01:45 +00001806 DAG.getConstant(j, PtrVT)));
1807 }
1808 }
Scott Michel4214a552009-02-22 23:36:09 +00001809 return LegalizeOp(DAG.getBUILD_VECTOR(Node->getValueType(0), dl,
1810 &Ops[0], Ops.size()));
Mon P Wang0c397192008-10-30 08:01:45 +00001811 }
1812
Chris Lattner6831a812006-02-13 09:18:02 +00001813 case ISD::CALLSEQ_START: {
1814 SDNode *CallEnd = FindCallEndFromCallStart(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00001815
Chris Lattner6831a812006-02-13 09:18:02 +00001816 // Recursively Legalize all of the inputs of the call end that do not lead
1817 // to this call start. This ensures that any libcalls that need be inserted
1818 // are inserted *before* the CALLSEQ_START.
Mon P Wange5ab34e2009-02-04 19:38:14 +00001819 IsLegalizingCallArgs = true;
Chris Lattner00755df2007-02-04 00:27:56 +00001820 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001821 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00001822 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001823 NodesLeadingTo);
1824 }
Mon P Wange5ab34e2009-02-04 19:38:14 +00001825 IsLegalizingCallArgs = false;
Chris Lattner6831a812006-02-13 09:18:02 +00001826
1827 // Now that we legalized all of the inputs (which may have inserted
1828 // libcalls) create the new CALLSEQ_START node.
1829 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1830
1831 // Merge in the last call, to ensure that this call start after the last
1832 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001833 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001834 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00001835 Tmp1, LastCALLSEQ_END);
Chris Lattnerb248e162006-05-17 17:55:45 +00001836 Tmp1 = LegalizeOp(Tmp1);
1837 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001838
Chris Lattner6831a812006-02-13 09:18:02 +00001839 // Do not try to legalize the target-specific arguments (#1+).
1840 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001841 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001842 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001843 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001844 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001845
Chris Lattner6831a812006-02-13 09:18:02 +00001846 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001847 AddLegalizedOperand(Op.getValue(0), Result);
1848 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1849 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001850
Chris Lattner6831a812006-02-13 09:18:02 +00001851 // Now that the callseq_start and all of the non-call nodes above this call
Scott Michelfdc40a02009-02-17 22:15:04 +00001852 // sequence have been legalized, legalize the call itself. During this
Chris Lattner6831a812006-02-13 09:18:02 +00001853 // process, no libcalls can/will be inserted, guaranteeing that no calls
1854 // can overlap.
1855 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001856 // Note that we are selecting this call!
Dan Gohman475871a2008-07-27 21:46:04 +00001857 LastCALLSEQ_END = SDValue(CallEnd, 0);
Chris Lattner6831a812006-02-13 09:18:02 +00001858 IsLegalizingCall = true;
Scott Michelfdc40a02009-02-17 22:15:04 +00001859
Chris Lattner6831a812006-02-13 09:18:02 +00001860 // Legalize the call, starting from the CALLSEQ_END.
1861 LegalizeOp(LastCALLSEQ_END);
1862 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1863 return Result;
1864 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001865 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001866 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1867 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greifba36cb52008-08-28 21:40:38 +00001868 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman475871a2008-07-27 21:46:04 +00001869 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1870 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001871 assert(I != LegalizedNodes.end() &&
1872 "Legalizing the call start should have legalized this node!");
1873 return I->second;
1874 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001875
1876 // Otherwise, the call start has been legalized and everything is going
Chris Lattner6831a812006-02-13 09:18:02 +00001877 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001878 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001879 // Do not try to legalize the target-specific arguments (#1+), except for
1880 // an optional flag input.
1881 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1882 if (Tmp1 != Node->getOperand(0)) {
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;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001885 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001886 }
1887 } else {
1888 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1889 if (Tmp1 != Node->getOperand(0) ||
1890 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001891 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001892 Ops[0] = Tmp1;
1893 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001894 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001895 }
Chris Lattner6a542892006-01-24 05:48:21 +00001896 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001897 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001898 // This finishes up call legalization.
1899 IsLegalizingCall = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001900
Chris Lattner4b653a02006-02-14 00:55:02 +00001901 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman475871a2008-07-27 21:46:04 +00001902 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Chris Lattner4b653a02006-02-14 00:55:02 +00001903 if (Node->getNumValues() == 2)
Dan Gohman475871a2008-07-27 21:46:04 +00001904 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001905 return Result.getValue(Op.getResNo());
Evan Chenga7dce3c2006-01-11 22:14:47 +00001906 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001907 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001908 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1909 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1910 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001911 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001912
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001913 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001914 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001915 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001916 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001917 case TargetLowering::Expand: {
1918 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1919 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1920 " not tell us which reg is the stack pointer!");
Dan Gohman475871a2008-07-27 21:46:04 +00001921 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001922
1923 // Chain the dynamic stack allocation so that it doesn't modify the stack
1924 // pointer when other instructions are using the stack.
Chris Lattnere563bbc2008-10-11 22:08:30 +00001925 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001926
Dan Gohman475871a2008-07-27 21:46:04 +00001927 SDValue Size = Tmp2.getOperand(1);
Dale Johannesenc460ae92009-02-04 00:13:36 +00001928 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001929 Chain = SP.getValue(1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001930 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Cheng61bbbab2007-08-16 23:50:06 +00001931 unsigned StackAlign =
1932 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1933 if (Align > StackAlign)
Dale Johannesenca57b842009-02-02 23:46:53 +00001934 SP = DAG.getNode(ISD::AND, dl, VT, SP,
Evan Cheng3e20bba2007-08-17 18:02:22 +00001935 DAG.getConstant(-(uint64_t)Align, VT));
Dale Johannesenca57b842009-02-02 23:46:53 +00001936 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Dale Johannesenc460ae92009-02-04 00:13:36 +00001937 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001938
Dale Johannesenca57b842009-02-02 23:46:53 +00001939 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Chris Lattnere563bbc2008-10-11 22:08:30 +00001940 DAG.getIntPtrConstant(0, true), SDValue());
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001941
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001942 Tmp1 = LegalizeOp(Tmp1);
1943 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001944 break;
1945 }
1946 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001947 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001948 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001949 Tmp1 = LegalizeOp(Tmp3);
1950 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001951 }
Chris Lattner903d2782006-01-15 08:54:32 +00001952 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001953 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001954 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001955 }
Chris Lattner903d2782006-01-15 08:54:32 +00001956 // Since this op produce two values, make sure to remember that we
1957 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001958 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1959 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001960 return Op.getResNo() ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001961 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001962 case ISD::INLINEASM: {
Dan Gohman475871a2008-07-27 21:46:04 +00001963 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001964 bool Changed = false;
1965 // Legalize all of the operands of the inline asm, in case they are nodes
1966 // that need to be expanded or something. Note we skip the asm string and
1967 // all of the TargetConstant flags.
Dan Gohman475871a2008-07-27 21:46:04 +00001968 SDValue Op = LegalizeOp(Ops[0]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001969 Changed = Op != Ops[0];
1970 Ops[0] = Op;
1971
1972 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1973 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001974 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getZExtValue() >> 3;
Chris Lattner25a022c2006-07-11 01:40:09 +00001975 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman475871a2008-07-27 21:46:04 +00001976 SDValue Op = LegalizeOp(Ops[i]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001977 if (Op != Ops[i]) {
1978 Changed = true;
1979 Ops[i] = Op;
1980 }
1981 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001982 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001983
1984 if (HasInFlag) {
1985 Op = LegalizeOp(Ops.back());
1986 Changed |= Op != Ops.back();
1987 Ops.back() = Op;
1988 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001989
Chris Lattner25a022c2006-07-11 01:40:09 +00001990 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001991 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001992
Chris Lattnerce7518c2006-01-26 22:24:51 +00001993 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman475871a2008-07-27 21:46:04 +00001994 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1995 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001996 return Result.getValue(Op.getResNo());
Chris Lattner25a022c2006-07-11 01:40:09 +00001997 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001998 case ISD::BR:
1999 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002000 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002001 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002002 Tmp1 = LegalizeOp(Tmp1);
2003 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00002004
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002005 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00002006 break;
Nate Begeman37efe672006-04-22 18:53:45 +00002007 case ISD::BRIND:
2008 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2009 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002010 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Nate Begeman37efe672006-04-22 18:53:45 +00002011 Tmp1 = LegalizeOp(Tmp1);
2012 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00002013
Nate Begeman37efe672006-04-22 18:53:45 +00002014 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2015 default: assert(0 && "Indirect target must be legal type (pointer)!");
2016 case Legal:
2017 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2018 break;
2019 }
2020 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2021 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00002022 case ISD::BR_JT:
2023 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2024 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002025 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002026 Tmp1 = LegalizeOp(Tmp1);
2027 LastCALLSEQ_END = DAG.getEntryNode();
2028
2029 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
2030 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2031
Scott Michelfdc40a02009-02-17 22:15:04 +00002032 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00002033 default: assert(0 && "This action is not supported yet!");
2034 case TargetLowering::Legal: break;
2035 case TargetLowering::Custom:
2036 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002037 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng3d4ce112006-10-30 08:00:44 +00002038 break;
2039 case TargetLowering::Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002040 SDValue Chain = Result.getOperand(0);
2041 SDValue Table = Result.getOperand(1);
2042 SDValue Index = Result.getOperand(2);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002043
Duncan Sands83ec4b62008-06-06 12:08:01 +00002044 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002045 MachineFunction &MF = DAG.getMachineFunction();
2046 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Scott Michelfdc40a02009-02-17 22:15:04 +00002047 Index= DAG.getNode(ISD::MUL, dl, PTy,
Dale Johannesenca57b842009-02-02 23:46:53 +00002048 Index, DAG.getConstant(EntrySize, PTy));
2049 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002050
Duncan Sands712f7b32008-12-12 08:13:38 +00002051 MVT MemVT = MVT::getIntegerVT(EntrySize * 8);
Dale Johannesenca57b842009-02-02 23:46:53 +00002052 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Duncan Sands712f7b32008-12-12 08:13:38 +00002053 PseudoSourceValue::getJumpTable(), 0, MemVT);
Evan Chengcc415862007-11-09 01:32:10 +00002054 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002055 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00002056 // For PIC, the sequence is:
2057 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00002058 // RelocBase can be JumpTable, GOT or some sort of global base.
Dale Johannesenca57b842009-02-02 23:46:53 +00002059 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
Evan Chengcc415862007-11-09 01:32:10 +00002060 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00002061 }
Dale Johannesenca57b842009-02-02 23:46:53 +00002062 Result = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002063 }
2064 }
2065 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002066 case ISD::BRCOND:
2067 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002068 // Ensure that libcalls are emitted before a return.
Dale Johannesenca57b842009-02-02 23:46:53 +00002069 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002070 Tmp1 = LegalizeOp(Tmp1);
2071 LastCALLSEQ_END = DAG.getEntryNode();
2072
Chris Lattner47e92232005-01-18 19:27:06 +00002073 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2074 case Expand: assert(0 && "It's impossible to expand bools");
2075 case Legal:
2076 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2077 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002078 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002079 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Scott Michelfdc40a02009-02-17 22:15:04 +00002080
Chris Lattnerf9908172006-11-27 04:39:56 +00002081 // The top bits of the promoted condition are not necessarily zero, ensure
2082 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002083 unsigned BitWidth = Tmp2.getValueSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002084 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002085 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenca57b842009-02-02 23:46:53 +00002086 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002087 break;
2088 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002089 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002090
2091 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002092 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00002093
2094 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
Nate Begeman7cbd5252005-08-16 19:49:35 +00002095 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002096 case TargetLowering::Legal: break;
2097 case TargetLowering::Custom:
2098 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002099 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002100 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002101 case TargetLowering::Expand:
2102 // Expand brcond's setcc into its constituent parts and create a BR_CC
2103 // Node.
2104 if (Tmp2.getOpcode() == ISD::SETCC) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002105 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00002106 Tmp1, Tmp2.getOperand(2),
Nate Begeman7cbd5252005-08-16 19:49:35 +00002107 Tmp2.getOperand(0), Tmp2.getOperand(1),
2108 Node->getOperand(2));
2109 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00002110 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Nate Begeman7cbd5252005-08-16 19:49:35 +00002111 DAG.getCondCode(ISD::SETNE), Tmp2,
2112 DAG.getConstant(0, Tmp2.getValueType()),
2113 Node->getOperand(2));
2114 }
2115 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002116 }
2117 break;
2118 case ISD::BR_CC:
2119 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002120 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002121 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002122 Tmp1 = LegalizeOp(Tmp1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002123 Tmp2 = Node->getOperand(2); // LHS
Nate Begeman750ac1b2006-02-01 07:19:44 +00002124 Tmp3 = Node->getOperand(3); // RHS
2125 Tmp4 = Node->getOperand(1); // CC
2126
Scott Michelfdc40a02009-02-17 22:15:04 +00002127 LegalizeSetCC(TLI.getSetCCResultType(Tmp2.getValueType()),
Dale Johannesenbb5da912009-02-02 20:41:04 +00002128 Tmp2, Tmp3, Tmp4, dl);
Evan Cheng722cb362006-12-18 22:55:34 +00002129 LastCALLSEQ_END = DAG.getEntryNode();
2130
Evan Cheng7f042682008-10-15 02:05:31 +00002131 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002132 // the LHS is a legal SETCC itself. In this case, we need to compare
2133 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00002134 if (Tmp3.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002135 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
2136 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00002137 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002138
2139 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002140 Node->getOperand(4));
Scott Michelfdc40a02009-02-17 22:15:04 +00002141
Chris Lattner181b7a32005-12-17 23:46:46 +00002142 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
2143 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002144 case TargetLowering::Legal: break;
2145 case TargetLowering::Custom:
2146 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002147 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00002148 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002149 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002150 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002151 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00002152 LoadSDNode *LD = cast<LoadSDNode>(Node);
2153 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
2154 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002155
Evan Cheng466685d2006-10-09 20:57:25 +00002156 ISD::LoadExtType ExtType = LD->getExtensionType();
2157 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002158 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00002159 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2160 Tmp3 = Result.getValue(0);
2161 Tmp4 = Result.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002162
Evan Cheng466685d2006-10-09 20:57:25 +00002163 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
2164 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002165 case TargetLowering::Legal:
2166 // If this is an unaligned load and the target doesn't support it,
2167 // expand it.
2168 if (!TLI.allowsUnalignedMemoryAccesses()) {
2169 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002170 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002171 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002172 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002173 TLI);
2174 Tmp3 = Result.getOperand(0);
2175 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00002176 Tmp3 = LegalizeOp(Tmp3);
2177 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002178 }
2179 }
2180 break;
Evan Cheng466685d2006-10-09 20:57:25 +00002181 case TargetLowering::Custom:
2182 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002183 if (Tmp1.getNode()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002184 Tmp3 = LegalizeOp(Tmp1);
2185 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00002186 }
Evan Cheng466685d2006-10-09 20:57:25 +00002187 break;
2188 case TargetLowering::Promote: {
2189 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002190 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00002191 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002192 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00002193
Dale Johannesenca57b842009-02-02 23:46:53 +00002194 Tmp1 = DAG.getLoad(NVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002195 LD->getSrcValueOffset(),
2196 LD->isVolatile(), LD->getAlignment());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00002197 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp1));
Evan Cheng466685d2006-10-09 20:57:25 +00002198 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002199 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00002200 }
Evan Cheng466685d2006-10-09 20:57:25 +00002201 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002202 // Since loads produce two values, make sure to remember that we
Evan Cheng466685d2006-10-09 20:57:25 +00002203 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002204 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
2205 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002206 return Op.getResNo() ? Tmp4 : Tmp3;
Evan Cheng466685d2006-10-09 20:57:25 +00002207 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002208 MVT SrcVT = LD->getMemoryVT();
2209 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002210 int SVOffset = LD->getSrcValueOffset();
2211 unsigned Alignment = LD->getAlignment();
2212 bool isVolatile = LD->isVolatile();
2213
Duncan Sands83ec4b62008-06-06 12:08:01 +00002214 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002215 // Some targets pretend to have an i1 loading operation, and actually
2216 // load an i8. This trick is correct for ZEXTLOAD because the top 7
2217 // bits are guaranteed to be zero; it helps the optimizers understand
2218 // that these bits are zero. It is also useful for EXTLOAD, since it
2219 // tells the optimizers that those bits are undefined. It would be
2220 // nice to have an effective generic way of getting these benefits...
2221 // Until such a way is found, don't insist on promoting i1 here.
2222 (SrcVT != MVT::i1 ||
Evan Cheng03294662008-10-14 21:26:46 +00002223 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002224 // Promote to a byte-sized load if not loading an integral number of
2225 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002226 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2227 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002228 SDValue Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002229
2230 // The extra bits are guaranteed to be zero, since we stored them that
2231 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2232
2233 ISD::LoadExtType NewExtType =
2234 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2235
Dale Johannesenca57b842009-02-02 23:46:53 +00002236 Result = DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002237 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2238 NVT, isVolatile, Alignment);
2239
2240 Ch = Result.getValue(1); // The chain.
2241
2242 if (ExtType == ISD::SEXTLOAD)
2243 // Having the top bits zero doesn't help when sign extending.
Scott Michelfdc40a02009-02-17 22:15:04 +00002244 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002245 Result.getValueType(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002246 Result, DAG.getValueType(SrcVT));
2247 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2248 // All the top bits are guaranteed to be zero - inform the optimizers.
Scott Michelfdc40a02009-02-17 22:15:04 +00002249 Result = DAG.getNode(ISD::AssertZext, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002250 Result.getValueType(), Result,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002251 DAG.getValueType(SrcVT));
2252
2253 Tmp1 = LegalizeOp(Result);
2254 Tmp2 = LegalizeOp(Ch);
2255 } else if (SrcWidth & (SrcWidth - 1)) {
2256 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002257 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002258 "Unsupported extload!");
2259 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2260 assert(RoundWidth < SrcWidth);
2261 unsigned ExtraWidth = SrcWidth - RoundWidth;
2262 assert(ExtraWidth < RoundWidth);
2263 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2264 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002265 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2266 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002267 SDValue Lo, Hi, Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002268 unsigned IncrementSize;
2269
2270 if (TLI.isLittleEndian()) {
2271 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2272 // Load the bottom RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002273 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
2274 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002275 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2276 Alignment);
2277
2278 // Load the remaining ExtraWidth bits.
2279 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002280 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002281 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002282 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002283 LD->getSrcValue(), SVOffset + IncrementSize,
2284 ExtraVT, isVolatile,
2285 MinAlign(Alignment, IncrementSize));
2286
2287 // Build a factor node to remember that this load is independent of the
2288 // other one.
Dale Johannesenca57b842009-02-02 23:46:53 +00002289 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002290 Hi.getValue(1));
2291
2292 // Move the top bits to the right place.
Dale Johannesenca57b842009-02-02 23:46:53 +00002293 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002294 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2295
2296 // Join the hi and lo parts.
Dale Johannesenca57b842009-02-02 23:46:53 +00002297 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002298 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002299 // Big endian - avoid unaligned loads.
2300 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2301 // Load the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002302 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002303 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2304 Alignment);
2305
2306 // Load the remaining ExtraWidth bits.
2307 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002308 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002309 DAG.getIntPtrConstant(IncrementSize));
Scott Michelfdc40a02009-02-17 22:15:04 +00002310 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002311 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002312 LD->getSrcValue(), SVOffset + IncrementSize,
2313 ExtraVT, isVolatile,
2314 MinAlign(Alignment, IncrementSize));
2315
2316 // Build a factor node to remember that this load is independent of the
2317 // other one.
Dale Johannesenca57b842009-02-02 23:46:53 +00002318 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002319 Hi.getValue(1));
2320
2321 // Move the top bits to the right place.
Dale Johannesenca57b842009-02-02 23:46:53 +00002322 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002323 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2324
2325 // Join the hi and lo parts.
Dale Johannesenca57b842009-02-02 23:46:53 +00002326 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002327 }
2328
2329 Tmp1 = LegalizeOp(Result);
2330 Tmp2 = LegalizeOp(Ch);
2331 } else {
Evan Cheng03294662008-10-14 21:26:46 +00002332 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002333 default: assert(0 && "This action is not supported yet!");
2334 case TargetLowering::Custom:
2335 isCustom = true;
2336 // FALLTHROUGH
2337 case TargetLowering::Legal:
2338 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2339 Tmp1 = Result.getValue(0);
2340 Tmp2 = Result.getValue(1);
2341
2342 if (isCustom) {
2343 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002344 if (Tmp3.getNode()) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002345 Tmp1 = LegalizeOp(Tmp3);
2346 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2347 }
2348 } else {
2349 // If this is an unaligned load and the target doesn't support it,
2350 // expand it.
2351 if (!TLI.allowsUnalignedMemoryAccesses()) {
2352 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002353 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002354 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002355 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002356 TLI);
2357 Tmp1 = Result.getOperand(0);
2358 Tmp2 = Result.getOperand(1);
2359 Tmp1 = LegalizeOp(Tmp1);
2360 Tmp2 = LegalizeOp(Tmp2);
2361 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002362 }
2363 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002364 break;
2365 case TargetLowering::Expand:
2366 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2367 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dale Johannesenca57b842009-02-02 23:46:53 +00002368 SDValue Load = DAG.getLoad(SrcVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002369 LD->getSrcValueOffset(),
2370 LD->isVolatile(), LD->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00002371 Result = DAG.getNode(ISD::FP_EXTEND, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002372 Node->getValueType(0), Load);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002373 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2374 Tmp2 = LegalizeOp(Load.getValue(1));
2375 break;
2376 }
2377 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2378 // Turn the unsupported load into an EXTLOAD followed by an explicit
2379 // zero/sign extend inreg.
Dale Johannesenca57b842009-02-02 23:46:53 +00002380 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002381 Tmp1, Tmp2, LD->getSrcValue(),
2382 LD->getSrcValueOffset(), SrcVT,
2383 LD->isVolatile(), LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00002384 SDValue ValRes;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002385 if (ExtType == ISD::SEXTLOAD)
Dale Johannesenca57b842009-02-02 23:46:53 +00002386 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
2387 Result.getValueType(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002388 Result, DAG.getValueType(SrcVT));
2389 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002390 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002391 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2392 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002393 break;
2394 }
Evan Cheng466685d2006-10-09 20:57:25 +00002395 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002396
Evan Cheng466685d2006-10-09 20:57:25 +00002397 // Since loads produce two values, make sure to remember that we legalized
2398 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002399 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2400 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002401 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002402 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002403 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002404 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002405 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002406 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002407 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002408 case Legal:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002409 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Nate Begeman5dc897b2005-10-19 00:06:56 +00002410 // 1 -> Hi
Dale Johannesenca57b842009-02-02 23:46:53 +00002411 Result = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002412 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002413 TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002414 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Result);
Nate Begeman5dc897b2005-10-19 00:06:56 +00002415 } else {
2416 // 0 -> Lo
Scott Michelfdc40a02009-02-17 22:15:04 +00002417 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
Nate Begeman5dc897b2005-10-19 00:06:56 +00002418 Node->getOperand(0));
2419 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002420 break;
2421 case Expand:
2422 // Get both the low and high parts.
2423 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002424 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Nate Begeman5dc897b2005-10-19 00:06:56 +00002425 Result = Tmp2; // 1 -> Hi
2426 else
2427 Result = Tmp1; // 0 -> Lo
2428 break;
2429 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002430 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002431 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002432
2433 case ISD::CopyToReg:
2434 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002435
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002436 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002437 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002438 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002439 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002440 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002441 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002442 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002443 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002444 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002445 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002446 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2447 Tmp3);
2448 } else {
2449 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002450 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002451
Chris Lattner7310fb12005-12-18 15:27:43 +00002452 // Since this produces two values, make sure to remember that we legalized
2453 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002454 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2455 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002456 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002457 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002458 break;
2459
2460 case ISD::RET:
2461 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002462
2463 // Ensure that libcalls are emitted before a return.
Dale Johannesenca57b842009-02-02 23:46:53 +00002464 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002465 Tmp1 = LegalizeOp(Tmp1);
2466 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00002467
Chris Lattner3e928bb2005-01-07 07:47:09 +00002468 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002469 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002470 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002471 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002472 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002473 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002474 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002475 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002476 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002477 if (!Tmp2.getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002478 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002479 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002480
2481 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002482 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002483 std::swap(Lo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00002484
Gabor Greifba36cb52008-08-28 21:40:38 +00002485 if (Hi.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00002486 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00002487 Tmp1, Lo, Tmp3, Hi,Tmp3);
Evan Cheng13acce32006-12-11 19:27:14 +00002488 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002489 Result = DAG.getNode(ISD::RET, dl, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002490 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002491 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00002492 SDNode *InVal = Tmp2.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002493 int InIx = Tmp2.getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002494 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2495 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00002496
Dan Gohman7f321562007-06-25 16:23:39 +00002497 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002498 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002499 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002500 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002501 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002502 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002503 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002504 } else if (NumElems == 1) {
2505 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002506 Tmp2 = ScalarizeVectorOp(Tmp2);
2507 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002508 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00002509
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002510 // FIXME: Returns of gcc generic vectors smaller than a legal type
2511 // should be returned in integer registers!
Scott Michelfdc40a02009-02-17 22:15:04 +00002512
Chris Lattnerf87324e2006-04-11 01:31:51 +00002513 // The scalarized value type may not be legal, e.g. it might require
2514 // promotion or expansion. Relegalize the return.
2515 Result = LegalizeOp(Result);
2516 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002517 // FIXME: Returns of gcc generic vectors larger than a legal vector
2518 // type should be returned by reference!
Dan Gohman475871a2008-07-27 21:46:04 +00002519 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002520 SplitVectorOp(Tmp2, Lo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00002521 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00002522 Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002523 Result = LegalizeOp(Result);
2524 }
2525 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002526 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002527 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002528 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002529 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002530 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002531 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002532 }
2533 break;
2534 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002535 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002536 break;
2537 default: { // ret <values>
Dan Gohman475871a2008-07-27 21:46:04 +00002538 SmallVector<SDValue, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002539 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002540 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002541 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2542 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002543 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002544 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002545 break;
2546 case Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002547 SDValue Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002548 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002549 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002550 ExpandOp(Node->getOperand(i), Lo, Hi);
2551 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002552 NewValues.push_back(Node->getOperand(i+1));
Gabor Greifba36cb52008-08-28 21:40:38 +00002553 if (Hi.getNode()) {
Evan Cheng13acce32006-12-11 19:27:14 +00002554 NewValues.push_back(Hi);
2555 NewValues.push_back(Node->getOperand(i+1));
2556 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002557 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002558 }
2559 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002560 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002561 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002562
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002563 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002564 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002565 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002566 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002567 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002568 break;
2569 }
2570 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002571
Chris Lattner6862dbc2006-01-29 21:02:23 +00002572 if (Result.getOpcode() == ISD::RET) {
2573 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2574 default: assert(0 && "This action is not supported yet!");
2575 case TargetLowering::Legal: break;
2576 case TargetLowering::Custom:
2577 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002578 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner6862dbc2006-01-29 21:02:23 +00002579 break;
2580 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002581 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002582 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002583 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002584 StoreSDNode *ST = cast<StoreSDNode>(Node);
2585 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2586 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002587 int SVOffset = ST->getSrcValueOffset();
2588 unsigned Alignment = ST->getAlignment();
2589 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002590
Evan Cheng8b2794a2006-10-13 21:14:26 +00002591 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002592 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2593 // FIXME: We shouldn't do this for TargetConstantFP's.
2594 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2595 // to phase ordering between legalized code and the dag combiner. This
2596 // probably means that we need to integrate dag combiner and legalizer
2597 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002598 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002599 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002600 if (CFP->getValueType(0) == MVT::f32 &&
Chris Lattner3cb93512007-10-15 05:46:06 +00002601 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002602 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen7111b022008-10-09 18:53:47 +00002603 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002604 MVT::i32);
Dale Johannesenca57b842009-02-02 23:46:53 +00002605 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002606 SVOffset, isVolatile, Alignment);
2607 break;
2608 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002609 // If this target supports 64-bit registers, do a single 64-bit store.
2610 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen7111b022008-10-09 18:53:47 +00002611 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002612 zextOrTrunc(64), MVT::i64);
Dale Johannesenca57b842009-02-02 23:46:53 +00002613 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner3cb93512007-10-15 05:46:06 +00002614 SVOffset, isVolatile, Alignment);
2615 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002616 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002617 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2618 // stores. If the target supports neither 32- nor 64-bits, this
2619 // xform is certainly not worth it.
Dale Johannesen7111b022008-10-09 18:53:47 +00002620 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman475871a2008-07-27 21:46:04 +00002621 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2622 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002623 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002624
Dale Johannesenca57b842009-02-02 23:46:53 +00002625 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Chris Lattner3cb93512007-10-15 05:46:06 +00002626 SVOffset, isVolatile, Alignment);
Dale Johannesenca57b842009-02-02 23:46:53 +00002627 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002628 DAG.getIntPtrConstant(4));
Dale Johannesenca57b842009-02-02 23:46:53 +00002629 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002630 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002631
Dale Johannesenca57b842009-02-02 23:46:53 +00002632 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002633 break;
2634 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002635 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002636 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002637
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002638 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002639 case Legal: {
2640 Tmp3 = LegalizeOp(ST->getValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00002641 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002642 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002643
Duncan Sands83ec4b62008-06-06 12:08:01 +00002644 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002645 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2646 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002647 case TargetLowering::Legal:
2648 // If this is an unaligned store and the target doesn't support it,
2649 // expand it.
2650 if (!TLI.allowsUnalignedMemoryAccesses()) {
2651 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002652 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002653 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002654 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002655 TLI);
2656 }
2657 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002658 case TargetLowering::Custom:
2659 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002660 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002661 break;
2662 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002663 assert(VT.isVector() && "Unknown legal promote case!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002664 Tmp3 = DAG.getNode(ISD::BIT_CONVERT, dl,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002665 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
Dale Johannesenca57b842009-02-02 23:46:53 +00002666 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002667 ST->getSrcValue(), SVOffset, isVolatile,
2668 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002669 break;
2670 }
2671 break;
2672 }
2673 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002674 if (!ST->getMemoryVT().isVector()) {
2675 // Truncate the value and store the result.
2676 Tmp3 = PromoteOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002677 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Mon P Wang0c397192008-10-30 08:01:45 +00002678 SVOffset, ST->getMemoryVT(),
2679 isVolatile, Alignment);
2680 break;
2681 }
2682 // Fall thru to expand for vector
2683 case Expand: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002684 unsigned IncrementSize = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002685 SDValue Lo, Hi;
Scott Michelfdc40a02009-02-17 22:15:04 +00002686
Evan Cheng8b2794a2006-10-13 21:14:26 +00002687 // If this is a vector type, then we have to calculate the increment as
2688 // the product of the element size in bytes, and the number of elements
2689 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002690 if (ST->getValue().getValueType().isVector()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002691 SDNode *InVal = ST->getValue().getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002692 int InIx = ST->getValue().getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002693 MVT InVT = InVal->getValueType(InIx);
2694 unsigned NumElems = InVT.getVectorNumElements();
2695 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002696
Dan Gohman7f321562007-06-25 16:23:39 +00002697 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002698 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002699 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002700 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002701 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002702 Tmp3 = LegalizeOp(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 Result = LegalizeOp(Result);
2706 break;
2707 } else if (NumElems == 1) {
2708 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002709 Tmp3 = ScalarizeVectorOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002710 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002711 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002712 // The scalarized value type may not be legal, e.g. it might require
2713 // promotion or expansion. Relegalize the scalar store.
2714 Result = LegalizeOp(Result);
2715 break;
2716 } else {
Mon P Wang0c397192008-10-30 08:01:45 +00002717 // Check if we have widen this node with another value
2718 std::map<SDValue, SDValue>::iterator I =
2719 WidenNodes.find(ST->getValue());
2720 if (I != WidenNodes.end()) {
2721 Result = StoreWidenVectorOp(ST, Tmp1, Tmp2);
2722 break;
2723 }
2724 else {
2725 SplitVectorOp(ST->getValue(), Lo, Hi);
2726 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
2727 EVT.getSizeInBits()/8;
2728 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002729 }
2730 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002731 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002732 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002733
Richard Pennington4b052dc2008-09-25 16:15:10 +00002734 if (Hi.getNode() && TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002735 std::swap(Lo, Hi);
2736 }
2737
Dale Johannesenca57b842009-02-02 23:46:53 +00002738 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002739 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002740
Gabor Greifba36cb52008-08-28 21:40:38 +00002741 if (Hi.getNode() == NULL) {
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002742 // Must be int <-> float one-to-one expansion.
2743 Result = Lo;
2744 break;
2745 }
2746
Dale Johannesenca57b842009-02-02 23:46:53 +00002747 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002748 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002749 assert(isTypeLegal(Tmp2.getValueType()) &&
2750 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002751 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002752 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenca57b842009-02-02 23:46:53 +00002753 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002754 SVOffset, isVolatile, Alignment);
Dale Johannesenca57b842009-02-02 23:46:53 +00002755 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002756 break;
Mon P Wang0c397192008-10-30 08:01:45 +00002757 } // case Expand
Evan Cheng8b2794a2006-10-13 21:14:26 +00002758 }
2759 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002760 switch (getTypeAction(ST->getValue().getValueType())) {
2761 case Legal:
2762 Tmp3 = LegalizeOp(ST->getValue());
2763 break;
2764 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002765 if (!ST->getValue().getValueType().isVector()) {
2766 // We can promote the value, the truncstore will still take care of it.
2767 Tmp3 = PromoteOp(ST->getValue());
2768 break;
2769 }
2770 // Vector case falls through to expand
Chris Lattnerddf89562008-01-17 19:59:44 +00002771 case Expand:
2772 // Just store the low part. This may become a non-trunc store, so make
2773 // sure to use getTruncStore, not UpdateNodeOperands below.
2774 ExpandOp(ST->getValue(), Tmp3, Tmp4);
Dale Johannesenca57b842009-02-02 23:46:53 +00002775 return DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattnerddf89562008-01-17 19:59:44 +00002776 SVOffset, MVT::i8, isVolatile, Alignment);
2777 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002778
Duncan Sands83ec4b62008-06-06 12:08:01 +00002779 MVT StVT = ST->getMemoryVT();
2780 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002781
Duncan Sands83ec4b62008-06-06 12:08:01 +00002782 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002783 // Promote to a byte-sized store with upper bits zero if not
2784 // storing an integral number of bytes. For example, promote
2785 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002786 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Dale Johannesenca57b842009-02-02 23:46:53 +00002787 Tmp3 = DAG.getZeroExtendInReg(Tmp3, dl, StVT);
2788 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002789 SVOffset, NVT, isVolatile, Alignment);
2790 } else if (StWidth & (StWidth - 1)) {
2791 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002792 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002793 "Unsupported truncstore!");
2794 unsigned RoundWidth = 1 << Log2_32(StWidth);
2795 assert(RoundWidth < StWidth);
2796 unsigned ExtraWidth = StWidth - RoundWidth;
2797 assert(ExtraWidth < RoundWidth);
2798 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2799 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002800 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2801 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002802 SDValue Lo, Hi;
Duncan Sands7e857202008-01-22 07:17:34 +00002803 unsigned IncrementSize;
2804
2805 if (TLI.isLittleEndian()) {
2806 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2807 // Store the bottom RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002808 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002809 SVOffset, RoundVT,
2810 isVolatile, Alignment);
2811
2812 // Store the remaining ExtraWidth bits.
2813 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002814 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00002815 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002816 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands7e857202008-01-22 07:17:34 +00002817 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002818 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002819 SVOffset + IncrementSize, ExtraVT, isVolatile,
2820 MinAlign(Alignment, IncrementSize));
2821 } else {
2822 // Big endian - avoid unaligned stores.
2823 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2824 // Store the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002825 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands7e857202008-01-22 07:17:34 +00002826 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002827 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
2828 SVOffset, RoundVT, isVolatile, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00002829
2830 // Store the remaining ExtraWidth bits.
2831 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002832 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00002833 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002834 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002835 SVOffset + IncrementSize, ExtraVT, isVolatile,
2836 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002837 }
Duncan Sands7e857202008-01-22 07:17:34 +00002838
2839 // The order of the stores doesn't matter.
Dale Johannesenca57b842009-02-02 23:46:53 +00002840 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Duncan Sands7e857202008-01-22 07:17:34 +00002841 } else {
2842 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2843 Tmp2 != ST->getBasePtr())
2844 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2845 ST->getOffset());
2846
2847 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2848 default: assert(0 && "This action is not supported yet!");
2849 case TargetLowering::Legal:
2850 // If this is an unaligned store and the target doesn't support it,
2851 // expand it.
2852 if (!TLI.allowsUnalignedMemoryAccesses()) {
2853 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002854 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002855 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002856 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands7e857202008-01-22 07:17:34 +00002857 TLI);
2858 }
2859 break;
2860 case TargetLowering::Custom:
2861 Result = TLI.LowerOperation(Result, DAG);
2862 break;
2863 case Expand:
2864 // TRUNCSTORE:i16 i32 -> STORE i16
2865 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
Dale Johannesenca57b842009-02-02 23:46:53 +00002866 Tmp3 = DAG.getNode(ISD::TRUNCATE, dl, StVT, Tmp3);
2867 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
2868 SVOffset, isVolatile, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00002869 break;
2870 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002871 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002872 }
2873 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002874 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002875 case ISD::PCMARKER:
2876 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002877 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002878 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002879 case ISD::STACKSAVE:
2880 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002881 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2882 Tmp1 = Result.getValue(0);
2883 Tmp2 = Result.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002884
Chris Lattner140d53c2006-01-13 02:50:02 +00002885 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2886 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002887 case TargetLowering::Legal: break;
2888 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002889 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002890 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002891 Tmp1 = LegalizeOp(Tmp3);
2892 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002893 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002894 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002895 case TargetLowering::Expand:
Scott Michelfdc40a02009-02-17 22:15:04 +00002896 // Expand to CopyFromReg if the target set
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002897 // StackPointerRegisterToSaveRestore.
2898 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00002899 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), dl, SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002900 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002901 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002902 } else {
Dale Johannesene8d72302009-02-06 23:05:02 +00002903 Tmp1 = DAG.getUNDEF(Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002904 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002905 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002906 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002907 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002908
2909 // Since stacksave produce two values, make sure to remember that we
2910 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002911 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2912 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002913 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002914
Chris Lattner140d53c2006-01-13 02:50:02 +00002915 case ISD::STACKRESTORE:
2916 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2917 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002918 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00002919
Chris Lattner140d53c2006-01-13 02:50:02 +00002920 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2921 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002922 case TargetLowering::Legal: break;
2923 case TargetLowering::Custom:
2924 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002925 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002926 break;
2927 case TargetLowering::Expand:
Scott Michelfdc40a02009-02-17 22:15:04 +00002928 // Expand to CopyToReg if the target set
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002929 // StackPointerRegisterToSaveRestore.
2930 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00002931 Result = DAG.getCopyToReg(Tmp1, dl, SP, Tmp2);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002932 } else {
2933 Result = Tmp1;
2934 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002935 break;
2936 }
2937 break;
2938
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002939 case ISD::READCYCLECOUNTER:
2940 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002941 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002942 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2943 Node->getValueType(0))) {
2944 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002945 case TargetLowering::Legal:
2946 Tmp1 = Result.getValue(0);
2947 Tmp2 = Result.getValue(1);
2948 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002949 case TargetLowering::Custom:
2950 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002951 Tmp1 = LegalizeOp(Result.getValue(0));
2952 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002953 break;
2954 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002955
2956 // Since rdcc produce two values, make sure to remember that we legalized
2957 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002958 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2959 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002960 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002961
Chris Lattner2ee743f2005-01-14 22:08:15 +00002962 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002963 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2964 case Expand: assert(0 && "It's impossible to expand bools");
2965 case Legal:
2966 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2967 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002968 case Promote: {
Mon P Wang0c397192008-10-30 08:01:45 +00002969 assert(!Node->getOperand(0).getValueType().isVector() && "not possible");
Chris Lattner47e92232005-01-18 19:27:06 +00002970 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002971 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002972 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002973 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002974 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenca57b842009-02-02 23:46:53 +00002975 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002976 break;
2977 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002978 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002979 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002980 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002981
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002982 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00002983
Nate Begemanb942a3d2005-08-23 04:29:48 +00002984 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002985 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002986 case TargetLowering::Legal: break;
2987 case TargetLowering::Custom: {
2988 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002989 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002990 break;
2991 }
Nate Begeman9373a812005-08-10 20:51:12 +00002992 case TargetLowering::Expand:
2993 if (Tmp1.getOpcode() == ISD::SETCC) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002994 Result = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
Nate Begeman9373a812005-08-10 20:51:12 +00002995 Tmp2, Tmp3,
2996 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2997 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00002998 Result = DAG.getSelectCC(dl, Tmp1,
Nate Begeman9373a812005-08-10 20:51:12 +00002999 DAG.getConstant(0, Tmp1.getValueType()),
3000 Tmp2, Tmp3, ISD::SETNE);
3001 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003002 break;
3003 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003004 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003005 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
3006 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003007 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00003008 ExtOp = ISD::BIT_CONVERT;
3009 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003010 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003011 ExtOp = ISD::ANY_EXTEND;
3012 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003013 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00003014 ExtOp = ISD::FP_EXTEND;
3015 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003016 }
3017 // Promote each of the values to the new type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003018 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Tmp2);
3019 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Tmp3);
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003020 // Perform the larger operation, then round down.
Dale Johannesenca57b842009-02-02 23:46:53 +00003021 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00003022 if (TruncOp != ISD::FP_ROUND)
Dale Johannesenca57b842009-02-02 23:46:53 +00003023 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003024 else
Dale Johannesenca57b842009-02-02 23:46:53 +00003025 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00003026 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003027 break;
3028 }
3029 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003030 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00003031 case ISD::SELECT_CC: {
3032 Tmp1 = Node->getOperand(0); // LHS
3033 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00003034 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
3035 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman475871a2008-07-27 21:46:04 +00003036 SDValue CC = Node->getOperand(4);
Scott Michelfdc40a02009-02-17 22:15:04 +00003037
3038 LegalizeSetCC(TLI.getSetCCResultType(Tmp1.getValueType()),
Dale Johannesenbb5da912009-02-02 20:41:04 +00003039 Tmp1, Tmp2, CC, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003040
Evan Cheng7f042682008-10-15 02:05:31 +00003041 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00003042 // the LHS is a legal SETCC itself. In this case, we need to compare
3043 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00003044 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003045 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3046 CC = DAG.getCondCode(ISD::SETNE);
3047 }
3048 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
3049
3050 // Everything is legal, see if we should expand this op or something.
3051 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
3052 default: assert(0 && "This action is not supported yet!");
3053 case TargetLowering::Legal: break;
3054 case TargetLowering::Custom:
3055 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003056 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00003057 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003058 }
3059 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00003060 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003061 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00003062 Tmp1 = Node->getOperand(0);
3063 Tmp2 = Node->getOperand(1);
3064 Tmp3 = Node->getOperand(2);
Dale Johannesenbb5da912009-02-02 20:41:04 +00003065 LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003066
3067 // If we had to Expand the SetCC operands into a SELECT node, then it may
3068 // not always be possible to return a true LHS & RHS. In this case, just
Nate Begeman750ac1b2006-02-01 07:19:44 +00003069 // return the value we legalized, returned in the LHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003070 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003071 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003072 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003073 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003074
Chris Lattner73e142f2006-01-30 22:43:50 +00003075 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003076 default: assert(0 && "Cannot handle this action for SETCC yet!");
3077 case TargetLowering::Custom:
3078 isCustom = true;
3079 // FALLTHROUGH.
3080 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00003081 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00003082 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00003083 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003084 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00003085 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003086 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003087 case TargetLowering::Promote: {
3088 // First step, figure out the appropriate operation to use.
3089 // Allow SETCC to not be supported for all legal data types
3090 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00003091 MVT NewInTy = Node->getOperand(0).getValueType();
3092 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00003093
3094 // Scan for the appropriate larger type to use.
3095 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003096 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00003097
Duncan Sands83ec4b62008-06-06 12:08:01 +00003098 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003099 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003100 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003101 "Fell off of the edge of the floating point world");
Scott Michelfdc40a02009-02-17 22:15:04 +00003102
Andrew Lenharthae355752005-11-30 17:12:26 +00003103 // If the target supports SETCC of this type, use it.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003104 if (TLI.isOperationLegalOrCustom(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00003105 break;
3106 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00003107 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00003108 assert(0 && "Cannot promote Legal Integer SETCC yet");
3109 else {
Dale Johannesenca57b842009-02-02 23:46:53 +00003110 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp1);
3111 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp2);
Andrew Lenharthae355752005-11-30 17:12:26 +00003112 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003113 Tmp1 = LegalizeOp(Tmp1);
3114 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00003115 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00003116 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00003117 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003118 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003119 case TargetLowering::Expand:
3120 // Expand a setcc node into a select_cc of the same condition, lhs, and
3121 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003122 MVT VT = Node->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003123 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Nate Begemanb942a3d2005-08-23 04:29:48 +00003124 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00003125 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00003126 break;
3127 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003128 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003129 case ISD::VSETCC: {
3130 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3131 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman475871a2008-07-27 21:46:04 +00003132 SDValue CC = Node->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00003133
Nate Begemanb43e9c12008-05-12 19:40:03 +00003134 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
3135
3136 // Everything is legal, see if we should expand this op or something.
3137 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
3138 default: assert(0 && "This action is not supported yet!");
3139 case TargetLowering::Legal: break;
3140 case TargetLowering::Custom:
3141 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003142 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003143 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003144 case TargetLowering::Expand: {
3145 // Unroll into a nasty set of scalar code for now.
3146 MVT VT = Node->getValueType(0);
3147 unsigned NumElems = VT.getVectorNumElements();
3148 MVT EltVT = VT.getVectorElementType();
3149 MVT TmpEltVT = Tmp1.getValueType().getVectorElementType();
3150 SmallVector<SDValue, 8> Ops(NumElems);
3151 for (unsigned i = 0; i < NumElems; ++i) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003152 SDValue In1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT,
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003153 Tmp1, DAG.getIntPtrConstant(i));
Dale Johannesenca57b842009-02-02 23:46:53 +00003154 Ops[i] = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(TmpEltVT),
3155 In1, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3156 TmpEltVT, Tmp2,
3157 DAG.getIntPtrConstant(i)),
Mon P Wang84aff842008-12-17 08:49:47 +00003158 CC);
Dale Johannesenca57b842009-02-02 23:46:53 +00003159 Ops[i] = DAG.getNode(ISD::SELECT, dl, EltVT, Ops[i], DAG.getConstant(
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003160 APInt::getAllOnesValue(EltVT.getSizeInBits()),
3161 EltVT), DAG.getConstant(0, EltVT));
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003162 }
Scott Michel4214a552009-02-22 23:36:09 +00003163 Result = DAG.getBUILD_VECTOR(VT, dl, &Ops[0], NumElems);
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003164 break;
3165 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00003166 }
3167 break;
3168 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00003169
Chris Lattner5b359c62005-04-02 04:00:59 +00003170 case ISD::SHL_PARTS:
3171 case ISD::SRA_PARTS:
3172 case ISD::SRL_PARTS: {
Dan Gohman475871a2008-07-27 21:46:04 +00003173 SmallVector<SDValue, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00003174 bool Changed = false;
Duncan Sands92abc622009-01-31 15:50:11 +00003175 unsigned N = Node->getNumOperands();
3176 for (unsigned i = 0; i + 1 < N; ++i) {
Chris Lattner84f67882005-01-20 18:52:28 +00003177 Ops.push_back(LegalizeOp(Node->getOperand(i)));
3178 Changed |= Ops.back() != Node->getOperand(i);
3179 }
Duncan Sands92abc622009-01-31 15:50:11 +00003180 Ops.push_back(LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(N-1))));
3181 Changed |= Ops.back() != Node->getOperand(N-1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003182 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003183 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00003184
Evan Cheng05a2d562006-01-09 18:31:59 +00003185 switch (TLI.getOperationAction(Node->getOpcode(),
3186 Node->getValueType(0))) {
3187 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003188 case TargetLowering::Legal: break;
3189 case TargetLowering::Custom:
3190 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003191 if (Tmp1.getNode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003192 SDValue Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00003193 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003194 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman475871a2008-07-27 21:46:04 +00003195 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003196 if (i == Op.getResNo())
Evan Cheng12f22742006-01-19 04:54:52 +00003197 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00003198 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003199 assert(RetVal.getNode() && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00003200 return RetVal;
3201 }
Evan Cheng05a2d562006-01-09 18:31:59 +00003202 break;
3203 }
3204
Chris Lattner2c8086f2005-04-02 05:00:07 +00003205 // Since these produce multiple values, make sure to remember that we
3206 // legalized all of them.
3207 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00003208 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00003209 return Result.getValue(Op.getResNo());
Chris Lattner84f67882005-01-20 18:52:28 +00003210 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003211
3212 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00003213 case ISD::ADD:
3214 case ISD::SUB:
3215 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00003216 case ISD::MULHS:
3217 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003218 case ISD::UDIV:
3219 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003220 case ISD::AND:
3221 case ISD::OR:
3222 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00003223 case ISD::SHL:
3224 case ISD::SRL:
3225 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00003226 case ISD::FADD:
3227 case ISD::FSUB:
3228 case ISD::FMUL:
3229 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00003230 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003231 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003232 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003233
3234 if ((Node->getOpcode() == ISD::SHL ||
3235 Node->getOpcode() == ISD::SRL ||
3236 Node->getOpcode() == ISD::SRA) &&
Duncan Sands92abc622009-01-31 15:50:11 +00003237 !Node->getValueType(0).isVector())
3238 Tmp2 = DAG.getShiftAmountOperand(Tmp2);
3239
3240 switch (getTypeAction(Tmp2.getValueType())) {
3241 case Expand: assert(0 && "Not possible");
3242 case Legal:
3243 Tmp2 = LegalizeOp(Tmp2); // Legalize the RHS.
3244 break;
3245 case Promote:
3246 Tmp2 = PromoteOp(Tmp2); // Promote the RHS.
3247 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003248 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003249
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003250 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Mon P Wangaeb06d22008-11-10 04:46:22 +00003251
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003252 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003253 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00003254 case TargetLowering::Legal: break;
3255 case TargetLowering::Custom:
3256 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003257 if (Tmp1.getNode()) {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003258 Result = Tmp1;
3259 break;
Nate Begeman24dc3462008-07-29 19:07:27 +00003260 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003261 // Fall through if the custom lower can't deal with the operation
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003262 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003263 MVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003264
Dan Gohman525178c2007-10-08 18:33:35 +00003265 // See if multiply or divide can be lowered using two-result operations.
3266 SDVTList VTs = DAG.getVTList(VT, VT);
3267 if (Node->getOpcode() == ISD::MUL) {
3268 // We just need the low half of the multiply; try both the signed
3269 // and unsigned forms. If the target supports both SMUL_LOHI and
3270 // UMUL_LOHI, form a preference by checking which forms of plain
3271 // MULH it supports.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003272 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3273 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3274 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3275 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
Dan Gohman525178c2007-10-08 18:33:35 +00003276 unsigned OpToUse = 0;
3277 if (HasSMUL_LOHI && !HasMULHS) {
3278 OpToUse = ISD::SMUL_LOHI;
3279 } else if (HasUMUL_LOHI && !HasMULHU) {
3280 OpToUse = ISD::UMUL_LOHI;
3281 } else if (HasSMUL_LOHI) {
3282 OpToUse = ISD::SMUL_LOHI;
3283 } else if (HasUMUL_LOHI) {
3284 OpToUse = ISD::UMUL_LOHI;
3285 }
3286 if (OpToUse) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003287 Result = SDValue(DAG.getNode(OpToUse, dl, VTs, Tmp1, Tmp2).getNode(),
3288 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003289 break;
3290 }
3291 }
3292 if (Node->getOpcode() == ISD::MULHS &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003293 TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003294 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003295 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003296 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003297 break;
3298 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003299 if (Node->getOpcode() == ISD::MULHU &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003300 TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003301 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, dl,
3302 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003303 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003304 break;
3305 }
3306 if (Node->getOpcode() == ISD::SDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003307 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003308 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003309 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003310 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003311 break;
3312 }
3313 if (Node->getOpcode() == ISD::UDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003314 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003315 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3316 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003317 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003318 break;
3319 }
Mon P Wang87c8a8f2008-12-18 20:03:17 +00003320
Dan Gohman82669522007-10-11 23:57:53 +00003321 // Check to see if we have a libcall for this operator.
3322 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3323 bool isSigned = false;
3324 switch (Node->getOpcode()) {
3325 case ISD::UDIV:
3326 case ISD::SDIV:
3327 if (VT == MVT::i32) {
3328 LC = Node->getOpcode() == ISD::UDIV
Mon P Wang0c397192008-10-30 08:01:45 +00003329 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003330 isSigned = Node->getOpcode() == ISD::SDIV;
3331 }
3332 break;
Chris Lattner31d71612008-10-04 21:27:46 +00003333 case ISD::MUL:
3334 if (VT == MVT::i32)
3335 LC = RTLIB::MUL_I32;
Nate Begeman9b994852009-01-24 22:12:48 +00003336 else if (VT == MVT::i64)
Scott Michel845145f2008-12-29 03:21:37 +00003337 LC = RTLIB::MUL_I64;
Chris Lattner31d71612008-10-04 21:27:46 +00003338 break;
Dan Gohman82669522007-10-11 23:57:53 +00003339 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003340 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3341 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003342 break;
Scott Micheld1e8d9c2009-01-21 04:58:48 +00003343 case ISD::FDIV:
3344 LC = GetFPLibCall(VT, RTLIB::DIV_F32, RTLIB::DIV_F64, RTLIB::DIV_F80,
3345 RTLIB::DIV_PPCF128);
3346 break;
Dan Gohman82669522007-10-11 23:57:53 +00003347 default: break;
3348 }
3349 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +00003350 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003351 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003352 break;
3353 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003354
Duncan Sands83ec4b62008-06-06 12:08:01 +00003355 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003356 "Cannot expand this binary operator!");
3357 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003358 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003359 break;
3360 }
Evan Chengcc987612006-04-12 21:20:24 +00003361 case TargetLowering::Promote: {
3362 switch (Node->getOpcode()) {
3363 default: assert(0 && "Do not know how to promote this BinOp!");
3364 case ISD::AND:
3365 case ISD::OR:
3366 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003367 MVT OVT = Node->getValueType(0);
3368 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3369 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003370 // Bit convert each of the values to the new type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003371 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
3372 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
3373 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Evan Chengcc987612006-04-12 21:20:24 +00003374 // Bit convert the result back the original type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003375 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Evan Chengcc987612006-04-12 21:20:24 +00003376 break;
3377 }
3378 }
3379 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003380 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003381 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003382
Dan Gohmane14ea862007-10-05 14:17:22 +00003383 case ISD::SMUL_LOHI:
3384 case ISD::UMUL_LOHI:
3385 case ISD::SDIVREM:
3386 case ISD::UDIVREM:
3387 // These nodes will only be produced by target-specific lowering, so
3388 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003389 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003390 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003391
3392 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3393 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3394 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003395 break;
3396
Chris Lattnera09f8482006-03-05 05:09:38 +00003397 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3398 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3399 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3400 case Expand: assert(0 && "Not possible");
3401 case Legal:
3402 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3403 break;
3404 case Promote:
3405 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3406 break;
3407 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003408
Chris Lattnera09f8482006-03-05 05:09:38 +00003409 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00003410
Chris Lattnera09f8482006-03-05 05:09:38 +00003411 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3412 default: assert(0 && "Operation not supported");
3413 case TargetLowering::Custom:
3414 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003415 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003416 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003417 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003418 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003419 // If this target supports fabs/fneg natively and select is cheap,
3420 // do this efficiently.
3421 if (!TLI.isSelectExpensive() &&
3422 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3423 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003424 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003425 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003426 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003427 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003428 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dale Johannesenca57b842009-02-02 23:46:53 +00003429 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, IVT, Tmp2);
3430 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(IVT),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003431 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3432 // Get the absolute value of the result.
Dale Johannesenca57b842009-02-02 23:46:53 +00003433 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
Chris Lattner8f4191d2006-03-13 06:08:38 +00003434 // Select between the nabs and abs value based on the sign bit of
3435 // the input.
Dale Johannesenca57b842009-02-02 23:46:53 +00003436 Result = DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
Scott Michelfdc40a02009-02-17 22:15:04 +00003437 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003438 AbsVal),
3439 AbsVal);
3440 Result = LegalizeOp(Result);
3441 break;
3442 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003443
Chris Lattner8f4191d2006-03-13 06:08:38 +00003444 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003445 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003446 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3447 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
Dale Johannesenca57b842009-02-02 23:46:53 +00003448 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0), Result);
Evan Cheng912095b2007-01-04 21:56:39 +00003449 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003450 break;
3451 }
Evan Cheng912095b2007-01-04 21:56:39 +00003452 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003453 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003454
Nate Begeman551bf3f2006-02-17 05:43:56 +00003455 case ISD::ADDC:
3456 case ISD::SUBC:
3457 Tmp1 = LegalizeOp(Node->getOperand(0));
3458 Tmp2 = LegalizeOp(Node->getOperand(1));
3459 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003460 Tmp3 = Result.getValue(0);
3461 Tmp4 = Result.getValue(1);
3462
3463 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3464 default: assert(0 && "This action is not supported yet!");
3465 case TargetLowering::Legal:
3466 break;
3467 case TargetLowering::Custom:
3468 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3469 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003470 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003471 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3472 }
3473 break;
3474 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003475 // Since this produces two values, make sure to remember that we legalized
3476 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003477 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3478 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3479 return Op.getResNo() ? Tmp4 : Tmp3;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003480
Nate Begeman551bf3f2006-02-17 05:43:56 +00003481 case ISD::ADDE:
3482 case ISD::SUBE:
3483 Tmp1 = LegalizeOp(Node->getOperand(0));
3484 Tmp2 = LegalizeOp(Node->getOperand(1));
3485 Tmp3 = LegalizeOp(Node->getOperand(2));
3486 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003487 Tmp3 = Result.getValue(0);
3488 Tmp4 = Result.getValue(1);
3489
3490 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3491 default: assert(0 && "This action is not supported yet!");
3492 case TargetLowering::Legal:
3493 break;
3494 case TargetLowering::Custom:
3495 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3496 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003497 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003498 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3499 }
3500 break;
3501 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003502 // Since this produces two values, make sure to remember that we legalized
3503 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003504 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3505 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3506 return Op.getResNo() ? Tmp4 : Tmp3;
Scott Michelfdc40a02009-02-17 22:15:04 +00003507
Nate Begeman419f8b62005-10-18 00:27:41 +00003508 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003509 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003510 // TODO: handle the case where the Lo and Hi operands are not of legal type
3511 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3512 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3513 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003514 case TargetLowering::Promote:
3515 case TargetLowering::Custom:
3516 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003517 case TargetLowering::Legal:
3518 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
Dale Johannesenca57b842009-02-02 23:46:53 +00003519 Result = DAG.getNode(ISD::BUILD_PAIR, dl, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003520 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003521 case TargetLowering::Expand:
Dale Johannesenca57b842009-02-02 23:46:53 +00003522 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Tmp1);
3523 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Tmp2);
3524 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003525 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003526 TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00003527 Result = DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003528 break;
3529 }
3530 break;
3531 }
3532
Nate Begemanc105e192005-04-06 00:23:54 +00003533 case ISD::UREM:
3534 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003535 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003536 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3537 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003538
Nate Begemanc105e192005-04-06 00:23:54 +00003539 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003540 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3541 case TargetLowering::Custom:
3542 isCustom = true;
3543 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003544 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003545 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003546 if (isCustom) {
3547 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003548 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003549 }
Nate Begemanc105e192005-04-06 00:23:54 +00003550 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003551 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003552 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003553 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003554 MVT VT = Node->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003555
Dan Gohman525178c2007-10-08 18:33:35 +00003556 // See if remainder can be lowered using two-result operations.
3557 SDVTList VTs = DAG.getVTList(VT, VT);
3558 if (Node->getOpcode() == ISD::SREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003559 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003560 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003561 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003562 break;
3563 }
3564 if (Node->getOpcode() == ISD::UREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003565 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003566 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3567 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003568 break;
3569 }
3570
Duncan Sands83ec4b62008-06-06 12:08:01 +00003571 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003572 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003573 TargetLowering::Legal) {
3574 // X % Y -> X-X/Y*Y
Dale Johannesenca57b842009-02-02 23:46:53 +00003575 Result = DAG.getNode(DivOpc, dl, VT, Tmp1, Tmp2);
3576 Result = DAG.getNode(ISD::MUL, dl, VT, Result, Tmp2);
3577 Result = DAG.getNode(ISD::SUB, dl, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003578 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003579 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003580 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003581 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003582 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003583 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3584 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman475871a2008-07-27 21:46:04 +00003585 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003586 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003587 }
Dan Gohman0d974262007-11-06 22:11:54 +00003588 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003589 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003590 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003591 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003592 Result = LegalizeOp(UnrollVectorOp(Op));
3593 } else {
3594 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003595 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3596 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003597 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003598 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003599 }
Nate Begemanc105e192005-04-06 00:23:54 +00003600 }
3601 break;
3602 }
Dan Gohman525178c2007-10-08 18:33:35 +00003603 }
Nate Begemanc105e192005-04-06 00:23:54 +00003604 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003605 case ISD::VAARG: {
3606 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3607 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3608
Duncan Sands83ec4b62008-06-06 12:08:01 +00003609 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003610 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3611 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003612 case TargetLowering::Custom:
3613 isCustom = true;
3614 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003615 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003616 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3617 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003618 Tmp1 = Result.getValue(1);
3619
3620 if (isCustom) {
3621 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003622 if (Tmp2.getNode()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003623 Result = LegalizeOp(Tmp2);
3624 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3625 }
3626 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003627 break;
3628 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003629 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenca57b842009-02-02 23:46:53 +00003630 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003631 // Increment the pointer, VAList, to the next vaarg
Dale Johannesenca57b842009-02-02 23:46:53 +00003632 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00003633 DAG.getConstant(TLI.getTargetData()->
3634 getTypePaddedSize(VT.getTypeForMVT()),
3635 TLI.getPointerTy()));
Nate Begemanacc398c2006-01-25 18:21:52 +00003636 // Store the incremented VAList to the legalized pointer
Dale Johannesenca57b842009-02-02 23:46:53 +00003637 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003638 // Load the actual argument out of the pointer VAList
Dale Johannesenca57b842009-02-02 23:46:53 +00003639 Result = DAG.getLoad(VT, dl, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003640 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003641 Result = LegalizeOp(Result);
3642 break;
3643 }
3644 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003645 // Since VAARG produces two values, make sure to remember that we
Nate Begemanacc398c2006-01-25 18:21:52 +00003646 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003647 AddLegalizedOperand(SDValue(Node, 0), Result);
3648 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003649 return Op.getResNo() ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003650 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003651
3652 case ISD::VACOPY:
Nate Begemanacc398c2006-01-25 18:21:52 +00003653 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3654 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3655 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3656
3657 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3658 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003659 case TargetLowering::Custom:
3660 isCustom = true;
3661 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003662 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003663 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3664 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003665 if (isCustom) {
3666 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003667 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003668 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003669 break;
3670 case TargetLowering::Expand:
3671 // This defaults to loading a pointer from the input and storing it to the
3672 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003673 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3674 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dale Johannesenca57b842009-02-02 23:46:53 +00003675 Tmp4 = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp3, VS, 0);
3676 Result = DAG.getStore(Tmp4.getValue(1), dl, Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003677 break;
3678 }
3679 break;
3680
Scott Michelfdc40a02009-02-17 22:15:04 +00003681 case ISD::VAEND:
Nate Begemanacc398c2006-01-25 18:21:52 +00003682 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3683 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3684
3685 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3686 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003687 case TargetLowering::Custom:
3688 isCustom = true;
3689 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003690 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003691 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003692 if (isCustom) {
3693 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003694 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003695 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003696 break;
3697 case TargetLowering::Expand:
3698 Result = Tmp1; // Default to a no-op, return the chain
3699 break;
3700 }
3701 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003702
3703 case ISD::VASTART:
Nate Begemanacc398c2006-01-25 18:21:52 +00003704 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3705 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3706
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003707 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00003708
Nate Begemanacc398c2006-01-25 18:21:52 +00003709 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3710 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003711 case TargetLowering::Legal: break;
3712 case TargetLowering::Custom:
3713 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003714 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003715 break;
3716 }
3717 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003718
Nate Begeman35ef9132006-01-11 21:21:00 +00003719 case ISD::ROTL:
3720 case ISD::ROTR:
3721 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003722 Tmp2 = LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(1))); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003723 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003724 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3725 default:
3726 assert(0 && "ROTL/ROTR legalize operation not supported");
3727 break;
3728 case TargetLowering::Legal:
3729 break;
3730 case TargetLowering::Custom:
3731 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003732 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelc9dc1142007-04-02 21:36:32 +00003733 break;
3734 case TargetLowering::Promote:
3735 assert(0 && "Do not know how to promote ROTL/ROTR");
3736 break;
3737 case TargetLowering::Expand:
3738 assert(0 && "Do not know how to expand ROTL/ROTR");
3739 break;
3740 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003741 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003742
Nate Begemand88fc032006-01-14 03:14:10 +00003743 case ISD::BSWAP:
3744 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3745 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003746 case TargetLowering::Custom:
3747 assert(0 && "Cannot custom legalize this yet!");
3748 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003749 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003750 break;
3751 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003752 MVT OVT = Tmp1.getValueType();
3753 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3754 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003755
Dale Johannesenca57b842009-02-02 23:46:53 +00003756 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
3757 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3758 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Chris Lattner456a93a2006-01-28 07:39:30 +00003759 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3760 break;
3761 }
3762 case TargetLowering::Expand:
Dale Johannesen8a782a22009-02-02 22:12:50 +00003763 Result = ExpandBSWAP(Tmp1, dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00003764 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003765 }
3766 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003767
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003768 case ISD::CTPOP:
3769 case ISD::CTTZ:
3770 case ISD::CTLZ:
3771 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3772 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003773 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003774 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003775 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003776 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003777 TargetLowering::Custom) {
3778 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003779 if (Tmp1.getNode()) {
Scott Michel335f4f72007-08-02 02:22:46 +00003780 Result = Tmp1;
3781 }
Scott Michel910b66d2007-07-30 21:00:31 +00003782 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003783 break;
3784 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003785 MVT OVT = Tmp1.getValueType();
3786 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003787
3788 // Zero extend the argument.
Dale Johannesenca57b842009-02-02 23:46:53 +00003789 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003790 // Perform the larger operation, then subtract if needed.
Dale Johannesenca57b842009-02-02 23:46:53 +00003791 Tmp1 = DAG.getNode(Node->getOpcode(), dl, Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003792 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003793 case ISD::CTPOP:
3794 Result = Tmp1;
3795 break;
3796 case ISD::CTTZ:
3797 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesenca57b842009-02-02 23:46:53 +00003798 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
3799 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003800 ISD::SETEQ);
Dale Johannesenca57b842009-02-02 23:46:53 +00003801 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003802 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003803 break;
3804 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003805 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesenca57b842009-02-02 23:46:53 +00003806 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003807 DAG.getConstant(NVT.getSizeInBits() -
3808 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003809 break;
3810 }
3811 break;
3812 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003813 case TargetLowering::Expand:
Dale Johannesen8a782a22009-02-02 22:12:50 +00003814 Result = ExpandBitCount(Node->getOpcode(), Tmp1, dl);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003815 break;
3816 }
3817 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003818
Chris Lattner2c8086f2005-04-02 05:00:07 +00003819 // Unary operators
3820 case ISD::FABS:
3821 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003822 case ISD::FSQRT:
3823 case ISD::FSIN:
3824 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003825 case ISD::FLOG:
3826 case ISD::FLOG2:
3827 case ISD::FLOG10:
3828 case ISD::FEXP:
3829 case ISD::FEXP2:
Dan Gohman509e84f2008-08-21 17:55:02 +00003830 case ISD::FTRUNC:
3831 case ISD::FFLOOR:
3832 case ISD::FCEIL:
3833 case ISD::FRINT:
3834 case ISD::FNEARBYINT:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003835 Tmp1 = LegalizeOp(Node->getOperand(0));
3836 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003837 case TargetLowering::Promote:
3838 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003839 isCustom = true;
3840 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003841 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003842 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003843 if (isCustom) {
3844 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003845 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng59ad7812006-01-31 18:14:25 +00003846 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003847 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003848 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003849 switch (Node->getOpcode()) {
3850 default: assert(0 && "Unreachable!");
3851 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003852 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3853 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00003854 Result = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003855 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003856 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003857 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003858 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003859 Tmp2 = DAG.getConstantFP(0.0, VT);
Dale Johannesenca57b842009-02-02 23:46:53 +00003860 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00003861 Tmp1, Tmp2, ISD::SETUGT);
Dale Johannesenca57b842009-02-02 23:46:53 +00003862 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3863 Result = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003864 break;
3865 }
Evan Cheng9d24ac52008-09-09 23:35:53 +00003866 case ISD::FSQRT:
3867 case ISD::FSIN:
Scott Michelfdc40a02009-02-17 22:15:04 +00003868 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003869 case ISD::FLOG:
3870 case ISD::FLOG2:
3871 case ISD::FLOG10:
3872 case ISD::FEXP:
3873 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003874 case ISD::FTRUNC:
3875 case ISD::FFLOOR:
3876 case ISD::FCEIL:
3877 case ISD::FRINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00003878 case ISD::FNEARBYINT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003879 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003880
3881 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003882 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003883 Result = LegalizeOp(UnrollVectorOp(Op));
3884 break;
3885 }
3886
Evan Cheng56966222007-01-12 02:11:51 +00003887 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003888 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003889 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003890 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3891 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003892 break;
3893 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003894 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3895 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003896 break;
3897 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003898 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3899 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003900 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003901 case ISD::FLOG:
3902 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3903 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3904 break;
3905 case ISD::FLOG2:
3906 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3907 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3908 break;
3909 case ISD::FLOG10:
3910 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3911 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3912 break;
3913 case ISD::FEXP:
3914 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3915 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3916 break;
3917 case ISD::FEXP2:
3918 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3919 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3920 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003921 case ISD::FTRUNC:
3922 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3923 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3924 break;
3925 case ISD::FFLOOR:
3926 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3927 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3928 break;
3929 case ISD::FCEIL:
3930 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3931 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3932 break;
3933 case ISD::FRINT:
3934 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3935 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3936 break;
3937 case ISD::FNEARBYINT:
3938 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3939 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3940 break;
Evan Cheng9d24ac52008-09-09 23:35:53 +00003941 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003942 default: assert(0 && "Unreachable!");
3943 }
Dan Gohman475871a2008-07-27 21:46:04 +00003944 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003945 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003946 break;
3947 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003948 }
3949 break;
3950 }
3951 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003952 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003953 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003954
3955 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003956 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003957 Result = LegalizeOp(UnrollVectorOp(Op));
3958 break;
3959 }
3960
3961 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003962 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3963 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003964 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003965 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003966 break;
3967 }
Chris Lattner35481892005-12-23 00:16:34 +00003968 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003969 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003970 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00003971 Node->getValueType(0), dl);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003972 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003973 // The input has to be a vector type, we have to either scalarize it, pack
3974 // it, or convert it based on whether the input vector type is legal.
Gabor Greifba36cb52008-08-28 21:40:38 +00003975 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00003976 int InIx = Node->getOperand(0).getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003977 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3978 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003979
Dan Gohman7f321562007-06-25 16:23:39 +00003980 // Figure out if there is a simple type corresponding to this Vector
3981 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003982 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003983 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003984 // Turn this into a bit convert of the vector input.
Scott Michelfdc40a02009-02-17 22:15:04 +00003985 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohman7f321562007-06-25 16:23:39 +00003986 LegalizeOp(Node->getOperand(0)));
3987 break;
3988 } else if (NumElems == 1) {
3989 // Turn this into a bit convert of the scalar input.
Scott Michelfdc40a02009-02-17 22:15:04 +00003990 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohman7f321562007-06-25 16:23:39 +00003991 ScalarizeVectorOp(Node->getOperand(0)));
3992 break;
3993 } else {
3994 // FIXME: UNIMP! Store then reload
3995 assert(0 && "Cast from unsupported vector type not implemented yet!");
3996 }
Chris Lattner67993f72006-01-23 07:30:46 +00003997 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003998 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3999 Node->getOperand(0).getValueType())) {
4000 default: assert(0 && "Unknown operation action!");
4001 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00004002 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00004003 Node->getValueType(0), dl);
Chris Lattner35481892005-12-23 00:16:34 +00004004 break;
4005 case TargetLowering::Legal:
4006 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004007 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00004008 break;
4009 }
4010 }
4011 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004012 case ISD::CONVERT_RNDSAT: {
4013 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4014 switch (CvtCode) {
4015 default: assert(0 && "Unknown cvt code!");
4016 case ISD::CVT_SF:
4017 case ISD::CVT_UF:
Mon P Wang77cdf302008-11-10 20:54:11 +00004018 case ISD::CVT_FF:
Mon P Wang1cd46bb2008-12-09 07:27:39 +00004019 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004020 case ISD::CVT_FS:
4021 case ISD::CVT_FU:
4022 case ISD::CVT_SS:
4023 case ISD::CVT_SU:
4024 case ISD::CVT_US:
4025 case ISD::CVT_UU: {
4026 SDValue DTyOp = Node->getOperand(1);
4027 SDValue STyOp = Node->getOperand(2);
4028 SDValue RndOp = Node->getOperand(3);
4029 SDValue SatOp = Node->getOperand(4);
4030 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4031 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4032 case Legal:
4033 Tmp1 = LegalizeOp(Node->getOperand(0));
4034 Result = DAG.UpdateNodeOperands(Result, Tmp1, DTyOp, STyOp,
4035 RndOp, SatOp);
4036 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4037 TargetLowering::Custom) {
4038 Tmp1 = TLI.LowerOperation(Result, DAG);
4039 if (Tmp1.getNode()) Result = Tmp1;
4040 }
4041 break;
4042 case Promote:
4043 Result = PromoteOp(Node->getOperand(0));
4044 // For FP, make Op1 a i32
Scott Michelfdc40a02009-02-17 22:15:04 +00004045
Dale Johannesenc460ae92009-02-04 00:13:36 +00004046 Result = DAG.getConvertRndSat(Op.getValueType(), dl, Result,
Mon P Wang77cdf302008-11-10 20:54:11 +00004047 DTyOp, STyOp, RndOp, SatOp, CvtCode);
4048 break;
4049 }
4050 break;
4051 }
4052 } // end switch CvtCode
4053 break;
4054 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00004055 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00004056 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004057 case ISD::UINT_TO_FP: {
4058 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman7f8613e2008-08-14 20:04:46 +00004059 Result = LegalizeINT_TO_FP(Result, isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00004060 Node->getValueType(0), Node->getOperand(0), dl);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004061 break;
4062 }
4063 case ISD::TRUNCATE:
4064 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4065 case Legal:
4066 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel546d7b52008-12-02 19:55:08 +00004067 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
4068 default: assert(0 && "Unknown TRUNCATE legalization operation action!");
4069 case TargetLowering::Custom:
Mon P Wangf67303d2008-12-11 00:44:22 +00004070 isCustom = true;
4071 // FALLTHROUGH
Scott Michel546d7b52008-12-02 19:55:08 +00004072 case TargetLowering::Legal:
Mon P Wangf67303d2008-12-11 00:44:22 +00004073 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4074 if (isCustom) {
4075 Tmp1 = TLI.LowerOperation(Result, DAG);
4076 if (Tmp1.getNode()) Result = Tmp1;
4077 }
4078 break;
Mon P Wang9e5ecb82008-12-12 01:25:51 +00004079 case TargetLowering::Expand:
4080 assert(Result.getValueType().isVector() && "must be vector type");
4081 // Unroll the truncate. We should do better.
4082 Result = LegalizeOp(UnrollVectorOp(Result));
Tilmann Schellerb0a5cdd2008-12-02 12:12:25 +00004083 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004084 break;
4085 case Expand:
4086 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4087
4088 // Since the result is legal, we should just be able to truncate the low
4089 // part of the source.
Dale Johannesenca57b842009-02-02 23:46:53 +00004090 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004091 break;
4092 case Promote:
4093 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004094 Result = DAG.getNode(ISD::TRUNCATE, dl, Op.getValueType(), Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004095 break;
4096 }
4097 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004098
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004099 case ISD::FP_TO_SINT:
4100 case ISD::FP_TO_UINT:
4101 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4102 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00004103 Tmp1 = LegalizeOp(Node->getOperand(0));
4104
Chris Lattner1618beb2005-07-29 00:11:56 +00004105 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
4106 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004107 case TargetLowering::Custom:
4108 isCustom = true;
4109 // FALLTHROUGH
4110 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004111 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004112 if (isCustom) {
4113 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004114 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00004115 }
4116 break;
4117 case TargetLowering::Promote:
4118 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00004119 Node->getOpcode() == ISD::FP_TO_SINT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004120 dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00004121 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00004122 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00004123 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman475871a2008-07-27 21:46:04 +00004124 SDValue True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004125 MVT VT = Node->getOperand(0).getValueType();
4126 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00004127 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00004128 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
4129 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004130 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00004131 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004132 Tmp3 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
Dale Johannesenaf435272009-02-02 19:03:57 +00004133 Node->getOperand(0),
Duncan Sands5480c042009-01-01 15:52:00 +00004134 Tmp2, ISD::SETLT);
Dale Johannesenaf435272009-02-02 19:03:57 +00004135 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
4136 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004137 DAG.getNode(ISD::FSUB, dl, VT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004138 Node->getOperand(0), Tmp2));
4139 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004140 DAG.getConstant(x, NVT));
Dale Johannesenaf435272009-02-02 19:03:57 +00004141 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp3, True, False);
Chris Lattner456a93a2006-01-28 07:39:30 +00004142 break;
Nate Begemand2558e32005-08-14 01:20:53 +00004143 } else {
4144 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
4145 }
4146 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00004147 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004148 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00004149 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004150 MVT VT = Op.getValueType();
4151 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004152 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004153 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004154 if (Node->getOpcode() == ISD::FP_TO_SINT) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004155 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, MVT::ppcf128,
Chris Lattner0bd48932008-01-17 07:00:52 +00004156 Node->getOperand(0), DAG.getValueType(MVT::f64));
Scott Michelfdc40a02009-02-17 22:15:04 +00004157 Result = DAG.getNode(ISD::FP_ROUND, dl, MVT::f64, Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00004158 DAG.getIntPtrConstant(1));
Dale Johannesenaf435272009-02-02 19:03:57 +00004159 Result = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004160 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004161 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
4162 APFloat apf = APFloat(APInt(128, 2, TwoE31));
4163 Tmp2 = DAG.getConstantFP(apf, OVT);
4164 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
4165 // FIXME: generated code sucks.
Scott Michelfdc40a02009-02-17 22:15:04 +00004166 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Node->getOperand(0),
Dale Johannesenaf435272009-02-02 19:03:57 +00004167 Tmp2,
4168 DAG.getNode(ISD::ADD, dl, MVT::i32,
4169 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
4170 DAG.getNode(ISD::FSUB, dl, OVT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004171 Node->getOperand(0), Tmp2)),
4172 DAG.getConstant(0x80000000, MVT::i32)),
Scott Michelfdc40a02009-02-17 22:15:04 +00004173 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004174 Node->getOperand(0)),
4175 DAG.getCondCode(ISD::SETGE));
4176 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004177 break;
4178 }
Dan Gohmana2e94852008-03-10 23:03:31 +00004179 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsb2ff8852008-07-17 02:36:29 +00004180 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
4181 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
4182 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman475871a2008-07-27 21:46:04 +00004183 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00004184 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00004185 break;
4186 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004187 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004188 Tmp1 = PromoteOp(Node->getOperand(0));
4189 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
4190 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004191 break;
4192 }
4193 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004194
Chris Lattnerf2670a82008-01-16 06:57:07 +00004195 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004196 MVT DstVT = Op.getValueType();
4197 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004198 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4199 // The only other way we can lower this is to turn it into a STORE,
4200 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen8a782a22009-02-02 22:12:50 +00004201 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT, dl);
Chris Lattner0bd48932008-01-17 07:00:52 +00004202 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00004203 }
4204 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4205 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4206 case Legal:
4207 Tmp1 = LegalizeOp(Node->getOperand(0));
4208 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4209 break;
4210 case Promote:
4211 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004212 Result = DAG.getNode(ISD::FP_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattnerf2670a82008-01-16 06:57:07 +00004213 break;
4214 }
4215 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004216 }
Dale Johannesen5411a392007-08-09 01:04:01 +00004217 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004218 MVT DstVT = Op.getValueType();
4219 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004220 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4221 if (SrcVT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00004222 SDValue Lo;
Dale Johannesen713ed3f2008-01-20 01:18:38 +00004223 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004224 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00004225 if (DstVT!=MVT::f64)
Dale Johannesenca57b842009-02-02 23:46:53 +00004226 Result = DAG.getNode(ISD::FP_ROUND, dl,
4227 DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00004228 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00004229 }
Chris Lattner0bd48932008-01-17 07:00:52 +00004230 // The only other way we can lower this is to turn it into a STORE,
4231 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen8a782a22009-02-02 22:12:50 +00004232 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT, dl);
Chris Lattner0bd48932008-01-17 07:00:52 +00004233 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00004234 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00004235 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4236 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4237 case Legal:
4238 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00004239 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004240 break;
4241 case Promote:
4242 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004243 Result = DAG.getNode(ISD::FP_ROUND, dl, Op.getValueType(), Tmp1,
Chris Lattner0bd48932008-01-17 07:00:52 +00004244 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004245 break;
4246 }
4247 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004248 }
Chris Lattner13c78e22005-09-02 00:18:10 +00004249 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004250 case ISD::ZERO_EXTEND:
4251 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004252 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00004253 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004254 case Legal:
4255 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00004256 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00004257 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4258 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00004259 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004260 if (Tmp1.getNode()) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00004261 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004262 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004263 case Promote:
4264 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00004265 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004266 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004267 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00004268 break;
Chris Lattner1713e732005-01-16 00:38:00 +00004269 case ISD::ZERO_EXTEND:
4270 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004271 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4272 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004273 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00004274 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004275 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00004276 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004277 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4278 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004279 Result,
4280 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00004281 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004282 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004283 }
4284 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00004285 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00004286 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00004287 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004288 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00004289
4290 // If this operation is not supported, convert it to a shl/shr or load/store
4291 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004292 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
4293 default: assert(0 && "This action not supported for this op yet!");
4294 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004295 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004296 break;
4297 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00004298 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00004299 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00004300 // NOTE: we could fall back on load/store here too for targets without
4301 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004302 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
4303 ExtraVT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00004304 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Dale Johannesenca57b842009-02-02 23:46:53 +00004305 Result = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
Chris Lattner45b8caf2005-01-15 07:15:18 +00004306 Node->getOperand(0), ShiftCst);
Dale Johannesenca57b842009-02-02 23:46:53 +00004307 Result = DAG.getNode(ISD::SRA, dl, Node->getValueType(0),
Chris Lattner45b8caf2005-01-15 07:15:18 +00004308 Result, ShiftCst);
4309 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00004310 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00004311 // EXTLOAD pair, targetting a temporary location (a stack slot).
4312
4313 // NOTE: there is a choice here between constantly creating new stack
4314 // slots and always reusing the same one. We currently always create
4315 // new ones, as reuse may inhibit scheduling.
Scott Michelfdc40a02009-02-17 22:15:04 +00004316 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00004317 Node->getValueType(0), dl);
Chris Lattner45b8caf2005-01-15 07:15:18 +00004318 } else {
4319 assert(0 && "Unknown op");
4320 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004321 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00004322 }
Chris Lattner0f69b292005-01-15 06:18:18 +00004323 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004324 }
Duncan Sands36397f52007-07-27 12:58:54 +00004325 case ISD::TRAMPOLINE: {
Dan Gohman475871a2008-07-27 21:46:04 +00004326 SDValue Ops[6];
Duncan Sands36397f52007-07-27 12:58:54 +00004327 for (unsigned i = 0; i != 6; ++i)
4328 Ops[i] = LegalizeOp(Node->getOperand(i));
4329 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
4330 // The only option for this node is to custom lower it.
4331 Result = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004332 assert(Result.getNode() && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00004333
4334 // Since trampoline produces two values, make sure to remember that we
4335 // legalized both of them.
4336 Tmp1 = LegalizeOp(Result.getValue(1));
4337 Result = LegalizeOp(Result);
Dan Gohman475871a2008-07-27 21:46:04 +00004338 AddLegalizedOperand(SDValue(Node, 0), Result);
4339 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00004340 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00004341 }
Dan Gohman9c78a392008-05-14 00:43:10 +00004342 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004343 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004344 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4345 default: assert(0 && "This action not supported for this op yet!");
4346 case TargetLowering::Custom:
4347 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004348 if (Result.getNode()) break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004349 // Fall Thru
4350 case TargetLowering::Legal:
4351 // If this operation is not supported, lower it to constant 1
4352 Result = DAG.getConstant(1, VT);
4353 break;
4354 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00004355 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004356 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004357 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004358 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004359 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4360 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00004361 case TargetLowering::Legal:
4362 Tmp1 = LegalizeOp(Node->getOperand(0));
4363 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4364 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004365 case TargetLowering::Custom:
4366 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004367 if (Result.getNode()) break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004368 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00004369 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004370 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00004371 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004372 TargetLowering::ArgListTy Args;
Dan Gohman475871a2008-07-27 21:46:04 +00004373 std::pair<SDValue,SDValue> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00004374 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00004375 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00004376 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Dale Johannesen7d2ad622009-01-30 23:10:59 +00004377 Args, DAG, dl);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004378 Result = CallResult.second;
4379 break;
4380 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004381 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004382 }
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004383
Bill Wendling74c37652008-12-09 22:08:41 +00004384 case ISD::SADDO:
4385 case ISD::SSUBO: {
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004386 MVT VT = Node->getValueType(0);
4387 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4388 default: assert(0 && "This action not supported for this op yet!");
4389 case TargetLowering::Custom:
4390 Result = TLI.LowerOperation(Op, DAG);
4391 if (Result.getNode()) break;
4392 // FALLTHROUGH
4393 case TargetLowering::Legal: {
4394 SDValue LHS = LegalizeOp(Node->getOperand(0));
4395 SDValue RHS = LegalizeOp(Node->getOperand(1));
4396
Scott Michelfdc40a02009-02-17 22:15:04 +00004397 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
Dale Johannesenca57b842009-02-02 23:46:53 +00004398 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling74c37652008-12-09 22:08:41 +00004399 LHS, RHS);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004400 MVT OType = Node->getValueType(1);
4401
Bill Wendlinga6af91a2008-11-25 08:19:22 +00004402 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004403
Bill Wendling740464e2008-11-25 19:40:17 +00004404 // LHSSign -> LHS >= 0
4405 // RHSSign -> RHS >= 0
4406 // SumSign -> Sum >= 0
4407 //
Bill Wendling74c37652008-12-09 22:08:41 +00004408 // Add:
Bill Wendling740464e2008-11-25 19:40:17 +00004409 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
Bill Wendling74c37652008-12-09 22:08:41 +00004410 // Sub:
4411 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
Bill Wendling740464e2008-11-25 19:40:17 +00004412 //
Dale Johannesenca57b842009-02-02 23:46:53 +00004413 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
4414 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
Scott Michelfdc40a02009-02-17 22:15:04 +00004415 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
4416 Node->getOpcode() == ISD::SADDO ?
Bill Wendling74c37652008-12-09 22:08:41 +00004417 ISD::SETEQ : ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004418
Dale Johannesenca57b842009-02-02 23:46:53 +00004419 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
4420 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004421
Dale Johannesenca57b842009-02-02 23:46:53 +00004422 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004423
4424 MVT ValueVTs[] = { LHS.getValueType(), OType };
4425 SDValue Ops[] = { Sum, Cmp };
4426
Scott Michelfdc40a02009-02-17 22:15:04 +00004427 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00004428 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004429 &Ops[0], 2);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004430 SDNode *RNode = Result.getNode();
4431 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), SDValue(RNode, 0));
4432 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), SDValue(RNode, 1));
4433 break;
4434 }
4435 }
4436
4437 break;
4438 }
Bill Wendling74c37652008-12-09 22:08:41 +00004439 case ISD::UADDO:
4440 case ISD::USUBO: {
Bill Wendling41ea7e72008-11-24 19:21:46 +00004441 MVT VT = Node->getValueType(0);
4442 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4443 default: assert(0 && "This action not supported for this op yet!");
4444 case TargetLowering::Custom:
4445 Result = TLI.LowerOperation(Op, DAG);
4446 if (Result.getNode()) break;
4447 // FALLTHROUGH
4448 case TargetLowering::Legal: {
4449 SDValue LHS = LegalizeOp(Node->getOperand(0));
4450 SDValue RHS = LegalizeOp(Node->getOperand(1));
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004451
Bill Wendling74c37652008-12-09 22:08:41 +00004452 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
Dale Johannesenca57b842009-02-02 23:46:53 +00004453 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling74c37652008-12-09 22:08:41 +00004454 LHS, RHS);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004455 MVT OType = Node->getValueType(1);
Dale Johannesenca57b842009-02-02 23:46:53 +00004456 SDValue Cmp = DAG.getSetCC(dl, OType, Sum, LHS,
Scott Michelfdc40a02009-02-17 22:15:04 +00004457 Node->getOpcode () == ISD::UADDO ?
Bill Wendling74c37652008-12-09 22:08:41 +00004458 ISD::SETULT : ISD::SETUGT);
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004459
Bill Wendling41ea7e72008-11-24 19:21:46 +00004460 MVT ValueVTs[] = { LHS.getValueType(), OType };
4461 SDValue Ops[] = { Sum, Cmp };
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004462
Scott Michelfdc40a02009-02-17 22:15:04 +00004463 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00004464 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004465 &Ops[0], 2);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004466 SDNode *RNode = Result.getNode();
4467 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), SDValue(RNode, 0));
4468 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), SDValue(RNode, 1));
4469 break;
4470 }
4471 }
4472
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004473 break;
4474 }
Bill Wendling74c37652008-12-09 22:08:41 +00004475 case ISD::SMULO:
4476 case ISD::UMULO: {
4477 MVT VT = Node->getValueType(0);
4478 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4479 default: assert(0 && "This action is not supported at all!");
4480 case TargetLowering::Custom:
4481 Result = TLI.LowerOperation(Op, DAG);
4482 if (Result.getNode()) break;
4483 // Fall Thru
4484 case TargetLowering::Legal:
4485 // FIXME: According to Hacker's Delight, this can be implemented in
4486 // target independent lowering, but it would be inefficient, since it
Bill Wendlingbc5e15e2008-12-10 02:01:32 +00004487 // requires a division + a branch.
Scott Michelfdc40a02009-02-17 22:15:04 +00004488 assert(0 && "Target independent lowering is not supported for SMULO/UMULO!");
Bill Wendling74c37652008-12-09 22:08:41 +00004489 break;
4490 }
4491 break;
4492 }
4493
Chris Lattner45b8caf2005-01-15 07:15:18 +00004494 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004495
Chris Lattner4ddd2832006-04-08 04:13:17 +00004496 assert(Result.getValueType() == Op.getValueType() &&
4497 "Bad legalization!");
Scott Michelfdc40a02009-02-17 22:15:04 +00004498
Chris Lattner456a93a2006-01-28 07:39:30 +00004499 // Make sure that the generated code is itself legal.
4500 if (Result != Op)
4501 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004502
Chris Lattner45982da2005-05-12 16:53:42 +00004503 // Note that LegalizeOp may be reentered even from single-use nodes, which
4504 // means that we always must cache transformed nodes.
4505 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004506 return Result;
4507}
4508
Chris Lattner8b6fa222005-01-15 22:16:26 +00004509/// PromoteOp - Given an operation that produces a value in an invalid type,
4510/// promote it to compute the value into a larger type. The produced value will
4511/// have the correct bits for the low portion of the register, but no guarantee
4512/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman475871a2008-07-27 21:46:04 +00004513SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004514 MVT VT = Op.getValueType();
4515 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004516 assert(getTypeAction(VT) == Promote &&
4517 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004518 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004519 "Cannot promote to smaller type!");
4520
Dan Gohman475871a2008-07-27 21:46:04 +00004521 SDValue Tmp1, Tmp2, Tmp3;
4522 SDValue Result;
Gabor Greifba36cb52008-08-28 21:40:38 +00004523 SDNode *Node = Op.getNode();
Dale Johannesen8a782a22009-02-02 22:12:50 +00004524 DebugLoc dl = Node->getDebugLoc();
Chris Lattner03c85462005-01-15 05:21:40 +00004525
Dan Gohman475871a2008-07-27 21:46:04 +00004526 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004527 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004528
Chris Lattner03c85462005-01-15 05:21:40 +00004529 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004530 case ISD::CopyFromReg:
4531 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004532 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004533#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004534 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004535#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004536 assert(0 && "Do not know how to promote this operator!");
4537 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004538 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00004539 Result = DAG.getUNDEF(NVT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004540 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004541 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004542 if (VT != MVT::i1)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004543 Result = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Op);
Chris Lattnerec176e32005-08-30 16:56:19 +00004544 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00004545 Result = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004546 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4547 break;
4548 case ISD::ConstantFP:
Dale Johannesen8a782a22009-02-02 22:12:50 +00004549 Result = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004550 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4551 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004552
Duncan Sands5480c042009-01-01 15:52:00 +00004553 case ISD::SETCC: {
4554 MVT VT0 = Node->getOperand(0).getValueType();
4555 assert(isTypeLegal(TLI.getSetCCResultType(VT0))
Nate Begeman5922f562008-03-14 00:53:31 +00004556 && "SetCC type is not legal??");
Dale Johannesen8a782a22009-02-02 22:12:50 +00004557 Result = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(VT0),
Nate Begeman5922f562008-03-14 00:53:31 +00004558 Node->getOperand(0), Node->getOperand(1),
4559 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004560 break;
Duncan Sands5480c042009-01-01 15:52:00 +00004561 }
Chris Lattner03c85462005-01-15 05:21:40 +00004562 case ISD::TRUNCATE:
4563 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4564 case Legal:
4565 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004566 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004567 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004568 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Dale Johannesen8a782a22009-02-02 22:12:50 +00004569 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Result);
Chris Lattner03c85462005-01-15 05:21:40 +00004570 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004571 case Promote:
4572 // The truncation is not required, because we don't guarantee anything
4573 // about high bits anyway.
4574 Result = PromoteOp(Node->getOperand(0));
4575 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004576 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004577 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4578 // Truncate the low part of the expanded value to the result type
Dale Johannesen8a782a22009-02-02 22:12:50 +00004579 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004580 }
4581 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004582 case ISD::SIGN_EXTEND:
4583 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004584 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004585 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4586 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4587 case Legal:
4588 // Input is legal? Just do extend all the way to the larger type.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004589 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004590 break;
4591 case Promote:
4592 // Promote the reg if it's smaller.
4593 Result = PromoteOp(Node->getOperand(0));
4594 // The high bits are not guaranteed to be anything. Insert an extend.
4595 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004596 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004597 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004598 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004599 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004600 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004601 break;
4602 }
4603 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004604 case ISD::CONVERT_RNDSAT: {
4605 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4606 assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
4607 CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
4608 CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) &&
4609 "can only promote integers");
Dale Johannesenc460ae92009-02-04 00:13:36 +00004610 Result = DAG.getConvertRndSat(NVT, dl, Node->getOperand(0),
Mon P Wang77cdf302008-11-10 20:54:11 +00004611 Node->getOperand(1), Node->getOperand(2),
4612 Node->getOperand(3), Node->getOperand(4),
4613 CvtCode);
4614 break;
4615
4616 }
Chris Lattner35481892005-12-23 00:16:34 +00004617 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004618 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00004619 Node->getValueType(0), dl);
Chris Lattner35481892005-12-23 00:16:34 +00004620 Result = PromoteOp(Result);
4621 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00004622
Chris Lattner8b6fa222005-01-15 22:16:26 +00004623 case ISD::FP_EXTEND:
4624 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4625 case ISD::FP_ROUND:
4626 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4627 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4628 case Promote: assert(0 && "Unreachable with 2 FP types!");
4629 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004630 if (Node->getConstantOperandVal(1) == 0) {
4631 // Input is legal? Do an FP_ROUND_INREG.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004632 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Node->getOperand(0),
Chris Lattner0bd48932008-01-17 07:00:52 +00004633 DAG.getValueType(VT));
4634 } else {
4635 // Just remove the truncate, it isn't affecting the value.
Scott Michelfdc40a02009-02-17 22:15:04 +00004636 Result = DAG.getNode(ISD::FP_ROUND, dl, NVT, Node->getOperand(0),
Chris Lattner0bd48932008-01-17 07:00:52 +00004637 Node->getOperand(1));
4638 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004639 break;
4640 }
4641 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004642 case ISD::SINT_TO_FP:
4643 case ISD::UINT_TO_FP:
4644 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4645 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004646 // No extra round required here.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004647 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004648 break;
4649
4650 case Promote:
4651 Result = PromoteOp(Node->getOperand(0));
4652 if (Node->getOpcode() == ISD::SINT_TO_FP)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004653 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004654 Result,
4655 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004656 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00004657 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004658 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004659 // No extra round required here.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004660 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004661 break;
4662 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004663 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00004664 Node->getOperand(0), dl);
Chris Lattner77e77a62005-01-21 06:05:23 +00004665 // Round if we cannot tolerate excess precision.
4666 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004667 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004668 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004669 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004670 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004671 break;
4672
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004673 case ISD::SIGN_EXTEND_INREG:
4674 Result = PromoteOp(Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004675 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004676 Node->getOperand(1));
4677 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004678 case ISD::FP_TO_SINT:
4679 case ISD::FP_TO_UINT:
4680 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4681 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004682 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004683 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004684 break;
4685 case Promote:
4686 // The input result is prerounded, so we don't have to do anything
4687 // special.
4688 Tmp1 = PromoteOp(Node->getOperand(0));
4689 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004690 }
Nate Begemand2558e32005-08-14 01:20:53 +00004691 // If we're promoting a UINT to a larger size, check to see if the new node
4692 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4693 // we can use that instead. This allows us to generate better code for
4694 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4695 // legal, such as PowerPC.
Scott Michelfdc40a02009-02-17 22:15:04 +00004696 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00004697 !TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NVT) &&
4698 (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT) ||
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004699 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Dale Johannesen8a782a22009-02-02 22:12:50 +00004700 Result = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Tmp1);
Nate Begemand2558e32005-08-14 01:20:53 +00004701 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00004702 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Nate Begemand2558e32005-08-14 01:20:53 +00004703 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004704 break;
4705
Chris Lattner2c8086f2005-04-02 05:00:07 +00004706 case ISD::FABS:
4707 case ISD::FNEG:
4708 Tmp1 = PromoteOp(Node->getOperand(0));
4709 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004710 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner2c8086f2005-04-02 05:00:07 +00004711 // NOTE: we do not have to do any extra rounding here for
4712 // NoExcessFPPrecision, because we know the input will have the appropriate
4713 // precision, and these operations don't modify precision at all.
4714 break;
4715
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004716 case ISD::FLOG:
4717 case ISD::FLOG2:
4718 case ISD::FLOG10:
4719 case ISD::FEXP:
4720 case ISD::FEXP2:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004721 case ISD::FSQRT:
4722 case ISD::FSIN:
4723 case ISD::FCOS:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00004724 case ISD::FTRUNC:
4725 case ISD::FFLOOR:
4726 case ISD::FCEIL:
4727 case ISD::FRINT:
4728 case ISD::FNEARBYINT:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004729 Tmp1 = PromoteOp(Node->getOperand(0));
4730 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004731 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004732 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004733 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004734 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004735 break;
4736
Evan Cheng9d24ac52008-09-09 23:35:53 +00004737 case ISD::FPOW:
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004738 case ISD::FPOWI: {
Evan Cheng9d24ac52008-09-09 23:35:53 +00004739 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004740 // directly as well, which may be better.
4741 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng9d24ac52008-09-09 23:35:53 +00004742 Tmp2 = Node->getOperand(1);
4743 if (Node->getOpcode() == ISD::FPOW)
4744 Tmp2 = PromoteOp(Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004745 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004746 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004747 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004748 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004749 DAG.getValueType(VT));
4750 break;
4751 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004752
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004753 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004754 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004755 Tmp2 = PromoteOp(Node->getOperand(2));
4756 Tmp3 = PromoteOp(Node->getOperand(3));
Scott Michelfdc40a02009-02-17 22:15:04 +00004757 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
4758 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004759 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004760 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004761 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004762 // Remember that we legalized the chain.
4763 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4764 break;
4765 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004766 case ISD::ATOMIC_LOAD_ADD:
4767 case ISD::ATOMIC_LOAD_SUB:
4768 case ISD::ATOMIC_LOAD_AND:
4769 case ISD::ATOMIC_LOAD_OR:
4770 case ISD::ATOMIC_LOAD_XOR:
4771 case ISD::ATOMIC_LOAD_NAND:
4772 case ISD::ATOMIC_LOAD_MIN:
4773 case ISD::ATOMIC_LOAD_MAX:
4774 case ISD::ATOMIC_LOAD_UMIN:
4775 case ISD::ATOMIC_LOAD_UMAX:
4776 case ISD::ATOMIC_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004777 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004778 Tmp2 = PromoteOp(Node->getOperand(2));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004779 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00004780 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004781 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004782 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004783 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004784 // Remember that we legalized the chain.
4785 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4786 break;
4787 }
4788
Chris Lattner03c85462005-01-15 05:21:40 +00004789 case ISD::AND:
4790 case ISD::OR:
4791 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004792 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004793 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004794 case ISD::MUL:
4795 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004796 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004797 // that too is okay if they are integer operations.
4798 Tmp1 = PromoteOp(Node->getOperand(0));
4799 Tmp2 = PromoteOp(Node->getOperand(1));
4800 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004801 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004802 break;
4803 case ISD::FADD:
4804 case ISD::FSUB:
4805 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004806 Tmp1 = PromoteOp(Node->getOperand(0));
4807 Tmp2 = PromoteOp(Node->getOperand(1));
4808 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004809 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00004810
Chris Lattner01b3d732005-09-28 22:28:18 +00004811 // Floating point operations will give excess precision that we may not be
4812 // able to tolerate. If we DO allow excess precision, just leave it,
4813 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004814 // FIXME: Why would we need to round FP ops more than integer ones?
4815 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004816 if (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 Lattner0f69b292005-01-15 06:18:18 +00004819 break;
4820
Chris Lattner8b6fa222005-01-15 22:16:26 +00004821 case ISD::SDIV:
4822 case ISD::SREM:
4823 // These operators require that their input be sign extended.
4824 Tmp1 = PromoteOp(Node->getOperand(0));
4825 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004826 if (NVT.isInteger()) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00004827 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Chris Lattner15e4b012005-07-10 00:07:11 +00004828 DAG.getValueType(VT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004829 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Chris Lattner15e4b012005-07-10 00:07:11 +00004830 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004831 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00004832 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004833
4834 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004835 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004836 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004837 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004838 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004839 case ISD::FDIV:
4840 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004841 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004842 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004843 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004844 case Expand: assert(0 && "not implemented");
4845 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4846 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004847 }
4848 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004849 case Expand: assert(0 && "not implemented");
4850 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4851 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004852 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00004853 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00004854
Chris Lattner01b3d732005-09-28 22:28:18 +00004855 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004856 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004857 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner01b3d732005-09-28 22:28:18 +00004858 DAG.getValueType(VT));
4859 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004860
4861 case ISD::UDIV:
4862 case ISD::UREM:
4863 // These operators require that their input be zero extended.
4864 Tmp1 = PromoteOp(Node->getOperand(0));
4865 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004866 assert(NVT.isInteger() && "Operators don't apply to FP!");
Dale Johannesen8a782a22009-02-02 22:12:50 +00004867 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4868 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
4869 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004870 break;
4871
4872 case ISD::SHL:
4873 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004874 Result = DAG.getNode(ISD::SHL, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004875 break;
4876 case ISD::SRA:
4877 // The input value must be properly sign extended.
4878 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004879 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Chris Lattner15e4b012005-07-10 00:07:11 +00004880 DAG.getValueType(VT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004881 Result = DAG.getNode(ISD::SRA, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004882 break;
4883 case ISD::SRL:
4884 // The input value must be properly zero extended.
4885 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004886 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4887 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004888 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004889
4890 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004891 Tmp1 = Node->getOperand(0); // Get the chain.
4892 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004893 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00004894 Tmp3 = DAG.getVAArg(VT, dl, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004895 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004896 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004897 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenc460ae92009-02-04 00:13:36 +00004898 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004899 // Increment the pointer, VAList, to the next vaarg
Scott Michelfdc40a02009-02-17 22:15:04 +00004900 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004901 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004902 TLI.getPointerTy()));
4903 // Store the incremented VAList to the legalized pointer
Dale Johannesen8a782a22009-02-02 22:12:50 +00004904 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004905 // Load the actual argument out of the pointer VAList
Dale Johannesen8a782a22009-02-02 22:12:50 +00004906 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004907 }
4908 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004909 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004910 break;
4911
Evan Cheng466685d2006-10-09 20:57:25 +00004912 case ISD::LOAD: {
4913 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004914 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4915 ? ISD::EXTLOAD : LD->getExtensionType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00004916 Result = DAG.getExtLoad(ExtType, dl, NVT,
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004917 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004918 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004919 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004920 LD->isVolatile(),
4921 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004922 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004923 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004924 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004925 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004926 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004927 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4928 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004929
Duncan Sands83ec4b62008-06-06 12:08:01 +00004930 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004931 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004932 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4933 // Ensure that the resulting node is at least the same size as the operands'
4934 // value types, because we cannot assume that TLI.getSetCCValueType() is
4935 // constant.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004936 Result = DAG.getNode(ISD::SELECT, dl, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004937 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004938 }
Nate Begeman9373a812005-08-10 20:51:12 +00004939 case ISD::SELECT_CC:
4940 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4941 Tmp3 = PromoteOp(Node->getOperand(3)); // False
Dale Johannesen8a782a22009-02-02 22:12:50 +00004942 Result = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004943 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004944 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004945 case ISD::BSWAP:
4946 Tmp1 = Node->getOperand(0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004947 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
4948 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4949 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004950 DAG.getConstant(NVT.getSizeInBits() -
4951 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004952 TLI.getShiftAmountTy()));
4953 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004954 case ISD::CTPOP:
4955 case ISD::CTTZ:
4956 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004957 // Zero extend the argument
Dale Johannesen8a782a22009-02-02 22:12:50 +00004958 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004959 // Perform the larger operation, then subtract if needed.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004960 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004961 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004962 case ISD::CTPOP:
4963 Result = Tmp1;
4964 break;
4965 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004966 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004967 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004968 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004969 ISD::SETEQ);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004970 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004971 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004972 break;
4973 case ISD::CTLZ:
4974 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00004975 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004976 DAG.getConstant(NVT.getSizeInBits() -
4977 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004978 break;
4979 }
4980 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004981 case ISD::EXTRACT_SUBVECTOR:
4982 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004983 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004984 case ISD::EXTRACT_VECTOR_ELT:
4985 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4986 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004987 }
4988
Gabor Greifba36cb52008-08-28 21:40:38 +00004989 assert(Result.getNode() && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004990
4991 // Make sure the result is itself legal.
4992 Result = LegalizeOp(Result);
Scott Michelfdc40a02009-02-17 22:15:04 +00004993
Chris Lattner456a93a2006-01-28 07:39:30 +00004994 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004995 AddPromotedOperand(Op, Result);
4996 return Result;
4997}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004998
Dan Gohman7f321562007-06-25 16:23:39 +00004999/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
5000/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
5001/// based on the vector type. The return type of this matches the element type
5002/// of the vector, which may not be legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00005003SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Chris Lattner15972212006-03-31 17:55:51 +00005004 // We know that operand #0 is the Vec vector. If the index is a constant
5005 // or if the invec is a supported hardware type, we can use it. Otherwise,
5006 // lower to a store then an indexed load.
Dan Gohman475871a2008-07-27 21:46:04 +00005007 SDValue Vec = Op.getOperand(0);
5008 SDValue Idx = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005009 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00005010
Duncan Sands83ec4b62008-06-06 12:08:01 +00005011 MVT TVT = Vec.getValueType();
5012 unsigned NumElems = TVT.getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00005013
Dan Gohman7f321562007-06-25 16:23:39 +00005014 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
5015 default: assert(0 && "This action is not supported yet!");
5016 case TargetLowering::Custom: {
5017 Vec = LegalizeOp(Vec);
5018 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005019 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005020 if (Tmp3.getNode())
Dan Gohman7f321562007-06-25 16:23:39 +00005021 return Tmp3;
5022 break;
5023 }
5024 case TargetLowering::Legal:
5025 if (isTypeLegal(TVT)) {
5026 Vec = LegalizeOp(Vec);
5027 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00005028 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00005029 }
5030 break;
Mon P Wang0c397192008-10-30 08:01:45 +00005031 case TargetLowering::Promote:
5032 assert(TVT.isVector() && "not vector type");
5033 // fall thru to expand since vectors are by default are promote
Dan Gohman7f321562007-06-25 16:23:39 +00005034 case TargetLowering::Expand:
5035 break;
5036 }
5037
5038 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00005039 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00005040 Op = ScalarizeVectorOp(Vec);
5041 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00005042 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00005043 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005044 SDValue Lo, Hi;
Chris Lattner15972212006-03-31 17:55:51 +00005045 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005046 if (CIdx->getZExtValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00005047 Vec = Lo;
5048 } else {
5049 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005050 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00005051 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00005052 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005053
Chris Lattner15972212006-03-31 17:55:51 +00005054 // It's now an extract from the appropriate high or low part. Recurse.
5055 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005056 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00005057 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00005058 // Store the value to a temporary stack slot, then LOAD the scalar
5059 // element back out.
Dan Gohman475871a2008-07-27 21:46:04 +00005060 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dale Johannesenbb5da912009-02-02 20:41:04 +00005061 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, NULL, 0);
Dan Gohman7f321562007-06-25 16:23:39 +00005062
5063 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005064 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +00005065 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Dan Gohman7f321562007-06-25 16:23:39 +00005066 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005067
Duncan Sands8e4eb092008-06-08 20:54:56 +00005068 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Dale Johannesenbb5da912009-02-02 20:41:04 +00005069 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005070 else
Dale Johannesenbb5da912009-02-02 20:41:04 +00005071 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005072
Dale Johannesenbb5da912009-02-02 20:41:04 +00005073 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
Dan Gohman7f321562007-06-25 16:23:39 +00005074
Dale Johannesenbb5da912009-02-02 20:41:04 +00005075 Op = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00005076 }
Dan Gohman7f321562007-06-25 16:23:39 +00005077 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00005078}
5079
Dan Gohman7f321562007-06-25 16:23:39 +00005080/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00005081/// we assume the operation can be split if it is not already legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005082SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohman65956352007-06-13 15:12:02 +00005083 // We know that operand #0 is the Vec vector. For now we assume the index
5084 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman475871a2008-07-27 21:46:04 +00005085 SDValue Vec = Op.getOperand(0);
5086 SDValue Idx = LegalizeOp(Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005087
Duncan Sands83ec4b62008-06-06 12:08:01 +00005088 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00005089
Duncan Sands83ec4b62008-06-06 12:08:01 +00005090 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00005091 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00005092 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00005093 }
5094
5095 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005096 SDValue Lo, Hi;
Dan Gohman65956352007-06-13 15:12:02 +00005097 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005098 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohman65956352007-06-13 15:12:02 +00005099 Vec = Lo;
5100 } else {
5101 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005102 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
5103 Idx.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00005104 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005105
Dan Gohman65956352007-06-13 15:12:02 +00005106 // It's now an extract from the appropriate high or low part. Recurse.
5107 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005108 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00005109}
5110
Nate Begeman750ac1b2006-02-01 07:19:44 +00005111/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
5112/// with condition CC on the current target. This usually involves legalizing
5113/// or promoting the arguments. In the case where LHS and RHS must be expanded,
5114/// there may be no choice but to create a new SetCC node to represent the
5115/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman475871a2008-07-27 21:46:04 +00005116/// LHS, and the SDValue returned in RHS has a nil SDNode value.
5117void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
5118 SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005119 SDValue &CC,
5120 DebugLoc dl) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005121 SDValue Tmp1, Tmp2, Tmp3, Result;
5122
Nate Begeman750ac1b2006-02-01 07:19:44 +00005123 switch (getTypeAction(LHS.getValueType())) {
5124 case Legal:
5125 Tmp1 = LegalizeOp(LHS); // LHS
5126 Tmp2 = LegalizeOp(RHS); // RHS
5127 break;
5128 case Promote:
5129 Tmp1 = PromoteOp(LHS); // LHS
5130 Tmp2 = PromoteOp(RHS); // RHS
5131
5132 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005133 if (LHS.getValueType().isInteger()) {
5134 MVT VT = LHS.getValueType();
5135 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005136
5137 // Otherwise, we have to insert explicit sign or zero extends. Note
5138 // that we could insert sign extends for ALL conditions, but zero extend
5139 // is cheaper on many machines (an AND instead of two shifts), so prefer
5140 // it.
5141 switch (cast<CondCodeSDNode>(CC)->get()) {
5142 default: assert(0 && "Unknown integer comparison!");
5143 case ISD::SETEQ:
5144 case ISD::SETNE:
5145 case ISD::SETUGE:
5146 case ISD::SETUGT:
5147 case ISD::SETULE:
5148 case ISD::SETULT:
5149 // ALL of these operations will work if we either sign or zero extend
5150 // the operands (including the unsigned comparisons!). Zero extend is
5151 // usually a simpler/cheaper operation, so prefer it.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005152 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
5153 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005154 break;
5155 case ISD::SETGE:
5156 case ISD::SETGT:
5157 case ISD::SETLT:
5158 case ISD::SETLE:
Dale Johannesenbb5da912009-02-02 20:41:04 +00005159 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005160 DAG.getValueType(VT));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005161 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005162 DAG.getValueType(VT));
Evan Chengefa53392008-10-13 18:46:18 +00005163 Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
5164 Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
Nate Begeman750ac1b2006-02-01 07:19:44 +00005165 break;
5166 }
5167 }
5168 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005169 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005170 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00005171 if (VT == MVT::f32 || VT == MVT::f64) {
5172 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00005173 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00005174 switch (cast<CondCodeSDNode>(CC)->get()) {
5175 case ISD::SETEQ:
5176 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00005177 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005178 break;
5179 case ISD::SETNE:
5180 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00005181 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005182 break;
5183 case ISD::SETGE:
5184 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00005185 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005186 break;
5187 case ISD::SETLT:
5188 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00005189 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005190 break;
5191 case ISD::SETLE:
5192 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00005193 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005194 break;
5195 case ISD::SETGT:
5196 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00005197 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005198 break;
5199 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00005200 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5201 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005202 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00005203 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005204 break;
5205 default:
Evan Cheng56966222007-01-12 02:11:51 +00005206 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005207 switch (cast<CondCodeSDNode>(CC)->get()) {
5208 case ISD::SETONE:
5209 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00005210 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005211 // Fallthrough
5212 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00005213 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005214 break;
5215 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00005216 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005217 break;
5218 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00005219 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005220 break;
5221 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00005222 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005223 break;
Evan Cheng56966222007-01-12 02:11:51 +00005224 case ISD::SETUEQ:
5225 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00005226 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005227 default: assert(0 && "Unsupported FP setcc!");
5228 }
5229 }
Duncan Sandsf9516202008-06-30 10:19:09 +00005230
Dan Gohman475871a2008-07-27 21:46:04 +00005231 SDValue Dummy;
5232 SDValue Ops[2] = { LHS, RHS };
Dale Johannesenbb5da912009-02-02 20:41:04 +00005233 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005234 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00005235 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00005236 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00005237 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Dale Johannesenbb5da912009-02-02 20:41:04 +00005238 Tmp1 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005239 TLI.getSetCCResultType(Tmp1.getValueType()),
5240 Tmp1, Tmp2, CC);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005241 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005242 false /*sign irrelevant*/, Dummy);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005243 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005244 TLI.getSetCCResultType(LHS.getValueType()), LHS,
5245 Tmp2, DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005246 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman475871a2008-07-27 21:46:04 +00005247 Tmp2 = SDValue();
Evan Cheng2b49c502006-12-15 02:59:56 +00005248 }
Evan Cheng21cacc42008-07-07 07:18:09 +00005249 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00005250 RHS = Tmp2;
5251 return;
5252 }
5253
Dan Gohman475871a2008-07-27 21:46:04 +00005254 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Nate Begeman750ac1b2006-02-01 07:19:44 +00005255 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00005256 ExpandOp(RHS, RHSLo, RHSHi);
5257 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5258
5259 if (VT==MVT::ppcf128) {
5260 // FIXME: This generated code sucks. We want to generate
Dale Johannesene2f20832008-09-12 00:30:56 +00005261 // FCMPU crN, hi1, hi2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005262 // BNE crN, L:
Dale Johannesene2f20832008-09-12 00:30:56 +00005263 // FCMPU crN, lo1, lo2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005264 // The following can be improved, but not that much.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005265 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005266 LHSHi, RHSHi, ISD::SETOEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005267 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005268 LHSLo, RHSLo, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005269 Tmp3 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5270 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005271 LHSHi, RHSHi, ISD::SETUNE);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005272 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005273 LHSHi, RHSHi, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005274 Tmp1 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5275 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman475871a2008-07-27 21:46:04 +00005276 Tmp2 = SDValue();
Dale Johannesen638ccd52007-10-06 01:24:11 +00005277 break;
5278 }
5279
5280 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005281 case ISD::SETEQ:
5282 case ISD::SETNE:
5283 if (RHSLo == RHSHi)
5284 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
5285 if (RHSCST->isAllOnesValue()) {
5286 // Comparison to -1.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005287 Tmp1 = DAG.getNode(ISD::AND, dl,LHSLo.getValueType(), LHSLo, LHSHi);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005288 Tmp2 = RHSLo;
5289 break;
5290 }
5291
Dale Johannesenbb5da912009-02-02 20:41:04 +00005292 Tmp1 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
5293 Tmp2 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
5294 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005295 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
5296 break;
5297 default:
5298 // If this is a comparison of the sign bit, just look at the top part.
5299 // X > -1, x < 0
5300 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
Scott Michelfdc40a02009-02-17 22:15:04 +00005301 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00005302 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00005303 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
5304 CST->isAllOnesValue())) { // X > -1
5305 Tmp1 = LHSHi;
5306 Tmp2 = RHSHi;
5307 break;
5308 }
5309
5310 // FIXME: This generated code sucks.
5311 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00005312 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005313 default: assert(0 && "Unknown integer setcc!");
5314 case ISD::SETLT:
5315 case ISD::SETULT: LowCC = ISD::SETULT; break;
5316 case ISD::SETGT:
5317 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
5318 case ISD::SETLE:
5319 case ISD::SETULE: LowCC = ISD::SETULE; break;
5320 case ISD::SETGE:
5321 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
5322 }
5323
5324 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
5325 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
5326 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
5327
5328 // NOTE: on targets without efficient SELECT of bools, we can always use
5329 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00005330 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Duncan Sands5480c042009-01-01 15:52:00 +00005331 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005332 LHSLo, RHSLo, LowCC, false, DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005333 if (!Tmp1.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005334 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005335 LHSLo, RHSLo, LowCC);
5336 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005337 LHSHi, RHSHi, CCCode, false, DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005338 if (!Tmp2.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005339 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005340 TLI.getSetCCResultType(LHSHi.getValueType()),
5341 LHSHi, RHSHi,CC);
Scott Michelfdc40a02009-02-17 22:15:04 +00005342
Gabor Greifba36cb52008-08-28 21:40:38 +00005343 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
5344 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman002e5d02008-03-13 22:13:53 +00005345 if ((Tmp1C && Tmp1C->isNullValue()) ||
5346 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00005347 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
5348 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00005349 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00005350 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
5351 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
5352 // low part is known false, returns high part.
5353 // For LE / GE, if high part is known false, ignore the low part.
5354 // For LT / GT, if high part is known true, ignore the low part.
5355 Tmp1 = Tmp2;
Dan Gohman475871a2008-07-27 21:46:04 +00005356 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005357 } else {
Duncan Sands5480c042009-01-01 15:52:00 +00005358 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
5359 LHSHi, RHSHi, ISD::SETEQ, false,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005360 DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005361 if (!Result.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005362 Result=DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005363 LHSHi, RHSHi, ISD::SETEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005364 Result = LegalizeOp(DAG.getNode(ISD::SELECT, dl, Tmp1.getValueType(),
Evan Cheng2e677812007-02-08 22:16:19 +00005365 Result, Tmp1, Tmp2));
5366 Tmp1 = Result;
Dan Gohman475871a2008-07-27 21:46:04 +00005367 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005368 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005369 }
5370 }
Evan Cheng2b49c502006-12-15 02:59:56 +00005371 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005372 LHS = Tmp1;
5373 RHS = Tmp2;
5374}
5375
Evan Cheng7f042682008-10-15 02:05:31 +00005376/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
5377/// condition code CC on the current target. This routine assumes LHS and rHS
5378/// have already been legalized by LegalizeSetCCOperands. It expands SETCC with
5379/// illegal condition code into AND / OR of multiple SETCC values.
5380void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT,
5381 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005382 SDValue &CC,
5383 DebugLoc dl) {
Evan Cheng7f042682008-10-15 02:05:31 +00005384 MVT OpVT = LHS.getValueType();
5385 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5386 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
5387 default: assert(0 && "Unknown condition code action!");
5388 case TargetLowering::Legal:
5389 // Nothing to do.
5390 break;
5391 case TargetLowering::Expand: {
5392 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
5393 unsigned Opc = 0;
5394 switch (CCCode) {
5395 default: assert(0 && "Don't know how to expand this condition!"); abort();
Dan Gohmane7d238e2008-10-21 03:12:54 +00005396 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
5397 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5398 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5399 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5400 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5401 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5402 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5403 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5404 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5405 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5406 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5407 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng7f042682008-10-15 02:05:31 +00005408 // FIXME: Implement more expansions.
5409 }
5410
Dale Johannesenbb5da912009-02-02 20:41:04 +00005411 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
5412 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
5413 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00005414 RHS = SDValue();
5415 CC = SDValue();
5416 break;
5417 }
5418 }
5419}
5420
Chris Lattner1401d152008-01-16 07:45:30 +00005421/// EmitStackConvert - Emit a store/load combination to the stack. This stores
5422/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
5423/// a load from the stack slot to DestVT, extending it if needed.
5424/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005425SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
5426 MVT SlotVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005427 MVT DestVT,
5428 DebugLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00005429 // Create the stack frame object.
Mon P Wang364d73d2008-07-05 20:40:31 +00005430 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
5431 SrcOp.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00005432 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00005433
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005434 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005435 int SPFI = StackPtrFI->getIndex();
Dan Gohman15b38302009-01-29 21:02:43 +00005436 const Value *SV = PseudoSourceValue::getFixedStack(SPFI);
5437
Duncan Sands83ec4b62008-06-06 12:08:01 +00005438 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
5439 unsigned SlotSize = SlotVT.getSizeInBits();
5440 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang364d73d2008-07-05 20:40:31 +00005441 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
5442 DestVT.getTypeForMVT());
Scott Michelfdc40a02009-02-17 22:15:04 +00005443
Chris Lattner1401d152008-01-16 07:45:30 +00005444 // Emit a store to the stack slot. Use a truncstore if the input value is
5445 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00005446 SDValue Store;
Scott Michelfdc40a02009-02-17 22:15:04 +00005447
Chris Lattner1401d152008-01-16 07:45:30 +00005448 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005449 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005450 SV, 0, SlotVT, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005451 else {
5452 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00005453 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005454 SV, 0, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005455 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005456
Chris Lattner35481892005-12-23 00:16:34 +00005457 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00005458 if (SlotSize == DestSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005459 return DAG.getLoad(DestVT, dl, Store, FIPtr, SV, 0, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00005460
Chris Lattner1401d152008-01-16 07:45:30 +00005461 assert(SlotSize < DestSize && "Unknown extension!");
Dale Johannesen8a782a22009-02-02 22:12:50 +00005462 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr, SV, 0, SlotVT,
Mon P Wang364d73d2008-07-05 20:40:31 +00005463 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00005464}
5465
Dan Gohman475871a2008-07-27 21:46:04 +00005466SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005467 DebugLoc dl = Node->getDebugLoc();
Chris Lattner4352cc92006-04-04 17:23:26 +00005468 // Create a vector sized/aligned stack slot, store the value to element #0,
5469 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00005470 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00005471
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005472 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005473 int SPFI = StackPtrFI->getIndex();
5474
Scott Michelfdc40a02009-02-17 22:15:04 +00005475 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00005476 StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00005477 PseudoSourceValue::getFixedStack(SPFI), 0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00005478 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00005479 PseudoSourceValue::getFixedStack(SPFI), 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00005480}
5481
5482
Chris Lattnerce872152006-03-19 06:31:19 +00005483/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00005484/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00005485SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005486
5487 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00005488 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00005489 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00005490 bool isOnlyLowElement = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005491 SDValue SplatValue = Node->getOperand(0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00005492 DebugLoc dl = Node->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00005493
Dan Gohman475871a2008-07-27 21:46:04 +00005494 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005495 // and use a bitmask instead of a list of elements.
Dan Gohman475871a2008-07-27 21:46:04 +00005496 std::map<SDValue, std::vector<unsigned> > Values;
Evan Cheng033e6812006-03-24 01:17:21 +00005497 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005498 bool isConstant = true;
5499 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
5500 SplatValue.getOpcode() != ISD::UNDEF)
5501 isConstant = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005502
Evan Cheng033e6812006-03-24 01:17:21 +00005503 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005504 SDValue V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00005505 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00005506 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00005507 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00005508 if (SplatValue != V)
Dan Gohman475871a2008-07-27 21:46:04 +00005509 SplatValue = SDValue(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005510
5511 // If this isn't a constant element or an undef, we can't use a constant
5512 // pool load.
5513 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
5514 V.getOpcode() != ISD::UNDEF)
5515 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00005516 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005517
Chris Lattnerce872152006-03-19 06:31:19 +00005518 if (isOnlyLowElement) {
5519 // If the low element is an undef too, then this whole things is an undef.
5520 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
Dale Johannesene8d72302009-02-06 23:05:02 +00005521 return DAG.getUNDEF(Node->getValueType(0));
Chris Lattnerce872152006-03-19 06:31:19 +00005522 // Otherwise, turn this into a scalar_to_vector node.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005523 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, Node->getValueType(0),
Chris Lattnerce872152006-03-19 06:31:19 +00005524 Node->getOperand(0));
5525 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005526
Chris Lattner2eb86532006-03-24 07:29:17 +00005527 // If all elements are constants, create a load from the constant pool.
5528 if (isConstant) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005529 MVT VT = Node->getValueType(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005530 std::vector<Constant*> CV;
5531 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005532 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00005533 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005534 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00005535 } else if (ConstantSDNode *V =
Chris Lattner02a260a2008-04-20 00:41:09 +00005536 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005537 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00005538 } else {
5539 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Scott Michelfdc40a02009-02-17 22:15:04 +00005540 const Type *OpNTy =
Duncan Sands83ec4b62008-06-06 12:08:01 +00005541 Node->getOperand(0).getValueType().getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00005542 CV.push_back(UndefValue::get(OpNTy));
5543 }
5544 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00005545 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00005546 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00005547 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00005548 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005549 PseudoSourceValue::getConstantPool(), 0,
5550 false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00005551 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005552
Gabor Greifba36cb52008-08-28 21:40:38 +00005553 if (SplatValue.getNode()) { // Splat of one value?
Chris Lattner87100e02006-03-20 01:52:29 +00005554 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005555 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman475871a2008-07-27 21:46:04 +00005556 SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
5557 std::vector<SDValue> ZeroVec(NumElems, Zero);
Scott Michel4214a552009-02-22 23:36:09 +00005558 SDValue SplatMask = DAG.getBUILD_VECTOR(MaskVT, dl,
5559 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00005560
5561 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005562 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00005563 // Get the splatted value into the low element of a vector register.
Scott Michelfdc40a02009-02-17 22:15:04 +00005564 SDValue LowValVec =
5565 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005566 Node->getValueType(0), SplatValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00005567
Chris Lattner87100e02006-03-20 01:52:29 +00005568 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Scott Michelfdc40a02009-02-17 22:15:04 +00005569 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005570 Node->getValueType(0), LowValVec,
Dale Johannesene8d72302009-02-06 23:05:02 +00005571 DAG.getUNDEF(Node->getValueType(0)),
Chris Lattner87100e02006-03-20 01:52:29 +00005572 SplatMask);
5573 }
5574 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005575
Evan Cheng033e6812006-03-24 01:17:21 +00005576 // If there are only two unique elements, we may be able to turn this into a
5577 // vector shuffle.
5578 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005579 // Get the two values in deterministic order.
Dan Gohman475871a2008-07-27 21:46:04 +00005580 SDValue Val1 = Node->getOperand(1);
5581 SDValue Val2;
5582 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005583 if (MI->first != Val1)
5584 Val2 = MI->first;
5585 else
5586 Val2 = (++MI)->first;
Scott Michelfdc40a02009-02-17 22:15:04 +00005587
5588 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005589 // vector shuffle has the undef vector on the RHS.
5590 if (Val1.getOpcode() == ISD::UNDEF)
5591 std::swap(Val1, Val2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005592
Evan Cheng033e6812006-03-24 01:17:21 +00005593 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005594 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5595 MVT MaskEltVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00005596 std::vector<SDValue> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005597
5598 // Set elements of the shuffle mask for Val1.
5599 std::vector<unsigned> &Val1Elts = Values[Val1];
5600 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5601 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5602
5603 // Set elements of the shuffle mask for Val2.
5604 std::vector<unsigned> &Val2Elts = Values[Val2];
5605 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5606 if (Val2.getOpcode() != ISD::UNDEF)
5607 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5608 else
Dale Johannesene8d72302009-02-06 23:05:02 +00005609 MaskVec[Val2Elts[i]] = DAG.getUNDEF(MaskEltVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005610
Scott Michel4214a552009-02-22 23:36:09 +00005611 SDValue ShuffleMask = DAG.getBUILD_VECTOR(MaskVT, dl,
5612 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00005613
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005614 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005615 if (TLI.isOperationLegalOrCustom(ISD::SCALAR_TO_VECTOR,
5616 Node->getValueType(0)) &&
Chris Lattner4352cc92006-04-04 17:23:26 +00005617 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005618 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,Node->getValueType(0), Val1);
5619 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,Node->getValueType(0), Val2);
Dan Gohman475871a2008-07-27 21:46:04 +00005620 SDValue Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00005621
5622 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005623 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl,Node->getValueType(0), Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00005624 }
5625 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005626
Chris Lattnerce872152006-03-19 06:31:19 +00005627 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5628 // aligned object on the stack, store each element into it, then load
5629 // the result as a vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005630 MVT VT = Node->getValueType(0);
Chris Lattnerce872152006-03-19 06:31:19 +00005631 // Create the stack frame object.
Dan Gohman475871a2008-07-27 21:46:04 +00005632 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohman15b38302009-01-29 21:02:43 +00005633 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
5634 const Value *SV = PseudoSourceValue::getFixedStack(FI);
5635
Chris Lattnerce872152006-03-19 06:31:19 +00005636 // Emit a store of each element to the stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00005637 SmallVector<SDValue, 8> Stores;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005638 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Chris Lattnerce872152006-03-19 06:31:19 +00005639 // Store (in the right endianness) the elements to memory.
5640 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5641 // Ignore undef elements.
5642 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00005643
Chris Lattner841c8822006-03-22 01:46:54 +00005644 unsigned Offset = TypeByteSize*i;
Scott Michelfdc40a02009-02-17 22:15:04 +00005645
Dan Gohman475871a2008-07-27 21:46:04 +00005646 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Dale Johannesen8a782a22009-02-02 22:12:50 +00005647 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005648
Dale Johannesen8a782a22009-02-02 22:12:50 +00005649 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(i),
5650 Idx, SV, Offset));
Chris Lattnerce872152006-03-19 06:31:19 +00005651 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005652
Dan Gohman475871a2008-07-27 21:46:04 +00005653 SDValue StoreChain;
Chris Lattnerce872152006-03-19 06:31:19 +00005654 if (!Stores.empty()) // Not all undef elements?
Dale Johannesen8a782a22009-02-02 22:12:50 +00005655 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005656 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005657 else
5658 StoreChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005659
Chris Lattnerce872152006-03-19 06:31:19 +00005660 // Result is a load from the stack slot.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005661 return DAG.getLoad(VT, dl, StoreChain, FIPtr, SV, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005662}
5663
Chris Lattner5b359c62005-04-02 04:00:59 +00005664void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman475871a2008-07-27 21:46:04 +00005665 SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005666 SDValue &Lo, SDValue &Hi,
5667 DebugLoc dl) {
Chris Lattner5b359c62005-04-02 04:00:59 +00005668 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00005669 SDValue LHSL, LHSH;
Chris Lattner5b359c62005-04-02 04:00:59 +00005670 ExpandOp(Op, LHSL, LHSH);
5671
Dan Gohman475871a2008-07-27 21:46:04 +00005672 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005673 MVT VT = LHSL.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00005674 Lo = DAG.getNode(NodeOp, dl, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005675 Hi = Lo.getValue(1);
5676}
5677
5678
Chris Lattnere34b3962005-01-19 04:19:40 +00005679/// ExpandShift - Try to find a clever way to expand this shift operation out to
5680/// smaller elements. If we can't find a way that is more efficient than a
5681/// libcall on this target, return false. Otherwise, return true with the
5682/// low-parts expanded into Lo and Hi.
Dan Gohman475871a2008-07-27 21:46:04 +00005683bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op,SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005684 SDValue &Lo, SDValue &Hi,
5685 DebugLoc dl) {
Chris Lattnere34b3962005-01-19 04:19:40 +00005686 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5687 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005688
Duncan Sands83ec4b62008-06-06 12:08:01 +00005689 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman475871a2008-07-27 21:46:04 +00005690 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005691 MVT ShTy = ShAmt.getValueType();
5692 unsigned ShBits = ShTy.getSizeInBits();
5693 unsigned VTBits = Op.getValueType().getSizeInBits();
5694 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005695
Chris Lattner7a3c8552007-10-14 20:35:12 +00005696 // Handle the case when Amt is an immediate.
Gabor Greifba36cb52008-08-28 21:40:38 +00005697 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005698 unsigned Cst = CN->getZExtValue();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005699 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005700 SDValue InL, InH;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005701 ExpandOp(Op, InL, InH);
5702 switch(Opc) {
5703 case ISD::SHL:
5704 if (Cst > VTBits) {
5705 Lo = DAG.getConstant(0, NVT);
5706 Hi = DAG.getConstant(0, NVT);
5707 } else if (Cst > NVTBits) {
5708 Lo = DAG.getConstant(0, NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00005709 Hi = DAG.getNode(ISD::SHL, dl,
5710 NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005711 } else if (Cst == NVTBits) {
5712 Lo = DAG.getConstant(0, NVT);
5713 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005714 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005715 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, DAG.getConstant(Cst, ShTy));
5716 Hi = DAG.getNode(ISD::OR, dl, NVT,
5717 DAG.getNode(ISD::SHL, dl, NVT, InH, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005718 DAG.getNode(ISD::SRL, dl, NVT, InL,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005719 DAG.getConstant(NVTBits-Cst, ShTy)));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005720 }
5721 return true;
5722 case ISD::SRL:
5723 if (Cst > VTBits) {
5724 Lo = DAG.getConstant(0, NVT);
5725 Hi = DAG.getConstant(0, NVT);
5726 } else if (Cst > NVTBits) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005727 Lo = DAG.getNode(ISD::SRL, dl, NVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005728 InH, DAG.getConstant(Cst-NVTBits,ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005729 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005730 } else if (Cst == NVTBits) {
5731 Lo = InH;
5732 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005733 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005734 Lo = DAG.getNode(ISD::OR, dl, NVT,
5735 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005736 DAG.getNode(ISD::SHL, dl, NVT, InH,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005737 DAG.getConstant(NVTBits-Cst, ShTy)));
5738 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005739 }
5740 return true;
5741 case ISD::SRA:
5742 if (Cst > VTBits) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005743 Hi = Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005744 DAG.getConstant(NVTBits-1, ShTy));
5745 } else if (Cst > NVTBits) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005746 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005747 DAG.getConstant(Cst-NVTBits, ShTy));
Dale Johannesen8a782a22009-02-02 22:12:50 +00005748 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005749 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005750 } else if (Cst == NVTBits) {
5751 Lo = InH;
Dale Johannesen8a782a22009-02-02 22:12:50 +00005752 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005753 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005754 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005755 Lo = DAG.getNode(ISD::OR, dl, NVT,
5756 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005757 DAG.getNode(ISD::SHL, dl,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005758 NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5759 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005760 }
5761 return true;
5762 }
5763 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005764
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005765 // Okay, the shift amount isn't constant. However, if we can tell that it is
5766 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005767 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5768 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005769 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00005770
Dan Gohman9e255b72008-02-22 01:12:31 +00005771 // If we know that if any of the high bits of the shift amount are one, then
5772 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005773 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005774 // Mask out the high bit, which we know is set.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005775 Amt = DAG.getNode(ISD::AND, dl, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005776 DAG.getConstant(~Mask, Amt.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00005777
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005778 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005779 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005780 ExpandOp(Op, InL, InH);
5781 switch(Opc) {
5782 case ISD::SHL:
5783 Lo = DAG.getConstant(0, NVT); // Low part is zero.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005784 Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005785 return true;
5786 case ISD::SRL:
5787 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005788 Lo = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); // Lo part from Hi part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005789 return true;
5790 case ISD::SRA:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005791 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, // Sign extend high part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005792 DAG.getConstant(NVTBits-1, Amt.getValueType()));
Dale Johannesen8a782a22009-02-02 22:12:50 +00005793 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); // Lo part from Hi part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005794 return true;
5795 }
5796 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005797
Dan Gohman9e255b72008-02-22 01:12:31 +00005798 // If we know that the high bits of the shift amount are all zero, then we can
5799 // do this as a couple of simple shifts.
5800 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005801 // Compute 32-amt.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005802 SDValue Amt2 = DAG.getNode(ISD::SUB, dl, Amt.getValueType(),
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005803 DAG.getConstant(NVTBits, Amt.getValueType()),
5804 Amt);
Scott Michelfdc40a02009-02-17 22:15:04 +00005805
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005806 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005807 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005808 ExpandOp(Op, InL, InH);
5809 switch(Opc) {
5810 case ISD::SHL:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005811 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt);
5812 Hi = DAG.getNode(ISD::OR, dl, NVT,
5813 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt),
5814 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005815 return true;
5816 case ISD::SRL:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005817 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt);
5818 Lo = DAG.getNode(ISD::OR, dl, NVT,
5819 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5820 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005821 return true;
5822 case ISD::SRA:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005823 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt);
5824 Lo = DAG.getNode(ISD::OR, dl, NVT,
5825 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5826 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005827 return true;
5828 }
5829 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005830
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005831 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005832}
Chris Lattner77e77a62005-01-21 06:05:23 +00005833
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005834
Chris Lattner77e77a62005-01-21 06:05:23 +00005835// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5836// does not fit into a register, return the lo part and set the hi part to the
5837// by-reg argument. If it does fit into a single register, return the result
5838// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00005839SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5840 bool isSigned, SDValue &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005841 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
Scott Michelfdc40a02009-02-17 22:15:04 +00005842 // The input chain to this libcall is the entry node of the function.
Chris Lattner6831a812006-02-13 09:18:02 +00005843 // Legalizing the call will automatically add the previous call to the
5844 // dependence.
Dan Gohman475871a2008-07-27 21:46:04 +00005845 SDValue InChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005846
Chris Lattner77e77a62005-01-21 06:05:23 +00005847 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005848 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005849 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005850 MVT ArgVT = Node->getOperand(i).getValueType();
5851 const Type *ArgTy = ArgVT.getTypeForMVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00005852 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005853 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005854 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005855 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005856 }
Bill Wendling056292f2008-09-16 21:48:12 +00005857 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00005858 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005859
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005860 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005861 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Dan Gohman475871a2008-07-27 21:46:04 +00005862 std::pair<SDValue,SDValue> CallInfo =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005863 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005864 CallingConv::C, false, Callee, Args, DAG,
5865 Node->getDebugLoc());
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005866
Chris Lattner6831a812006-02-13 09:18:02 +00005867 // Legalize the call sequence, starting with the chain. This will advance
5868 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5869 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5870 LegalizeOp(CallInfo.second);
Dan Gohman475871a2008-07-27 21:46:04 +00005871 SDValue Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005872 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005873 default: assert(0 && "Unknown thing");
5874 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005875 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005876 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005877 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005878 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005879 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005880 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005881 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005882}
5883
Dan Gohman7f8613e2008-08-14 20:04:46 +00005884/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5885///
5886SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005887LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op,
5888 DebugLoc dl) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00005889 bool isCustom = false;
5890 SDValue Tmp1;
5891 switch (getTypeAction(Op.getValueType())) {
5892 case Legal:
5893 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5894 Op.getValueType())) {
5895 default: assert(0 && "Unknown operation action!");
5896 case TargetLowering::Custom:
5897 isCustom = true;
5898 // FALLTHROUGH
5899 case TargetLowering::Legal:
5900 Tmp1 = LegalizeOp(Op);
Gabor Greifba36cb52008-08-28 21:40:38 +00005901 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005902 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5903 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005904 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005905 DestTy, Tmp1);
5906 if (isCustom) {
5907 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005908 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005909 }
5910 break;
5911 case TargetLowering::Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005912 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005913 break;
5914 case TargetLowering::Promote:
Dale Johannesenaf435272009-02-02 19:03:57 +00005915 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005916 break;
5917 }
5918 break;
5919 case Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005920 Result = ExpandIntToFP(isSigned, DestTy, Op, dl) ;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005921 break;
5922 case Promote:
5923 Tmp1 = PromoteOp(Op);
5924 if (isSigned) {
Dale Johannesenaf435272009-02-02 19:03:57 +00005925 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp1.getValueType(),
Dan Gohman7f8613e2008-08-14 20:04:46 +00005926 Tmp1, DAG.getValueType(Op.getValueType()));
5927 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00005928 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005929 Op.getValueType());
5930 }
Gabor Greifba36cb52008-08-28 21:40:38 +00005931 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005932 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5933 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005934 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005935 DestTy, Tmp1);
5936 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5937 break;
5938 }
5939 return Result;
5940}
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005941
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005942/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5943///
Dan Gohman475871a2008-07-27 21:46:04 +00005944SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005945ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005946 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005947 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005948
Dan Gohman7f8613e2008-08-14 20:04:46 +00005949 // Expand unsupported int-to-fp vector casts by unrolling them.
5950 if (DestTy.isVector()) {
5951 if (!ExpandSource)
5952 return LegalizeOp(UnrollVectorOp(Source));
5953 MVT DestEltTy = DestTy.getVectorElementType();
5954 if (DestTy.getVectorNumElements() == 1) {
5955 SDValue Scalar = ScalarizeVectorOp(Source);
5956 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00005957 DestEltTy, Scalar, dl);
Scott Michel4214a552009-02-22 23:36:09 +00005958 return DAG.getBUILD_VECTOR(DestTy, dl, Result);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005959 }
5960 SDValue Lo, Hi;
5961 SplitVectorOp(Source, Lo, Hi);
5962 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5963 DestTy.getVectorNumElements() / 2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005964 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +00005965 Lo, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00005966 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +00005967 Hi, dl);
5968 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, DestTy, LoResult,
Evan Chengefa53392008-10-13 18:46:18 +00005969 HiResult));
Dan Gohman7f8613e2008-08-14 20:04:46 +00005970 }
5971
Evan Cheng9845eb52008-04-01 02:18:22 +00005972 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5973 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005974 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005975 // incoming integer is set. To handle this, we dynamically test to see if
5976 // it is set, and, if so, add a fudge factor.
Dan Gohman475871a2008-07-27 21:46:04 +00005977 SDValue Hi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005978 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005979 SDValue Lo;
Dan Gohman034f60e2008-03-11 01:59:03 +00005980 ExpandOp(Source, Lo, Hi);
Dale Johannesenaf435272009-02-02 19:03:57 +00005981 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, Lo, Hi);
Dan Gohman034f60e2008-03-11 01:59:03 +00005982 } else {
5983 // The comparison for the sign bit will use the entire operand.
5984 Hi = Source;
5985 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005986
Dale Johannesen53997b02008-11-04 20:52:49 +00005987 // Check to see if the target has a custom way to lower this. If so, use
5988 // it. (Note we've already expanded the operand in this case.)
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005989 switch (TLI.getOperationAction(ISD::UINT_TO_FP, SourceVT)) {
5990 default: assert(0 && "This action not implemented for this operation!");
5991 case TargetLowering::Legal:
5992 case TargetLowering::Expand:
5993 break; // This case is handled below.
5994 case TargetLowering::Custom: {
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005995 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::UINT_TO_FP, dl, DestTy,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005996 Source), DAG);
5997 if (NV.getNode())
5998 return LegalizeOp(NV);
5999 break; // The target decided this was legal after all
6000 }
6001 }
6002
Chris Lattner66de05b2005-05-13 04:45:13 +00006003 // If this is unsigned, and not supported, first perform the conversion to
6004 // signed, then adjust the result if the sign bit is set.
Dale Johannesenaf435272009-02-02 19:03:57 +00006005 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source, dl);
Chris Lattner66de05b2005-05-13 04:45:13 +00006006
Scott Michelfdc40a02009-02-17 22:15:04 +00006007 SDValue SignSet = DAG.getSetCC(dl,
Dale Johannesenaf435272009-02-02 19:03:57 +00006008 TLI.getSetCCResultType(Hi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00006009 Hi, DAG.getConstant(0, Hi.getValueType()),
6010 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00006011 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00006012 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattnere9c35e72005-04-13 05:09:42 +00006013 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00006014 uint64_t FF = 0x5f800000ULL;
6015 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohman34bc1782008-03-05 02:07:31 +00006016 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00006017
Dan Gohman475871a2008-07-27 21:46:04 +00006018 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00006019 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00006020 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00006021 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00006022 SDValue FudgeInReg;
Chris Lattnere9c35e72005-04-13 05:09:42 +00006023 if (DestTy == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00006024 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00006025 PseudoSourceValue::getConstantPool(), 0,
6026 false, Alignment);
Duncan Sands8e4eb092008-06-08 20:54:56 +00006027 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006028 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesenaf435272009-02-02 19:03:57 +00006029 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, dl, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00006030 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00006031 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00006032 MVT::f32, false, Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00006033 else
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006034 assert(0 && "Unexpected conversion");
6035
Duncan Sands83ec4b62008-06-06 12:08:01 +00006036 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006037 if (SCVT != DestTy) {
6038 // Destination type needs to be expanded as well. The FADD now we are
6039 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006040 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
6041 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dale Johannesenaf435272009-02-02 19:03:57 +00006042 SignedConv = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006043 SignedConv, SignedConv.getValue(1));
6044 }
Dale Johannesenaf435272009-02-02 19:03:57 +00006045 SignedConv = DAG.getNode(ISD::BIT_CONVERT, dl, DestTy, SignedConv);
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006046 }
Dale Johannesenaf435272009-02-02 19:03:57 +00006047 return DAG.getNode(ISD::FADD, dl, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00006048 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00006049
Chris Lattnera88a2602005-05-14 05:33:54 +00006050 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00006051 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00006052 default: assert(0 && "This action not implemented for this operation!");
6053 case TargetLowering::Legal:
6054 case TargetLowering::Expand:
6055 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00006056 case TargetLowering::Custom: {
Dale Johannesenaf435272009-02-02 19:03:57 +00006057 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, dl, DestTy,
Chris Lattner07dffd62005-08-26 00:14:16 +00006058 Source), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006059 if (NV.getNode())
Chris Lattner07dffd62005-08-26 00:14:16 +00006060 return LegalizeOp(NV);
6061 break; // The target decided this was legal after all
6062 }
Chris Lattnera88a2602005-05-14 05:33:54 +00006063 }
6064
Chris Lattner13689e22005-05-12 07:00:44 +00006065 // Expand the source, then glue it back together for the call. We must expand
6066 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00006067 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00006068 SDValue SrcLo, SrcHi;
Dan Gohman034f60e2008-03-11 01:59:03 +00006069 ExpandOp(Source, SrcLo, SrcHi);
Dale Johannesenaf435272009-02-02 19:03:57 +00006070 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, SrcLo, SrcHi);
Dan Gohman034f60e2008-03-11 01:59:03 +00006071 }
Chris Lattner13689e22005-05-12 07:00:44 +00006072
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006073 RTLIB::Libcall LC = isSigned ?
6074 RTLIB::getSINTTOFP(SourceVT, DestTy) :
6075 RTLIB::getUINTTOFP(SourceVT, DestTy);
6076 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
6077
Dale Johannesenaf435272009-02-02 19:03:57 +00006078 Source = DAG.getNode(ISD::SINT_TO_FP, dl, DestTy, Source);
Dan Gohman475871a2008-07-27 21:46:04 +00006079 SDValue HiPart;
Gabor Greifba36cb52008-08-28 21:40:38 +00006080 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
6081 if (Result.getValueType() != DestTy && HiPart.getNode())
Dale Johannesenaf435272009-02-02 19:03:57 +00006082 Result = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy, Result, HiPart);
Dan Gohmana2e94852008-03-10 23:03:31 +00006083 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00006084}
Misha Brukmanedf128a2005-04-21 22:36:52 +00006085
Chris Lattner22cde6a2006-01-28 08:25:58 +00006086/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
6087/// INT_TO_FP operation of the specified operand when the target requests that
6088/// we expand it. At this point, we know that the result and operand types are
6089/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00006090SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
6091 SDValue Op0,
Dale Johannesenaf435272009-02-02 19:03:57 +00006092 MVT DestVT,
6093 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006094 if (Op0.getValueType() == MVT::i32) {
6095 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00006096
Chris Lattner23594d42008-01-16 07:03:22 +00006097 // Get the stack frame index of a 8 byte buffer.
Dan Gohman475871a2008-07-27 21:46:04 +00006098 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00006099
Chris Lattner22cde6a2006-01-28 08:25:58 +00006100 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00006101 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00006102 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00006103 SDValue Hi = StackSlot;
Scott Michelfdc40a02009-02-17 22:15:04 +00006104 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Dale Johannesenaf435272009-02-02 19:03:57 +00006105 TLI.getPointerTy(), StackSlot,WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00006106 if (TLI.isLittleEndian())
6107 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00006108
Chris Lattner22cde6a2006-01-28 08:25:58 +00006109 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00006110 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006111 if (isSigned) {
6112 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman475871a2008-07-27 21:46:04 +00006113 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dale Johannesenaf435272009-02-02 19:03:57 +00006114 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006115 } else {
6116 Op0Mapped = Op0;
6117 }
6118 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00006119 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Evan Cheng8b2794a2006-10-13 21:14:26 +00006120 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006121 // initial hi portion of constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00006122 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006123 // store the hi of the constructed double - biased exponent
Dale Johannesenaf435272009-02-02 19:03:57 +00006124 SDValue Store2=DAG.getStore(Store1, dl, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006125 // load the constructed double
Dale Johannesenaf435272009-02-02 19:03:57 +00006126 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006127 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00006128 SDValue Bias = DAG.getConstantFP(isSigned ?
Chris Lattner22cde6a2006-01-28 08:25:58 +00006129 BitsToDouble(0x4330000080000000ULL)
6130 : BitsToDouble(0x4330000000000000ULL),
6131 MVT::f64);
6132 // subtract the bias
Dale Johannesenaf435272009-02-02 19:03:57 +00006133 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006134 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00006135 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006136 // handle final rounding
6137 if (DestVT == MVT::f64) {
6138 // do nothing
6139 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006140 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006141 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00006142 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00006143 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006144 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006145 }
6146 return Result;
6147 }
6148 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesenaf435272009-02-02 19:03:57 +00006149 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006150
Dale Johannesenaf435272009-02-02 19:03:57 +00006151 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00006152 Op0, DAG.getConstant(0, Op0.getValueType()),
6153 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00006154 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00006155 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattner22cde6a2006-01-28 08:25:58 +00006156 SignSet, Four, Zero);
6157
6158 // If the sign bit of the integer is set, the large number will be treated
6159 // as a negative number. To counteract this, the dynamic code adds an
6160 // offset depending on the data type.
6161 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006162 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006163 default: assert(0 && "Unsupported integer type!");
6164 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
6165 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
6166 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
6167 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
6168 }
6169 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00006170 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006171
Dan Gohman475871a2008-07-27 21:46:04 +00006172 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00006173 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00006174 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00006175 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00006176 SDValue FudgeInReg;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006177 if (DestVT == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00006178 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00006179 PseudoSourceValue::getConstantPool(), 0,
6180 false, Alignment);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006181 else {
Dan Gohman69de1932008-02-06 22:27:42 +00006182 FudgeInReg =
Dale Johannesenaf435272009-02-02 19:03:57 +00006183 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
Dan Gohman69de1932008-02-06 22:27:42 +00006184 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00006185 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00006186 MVT::f32, false, Alignment));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006187 }
6188
Dale Johannesenaf435272009-02-02 19:03:57 +00006189 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006190}
6191
6192/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
6193/// *INT_TO_FP operation of the specified operand when the target requests that
6194/// we promote it. At this point, we know that the result and operand types are
6195/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
6196/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00006197SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
6198 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006199 bool isSigned,
6200 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006201 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006202 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006203
6204 unsigned OpToUse = 0;
6205
6206 // Scan for the appropriate larger type to use.
6207 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006208 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
6209 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006210
6211 // If the target supports SINT_TO_FP of this type, use it.
6212 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
6213 default: break;
6214 case TargetLowering::Legal:
6215 if (!TLI.isTypeLegal(NewInTy))
6216 break; // Can't use this datatype.
6217 // FALL THROUGH.
6218 case TargetLowering::Custom:
6219 OpToUse = ISD::SINT_TO_FP;
6220 break;
6221 }
6222 if (OpToUse) break;
6223 if (isSigned) continue;
6224
6225 // If the target supports UINT_TO_FP of this type, use it.
6226 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
6227 default: break;
6228 case TargetLowering::Legal:
6229 if (!TLI.isTypeLegal(NewInTy))
6230 break; // Can't use this datatype.
6231 // FALL THROUGH.
6232 case TargetLowering::Custom:
6233 OpToUse = ISD::UINT_TO_FP;
6234 break;
6235 }
6236 if (OpToUse) break;
6237
6238 // Otherwise, try a larger type.
6239 }
6240
6241 // Okay, we found the operation and type to use. Zero extend our input to the
6242 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00006243 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00006244 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00006245 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006246}
6247
6248/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
6249/// FP_TO_*INT operation of the specified operand when the target requests that
6250/// we promote it. At this point, we know that the result and operand types are
6251/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
6252/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00006253SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
6254 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006255 bool isSigned,
6256 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006257 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006258 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006259
6260 unsigned OpToUse = 0;
6261
6262 // Scan for the appropriate larger type to use.
6263 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006264 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
6265 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006266
6267 // If the target supports FP_TO_SINT returning this type, use it.
6268 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
6269 default: break;
6270 case TargetLowering::Legal:
6271 if (!TLI.isTypeLegal(NewOutTy))
6272 break; // Can't use this datatype.
6273 // FALL THROUGH.
6274 case TargetLowering::Custom:
6275 OpToUse = ISD::FP_TO_SINT;
6276 break;
6277 }
6278 if (OpToUse) break;
6279
6280 // If the target supports FP_TO_UINT of this type, use it.
6281 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
6282 default: break;
6283 case TargetLowering::Legal:
6284 if (!TLI.isTypeLegal(NewOutTy))
6285 break; // Can't use this datatype.
6286 // FALL THROUGH.
6287 case TargetLowering::Custom:
6288 OpToUse = ISD::FP_TO_UINT;
6289 break;
6290 }
6291 if (OpToUse) break;
6292
6293 // Otherwise, try a larger type.
6294 }
6295
Scott Michelfdc40a02009-02-17 22:15:04 +00006296
Chris Lattner27a6c732007-11-24 07:07:01 +00006297 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00006298 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00006299
Chris Lattner27a6c732007-11-24 07:07:01 +00006300 // If the operation produces an invalid type, it must be custom lowered. Use
6301 // the target lowering hooks to expand it. Just keep the low part of the
6302 // expanded operation, we know that we're truncating anyway.
6303 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands1607f052008-12-01 11:39:25 +00006304 SmallVector<SDValue, 2> Results;
6305 TLI.ReplaceNodeResults(Operation.getNode(), Results, DAG);
6306 assert(Results.size() == 1 && "Incorrect FP_TO_XINT lowering!");
6307 Operation = Results[0];
Chris Lattner27a6c732007-11-24 07:07:01 +00006308 }
Duncan Sands126d9072008-07-04 11:47:58 +00006309
Chris Lattner27a6c732007-11-24 07:07:01 +00006310 // Truncate the result of the extended FP_TO_*INT operation to the desired
6311 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00006312 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006313}
6314
6315/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
6316///
Dale Johannesen8a782a22009-02-02 22:12:50 +00006317SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006318 MVT VT = Op.getValueType();
6319 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman475871a2008-07-27 21:46:04 +00006320 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006321 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006322 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
6323 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006324 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6325 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6326 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006327 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006328 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6329 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6330 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6331 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6332 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
6333 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
6334 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6335 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6336 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006337 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006338 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
6339 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
6340 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6341 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6342 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6343 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6344 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
6345 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
6346 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
6347 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
6348 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
6349 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
6350 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
6351 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
6352 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
6353 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
6354 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6355 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6356 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
6357 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
6358 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006359 }
6360}
6361
6362/// ExpandBitCount - Expand the specified bitcount instruction into operations.
6363///
Scott Michelfdc40a02009-02-17 22:15:04 +00006364SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen8a782a22009-02-02 22:12:50 +00006365 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006366 switch (Opc) {
6367 default: assert(0 && "Cannot expand this yet!");
6368 case ISD::CTPOP: {
6369 static const uint64_t mask[6] = {
6370 0x5555555555555555ULL, 0x3333333333333333ULL,
6371 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
6372 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
6373 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00006374 MVT VT = Op.getValueType();
6375 MVT ShVT = TLI.getShiftAmountTy();
6376 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006377 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
6378 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006379 unsigned EltSize = VT.isVector() ?
6380 VT.getVectorElementType().getSizeInBits() : len;
6381 SDValue Tmp2 = DAG.getConstant(APInt(EltSize, mask[i]), VT);
Dan Gohman475871a2008-07-27 21:46:04 +00006382 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00006383 Op = DAG.getNode(ISD::ADD, dl, VT,
Dale Johannesene72c5962009-02-06 21:55:48 +00006384 DAG.getNode(ISD::AND, dl, VT, Op, Tmp2),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006385 DAG.getNode(ISD::AND, dl, VT,
6386 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3),
6387 Tmp2));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006388 }
6389 return Op;
6390 }
6391 case ISD::CTLZ: {
6392 // for now, we do this:
6393 // x = x | (x >> 1);
6394 // x = x | (x >> 2);
6395 // ...
6396 // x = x | (x >>16);
6397 // x = x | (x >>32); // for 64-bit input
6398 // return popcount(~x);
6399 //
6400 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006401 MVT VT = Op.getValueType();
6402 MVT ShVT = TLI.getShiftAmountTy();
6403 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006404 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006405 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00006406 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00006407 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006408 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00006409 Op = DAG.getNOT(dl, Op, VT);
6410 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006411 }
6412 case ISD::CTTZ: {
6413 // for now, we use: { return popcount(~x & (x - 1)); }
6414 // unless the target has ctlz but not ctpop, in which case we use:
6415 // { return 32 - nlz(~x & (x-1)); }
6416 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006417 MVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006418 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
6419 DAG.getNOT(dl, Op, VT),
6420 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00006421 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006422 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006423 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
6424 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00006425 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006426 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006427 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
6428 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006429 }
6430 }
6431}
Chris Lattnere34b3962005-01-19 04:19:40 +00006432
Dan Gohman475871a2008-07-27 21:46:04 +00006433/// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattner3e928bb2005-01-07 07:47:09 +00006434/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman929d3eb2008-10-01 15:07:49 +00006435/// LegalizedNodes map is filled in for any results that are not expanded, the
Chris Lattner3e928bb2005-01-07 07:47:09 +00006436/// ExpandedNodes map is filled in for any results that are expanded, and the
6437/// Lo/Hi values are returned.
Dan Gohman475871a2008-07-27 21:46:04 +00006438void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00006439 MVT VT = Op.getValueType();
6440 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greifba36cb52008-08-28 21:40:38 +00006441 SDNode *Node = Op.getNode();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006442 DebugLoc dl = Node->getDebugLoc();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006443 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00006444 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00006445 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006446
Chris Lattner6fdcb252005-09-02 20:32:45 +00006447 // See if we already expanded it.
Dan Gohman475871a2008-07-27 21:46:04 +00006448 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00006449 = ExpandedNodes.find(Op);
6450 if (I != ExpandedNodes.end()) {
6451 Lo = I->second.first;
6452 Hi = I->second.second;
6453 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006454 }
6455
Chris Lattner3e928bb2005-01-07 07:47:09 +00006456 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006457 case ISD::CopyFromReg:
6458 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006459 case ISD::FP_ROUND_INREG:
Scott Michelfdc40a02009-02-17 22:15:04 +00006460 if (VT == MVT::ppcf128 &&
6461 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006462 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006463 SDValue SrcLo, SrcHi, Src;
Dale Johannesenfcf4d242007-10-11 23:32:15 +00006464 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006465 Src = DAG.getNode(ISD::BUILD_PAIR, dl, VT, SrcLo, SrcHi);
Dan Gohman475871a2008-07-27 21:46:04 +00006466 SDValue Result = TLI.LowerOperation(
Dale Johannesen8a782a22009-02-02 22:12:50 +00006467 DAG.getNode(ISD::FP_ROUND_INREG, dl, VT, Src, Op.getOperand(1)), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006468 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
6469 Lo = Result.getNode()->getOperand(0);
6470 Hi = Result.getNode()->getOperand(1);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006471 break;
6472 }
6473 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00006474 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006475#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006476 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006477#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00006478 assert(0 && "Do not know how to expand this operator!");
6479 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00006480 case ISD::EXTRACT_ELEMENT:
6481 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006482 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman1953ecb2008-02-27 01:52:30 +00006483 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00006484 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00006485 case ISD::EXTRACT_VECTOR_ELT:
Dale Johannesen25f1d082007-10-31 00:32:36 +00006486 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
6487 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
6488 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006489 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00006490 Lo = DAG.getUNDEF(NVT);
6491 Hi = DAG.getUNDEF(NVT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006492 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006493 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006494 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00006495 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
6496 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
6497 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006498 break;
6499 }
Evan Cheng00495212006-12-12 21:32:44 +00006500 case ISD::ConstantFP: {
6501 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00006502 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen7111b022008-10-09 18:53:47 +00006503 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesena471c2e2007-10-11 18:07:22 +00006504 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
6505 MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00006506 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
Dale Johannesena471c2e2007-10-11 18:07:22 +00006507 MVT::f64);
6508 break;
6509 }
Evan Cheng279101e2006-12-12 22:19:28 +00006510 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00006511 if (getTypeAction(Lo.getValueType()) == Expand)
6512 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006513 break;
6514 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006515 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006516 // Return the operands.
6517 Lo = Node->getOperand(0);
6518 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006519 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006520
Chris Lattner27a6c732007-11-24 07:07:01 +00006521 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00006522 if (Node->getNumValues() == 1) {
6523 ExpandOp(Op.getOperand(0), Lo, Hi);
6524 break;
6525 }
Chris Lattner27a6c732007-11-24 07:07:01 +00006526 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif99a6cb92008-08-26 22:36:50 +00006527 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattner27a6c732007-11-24 07:07:01 +00006528 Op.getValue(1).getValueType() == MVT::Other &&
6529 "unhandled MERGE_VALUES");
6530 ExpandOp(Op.getOperand(0), Lo, Hi);
6531 // Remember that we legalized the chain.
6532 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
6533 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006534
Chris Lattner58f79632005-12-12 22:27:43 +00006535 case ISD::SIGN_EXTEND_INREG:
6536 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00006537 // sext_inreg the low part if needed.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006538 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Lo, Node->getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006539
Chris Lattner4bdd2752006-10-06 17:34:12 +00006540 // The high part gets the sign extension from the lo-part. This handles
6541 // things like sextinreg V:i64 from i8.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006542 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006543 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00006544 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00006545 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006546
Nate Begemand88fc032006-01-14 03:14:10 +00006547 case ISD::BSWAP: {
6548 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006549 SDValue TempLo = DAG.getNode(ISD::BSWAP, dl, NVT, Hi);
6550 Hi = DAG.getNode(ISD::BSWAP, dl, NVT, Lo);
Nate Begemand88fc032006-01-14 03:14:10 +00006551 Lo = TempLo;
6552 break;
6553 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006554
Chris Lattneredb1add2005-05-11 04:51:16 +00006555 case ISD::CTPOP:
6556 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006557 Lo = DAG.getNode(ISD::ADD, dl, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
6558 DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
6559 DAG.getNode(ISD::CTPOP, dl, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00006560 Hi = DAG.getConstant(0, NVT);
6561 break;
6562
Chris Lattner39a8f332005-05-12 19:05:01 +00006563 case ISD::CTLZ: {
6564 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006565 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006566 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006567 SDValue HLZ = DAG.getNode(ISD::CTLZ, dl, NVT, Hi);
6568 SDValue TopNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), HLZ,
6569 BitsC, ISD::SETNE);
6570 SDValue LowPart = DAG.getNode(ISD::CTLZ, dl, NVT, Lo);
6571 LowPart = DAG.getNode(ISD::ADD, dl, NVT, LowPart, BitsC);
Chris Lattner39a8f332005-05-12 19:05:01 +00006572
Dale Johannesen8a782a22009-02-02 22:12:50 +00006573 Lo = DAG.getNode(ISD::SELECT, dl, NVT, TopNotZero, HLZ, LowPart);
Chris Lattner39a8f332005-05-12 19:05:01 +00006574 Hi = DAG.getConstant(0, NVT);
6575 break;
6576 }
6577
6578 case ISD::CTTZ: {
6579 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006580 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006581 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006582 SDValue LTZ = DAG.getNode(ISD::CTTZ, dl, NVT, Lo);
6583 SDValue BotNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), LTZ,
6584 BitsC, ISD::SETNE);
6585 SDValue HiPart = DAG.getNode(ISD::CTTZ, dl, NVT, Hi);
6586 HiPart = DAG.getNode(ISD::ADD, dl, NVT, HiPart, BitsC);
Chris Lattner39a8f332005-05-12 19:05:01 +00006587
Dale Johannesen8a782a22009-02-02 22:12:50 +00006588 Lo = DAG.getNode(ISD::SELECT, dl, NVT, BotNotZero, LTZ, HiPart);
Chris Lattner39a8f332005-05-12 19:05:01 +00006589 Hi = DAG.getConstant(0, NVT);
6590 break;
6591 }
Chris Lattneredb1add2005-05-11 04:51:16 +00006592
Nate Begemanacc398c2006-01-25 18:21:52 +00006593 case ISD::VAARG: {
Dan Gohman475871a2008-07-27 21:46:04 +00006594 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6595 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Dale Johannesenc460ae92009-02-04 00:13:36 +00006596 Lo = DAG.getVAArg(NVT, dl, Ch, Ptr, Node->getOperand(2));
6597 Hi = DAG.getVAArg(NVT, dl, Lo.getValue(1), Ptr, Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00006598
6599 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00006600 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00006601 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00006602 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00006603 std::swap(Lo, Hi);
6604 break;
6605 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006606
Chris Lattner3e928bb2005-01-07 07:47:09 +00006607 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00006608 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00006609 SDValue Ch = LD->getChain(); // Legalize the chain.
6610 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Evan Cheng466685d2006-10-09 20:57:25 +00006611 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f8613e2008-08-14 20:04:46 +00006612 const Value *SV = LD->getSrcValue();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006613 int SVOffset = LD->getSrcValueOffset();
6614 unsigned Alignment = LD->getAlignment();
6615 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006616
Evan Cheng466685d2006-10-09 20:57:25 +00006617 if (ExtType == ISD::NON_EXTLOAD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006618 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006619 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00006620 if (VT == MVT::f32 || VT == MVT::f64) {
6621 // f32->i32 or f64->i64 one to one expansion.
6622 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006623 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00006624 // Recursively expand the new load.
6625 if (getTypeAction(NVT) == Expand)
6626 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006627 break;
6628 }
Chris Lattnerec39a452005-01-19 18:02:17 +00006629
Evan Cheng466685d2006-10-09 20:57:25 +00006630 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006631 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Dale Johannesen8a782a22009-02-02 22:12:50 +00006632 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006633 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006634 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006635 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006636 Hi = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006637 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00006638
Evan Cheng466685d2006-10-09 20:57:25 +00006639 // Build a factor node to remember that this load is independent of the
6640 // other one.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006641 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Evan Cheng466685d2006-10-09 20:57:25 +00006642 Hi.getValue(1));
6643
6644 // Remember that we legalized the chain.
6645 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00006646 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00006647 std::swap(Lo, Hi);
6648 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006649 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00006650
Dale Johannesenb6210fc2007-10-19 20:29:00 +00006651 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6652 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00006653 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dale Johannesen8a782a22009-02-02 22:12:50 +00006654 SDValue Load = DAG.getLoad(EVT, dl, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006655 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00006656 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006657 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Dale Johannesen8a782a22009-02-02 22:12:50 +00006658 ExpandOp(DAG.getNode(ISD::FP_EXTEND, dl, VT, Load), Lo, Hi);
Evan Cheng548f6112006-12-13 03:19:57 +00006659 break;
6660 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006661
Evan Cheng466685d2006-10-09 20:57:25 +00006662 if (EVT == NVT)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006663 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006664 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006665 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00006666 Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006667 SVOffset, EVT, isVolatile,
6668 Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00006669
Evan Cheng466685d2006-10-09 20:57:25 +00006670 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006671 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng466685d2006-10-09 20:57:25 +00006672
6673 if (ExtType == ISD::SEXTLOAD) {
6674 // The high part is obtained by SRA'ing all but one of the bits of the
6675 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006676 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006677 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Evan Cheng466685d2006-10-09 20:57:25 +00006678 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6679 } else if (ExtType == ISD::ZEXTLOAD) {
6680 // The high part is just a zero.
6681 Hi = DAG.getConstant(0, NVT);
6682 } else /* if (ExtType == ISD::EXTLOAD) */ {
6683 // The high part is undefined.
Dale Johannesene8d72302009-02-06 23:05:02 +00006684 Hi = DAG.getUNDEF(NVT);
Evan Cheng466685d2006-10-09 20:57:25 +00006685 }
6686 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006687 break;
6688 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006689 case ISD::AND:
6690 case ISD::OR:
6691 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman475871a2008-07-27 21:46:04 +00006692 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006693 ExpandOp(Node->getOperand(0), LL, LH);
6694 ExpandOp(Node->getOperand(1), RL, RH);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006695 Lo = DAG.getNode(Node->getOpcode(), dl, NVT, LL, RL);
6696 Hi = DAG.getNode(Node->getOpcode(), dl, NVT, LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006697 break;
6698 }
6699 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006700 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006701 ExpandOp(Node->getOperand(1), LL, LH);
6702 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006703 if (getTypeAction(NVT) == Expand)
6704 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006705 Lo = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006706 if (VT != MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006707 Hi = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006708 break;
6709 }
Nate Begeman9373a812005-08-10 20:51:12 +00006710 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006711 SDValue TL, TH, FL, FH;
Nate Begeman9373a812005-08-10 20:51:12 +00006712 ExpandOp(Node->getOperand(2), TL, TH);
6713 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006714 if (getTypeAction(NVT) == Expand)
6715 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006716 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Nate Begeman9373a812005-08-10 20:51:12 +00006717 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006718 if (VT != MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006719 Hi = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Evan Cheng19103b12006-12-15 22:42:55 +00006720 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006721 break;
6722 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006723 case ISD::ANY_EXTEND:
6724 // The low part is any extension of the input (which degenerates to a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006725 Lo = DAG.getNode(ISD::ANY_EXTEND, dl, NVT, Node->getOperand(0));
Chris Lattner8137c9e2006-01-28 05:07:51 +00006726 // The high part is undefined.
Dale Johannesene8d72302009-02-06 23:05:02 +00006727 Hi = DAG.getUNDEF(NVT);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006728 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006729 case ISD::SIGN_EXTEND: {
6730 // The low part is just a sign extension of the input (which degenerates to
6731 // a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006732 Lo = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006733
Chris Lattner3e928bb2005-01-07 07:47:09 +00006734 // The high part is obtained by SRA'ing all but one of the bits of the lo
6735 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006736 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006737 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Chris Lattner8137c9e2006-01-28 05:07:51 +00006738 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006739 break;
6740 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006741 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006742 // The low part is just a zero extension of the input (which degenerates to
6743 // a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006744 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006745
Chris Lattner3e928bb2005-01-07 07:47:09 +00006746 // The high part is just a zero.
6747 Hi = DAG.getConstant(0, NVT);
6748 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006749
Chris Lattner4c948eb2007-02-13 23:55:16 +00006750 case ISD::TRUNCATE: {
6751 // The input value must be larger than this value. Expand *it*.
Dan Gohman475871a2008-07-27 21:46:04 +00006752 SDValue NewLo;
Chris Lattner4c948eb2007-02-13 23:55:16 +00006753 ExpandOp(Node->getOperand(0), NewLo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00006754
Chris Lattner4c948eb2007-02-13 23:55:16 +00006755 // The low part is now either the right size, or it is closer. If not the
6756 // right size, make an illegal truncate so we recursively expand it.
6757 if (NewLo.getValueType() != Node->getValueType(0))
Dale Johannesen8a782a22009-02-02 22:12:50 +00006758 NewLo = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), NewLo);
Chris Lattner4c948eb2007-02-13 23:55:16 +00006759 ExpandOp(NewLo, Lo, Hi);
6760 break;
6761 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006762
Chris Lattner35481892005-12-23 00:16:34 +00006763 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006764 SDValue Tmp;
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006765 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6766 // If the target wants to, allow it to lower this itself.
6767 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6768 case Expand: assert(0 && "cannot expand FP!");
6769 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6770 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6771 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00006772 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp), DAG);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006773 }
6774
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006775 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006776 if (VT == MVT::f32 || VT == MVT::f64) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006777 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006778 if (getTypeAction(NVT) == Expand)
6779 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006780 break;
6781 }
6782
6783 // If source operand will be expanded to the same type as VT, i.e.
6784 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006785 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006786 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6787 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006788 break;
6789 }
6790
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006791 // Turn this into a load/store pair by default.
Gabor Greifba36cb52008-08-28 21:40:38 +00006792 if (Tmp.getNode() == 0)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006793 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00006794
Chris Lattner35481892005-12-23 00:16:34 +00006795 ExpandOp(Tmp, Lo, Hi);
6796 break;
6797 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006798
Chris Lattner27a6c732007-11-24 07:07:01 +00006799 case ISD::READCYCLECOUNTER: {
Scott Michelfdc40a02009-02-17 22:15:04 +00006800 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
Chris Lattner308575b2005-11-20 22:56:56 +00006801 TargetLowering::Custom &&
6802 "Must custom expand ReadCycleCounter");
Dan Gohman475871a2008-07-27 21:46:04 +00006803 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006804 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattner27a6c732007-11-24 07:07:01 +00006805 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006806 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006807 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006808 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006809 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006810
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006811 case ISD::ATOMIC_CMP_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006812 // This operation does not need a loop.
6813 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6814 assert(Tmp.getNode() && "Node must be custom expanded!");
6815 ExpandOp(Tmp.getValue(0), Lo, Hi);
6816 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6817 LegalizeOp(Tmp.getValue(1)));
6818 break;
6819 }
6820
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006821 case ISD::ATOMIC_LOAD_ADD:
6822 case ISD::ATOMIC_LOAD_SUB:
6823 case ISD::ATOMIC_LOAD_AND:
6824 case ISD::ATOMIC_LOAD_OR:
6825 case ISD::ATOMIC_LOAD_XOR:
6826 case ISD::ATOMIC_LOAD_NAND:
6827 case ISD::ATOMIC_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006828 // These operations require a loop to be generated. We can't do that yet,
6829 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006830 SDValue In2Lo, In2Hi, In2;
6831 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006832 In2 = DAG.getNode(ISD::BUILD_PAIR, dl, VT, In2Lo, In2Hi);
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006833 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00006834 SDValue Replace =
Dale Johannesen8a782a22009-02-02 22:12:50 +00006835 DAG.getAtomic(Op.getOpcode(), dl, Anode->getMemoryVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006836 Op.getOperand(0), Op.getOperand(1), In2,
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006837 Anode->getSrcValue(), Anode->getAlignment());
6838 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006839 ExpandOp(Result.getValue(0), Lo, Hi);
6840 // Remember that we legalized the chain.
6841 AddLegalizedOperand(SDValue(Node,1), LegalizeOp(Result.getValue(1)));
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006842 break;
6843 }
6844
Chris Lattner4e6c7462005-01-08 19:27:05 +00006845 // These operators cannot be expanded directly, emit them as calls to
6846 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006847 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006848 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006849 SDValue Op;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006850 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6851 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006852 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6853 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006854 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006855
Dale Johannesen8a782a22009-02-02 22:12:50 +00006856 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op), DAG);
Chris Lattnerf20d1832005-07-30 01:40:57 +00006857
Chris Lattner80a3e942005-07-29 00:33:32 +00006858 // Now that the custom expander is done, expand the result, which is still
6859 // VT.
Gabor Greifba36cb52008-08-28 21:40:38 +00006860 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006861 ExpandOp(Op, Lo, Hi);
6862 break;
6863 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006864 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006865
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006866 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6867 VT);
6868 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6869 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006870 break;
Evan Cheng56966222007-01-12 02:11:51 +00006871 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006872
Evan Cheng56966222007-01-12 02:11:51 +00006873 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006874 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006875 SDValue Op;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006876 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6877 case Expand: assert(0 && "cannot expand FP!");
6878 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6879 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6880 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006881
Dale Johannesen8a782a22009-02-02 22:12:50 +00006882 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, dl, VT, Op), DAG);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006883
6884 // Now that the custom expander is done, expand the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00006885 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006886 ExpandOp(Op, Lo, Hi);
6887 break;
6888 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006889 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006890
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006891 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6892 VT);
6893 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6894 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006895 break;
Evan Cheng56966222007-01-12 02:11:51 +00006896 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006897
Evan Cheng05a2d562006-01-09 18:31:59 +00006898 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006899 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006900 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006901 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006902 SDValue Op = DAG.getNode(ISD::SHL, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006903 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006904 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006905 // Now that the custom expander is done, expand the result, which is
6906 // still VT.
6907 ExpandOp(Op, Lo, Hi);
6908 break;
6909 }
6910 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006911
6912 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
Chris Lattner79980b02006-09-13 03:50:39 +00006913 // this X << 1 as X+X.
6914 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006915 if (ShAmt->getAPIntValue() == 1 &&
Scott Michelfdc40a02009-02-17 22:15:04 +00006916 TLI.isOperationLegalOrCustom(ISD::ADDC, NVT) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006917 TLI.isOperationLegalOrCustom(ISD::ADDE, NVT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006918 SDValue LoOps[2], HiOps[3];
Chris Lattner79980b02006-09-13 03:50:39 +00006919 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6920 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6921 LoOps[1] = LoOps[0];
Dale Johannesen8a782a22009-02-02 22:12:50 +00006922 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Chris Lattner79980b02006-09-13 03:50:39 +00006923
6924 HiOps[1] = HiOps[0];
6925 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006926 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Chris Lattner79980b02006-09-13 03:50:39 +00006927 break;
6928 }
6929 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006930
Chris Lattnere34b3962005-01-19 04:19:40 +00006931 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006932 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006933 break;
Chris Lattner47599822005-04-02 03:38:53 +00006934
6935 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006936 TargetLowering::LegalizeAction Action =
6937 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6938 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6939 Action == TargetLowering::Custom) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006940 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006941 ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006942 break;
6943 }
6944
Chris Lattnere34b3962005-01-19 04:19:40 +00006945 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006946 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006947 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006948 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006949
Evan Cheng05a2d562006-01-09 18:31:59 +00006950 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006951 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006952 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006953 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dale Johannesene72c5962009-02-06 21:55:48 +00006954 SDValue Op = DAG.getNode(ISD::SRA, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006955 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006956 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006957 // Now that the custom expander is done, expand the result, which is
6958 // still VT.
6959 ExpandOp(Op, Lo, Hi);
6960 break;
6961 }
6962 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006963
Chris Lattnere34b3962005-01-19 04:19:40 +00006964 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006965 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006966 break;
Chris Lattner47599822005-04-02 03:38:53 +00006967
6968 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006969 TargetLowering::LegalizeAction Action =
6970 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6971 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6972 Action == TargetLowering::Custom) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006973 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006974 ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006975 break;
6976 }
6977
Chris Lattnere34b3962005-01-19 04:19:40 +00006978 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006979 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006980 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006981 }
6982
6983 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006984 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006985 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006986 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006987 SDValue Op = DAG.getNode(ISD::SRL, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006988 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006989 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006990 // Now that the custom expander is done, expand the result, which is
6991 // still VT.
6992 ExpandOp(Op, Lo, Hi);
6993 break;
6994 }
6995 }
6996
Chris Lattnere34b3962005-01-19 04:19:40 +00006997 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006998 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006999 break;
Chris Lattner47599822005-04-02 03:38:53 +00007000
7001 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00007002 TargetLowering::LegalizeAction Action =
7003 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
7004 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
7005 Action == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007006 ExpandShiftParts(ISD::SRL_PARTS,
7007 Node->getOperand(0), ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00007008 break;
7009 }
7010
Chris Lattnere34b3962005-01-19 04:19:40 +00007011 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00007012 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00007013 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00007014 }
Chris Lattnere34b3962005-01-19 04:19:40 +00007015
Misha Brukmanedf128a2005-04-21 22:36:52 +00007016 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00007017 case ISD::SUB: {
7018 // If the target wants to custom expand this, let them.
7019 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
7020 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00007021 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007022 if (Result.getNode()) {
Duncan Sands69bfb152008-06-22 09:42:16 +00007023 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00007024 break;
7025 }
7026 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00007027 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007028 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattner8137c9e2006-01-28 05:07:51 +00007029 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7030 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Dan Gohman475871a2008-07-27 21:46:04 +00007031 SDValue LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00007032 LoOps[0] = LHSL;
7033 LoOps[1] = RHSL;
7034 HiOps[0] = LHSH;
7035 HiOps[1] = RHSH;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00007036
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007037 //cascaded check to see if any smaller size has a a carry flag.
7038 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
7039 bool hasCarry = false;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00007040 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
7041 MVT AVT = MVT::getIntegerVT(BitSize);
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007042 if (TLI.isOperationLegalOrCustom(OpV, AVT)) {
Andrew Lenharth2163ca12008-10-07 18:27:23 +00007043 hasCarry = true;
7044 break;
7045 }
7046 }
7047
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007048 if(hasCarry) {
Evan Cheng637ed032008-12-12 18:49:09 +00007049 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007050 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007051 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007052 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007053 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007054 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007055 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007056 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007057 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007058 }
7059 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007060 } else {
Andrew Lenharth40d51392008-10-07 14:15:42 +00007061 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007062 Lo = DAG.getNode(ISD::ADD, dl, NVT, LoOps, 2);
7063 Hi = DAG.getNode(ISD::ADD, dl, NVT, HiOps, 2);
7064 SDValue Cmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007065 Lo, LoOps[0], ISD::SETULT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007066 SDValue Carry1 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp1,
Scott Michelfdc40a02009-02-17 22:15:04 +00007067 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007068 DAG.getConstant(0, NVT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00007069 SDValue Cmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007070 Lo, LoOps[1], ISD::SETULT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007071 SDValue Carry2 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp2,
Scott Michelfdc40a02009-02-17 22:15:04 +00007072 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007073 Carry1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007074 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, Carry2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007075 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007076 Lo = DAG.getNode(ISD::SUB, dl, NVT, LoOps, 2);
7077 Hi = DAG.getNode(ISD::SUB, dl, NVT, HiOps, 2);
7078 SDValue Cmp = DAG.getSetCC(dl, NVT, LoOps[0], LoOps[1], ISD::SETULT);
7079 SDValue Borrow = DAG.getNode(ISD::SELECT, dl, NVT, Cmp,
Scott Michelfdc40a02009-02-17 22:15:04 +00007080 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007081 DAG.getConstant(0, NVT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00007082 Hi = DAG.getNode(ISD::SUB, dl, NVT, Hi, Borrow);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007083 }
7084 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007085 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00007086 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007087
Chris Lattnerb429f732007-05-17 18:15:41 +00007088 case ISD::ADDC:
7089 case ISD::SUBC: {
7090 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007091 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007092 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7093 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7094 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007095 SDValue LoOps[2] = { LHSL, RHSL };
7096 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michelfdc40a02009-02-17 22:15:04 +00007097
Chris Lattnerb429f732007-05-17 18:15:41 +00007098 if (Node->getOpcode() == ISD::ADDC) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007099 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Chris Lattnerb429f732007-05-17 18:15:41 +00007100 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007101 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007102 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007103 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Chris Lattnerb429f732007-05-17 18:15:41 +00007104 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007105 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007106 }
7107 // Remember that we legalized the flag.
7108 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7109 break;
7110 }
7111 case ISD::ADDE:
7112 case ISD::SUBE: {
7113 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007114 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007115 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7116 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7117 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007118 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
7119 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michelfdc40a02009-02-17 22:15:04 +00007120
Dale Johannesen8a782a22009-02-02 22:12:50 +00007121 Lo = DAG.getNode(Node->getOpcode(), dl, VTList, LoOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007122 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007123 Hi = DAG.getNode(Node->getOpcode(), dl, VTList, HiOps, 3);
Scott Michelfdc40a02009-02-17 22:15:04 +00007124
Chris Lattnerb429f732007-05-17 18:15:41 +00007125 // Remember that we legalized the flag.
7126 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7127 break;
7128 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007129 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007130 // If the target wants to custom expand this, let them.
7131 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00007132 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007133 if (New.getNode()) {
Chris Lattner8829dc82006-09-16 05:08:34 +00007134 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007135 break;
7136 }
7137 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007138
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007139 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, NVT);
7140 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, NVT);
7141 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, NVT);
7142 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00007143 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman475871a2008-07-27 21:46:04 +00007144 SDValue LL, LH, RL, RH;
Nate Begemanc7c16572005-04-11 03:01:51 +00007145 ExpandOp(Node->getOperand(0), LL, LH);
7146 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007147 unsigned OuterBitSize = Op.getValueSizeInBits();
7148 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00007149 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
7150 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00007151 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
7152 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
7153 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00007154 // The inputs are both zero-extended.
7155 if (HasUMUL_LOHI) {
7156 // We can emit a umul_lohi.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007157 Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007158 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007159 break;
7160 }
7161 if (HasMULHU) {
7162 // We can emit a mulhu+mul.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007163 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7164 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
Dan Gohman525178c2007-10-08 18:33:35 +00007165 break;
7166 }
Dan Gohman525178c2007-10-08 18:33:35 +00007167 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007168 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00007169 // The input values are both sign-extended.
7170 if (HasSMUL_LOHI) {
7171 // We can emit a smul_lohi.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007172 Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007173 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007174 break;
7175 }
7176 if (HasMULHS) {
7177 // We can emit a mulhs+mul.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007178 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7179 Hi = DAG.getNode(ISD::MULHS, dl, NVT, LL, RL);
Dan Gohman525178c2007-10-08 18:33:35 +00007180 break;
7181 }
7182 }
7183 if (HasUMUL_LOHI) {
7184 // Lo,Hi = umul LHS, RHS.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007185 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, dl,
Dan Gohman525178c2007-10-08 18:33:35 +00007186 DAG.getVTList(NVT, NVT), LL, RL);
7187 Lo = UMulLOHI;
7188 Hi = UMulLOHI.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007189 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7190 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7191 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7192 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00007193 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00007194 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007195 if (HasMULHU) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007196 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7197 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
7198 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7199 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7200 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7201 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007202 break;
7203 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007204 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00007205
Dan Gohman525178c2007-10-08 18:33:35 +00007206 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00007207 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00007208 break;
7209 }
Evan Cheng56966222007-01-12 02:11:51 +00007210 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007211 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007212 break;
7213 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007214 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007215 break;
7216 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007217 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007218 break;
7219 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007220 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007221 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00007222
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007223 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00007224 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
7225 RTLIB::ADD_F64,
7226 RTLIB::ADD_F80,
7227 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007228 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007229 break;
7230 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00007231 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
7232 RTLIB::SUB_F64,
7233 RTLIB::SUB_F80,
7234 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007235 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007236 break;
7237 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00007238 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
7239 RTLIB::MUL_F64,
7240 RTLIB::MUL_F80,
7241 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007242 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007243 break;
7244 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007245 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
7246 RTLIB::DIV_F64,
7247 RTLIB::DIV_F80,
7248 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007249 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007250 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007251 case ISD::FP_EXTEND: {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007252 if (VT == MVT::ppcf128) {
7253 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
7254 Node->getOperand(0).getValueType()==MVT::f64);
7255 const uint64_t zero = 0;
7256 if (Node->getOperand(0).getValueType()==MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00007257 Hi = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Node->getOperand(0));
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007258 else
7259 Hi = Node->getOperand(0);
7260 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7261 break;
7262 }
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007263 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
7264 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
7265 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007266 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007267 }
7268 case ISD::FP_ROUND: {
7269 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
7270 VT);
7271 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
7272 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007273 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007274 }
Evan Cheng4b887022008-09-09 23:02:14 +00007275 case ISD::FSQRT:
7276 case ISD::FSIN:
Scott Michelfdc40a02009-02-17 22:15:04 +00007277 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007278 case ISD::FLOG:
7279 case ISD::FLOG2:
7280 case ISD::FLOG10:
7281 case ISD::FEXP:
7282 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007283 case ISD::FTRUNC:
7284 case ISD::FFLOOR:
7285 case ISD::FCEIL:
7286 case ISD::FRINT:
7287 case ISD::FNEARBYINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00007288 case ISD::FPOW:
7289 case ISD::FPOWI: {
Evan Cheng56966222007-01-12 02:11:51 +00007290 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007291 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00007292 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00007293 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
7294 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007295 break;
7296 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00007297 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
7298 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007299 break;
7300 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00007301 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
7302 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007303 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007304 case ISD::FLOG:
7305 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
7306 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
7307 break;
7308 case ISD::FLOG2:
7309 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
7310 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
7311 break;
7312 case ISD::FLOG10:
7313 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
7314 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
7315 break;
7316 case ISD::FEXP:
7317 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
7318 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
7319 break;
7320 case ISD::FEXP2:
7321 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
7322 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
7323 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007324 case ISD::FTRUNC:
7325 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
7326 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
7327 break;
7328 case ISD::FFLOOR:
7329 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
7330 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
7331 break;
7332 case ISD::FCEIL:
7333 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
7334 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
7335 break;
7336 case ISD::FRINT:
7337 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
7338 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
7339 break;
7340 case ISD::FNEARBYINT:
7341 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
7342 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
7343 break;
Evan Cheng4b887022008-09-09 23:02:14 +00007344 case ISD::FPOW:
7345 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
7346 RTLIB::POW_PPCF128);
7347 break;
7348 case ISD::FPOWI:
7349 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
7350 RTLIB::POWI_PPCF128);
7351 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007352 default: assert(0 && "Unreachable!");
7353 }
Duncan Sands460a14e2008-04-12 17:14:18 +00007354 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00007355 break;
7356 }
Evan Cheng966bf242006-12-16 00:52:40 +00007357 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007358 if (VT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00007359 SDValue Tmp;
Dale Johannesenf6467742007-10-12 19:02:17 +00007360 ExpandOp(Node->getOperand(0), Lo, Tmp);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007361 Hi = DAG.getNode(ISD::FABS, dl, NVT, Tmp);
Dale Johannesenf6467742007-10-12 19:02:17 +00007362 // lo = hi==fabs(hi) ? lo : -lo;
Dale Johannesen8a782a22009-02-02 22:12:50 +00007363 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Hi, Tmp,
7364 Lo, DAG.getNode(ISD::FNEG, dl, NVT, Lo),
Dale Johannesenf6467742007-10-12 19:02:17 +00007365 DAG.getCondCode(ISD::SETEQ));
7366 break;
7367 }
Dan Gohman475871a2008-07-27 21:46:04 +00007368 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007369 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
7370 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007371 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7372 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7373 Lo = DAG.getNode(ISD::AND, dl, NVT, Lo, Mask);
Evan Cheng966bf242006-12-16 00:52:40 +00007374 if (getTypeAction(NVT) == Expand)
7375 ExpandOp(Lo, Lo, Hi);
7376 break;
7377 }
7378 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007379 if (VT == MVT::ppcf128) {
7380 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007381 Lo = DAG.getNode(ISD::FNEG, dl, MVT::f64, Lo);
7382 Hi = DAG.getNode(ISD::FNEG, dl, MVT::f64, Hi);
Dale Johannesenf6467742007-10-12 19:02:17 +00007383 break;
7384 }
Dan Gohman475871a2008-07-27 21:46:04 +00007385 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007386 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
7387 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007388 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7389 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7390 Lo = DAG.getNode(ISD::XOR, dl, NVT, Lo, Mask);
Evan Cheng966bf242006-12-16 00:52:40 +00007391 if (getTypeAction(NVT) == Expand)
7392 ExpandOp(Lo, Lo, Hi);
7393 break;
7394 }
Evan Cheng912095b2007-01-04 21:56:39 +00007395 case ISD::FCOPYSIGN: {
7396 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
7397 if (getTypeAction(NVT) == Expand)
7398 ExpandOp(Lo, Lo, Hi);
7399 break;
7400 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007401 case ISD::SINT_TO_FP:
7402 case ISD::UINT_TO_FP: {
7403 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007404 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00007405
7406 // Promote the operand if needed. Do this before checking for
7407 // ppcf128 so conversions of i16 and i8 work.
7408 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman475871a2008-07-27 21:46:04 +00007409 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesencf498192008-03-18 17:28:38 +00007410 Tmp = isSigned
Dale Johannesen8a782a22009-02-02 22:12:50 +00007411 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp.getValueType(), Tmp,
Dale Johannesencf498192008-03-18 17:28:38 +00007412 DAG.getValueType(SrcVT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00007413 : DAG.getZeroExtendInReg(Tmp, dl, SrcVT);
Gabor Greifba36cb52008-08-28 21:40:38 +00007414 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesencf498192008-03-18 17:28:38 +00007415 SrcVT = Node->getOperand(0).getValueType();
7416 }
7417
Dan Gohmana2e94852008-03-10 23:03:31 +00007418 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007419 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007420 if (isSigned) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007421 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007422 Node->getOperand(0)));
7423 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7424 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007425 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Scott Michelfdc40a02009-02-17 22:15:04 +00007426 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007427 Node->getOperand(0)));
7428 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007429 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007430 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen8a782a22009-02-02 22:12:50 +00007431 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl,
7432 MVT::ppcf128, Node->getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00007433 DAG.getConstant(0, MVT::i32),
Dale Johannesen8a782a22009-02-02 22:12:50 +00007434 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007435 DAG.getConstantFP(
7436 APFloat(APInt(128, 2, TwoE32)),
7437 MVT::ppcf128)),
7438 Hi,
7439 DAG.getCondCode(ISD::SETLT)),
7440 Lo, Hi);
7441 }
7442 break;
7443 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00007444 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
7445 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007446 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen8a782a22009-02-02 22:12:50 +00007447 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::ppcf128,
7448 Node->getOperand(0)), Lo, Hi);
7449 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007450 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
Dale Johannesen8a782a22009-02-02 22:12:50 +00007451 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl, MVT::ppcf128,
7452 Node->getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00007453 DAG.getConstant(0, MVT::i64),
Dale Johannesen8a782a22009-02-02 22:12:50 +00007454 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Dale Johannesen6e63e092007-10-12 17:52:03 +00007455 DAG.getConstantFP(
7456 APFloat(APInt(128, 2, TwoE64)),
7457 MVT::ppcf128)),
7458 Hi,
7459 DAG.getCondCode(ISD::SETLT)),
7460 Lo, Hi);
7461 break;
7462 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007463
Dan Gohmana2e94852008-03-10 23:03:31 +00007464 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00007465 Node->getOperand(0), dl);
Evan Cheng110cf482008-04-01 01:50:16 +00007466 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00007467 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00007468 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00007469 break;
7470 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00007471 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00007472
Chris Lattner83397362005-12-21 18:02:52 +00007473 // Make sure the resultant values have been legalized themselves, unless this
7474 // is a type that requires multi-step expansion.
7475 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
7476 Lo = LegalizeOp(Lo);
Gabor Greifba36cb52008-08-28 21:40:38 +00007477 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00007478 // Don't legalize the high part if it is expanded to a single node.
7479 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00007480 }
Evan Cheng05a2d562006-01-09 18:31:59 +00007481
7482 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00007483 bool isNew =
7484 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00007485 assert(isNew && "Value already expanded?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007486 isNew = isNew;
Chris Lattner3e928bb2005-01-07 07:47:09 +00007487}
7488
Dan Gohman7f321562007-06-25 16:23:39 +00007489/// SplitVectorOp - Given an operand of vector type, break it down into
7490/// two smaller values, still of vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00007491void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
7492 SDValue &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007493 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007494 SDNode *Node = Op.getNode();
Dale Johannesenbb5da912009-02-02 20:41:04 +00007495 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007496 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00007497 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00007498
Duncan Sands83ec4b62008-06-06 12:08:01 +00007499 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00007500
7501 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
7502 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
7503
Duncan Sands83ec4b62008-06-06 12:08:01 +00007504 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
7505 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007506
Chris Lattnerc7029802006-03-18 01:44:44 +00007507 // See if we already split it.
Dan Gohman475871a2008-07-27 21:46:04 +00007508 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattnerc7029802006-03-18 01:44:44 +00007509 = SplitNodes.find(Op);
7510 if (I != SplitNodes.end()) {
7511 Lo = I->second.first;
7512 Hi = I->second.second;
7513 return;
7514 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007515
Chris Lattnerc7029802006-03-18 01:44:44 +00007516 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007517 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007518#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007519 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007520#endif
7521 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007522 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00007523 Lo = DAG.getUNDEF(NewVT_Lo);
7524 Hi = DAG.getUNDEF(NewVT_Hi);
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007525 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007526 case ISD::BUILD_PAIR:
7527 Lo = Node->getOperand(0);
7528 Hi = Node->getOperand(1);
7529 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00007530 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00007531 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
7532 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007533 unsigned Index = Idx->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007534 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman68679912008-04-25 18:07:40 +00007535 if (Index < NewNumElts_Lo)
Dale Johannesenc6be1102009-02-02 22:49:46 +00007536 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Lo, Lo, ScalarOp,
Nate Begeman68679912008-04-25 18:07:40 +00007537 DAG.getIntPtrConstant(Index));
7538 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00007539 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Hi, Hi, ScalarOp,
Nate Begeman68679912008-04-25 18:07:40 +00007540 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
7541 break;
7542 }
Dan Gohman475871a2008-07-27 21:46:04 +00007543 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Nate Begeman68679912008-04-25 18:07:40 +00007544 Node->getOperand(1),
Dale Johannesenbb5da912009-02-02 20:41:04 +00007545 Node->getOperand(2), dl);
Nate Begeman68679912008-04-25 18:07:40 +00007546 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00007547 break;
7548 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00007549 case ISD::VECTOR_SHUFFLE: {
7550 // Build the low part.
Dan Gohman475871a2008-07-27 21:46:04 +00007551 SDValue Mask = Node->getOperand(2);
7552 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007553 MVT PtrVT = TLI.getPointerTy();
Scott Michelfdc40a02009-02-17 22:15:04 +00007554
7555 // Insert all of the elements from the input that are needed. We use
Chris Lattner6c9c6802007-11-19 21:16:54 +00007556 // buildvector of extractelement here because the input vectors will have
7557 // to be legalized, so this makes the code simpler.
7558 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007559 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007560 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007561 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman5922f562008-03-14 00:53:31 +00007562 continue;
7563 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007564 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007565 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007566 if (Idx >= NumElements) {
7567 InVec = Node->getOperand(1);
7568 Idx -= NumElements;
7569 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00007570 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner6c9c6802007-11-19 21:16:54 +00007571 DAG.getConstant(Idx, PtrVT)));
7572 }
Scott Michel4214a552009-02-22 23:36:09 +00007573 Lo = DAG.getBUILD_VECTOR(NewVT_Lo, dl, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007574 Ops.clear();
Scott Michelfdc40a02009-02-17 22:15:04 +00007575
Chris Lattner6c9c6802007-11-19 21:16:54 +00007576 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007577 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007578 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007579 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman5922f562008-03-14 00:53:31 +00007580 continue;
7581 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007582 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007583 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007584 if (Idx >= NumElements) {
7585 InVec = Node->getOperand(1);
7586 Idx -= NumElements;
7587 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00007588 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner6c9c6802007-11-19 21:16:54 +00007589 DAG.getConstant(Idx, PtrVT)));
7590 }
Scott Michel4214a552009-02-22 23:36:09 +00007591 Hi = DAG.getBUILD_VECTOR(NewVT_Hi, dl, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007592 break;
7593 }
Dan Gohman7f321562007-06-25 16:23:39 +00007594 case ISD::BUILD_VECTOR: {
Scott Michelfdc40a02009-02-17 22:15:04 +00007595 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00007596 Node->op_begin()+NewNumElts_Lo);
Scott Michel4214a552009-02-22 23:36:09 +00007597 Lo = DAG.getBUILD_VECTOR(NewVT_Lo, dl, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007598
Scott Michelfdc40a02009-02-17 22:15:04 +00007599 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00007600 Node->op_end());
Scott Michel4214a552009-02-22 23:36:09 +00007601 Hi = DAG.getBUILD_VECTOR(NewVT_Hi, dl, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007602 break;
7603 }
Dan Gohman7f321562007-06-25 16:23:39 +00007604 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00007605 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00007606 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7607 if (NewNumSubvectors == 1) {
7608 Lo = Node->getOperand(0);
7609 Hi = Node->getOperand(1);
7610 } else {
Mon P Wangaeb06d22008-11-10 04:46:22 +00007611 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
7612 Node->op_begin()+NewNumSubvectors);
Scott Michelfdc40a02009-02-17 22:15:04 +00007613 Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Lo,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007614 &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00007615
Mon P Wangaeb06d22008-11-10 04:46:22 +00007616 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Dan Gohman7f321562007-06-25 16:23:39 +00007617 Node->op_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00007618 Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Hi,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007619 &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00007620 }
Dan Gohman65956352007-06-13 15:12:02 +00007621 break;
7622 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00007623 case ISD::EXTRACT_SUBVECTOR: {
7624 SDValue Vec = Op.getOperand(0);
7625 SDValue Idx = Op.getOperand(1);
7626 MVT IdxVT = Idx.getValueType();
7627
Dale Johannesenc6be1102009-02-02 22:49:46 +00007628 Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Lo, Vec, Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007629 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
7630 if (CIdx) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007631 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec,
Mon P Wangaeb06d22008-11-10 04:46:22 +00007632 DAG.getConstant(CIdx->getZExtValue() + NewNumElts_Lo,
7633 IdxVT));
7634 } else {
Dale Johannesenc6be1102009-02-02 22:49:46 +00007635 Idx = DAG.getNode(ISD::ADD, dl, IdxVT, Idx,
Mon P Wangaeb06d22008-11-10 04:46:22 +00007636 DAG.getConstant(NewNumElts_Lo, IdxVT));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007637 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec, Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007638 }
7639 break;
7640 }
Dan Gohmanc6230962007-10-17 14:48:28 +00007641 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007642 SDValue Cond = Node->getOperand(0);
Dan Gohmanc6230962007-10-17 14:48:28 +00007643
Dan Gohman475871a2008-07-27 21:46:04 +00007644 SDValue LL, LH, RL, RH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007645 SplitVectorOp(Node->getOperand(1), LL, LH);
7646 SplitVectorOp(Node->getOperand(2), RL, RH);
7647
Duncan Sands83ec4b62008-06-06 12:08:01 +00007648 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00007649 // Handle a vector merge.
Dan Gohman475871a2008-07-27 21:46:04 +00007650 SDValue CL, CH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007651 SplitVectorOp(Cond, CL, CH);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007652 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, CL, LL, RL);
7653 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007654 } else {
7655 // Handle a simple select with vector operands.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007656 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, Cond, LL, RL);
7657 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007658 }
7659 break;
7660 }
Chris Lattner80c1a562008-06-30 02:43:01 +00007661 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007662 SDValue CondLHS = Node->getOperand(0);
7663 SDValue CondRHS = Node->getOperand(1);
7664 SDValue CondCode = Node->getOperand(4);
Scott Michelfdc40a02009-02-17 22:15:04 +00007665
Dan Gohman475871a2008-07-27 21:46:04 +00007666 SDValue LL, LH, RL, RH;
Chris Lattner80c1a562008-06-30 02:43:01 +00007667 SplitVectorOp(Node->getOperand(2), LL, LH);
7668 SplitVectorOp(Node->getOperand(3), RL, RH);
Scott Michelfdc40a02009-02-17 22:15:04 +00007669
Chris Lattner80c1a562008-06-30 02:43:01 +00007670 // Handle a simple select with vector operands.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007671 Lo = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Lo, CondLHS, CondRHS,
Chris Lattner80c1a562008-06-30 02:43:01 +00007672 LL, RL, CondCode);
Scott Michelfdc40a02009-02-17 22:15:04 +00007673 Hi = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Hi, CondLHS, CondRHS,
Chris Lattner80c1a562008-06-30 02:43:01 +00007674 LH, RH, CondCode);
7675 break;
7676 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00007677 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007678 SDValue LL, LH, RL, RH;
Nate Begemanb43e9c12008-05-12 19:40:03 +00007679 SplitVectorOp(Node->getOperand(0), LL, LH);
7680 SplitVectorOp(Node->getOperand(1), RL, RH);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007681 Lo = DAG.getNode(ISD::VSETCC, dl, NewVT_Lo, LL, RL, Node->getOperand(2));
7682 Hi = DAG.getNode(ISD::VSETCC, dl, NewVT_Hi, LH, RH, Node->getOperand(2));
Nate Begemanb43e9c12008-05-12 19:40:03 +00007683 break;
7684 }
Dan Gohman7f321562007-06-25 16:23:39 +00007685 case ISD::ADD:
7686 case ISD::SUB:
7687 case ISD::MUL:
7688 case ISD::FADD:
7689 case ISD::FSUB:
7690 case ISD::FMUL:
7691 case ISD::SDIV:
7692 case ISD::UDIV:
7693 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00007694 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007695 case ISD::AND:
7696 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00007697 case ISD::XOR:
7698 case ISD::UREM:
7699 case ISD::SREM:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00007700 case ISD::FREM:
7701 case ISD::SHL:
7702 case ISD::SRA:
7703 case ISD::SRL: {
Dan Gohman475871a2008-07-27 21:46:04 +00007704 SDValue LL, LH, RL, RH;
Chris Lattnerc7029802006-03-18 01:44:44 +00007705 SplitVectorOp(Node->getOperand(0), LL, LH);
7706 SplitVectorOp(Node->getOperand(1), RL, RH);
Scott Michelfdc40a02009-02-17 22:15:04 +00007707
Dale Johannesenc6be1102009-02-02 22:49:46 +00007708 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, LL, RL);
7709 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00007710 break;
7711 }
Dan Gohman7f8613e2008-08-14 20:04:46 +00007712 case ISD::FP_ROUND:
Dan Gohman82669522007-10-11 23:57:53 +00007713 case ISD::FPOWI: {
Dan Gohman475871a2008-07-27 21:46:04 +00007714 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007715 SplitVectorOp(Node->getOperand(0), L, H);
7716
Dale Johannesenc6be1102009-02-02 22:49:46 +00007717 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L, Node->getOperand(1));
7718 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00007719 break;
7720 }
7721 case ISD::CTTZ:
7722 case ISD::CTLZ:
7723 case ISD::CTPOP:
7724 case ISD::FNEG:
7725 case ISD::FABS:
7726 case ISD::FSQRT:
7727 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00007728 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007729 case ISD::FLOG:
7730 case ISD::FLOG2:
7731 case ISD::FLOG10:
7732 case ISD::FEXP:
7733 case ISD::FEXP2:
Nate Begemanb348d182007-11-17 03:58:34 +00007734 case ISD::FP_TO_SINT:
7735 case ISD::FP_TO_UINT:
7736 case ISD::SINT_TO_FP:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007737 case ISD::UINT_TO_FP:
7738 case ISD::TRUNCATE:
7739 case ISD::ANY_EXTEND:
7740 case ISD::SIGN_EXTEND:
7741 case ISD::ZERO_EXTEND:
7742 case ISD::FP_EXTEND: {
Dan Gohman475871a2008-07-27 21:46:04 +00007743 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007744 SplitVectorOp(Node->getOperand(0), L, H);
7745
Dale Johannesenc6be1102009-02-02 22:49:46 +00007746 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L);
7747 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00007748 break;
7749 }
Mon P Wang77cdf302008-11-10 20:54:11 +00007750 case ISD::CONVERT_RNDSAT: {
7751 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
7752 SDValue L, H;
7753 SplitVectorOp(Node->getOperand(0), L, H);
7754 SDValue DTyOpL = DAG.getValueType(NewVT_Lo);
7755 SDValue DTyOpH = DAG.getValueType(NewVT_Hi);
7756 SDValue STyOpL = DAG.getValueType(L.getValueType());
7757 SDValue STyOpH = DAG.getValueType(H.getValueType());
7758
7759 SDValue RndOp = Node->getOperand(3);
7760 SDValue SatOp = Node->getOperand(4);
7761
Dale Johannesenc460ae92009-02-04 00:13:36 +00007762 Lo = DAG.getConvertRndSat(NewVT_Lo, dl, L, DTyOpL, STyOpL,
Mon P Wang77cdf302008-11-10 20:54:11 +00007763 RndOp, SatOp, CvtCode);
Dale Johannesenc460ae92009-02-04 00:13:36 +00007764 Hi = DAG.getConvertRndSat(NewVT_Hi, dl, H, DTyOpH, STyOpH,
Mon P Wang77cdf302008-11-10 20:54:11 +00007765 RndOp, SatOp, CvtCode);
7766 break;
7767 }
Dan Gohman7f321562007-06-25 16:23:39 +00007768 case ISD::LOAD: {
7769 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007770 SDValue Ch = LD->getChain();
7771 SDValue Ptr = LD->getBasePtr();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007772 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007773 const Value *SV = LD->getSrcValue();
7774 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007775 MVT MemoryVT = LD->getMemoryVT();
Dan Gohman7f321562007-06-25 16:23:39 +00007776 unsigned Alignment = LD->getAlignment();
7777 bool isVolatile = LD->isVolatile();
7778
Dan Gohman7f8613e2008-08-14 20:04:46 +00007779 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesene8d72302009-02-06 23:05:02 +00007780 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Dan Gohman7f8613e2008-08-14 20:04:46 +00007781
7782 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7783 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7784 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7785
Dale Johannesenc6be1102009-02-02 22:49:46 +00007786 Lo = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007787 NewVT_Lo, Ch, Ptr, Offset,
7788 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7789 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Dale Johannesenc6be1102009-02-02 22:49:46 +00007790 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00007791 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00007792 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00007793 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007794 Hi = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007795 NewVT_Hi, Ch, Ptr, Offset,
7796 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00007797
Chris Lattnerc7029802006-03-18 01:44:44 +00007798 // Build a factor node to remember that this load is independent of the
7799 // other one.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007800 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Chris Lattnerc7029802006-03-18 01:44:44 +00007801 Hi.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00007802
Chris Lattnerc7029802006-03-18 01:44:44 +00007803 // Remember that we legalized the chain.
7804 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00007805 break;
7806 }
Dan Gohman7f321562007-06-25 16:23:39 +00007807 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00007808 // We know the result is a vector. The input may be either a vector or a
7809 // scalar value.
Dan Gohman475871a2008-07-27 21:46:04 +00007810 SDValue InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007811 if (!InOp.getValueType().isVector() ||
7812 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00007813 // The input is a scalar or single-element vector.
7814 // Lower to a store/load so that it can be split.
7815 // FIXME: this could be improved probably.
Mon P Wang2920d2b2008-07-15 05:28:34 +00007816 unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment(
7817 Op.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00007818 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greifba36cb52008-08-28 21:40:38 +00007819 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Chris Lattner7692eb42006-03-23 21:16:34 +00007820
Dale Johannesenc6be1102009-02-02 22:49:46 +00007821 SDValue St = DAG.getStore(DAG.getEntryNode(), dl,
Dan Gohman69de1932008-02-06 22:27:42 +00007822 InOp, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007823 PseudoSourceValue::getFixedStack(FI), 0);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007824 InOp = DAG.getLoad(Op.getValueType(), dl, St, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007825 PseudoSourceValue::getFixedStack(FI), 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00007826 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007827 // Split the vector and convert each of the pieces now.
7828 SplitVectorOp(InOp, Lo, Hi);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007829 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Lo, Lo);
7830 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007831 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007832 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007833 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007834
Chris Lattnerc7029802006-03-18 01:44:44 +00007835 // Remember in a map if the values will be reused later.
Scott Michelfdc40a02009-02-17 22:15:04 +00007836 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007837 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007838 assert(isNew && "Value already split?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007839 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00007840}
7841
7842
Dan Gohman89b20c02007-06-27 14:06:22 +00007843/// ScalarizeVectorOp - Given an operand of single-element vector type
7844/// (e.g. v1f32), convert it into the equivalent operation that returns a
7845/// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +00007846SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007847 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007848 SDNode *Node = Op.getNode();
Dale Johannesenc6be1102009-02-02 22:49:46 +00007849 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007850 MVT NewVT = Op.getValueType().getVectorElementType();
7851 assert(Op.getValueType().getVectorNumElements() == 1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007852
Dan Gohman7f321562007-06-25 16:23:39 +00007853 // See if we already scalarized it.
Dan Gohman475871a2008-07-27 21:46:04 +00007854 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohman7f321562007-06-25 16:23:39 +00007855 if (I != ScalarizedNodes.end()) return I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00007856
Dan Gohman475871a2008-07-27 21:46:04 +00007857 SDValue Result;
Chris Lattnerc7029802006-03-18 01:44:44 +00007858 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007859 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007860#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007861 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007862#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007863 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7864 case ISD::ADD:
7865 case ISD::FADD:
7866 case ISD::SUB:
7867 case ISD::FSUB:
7868 case ISD::MUL:
7869 case ISD::FMUL:
7870 case ISD::SDIV:
7871 case ISD::UDIV:
7872 case ISD::FDIV:
7873 case ISD::SREM:
7874 case ISD::UREM:
7875 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007876 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007877 case ISD::AND:
7878 case ISD::OR:
7879 case ISD::XOR:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007880 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007881 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007882 ScalarizeVectorOp(Node->getOperand(0)),
7883 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007884 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007885 case ISD::FNEG:
7886 case ISD::FABS:
7887 case ISD::FSQRT:
7888 case ISD::FSIN:
7889 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007890 case ISD::FLOG:
7891 case ISD::FLOG2:
7892 case ISD::FLOG10:
7893 case ISD::FEXP:
7894 case ISD::FEXP2:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007895 case ISD::FP_TO_SINT:
7896 case ISD::FP_TO_UINT:
7897 case ISD::SINT_TO_FP:
7898 case ISD::UINT_TO_FP:
7899 case ISD::SIGN_EXTEND:
7900 case ISD::ZERO_EXTEND:
7901 case ISD::ANY_EXTEND:
7902 case ISD::TRUNCATE:
7903 case ISD::FP_EXTEND:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007904 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007905 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007906 ScalarizeVectorOp(Node->getOperand(0)));
7907 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00007908 case ISD::CONVERT_RNDSAT: {
7909 SDValue Op0 = ScalarizeVectorOp(Node->getOperand(0));
Dale Johannesenc460ae92009-02-04 00:13:36 +00007910 Result = DAG.getConvertRndSat(NewVT, dl, Op0,
Mon P Wang77cdf302008-11-10 20:54:11 +00007911 DAG.getValueType(NewVT),
7912 DAG.getValueType(Op0.getValueType()),
7913 Node->getOperand(3),
7914 Node->getOperand(4),
7915 cast<CvtRndSatSDNode>(Node)->getCvtCode());
7916 break;
7917 }
Dan Gohman9e04c822007-10-12 14:13:46 +00007918 case ISD::FPOWI:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007919 case ISD::FP_ROUND:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007920 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007921 NewVT,
Dan Gohman9e04c822007-10-12 14:13:46 +00007922 ScalarizeVectorOp(Node->getOperand(0)),
7923 Node->getOperand(1));
7924 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007925 case ISD::LOAD: {
7926 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007927 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7928 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman7f8613e2008-08-14 20:04:46 +00007929 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007930 const Value *SV = LD->getSrcValue();
7931 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007932 MVT MemoryVT = LD->getMemoryVT();
7933 unsigned Alignment = LD->getAlignment();
7934 bool isVolatile = LD->isVolatile();
7935
7936 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesene8d72302009-02-06 23:05:02 +00007937 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Scott Michelfdc40a02009-02-17 22:15:04 +00007938
Dale Johannesenc6be1102009-02-02 22:49:46 +00007939 Result = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007940 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7941 MemoryVT.getVectorElementType(),
7942 isVolatile, Alignment);
Dan Gohman7f321562007-06-25 16:23:39 +00007943
Chris Lattnerc7029802006-03-18 01:44:44 +00007944 // Remember that we legalized the chain.
7945 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7946 break;
7947 }
Dan Gohman7f321562007-06-25 16:23:39 +00007948 case ISD::BUILD_VECTOR:
7949 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007950 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007951 case ISD::INSERT_VECTOR_ELT:
7952 // Returning the inserted scalar element.
7953 Result = Node->getOperand(1);
7954 break;
7955 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007956 assert(Node->getOperand(0).getValueType() == NewVT &&
7957 "Concat of non-legal vectors not yet supported!");
7958 Result = Node->getOperand(0);
7959 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007960 case ISD::VECTOR_SHUFFLE: {
7961 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman475871a2008-07-27 21:46:04 +00007962 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007963 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohman7f321562007-06-25 16:23:39 +00007964 Result = ScalarizeVectorOp(Node->getOperand(1));
7965 else
7966 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007967 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007968 }
7969 case ISD::EXTRACT_SUBVECTOR:
Scott Michelfdc40a02009-02-17 22:15:04 +00007970 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007971 Node->getOperand(0), Node->getOperand(1));
Dan Gohman65956352007-06-13 15:12:02 +00007972 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007973 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007974 SDValue Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007975 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007976 Op0 = ScalarizeVectorOp(Op0);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007977 Result = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007978 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007979 }
Dan Gohman7f321562007-06-25 16:23:39 +00007980 case ISD::SELECT:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007981 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007982 ScalarizeVectorOp(Op.getOperand(1)),
7983 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007984 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007985 case ISD::SELECT_CC:
Scott Michelfdc40a02009-02-17 22:15:04 +00007986 Result = DAG.getNode(ISD::SELECT_CC, dl, NewVT, Node->getOperand(0),
Chris Lattner80c1a562008-06-30 02:43:01 +00007987 Node->getOperand(1),
7988 ScalarizeVectorOp(Op.getOperand(2)),
7989 ScalarizeVectorOp(Op.getOperand(3)),
7990 Node->getOperand(4));
7991 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007992 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007993 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7994 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007995 Result = DAG.getNode(ISD::SETCC, dl,
7996 TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00007997 Op0, Op1, Op.getOperand(2));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007998 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Result,
Nate Begeman0d1704b2008-05-12 23:09:43 +00007999 DAG.getConstant(-1ULL, NewVT),
8000 DAG.getConstant(0ULL, NewVT));
8001 break;
8002 }
Chris Lattnerc7029802006-03-18 01:44:44 +00008003 }
8004
8005 if (TLI.isTypeLegal(NewVT))
8006 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00008007 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
8008 assert(isNew && "Value already scalarized?");
Evan Cheng24ac4082008-11-24 07:09:49 +00008009 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00008010 return Result;
8011}
8012
Chris Lattner3e928bb2005-01-07 07:47:09 +00008013
Mon P Wang0c397192008-10-30 08:01:45 +00008014SDValue SelectionDAGLegalize::WidenVectorOp(SDValue Op, MVT WidenVT) {
8015 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(Op);
8016 if (I != WidenNodes.end()) return I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00008017
Mon P Wang0c397192008-10-30 08:01:45 +00008018 MVT VT = Op.getValueType();
8019 assert(VT.isVector() && "Cannot widen non-vector type!");
8020
8021 SDValue Result;
8022 SDNode *Node = Op.getNode();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008023 DebugLoc dl = Node->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008024 MVT EVT = VT.getVectorElementType();
8025
8026 unsigned NumElts = VT.getVectorNumElements();
8027 unsigned NewNumElts = WidenVT.getVectorNumElements();
8028 assert(NewNumElts > NumElts && "Cannot widen to smaller type!");
8029 assert(NewNumElts < 17);
8030
8031 // When widen is called, it is assumed that it is more efficient to use a
8032 // wide type. The default action is to widen to operation to a wider legal
8033 // vector type and then do the operation if it is legal by calling LegalizeOp
8034 // again. If there is no vector equivalent, we will unroll the operation, do
8035 // it, and rebuild the vector. If most of the operations are vectorizible to
8036 // the legal type, the resulting code will be more efficient. If this is not
8037 // the case, the resulting code will preform badly as we end up generating
8038 // code to pack/unpack the results. It is the function that calls widen
Mon P Wangf007a8b2008-11-06 05:31:54 +00008039 // that is responsible for seeing this doesn't happen.
Mon P Wang0c397192008-10-30 08:01:45 +00008040 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008041 default:
Mon P Wang0c397192008-10-30 08:01:45 +00008042#ifndef NDEBUG
8043 Node->dump(&DAG);
8044#endif
8045 assert(0 && "Unexpected operation in WidenVectorOp!");
8046 break;
8047 case ISD::CopyFromReg:
Mon P Wang49292f12008-11-15 06:05:52 +00008048 assert(0 && "CopyFromReg doesn't need widening!");
Mon P Wang0c397192008-10-30 08:01:45 +00008049 case ISD::Constant:
8050 case ISD::ConstantFP:
8051 // To build a vector of these elements, clients should call BuildVector
8052 // and with each element instead of creating a node with a vector type
8053 assert(0 && "Unexpected operation in WidenVectorOp!");
8054 case ISD::VAARG:
8055 // Variable Arguments with vector types doesn't make any sense to me
8056 assert(0 && "Unexpected operation in WidenVectorOp!");
8057 break;
Mon P Wang49292f12008-11-15 06:05:52 +00008058 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00008059 Result = DAG.getUNDEF(WidenVT);
Mon P Wang49292f12008-11-15 06:05:52 +00008060 break;
Mon P Wang0c397192008-10-30 08:01:45 +00008061 case ISD::BUILD_VECTOR: {
8062 // Build a vector with undefined for the new nodes
8063 SDValueVector NewOps(Node->op_begin(), Node->op_end());
8064 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesene8d72302009-02-06 23:05:02 +00008065 NewOps.push_back(DAG.getUNDEF(EVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008066 }
Scott Michel4214a552009-02-22 23:36:09 +00008067 Result = DAG.getBUILD_VECTOR(WidenVT, dl, &NewOps[0], NewOps.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008068 break;
8069 }
8070 case ISD::INSERT_VECTOR_ELT: {
8071 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008072 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, WidenVT, Tmp1,
Mon P Wang0c397192008-10-30 08:01:45 +00008073 Node->getOperand(1), Node->getOperand(2));
8074 break;
8075 }
8076 case ISD::VECTOR_SHUFFLE: {
8077 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8078 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8079 // VECTOR_SHUFFLE 3rd operand must be a constant build vector that is
8080 // used as permutation array. We build the vector here instead of widening
8081 // because we don't want to legalize and have it turned to something else.
8082 SDValue PermOp = Node->getOperand(2);
8083 SDValueVector NewOps;
8084 MVT PVT = PermOp.getValueType().getVectorElementType();
8085 for (unsigned i = 0; i < NumElts; ++i) {
8086 if (PermOp.getOperand(i).getOpcode() == ISD::UNDEF) {
8087 NewOps.push_back(PermOp.getOperand(i));
8088 } else {
8089 unsigned Idx =
Mon P Wange1a0b2e2008-12-13 08:15:14 +00008090 cast<ConstantSDNode>(PermOp.getOperand(i))->getZExtValue();
Mon P Wang0c397192008-10-30 08:01:45 +00008091 if (Idx < NumElts) {
8092 NewOps.push_back(PermOp.getOperand(i));
8093 }
8094 else {
8095 NewOps.push_back(DAG.getConstant(Idx + NewNumElts - NumElts,
8096 PermOp.getOperand(i).getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00008097 }
Mon P Wang0c397192008-10-30 08:01:45 +00008098 }
8099 }
8100 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesene8d72302009-02-06 23:05:02 +00008101 NewOps.push_back(DAG.getUNDEF(PVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008102 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008103
Scott Michel4214a552009-02-22 23:36:09 +00008104 SDValue Tmp3 = DAG.getBUILD_VECTOR(MVT::getVectorVT(PVT, NewOps.size()), dl,
8105 &NewOps[0], NewOps.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00008106
Dale Johannesenc6be1102009-02-02 22:49:46 +00008107 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, WidenVT, Tmp1, Tmp2, Tmp3);
Mon P Wang0c397192008-10-30 08:01:45 +00008108 break;
8109 }
8110 case ISD::LOAD: {
8111 // If the load widen returns true, we can use a single load for the
8112 // vector. Otherwise, it is returning a token factor for multiple
8113 // loads.
8114 SDValue TFOp;
8115 if (LoadWidenVectorOp(Result, TFOp, Op, WidenVT))
8116 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(1)));
8117 else
8118 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(0)));
8119 break;
8120 }
8121
8122 case ISD::BIT_CONVERT: {
8123 SDValue Tmp1 = Node->getOperand(0);
8124 // Converts between two different types so we need to determine
8125 // the correct widen type for the input operand.
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008126 MVT InVT = Tmp1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008127 unsigned WidenSize = WidenVT.getSizeInBits();
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008128 if (InVT.isVector()) {
8129 MVT InEltVT = InVT.getVectorElementType();
8130 unsigned InEltSize = InEltVT.getSizeInBits();
8131 assert(WidenSize % InEltSize == 0 &&
8132 "can not widen bit convert that are not multiple of element type");
8133 MVT NewInWidenVT = MVT::getVectorVT(InEltVT, WidenSize / InEltSize);
8134 Tmp1 = WidenVectorOp(Tmp1, NewInWidenVT);
8135 assert(Tmp1.getValueType().getSizeInBits() == WidenVT.getSizeInBits());
Dale Johannesenc6be1102009-02-02 22:49:46 +00008136 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Tmp1);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008137 } else {
8138 // If the result size is a multiple of the input size, widen the input
8139 // and then convert.
8140 unsigned InSize = InVT.getSizeInBits();
8141 assert(WidenSize % InSize == 0 &&
8142 "can not widen bit convert that are not multiple of element type");
8143 unsigned NewNumElts = WidenSize / InSize;
8144 SmallVector<SDValue, 16> Ops(NewNumElts);
Dale Johannesene8d72302009-02-06 23:05:02 +00008145 SDValue UndefVal = DAG.getUNDEF(InVT);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008146 Ops[0] = Tmp1;
8147 for (unsigned i = 1; i < NewNumElts; ++i)
8148 Ops[i] = UndefVal;
Mon P Wang0c397192008-10-30 08:01:45 +00008149
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008150 MVT NewInVT = MVT::getVectorVT(InVT, NewNumElts);
Scott Michel4214a552009-02-22 23:36:09 +00008151 Result = DAG.getBUILD_VECTOR(NewInVT, dl, &Ops[0], NewNumElts);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008152 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008153 }
8154 break;
8155 }
8156
8157 case ISD::SINT_TO_FP:
8158 case ISD::UINT_TO_FP:
8159 case ISD::FP_TO_SINT:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008160 case ISD::FP_TO_UINT:
8161 case ISD::FP_ROUND: {
Mon P Wang0c397192008-10-30 08:01:45 +00008162 SDValue Tmp1 = Node->getOperand(0);
8163 // Converts between two different types so we need to determine
8164 // the correct widen type for the input operand.
8165 MVT TVT = Tmp1.getValueType();
8166 assert(TVT.isVector() && "can not widen non vector type");
8167 MVT TEVT = TVT.getVectorElementType();
8168 MVT TWidenVT = MVT::getVectorVT(TEVT, NewNumElts);
8169 Tmp1 = WidenVectorOp(Tmp1, TWidenVT);
8170 assert(Tmp1.getValueType().getVectorNumElements() == NewNumElts);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008171 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008172 break;
8173 }
8174
8175 case ISD::FP_EXTEND:
8176 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
8177 case ISD::TRUNCATE:
8178 case ISD::SIGN_EXTEND:
8179 case ISD::ZERO_EXTEND:
8180 case ISD::ANY_EXTEND:
Mon P Wang0c397192008-10-30 08:01:45 +00008181 case ISD::SIGN_EXTEND_INREG:
8182 case ISD::FABS:
8183 case ISD::FNEG:
8184 case ISD::FSQRT:
8185 case ISD::FSIN:
Mon P Wang49292f12008-11-15 06:05:52 +00008186 case ISD::FCOS:
8187 case ISD::CTPOP:
8188 case ISD::CTTZ:
8189 case ISD::CTLZ: {
Mon P Wang0c397192008-10-30 08:01:45 +00008190 // Unary op widening
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008191 SDValue Tmp1;
Mon P Wang0c397192008-10-30 08:01:45 +00008192 Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8193 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008194 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008195 break;
8196 }
Mon P Wang77cdf302008-11-10 20:54:11 +00008197 case ISD::CONVERT_RNDSAT: {
8198 SDValue RndOp = Node->getOperand(3);
8199 SDValue SatOp = Node->getOperand(4);
Mon P Wang77cdf302008-11-10 20:54:11 +00008200 SDValue SrcOp = Node->getOperand(0);
8201
8202 // Converts between two different types so we need to determine
8203 // the correct widen type for the input operand.
8204 MVT SVT = SrcOp.getValueType();
8205 assert(SVT.isVector() && "can not widen non vector type");
8206 MVT SEVT = SVT.getVectorElementType();
8207 MVT SWidenVT = MVT::getVectorVT(SEVT, NewNumElts);
8208
8209 SrcOp = WidenVectorOp(SrcOp, SWidenVT);
8210 assert(SrcOp.getValueType() == WidenVT);
8211 SDValue DTyOp = DAG.getValueType(WidenVT);
8212 SDValue STyOp = DAG.getValueType(SrcOp.getValueType());
8213 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
8214
Dale Johannesenc460ae92009-02-04 00:13:36 +00008215 Result = DAG.getConvertRndSat(WidenVT, dl, SrcOp, DTyOp, STyOp,
Mon P Wang77cdf302008-11-10 20:54:11 +00008216 RndOp, SatOp, CvtCode);
Mon P Wang77cdf302008-11-10 20:54:11 +00008217 break;
8218 }
Mon P Wang0c397192008-10-30 08:01:45 +00008219 case ISD::FPOW:
Scott Michelfdc40a02009-02-17 22:15:04 +00008220 case ISD::FPOWI:
Mon P Wang0c397192008-10-30 08:01:45 +00008221 case ISD::ADD:
8222 case ISD::SUB:
8223 case ISD::MUL:
8224 case ISD::MULHS:
8225 case ISD::MULHU:
8226 case ISD::AND:
8227 case ISD::OR:
8228 case ISD::XOR:
8229 case ISD::FADD:
8230 case ISD::FSUB:
8231 case ISD::FMUL:
8232 case ISD::SDIV:
8233 case ISD::SREM:
8234 case ISD::FDIV:
8235 case ISD::FREM:
8236 case ISD::FCOPYSIGN:
8237 case ISD::UDIV:
8238 case ISD::UREM:
8239 case ISD::BSWAP: {
8240 // Binary op widening
Mon P Wang0c397192008-10-30 08:01:45 +00008241 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8242 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8243 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008244 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008245 break;
8246 }
8247
8248 case ISD::SHL:
8249 case ISD::SRA:
8250 case ISD::SRL: {
Mon P Wang0c397192008-10-30 08:01:45 +00008251 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8252 assert(Tmp1.getValueType() == WidenVT);
Mon P Wangfb13f002008-12-02 07:35:08 +00008253 SDValue ShOp = Node->getOperand(1);
8254 MVT ShVT = ShOp.getValueType();
8255 MVT NewShVT = MVT::getVectorVT(ShVT.getVectorElementType(),
8256 WidenVT.getVectorNumElements());
8257 ShOp = WidenVectorOp(ShOp, NewShVT);
8258 assert(ShOp.getValueType() == NewShVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008259 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, ShOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008260 break;
8261 }
Mon P Wangfb13f002008-12-02 07:35:08 +00008262
Mon P Wang0c397192008-10-30 08:01:45 +00008263 case ISD::EXTRACT_VECTOR_ELT: {
8264 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8265 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008266 Result = DAG.getNode(Node->getOpcode(), dl, EVT, Tmp1, Node->getOperand(1));
Mon P Wang0c397192008-10-30 08:01:45 +00008267 break;
8268 }
8269 case ISD::CONCAT_VECTORS: {
8270 // We concurrently support only widen on a multiple of the incoming vector.
8271 // We could widen on a multiple of the incoming operand if necessary.
8272 unsigned NumConcat = NewNumElts / NumElts;
8273 assert(NewNumElts % NumElts == 0 && "Can widen only a multiple of vector");
Dale Johannesene8d72302009-02-06 23:05:02 +00008274 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang0c397192008-10-30 08:01:45 +00008275 SmallVector<SDValue, 8> MOps;
8276 MOps.push_back(Op);
8277 for (unsigned i = 1; i != NumConcat; ++i) {
8278 MOps.push_back(UndefVal);
8279 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00008280 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008281 &MOps[0], MOps.size()));
8282 break;
8283 }
8284 case ISD::EXTRACT_SUBVECTOR: {
Mon P Wang49292f12008-11-15 06:05:52 +00008285 SDValue Tmp1 = Node->getOperand(0);
8286 SDValue Idx = Node->getOperand(1);
8287 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
8288 if (CIdx && CIdx->getZExtValue() == 0) {
8289 // Since we are access the start of the vector, the incoming
8290 // vector type might be the proper.
8291 MVT Tmp1VT = Tmp1.getValueType();
8292 if (Tmp1VT == WidenVT)
8293 return Tmp1;
8294 else {
8295 unsigned Tmp1VTNumElts = Tmp1VT.getVectorNumElements();
8296 if (Tmp1VTNumElts < NewNumElts)
8297 Result = WidenVectorOp(Tmp1, WidenVT);
8298 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00008299 Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, WidenVT, Tmp1, Idx);
Mon P Wang49292f12008-11-15 06:05:52 +00008300 }
8301 } else if (NewNumElts % NumElts == 0) {
8302 // Widen the extracted subvector.
8303 unsigned NumConcat = NewNumElts / NumElts;
Dale Johannesene8d72302009-02-06 23:05:02 +00008304 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang49292f12008-11-15 06:05:52 +00008305 SmallVector<SDValue, 8> MOps;
8306 MOps.push_back(Op);
8307 for (unsigned i = 1; i != NumConcat; ++i) {
8308 MOps.push_back(UndefVal);
8309 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00008310 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang49292f12008-11-15 06:05:52 +00008311 &MOps[0], MOps.size()));
8312 } else {
8313 assert(0 && "can not widen extract subvector");
8314 // This could be implemented using insert and build vector but I would
8315 // like to see when this happens.
8316 }
Mon P Wang0c397192008-10-30 08:01:45 +00008317 break;
8318 }
8319
8320 case ISD::SELECT: {
Mon P Wang0c397192008-10-30 08:01:45 +00008321 // Determine new condition widen type and widen
8322 SDValue Cond1 = Node->getOperand(0);
8323 MVT CondVT = Cond1.getValueType();
8324 assert(CondVT.isVector() && "can not widen non vector type");
8325 MVT CondEVT = CondVT.getVectorElementType();
8326 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8327 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8328 assert(Cond1.getValueType() == CondWidenVT && "Condition not widen");
8329
8330 SDValue Tmp1 = WidenVectorOp(Node->getOperand(1), WidenVT);
8331 SDValue Tmp2 = WidenVectorOp(Node->getOperand(2), WidenVT);
8332 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008333 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008334 break;
8335 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008336
Mon P Wang0c397192008-10-30 08:01:45 +00008337 case ISD::SELECT_CC: {
Mon P Wang0c397192008-10-30 08:01:45 +00008338 // Determine new condition widen type and widen
8339 SDValue Cond1 = Node->getOperand(0);
8340 SDValue Cond2 = Node->getOperand(1);
8341 MVT CondVT = Cond1.getValueType();
8342 assert(CondVT.isVector() && "can not widen non vector type");
8343 assert(CondVT == Cond2.getValueType() && "mismatch lhs/rhs");
8344 MVT CondEVT = CondVT.getVectorElementType();
8345 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8346 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8347 Cond2 = WidenVectorOp(Cond2, CondWidenVT);
8348 assert(Cond1.getValueType() == CondWidenVT &&
8349 Cond2.getValueType() == CondWidenVT && "condition not widen");
8350
8351 SDValue Tmp1 = WidenVectorOp(Node->getOperand(2), WidenVT);
8352 SDValue Tmp2 = WidenVectorOp(Node->getOperand(3), WidenVT);
8353 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT &&
8354 "operands not widen");
Dale Johannesenc6be1102009-02-02 22:49:46 +00008355 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Cond2, Tmp1,
Mon P Wang0c397192008-10-30 08:01:45 +00008356 Tmp2, Node->getOperand(4));
Mon P Wang0c397192008-10-30 08:01:45 +00008357 break;
Mon P Wang2eb13c32008-10-30 18:21:52 +00008358 }
8359 case ISD::VSETCC: {
8360 // Determine widen for the operand
8361 SDValue Tmp1 = Node->getOperand(0);
8362 MVT TmpVT = Tmp1.getValueType();
8363 assert(TmpVT.isVector() && "can not widen non vector type");
8364 MVT TmpEVT = TmpVT.getVectorElementType();
8365 MVT TmpWidenVT = MVT::getVectorVT(TmpEVT, NewNumElts);
8366 Tmp1 = WidenVectorOp(Tmp1, TmpWidenVT);
8367 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), TmpWidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008368 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2,
Mon P Wang2eb13c32008-10-30 18:21:52 +00008369 Node->getOperand(2));
Mon P Wang0c397192008-10-30 08:01:45 +00008370 break;
8371 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008372 case ISD::ATOMIC_CMP_SWAP:
8373 case ISD::ATOMIC_LOAD_ADD:
8374 case ISD::ATOMIC_LOAD_SUB:
8375 case ISD::ATOMIC_LOAD_AND:
8376 case ISD::ATOMIC_LOAD_OR:
8377 case ISD::ATOMIC_LOAD_XOR:
8378 case ISD::ATOMIC_LOAD_NAND:
8379 case ISD::ATOMIC_LOAD_MIN:
8380 case ISD::ATOMIC_LOAD_MAX:
8381 case ISD::ATOMIC_LOAD_UMIN:
8382 case ISD::ATOMIC_LOAD_UMAX:
8383 case ISD::ATOMIC_SWAP: {
Mon P Wang0c397192008-10-30 08:01:45 +00008384 // For now, we assume that using vectors for these operations don't make
8385 // much sense so we just split it. We return an empty result
8386 SDValue X, Y;
8387 SplitVectorOp(Op, X, Y);
8388 return Result;
8389 break;
8390 }
8391
8392 } // end switch (Node->getOpcode())
8393
Scott Michelfdc40a02009-02-17 22:15:04 +00008394 assert(Result.getNode() && "Didn't set a result!");
Mon P Wang0c397192008-10-30 08:01:45 +00008395 if (Result != Op)
8396 Result = LegalizeOp(Result);
8397
Mon P Wangf007a8b2008-11-06 05:31:54 +00008398 AddWidenedOperand(Op, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008399 return Result;
8400}
8401
8402// Utility function to find a legal vector type and its associated element
8403// type from a preferred width and whose vector type must be the same size
8404// as the VVT.
8405// TLI: Target lowering used to determine legal types
8406// Width: Preferred width of element type
8407// VVT: Vector value type whose size we must match.
8408// Returns VecEVT and EVT - the vector type and its associated element type
Dan Gohman0d137d72009-01-15 16:43:02 +00008409static void FindWidenVecType(const TargetLowering &TLI, unsigned Width, MVT VVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008410 MVT& EVT, MVT& VecEVT) {
8411 // We start with the preferred width, make it a power of 2 and see if
8412 // we can find a vector type of that width. If not, we reduce it by
8413 // another power of 2. If we have widen the type, a vector of bytes should
8414 // always be legal.
8415 assert(TLI.isTypeLegal(VVT));
8416 unsigned EWidth = Width + 1;
8417 do {
8418 assert(EWidth > 0);
8419 EWidth = (1 << Log2_32(EWidth-1));
8420 EVT = MVT::getIntegerVT(EWidth);
8421 unsigned NumEVT = VVT.getSizeInBits()/EWidth;
8422 VecEVT = MVT::getVectorVT(EVT, NumEVT);
8423 } while (!TLI.isTypeLegal(VecEVT) ||
8424 VVT.getSizeInBits() != VecEVT.getSizeInBits());
8425}
8426
8427SDValue SelectionDAGLegalize::genWidenVectorLoads(SDValueVector& LdChain,
8428 SDValue Chain,
8429 SDValue BasePtr,
8430 const Value *SV,
8431 int SVOffset,
8432 unsigned Alignment,
8433 bool isVolatile,
8434 unsigned LdWidth,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008435 MVT ResType,
8436 DebugLoc dl) {
Mon P Wang0c397192008-10-30 08:01:45 +00008437 // We assume that we have good rules to handle loading power of two loads so
8438 // we break down the operations to power of 2 loads. The strategy is to
8439 // load the largest power of 2 that we can easily transform to a legal vector
8440 // and then insert into that vector, and the cast the result into the legal
8441 // vector that we want. This avoids unnecessary stack converts.
8442 // TODO: If the Ldwidth is legal, alignment is the same as the LdWidth, and
8443 // the load is nonvolatile, we an use a wider load for the value.
8444 // Find a vector length we can load a large chunk
8445 MVT EVT, VecEVT;
8446 unsigned EVTWidth;
8447 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8448 EVTWidth = EVT.getSizeInBits();
8449
Dale Johannesenc6be1102009-02-02 22:49:46 +00008450 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV, SVOffset,
Mon P Wang0c397192008-10-30 08:01:45 +00008451 isVolatile, Alignment);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008452 SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecEVT, LdOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008453 LdChain.push_back(LdOp.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00008454
Mon P Wang0c397192008-10-30 08:01:45 +00008455 // Check if we can load the element with one instruction
8456 if (LdWidth == EVTWidth) {
Dale Johannesenc6be1102009-02-02 22:49:46 +00008457 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008458 }
8459
8460 // The vector element order is endianness dependent.
8461 unsigned Idx = 1;
8462 LdWidth -= EVTWidth;
8463 unsigned Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008464
Mon P Wang0c397192008-10-30 08:01:45 +00008465 while (LdWidth > 0) {
8466 unsigned Increment = EVTWidth / 8;
8467 Offset += Increment;
Dale Johannesenc6be1102009-02-02 22:49:46 +00008468 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang0c397192008-10-30 08:01:45 +00008469 DAG.getIntPtrConstant(Increment));
8470
8471 if (LdWidth < EVTWidth) {
8472 // Our current type we are using is too large, use a smaller size by
8473 // using a smaller power of 2
8474 unsigned oEVTWidth = EVTWidth;
8475 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8476 EVTWidth = EVT.getSizeInBits();
8477 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008478 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008479 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008480 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008481
Dale Johannesenc6be1102009-02-02 22:49:46 +00008482 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV,
Mon P Wang0c397192008-10-30 08:01:45 +00008483 SVOffset+Offset, isVolatile,
8484 MinAlign(Alignment, Offset));
8485 LdChain.push_back(LdOp.getValue(1));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008486 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecEVT, VecOp, LdOp,
Mon P Wang0c397192008-10-30 08:01:45 +00008487 DAG.getIntPtrConstant(Idx++));
Scott Michelfdc40a02009-02-17 22:15:04 +00008488
Mon P Wang0c397192008-10-30 08:01:45 +00008489 LdWidth -= EVTWidth;
8490 }
8491
Dale Johannesenc6be1102009-02-02 22:49:46 +00008492 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008493}
8494
8495bool SelectionDAGLegalize::LoadWidenVectorOp(SDValue& Result,
8496 SDValue& TFOp,
8497 SDValue Op,
8498 MVT NVT) {
8499 // TODO: Add support for ConcatVec and the ability to load many vector
8500 // types (e.g., v4i8). This will not work when a vector register
8501 // to memory mapping is strange (e.g., vector elements are not
8502 // stored in some sequential order).
8503
Scott Michelfdc40a02009-02-17 22:15:04 +00008504 // It must be true that the widen vector type is bigger than where
Mon P Wang0c397192008-10-30 08:01:45 +00008505 // we need to load from.
8506 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
8507 MVT LdVT = LD->getMemoryVT();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008508 DebugLoc dl = LD->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008509 assert(LdVT.isVector() && NVT.isVector());
8510 assert(LdVT.getVectorElementType() == NVT.getVectorElementType());
Scott Michelfdc40a02009-02-17 22:15:04 +00008511
Mon P Wang0c397192008-10-30 08:01:45 +00008512 // Load information
8513 SDValue Chain = LD->getChain();
8514 SDValue BasePtr = LD->getBasePtr();
8515 int SVOffset = LD->getSrcValueOffset();
8516 unsigned Alignment = LD->getAlignment();
8517 bool isVolatile = LD->isVolatile();
8518 const Value *SV = LD->getSrcValue();
8519 unsigned int LdWidth = LdVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00008520
Mon P Wang0c397192008-10-30 08:01:45 +00008521 // Load value as a large register
8522 SDValueVector LdChain;
8523 Result = genWidenVectorLoads(LdChain, Chain, BasePtr, SV, SVOffset,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008524 Alignment, isVolatile, LdWidth, NVT, dl);
Mon P Wang0c397192008-10-30 08:01:45 +00008525
8526 if (LdChain.size() == 1) {
8527 TFOp = LdChain[0];
8528 return true;
8529 }
8530 else {
Scott Michelfdc40a02009-02-17 22:15:04 +00008531 TFOp=DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008532 &LdChain[0], LdChain.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008533 return false;
8534 }
8535}
8536
8537
8538void SelectionDAGLegalize::genWidenVectorStores(SDValueVector& StChain,
8539 SDValue Chain,
8540 SDValue BasePtr,
8541 const Value *SV,
8542 int SVOffset,
8543 unsigned Alignment,
8544 bool isVolatile,
Mon P Wang49292f12008-11-15 06:05:52 +00008545 SDValue ValOp,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008546 unsigned StWidth,
8547 DebugLoc dl) {
Mon P Wang0c397192008-10-30 08:01:45 +00008548 // Breaks the stores into a series of power of 2 width stores. For any
8549 // width, we convert the vector to the vector of element size that we
8550 // want to store. This avoids requiring a stack convert.
Scott Michelfdc40a02009-02-17 22:15:04 +00008551
Mon P Wang0c397192008-10-30 08:01:45 +00008552 // Find a width of the element type we can store with
8553 MVT VVT = ValOp.getValueType();
8554 MVT EVT, VecEVT;
8555 unsigned EVTWidth;
8556 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8557 EVTWidth = EVT.getSizeInBits();
8558
Dale Johannesenc6be1102009-02-02 22:49:46 +00008559 SDValue VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, ValOp);
8560 SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wange0b436a2008-11-06 22:52:21 +00008561 DAG.getIntPtrConstant(0));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008562 SDValue StOp = DAG.getStore(Chain, dl, EOp, BasePtr, SV, SVOffset,
Mon P Wang0c397192008-10-30 08:01:45 +00008563 isVolatile, Alignment);
8564 StChain.push_back(StOp);
8565
8566 // Check if we are done
8567 if (StWidth == EVTWidth) {
8568 return;
8569 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008570
Mon P Wang0c397192008-10-30 08:01:45 +00008571 unsigned Idx = 1;
8572 StWidth -= EVTWidth;
8573 unsigned Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008574
Mon P Wang0c397192008-10-30 08:01:45 +00008575 while (StWidth > 0) {
8576 unsigned Increment = EVTWidth / 8;
8577 Offset += Increment;
Dale Johannesenc6be1102009-02-02 22:49:46 +00008578 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang0c397192008-10-30 08:01:45 +00008579 DAG.getIntPtrConstant(Increment));
Scott Michelfdc40a02009-02-17 22:15:04 +00008580
Mon P Wang0c397192008-10-30 08:01:45 +00008581 if (StWidth < EVTWidth) {
8582 // Our current type we are using is too large, use a smaller size by
8583 // using a smaller power of 2
8584 unsigned oEVTWidth = EVTWidth;
8585 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8586 EVTWidth = EVT.getSizeInBits();
8587 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008588 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008589 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008590 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008591
Dale Johannesenc6be1102009-02-02 22:49:46 +00008592 EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang49292f12008-11-15 06:05:52 +00008593 DAG.getIntPtrConstant(Idx++));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008594 StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr, SV,
Mon P Wang0c397192008-10-30 08:01:45 +00008595 SVOffset + Offset, isVolatile,
8596 MinAlign(Alignment, Offset)));
8597 StWidth -= EVTWidth;
8598 }
8599}
8600
8601
8602SDValue SelectionDAGLegalize::StoreWidenVectorOp(StoreSDNode *ST,
8603 SDValue Chain,
8604 SDValue BasePtr) {
8605 // TODO: It might be cleaner if we can use SplitVector and have more legal
8606 // vector types that can be stored into memory (e.g., v4xi8 can
8607 // be stored as a word). This will not work when a vector register
8608 // to memory mapping is strange (e.g., vector elements are not
8609 // stored in some sequential order).
Scott Michelfdc40a02009-02-17 22:15:04 +00008610
Mon P Wang0c397192008-10-30 08:01:45 +00008611 MVT StVT = ST->getMemoryVT();
8612 SDValue ValOp = ST->getValue();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008613 DebugLoc dl = ST->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008614
8615 // Check if we have widen this node with another value
8616 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(ValOp);
8617 if (I != WidenNodes.end())
8618 ValOp = I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00008619
Mon P Wang0c397192008-10-30 08:01:45 +00008620 MVT VVT = ValOp.getValueType();
8621
8622 // It must be true that we the widen vector type is bigger than where
8623 // we need to store.
8624 assert(StVT.isVector() && VVT.isVector());
Dan Gohmanf83c81a2009-01-28 03:10:52 +00008625 assert(StVT.bitsLT(VVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008626 assert(StVT.getVectorElementType() == VVT.getVectorElementType());
8627
8628 // Store value
8629 SDValueVector StChain;
8630 genWidenVectorStores(StChain, Chain, BasePtr, ST->getSrcValue(),
8631 ST->getSrcValueOffset(), ST->getAlignment(),
Dale Johannesenc6be1102009-02-02 22:49:46 +00008632 ST->isVolatile(), ValOp, StVT.getSizeInBits(), dl);
Mon P Wang0c397192008-10-30 08:01:45 +00008633 if (StChain.size() == 1)
8634 return StChain[0];
Scott Michelfdc40a02009-02-17 22:15:04 +00008635 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00008636 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
8637 &StChain[0], StChain.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008638}
8639
8640
Chris Lattner3e928bb2005-01-07 07:47:09 +00008641// SelectionDAG::Legalize - This is the entry point for the file.
8642//
Duncan Sandsb6862bb2008-12-14 09:43:15 +00008643void SelectionDAG::Legalize(bool TypesNeedLegalizing) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00008644 /// run - This is the main entry point to this class.
8645 ///
Duncan Sandsb6862bb2008-12-14 09:43:15 +00008646 SelectionDAGLegalize(*this, TypesNeedLegalizing).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00008647}
8648