blob: 40785da8cfd1b1e8659472b608d770fe471e0276 [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;
Bill Wendling5aa49772009-02-24 02:35:30 +000059 bool Fast;
Chris Lattner3e928bb2005-01-07 07:47:09 +000060
Chris Lattner6831a812006-02-13 09:18:02 +000061 // Libcall insertion helpers.
Scott Michelfdc40a02009-02-17 22:15:04 +000062
Chris Lattner6831a812006-02-13 09:18:02 +000063 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
64 /// legalized. We use this to ensure that calls are properly serialized
65 /// against each other, including inserted libcalls.
Dan Gohman475871a2008-07-27 21:46:04 +000066 SDValue LastCALLSEQ_END;
Scott Michelfdc40a02009-02-17 22:15:04 +000067
Chris Lattner6831a812006-02-13 09:18:02 +000068 /// IsLegalizingCall - This member is used *only* for purposes of providing
Scott Michelfdc40a02009-02-17 22:15:04 +000069 /// helpful assertions that a libcall isn't created while another call is
Chris Lattner6831a812006-02-13 09:18:02 +000070 /// being legalized (which could lead to non-serialized call sequences).
71 bool IsLegalizingCall;
Scott Michelfdc40a02009-02-17 22:15:04 +000072
Mon P Wange5ab34e2009-02-04 19:38:14 +000073 /// IsLegalizingCallArguments - This member is used only for the purpose
74 /// of providing assert to check for LegalizeTypes because legalizing an
75 /// operation might introduce call nodes that might need type legalization.
76 bool IsLegalizingCallArgs;
77
Chris Lattner3e928bb2005-01-07 07:47:09 +000078 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000079 Legal, // The target natively supports this operation.
80 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000081 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000082 };
Scott Michelfdc40a02009-02-17 22:15:04 +000083
Chris Lattner3e928bb2005-01-07 07:47:09 +000084 /// ValueTypeActions - This is a bitvector that contains two bits for each
85 /// value type, where the two bits correspond to the LegalizeAction enum.
86 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000087 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000088
Chris Lattner3e928bb2005-01-07 07:47:09 +000089 /// LegalizedNodes - For nodes that are of legal width, and that have more
90 /// than one use, this map indicates what regularized operand to use. This
91 /// allows us to avoid legalizing the same thing more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000092 DenseMap<SDValue, SDValue> LegalizedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000093
Chris Lattner03c85462005-01-15 05:21:40 +000094 /// PromotedNodes - For nodes that are below legal width, and that have more
95 /// than one use, this map indicates what promoted value to use. This allows
96 /// us to avoid promoting the same thing more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000097 DenseMap<SDValue, SDValue> PromotedNodes;
Chris Lattner03c85462005-01-15 05:21:40 +000098
Chris Lattnerc7029802006-03-18 01:44:44 +000099 /// ExpandedNodes - For nodes that need to be expanded this map indicates
Mon P Wang0c397192008-10-30 08:01:45 +0000100 /// which operands are the expanded version of the input. This allows
Chris Lattnerc7029802006-03-18 01:44:44 +0000101 /// us to avoid expanding the same node more than once.
Dan Gohman475871a2008-07-27 21:46:04 +0000102 DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000103
Chris Lattnerc7029802006-03-18 01:44:44 +0000104 /// SplitNodes - For vector nodes that need to be split, this map indicates
Mon P Wang0c397192008-10-30 08:01:45 +0000105 /// which operands are the split version of the input. This allows us
Chris Lattnerc7029802006-03-18 01:44:44 +0000106 /// to avoid splitting the same node more than once.
Dan Gohman475871a2008-07-27 21:46:04 +0000107 std::map<SDValue, std::pair<SDValue, SDValue> > SplitNodes;
Scott Michelfdc40a02009-02-17 22:15:04 +0000108
Dan Gohman7f321562007-06-25 16:23:39 +0000109 /// ScalarizedNodes - For nodes that need to be converted from vector types to
110 /// scalar types, this contains the mapping of ones we have already
Chris Lattnerc7029802006-03-18 01:44:44 +0000111 /// processed to the result.
Dan Gohman475871a2008-07-27 21:46:04 +0000112 std::map<SDValue, SDValue> ScalarizedNodes;
Scott Michelfdc40a02009-02-17 22:15:04 +0000113
Mon P Wangf007a8b2008-11-06 05:31:54 +0000114 /// WidenNodes - For nodes that need to be widened from one vector type to
115 /// another, this contains the mapping of those that we have already widen.
116 /// This allows us to avoid widening more than once.
Mon P Wang0c397192008-10-30 08:01:45 +0000117 std::map<SDValue, SDValue> WidenNodes;
118
Dan Gohman475871a2008-07-27 21:46:04 +0000119 void AddLegalizedOperand(SDValue From, SDValue To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000120 LegalizedNodes.insert(std::make_pair(From, To));
121 // If someone requests legalization of the new node, return itself.
122 if (From != To)
123 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000124 }
Dan Gohman475871a2008-07-27 21:46:04 +0000125 void AddPromotedOperand(SDValue From, SDValue To) {
Dan Gohman6b345ee2008-07-07 17:46:23 +0000126 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
Chris Lattner03c85462005-01-15 05:21:40 +0000127 assert(isNew && "Got into the map somehow?");
Evan Cheng24ac4082008-11-24 07:09:49 +0000128 isNew = isNew;
Chris Lattner69a889e2005-12-20 00:53:54 +0000129 // If someone requests legalization of the new node, return itself.
130 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000131 }
Mon P Wangf007a8b2008-11-06 05:31:54 +0000132 void AddWidenedOperand(SDValue From, SDValue To) {
Mon P Wang0c397192008-10-30 08:01:45 +0000133 bool isNew = WidenNodes.insert(std::make_pair(From, To)).second;
134 assert(isNew && "Got into the map somehow?");
Evan Cheng24ac4082008-11-24 07:09:49 +0000135 isNew = isNew;
Mon P Wang0c397192008-10-30 08:01:45 +0000136 // If someone requests legalization of the new node, return itself.
137 LegalizedNodes.insert(std::make_pair(To, To));
138 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000139
Chris Lattner3e928bb2005-01-07 07:47:09 +0000140public:
Bill Wendling5aa49772009-02-24 02:35:30 +0000141 explicit SelectionDAGLegalize(SelectionDAG &DAG, bool TypesNeedLegalizing,
142 bool fast);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000143
Chris Lattner3e928bb2005-01-07 07:47:09 +0000144 /// getTypeAction - Return how we should legalize values of this type, either
145 /// it is already legal or we need to expand it into multiple registers of
146 /// smaller integer type, or we need to promote it to a larger type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000147 LegalizeAction getTypeAction(MVT VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000148 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000149 }
150
151 /// isTypeLegal - Return true if this type is legal on this target.
152 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000153 bool isTypeLegal(MVT VT) const {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000154 return getTypeAction(VT) == Legal;
155 }
156
Chris Lattner3e928bb2005-01-07 07:47:09 +0000157 void LegalizeDAG();
158
Chris Lattner456a93a2006-01-28 07:39:30 +0000159private:
Dan Gohman7f321562007-06-25 16:23:39 +0000160 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000161 /// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000162 void HandleOp(SDValue Op);
Scott Michelfdc40a02009-02-17 22:15:04 +0000163
Chris Lattnerc7029802006-03-18 01:44:44 +0000164 /// LegalizeOp - We know that the specified value has a legal type.
165 /// Recursively ensure that the operands have legal types, then return the
166 /// result.
Dan Gohman475871a2008-07-27 21:46:04 +0000167 SDValue LegalizeOp(SDValue O);
Scott Michelfdc40a02009-02-17 22:15:04 +0000168
Dan Gohman82669522007-10-11 23:57:53 +0000169 /// UnrollVectorOp - We know that the given vector has a legal type, however
170 /// the operation it performs is not legal and is an operation that we have
171 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
172 /// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000173 SDValue UnrollVectorOp(SDValue O);
Scott Michelfdc40a02009-02-17 22:15:04 +0000174
Nate Begeman68679912008-04-25 18:07:40 +0000175 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
176 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
177 /// is necessary to spill the vector being inserted into to memory, perform
178 /// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000179 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Dale Johannesenbb5da912009-02-02 20:41:04 +0000180 SDValue Idx, DebugLoc dl);
Dan Gohman82669522007-10-11 23:57:53 +0000181
Chris Lattnerc7029802006-03-18 01:44:44 +0000182 /// PromoteOp - Given an operation that produces a value in an invalid type,
183 /// promote it to compute the value into a larger type. The produced value
184 /// will have the correct bits for the low portion of the register, but no
185 /// guarantee is made about the top bits: it may be zero, sign-extended, or
186 /// garbage.
Dan Gohman475871a2008-07-27 21:46:04 +0000187 SDValue PromoteOp(SDValue O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000188
Dan Gohman475871a2008-07-27 21:46:04 +0000189 /// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattnerc7029802006-03-18 01:44:44 +0000190 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
Dan Gohman929d3eb2008-10-01 15:07:49 +0000191 /// the LegalizedNodes map is filled in for any results that are not expanded,
Chris Lattnerc7029802006-03-18 01:44:44 +0000192 /// the ExpandedNodes map is filled in for any results that are expanded, and
193 /// the Lo/Hi values are returned. This applies to integer types and Vector
194 /// types.
Dan Gohman475871a2008-07-27 21:46:04 +0000195 void ExpandOp(SDValue O, SDValue &Lo, SDValue &Hi);
Chris Lattnerc7029802006-03-18 01:44:44 +0000196
Scott Michelfdc40a02009-02-17 22:15:04 +0000197 /// WidenVectorOp - Widen a vector operation to a wider type given by WidenVT
Mon P Wangf007a8b2008-11-06 05:31:54 +0000198 /// (e.g., v3i32 to v4i32). The produced value will have the correct value
199 /// for the existing elements but no guarantee is made about the new elements
200 /// at the end of the vector: it may be zero, ones, or garbage. This is useful
201 /// when we have an instruction operating on an illegal vector type and we
202 /// want to widen it to do the computation on a legal wider vector type.
Mon P Wang0c397192008-10-30 08:01:45 +0000203 SDValue WidenVectorOp(SDValue Op, MVT WidenVT);
204
Dan Gohman7f321562007-06-25 16:23:39 +0000205 /// SplitVectorOp - Given an operand of vector type, break it down into
206 /// two smaller values.
Dan Gohman475871a2008-07-27 21:46:04 +0000207 void SplitVectorOp(SDValue O, SDValue &Lo, SDValue &Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +0000208
Dan Gohman89b20c02007-06-27 14:06:22 +0000209 /// ScalarizeVectorOp - Given an operand of single-element vector type
210 /// (e.g. v1f32), convert it into the equivalent operation that returns a
211 /// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +0000212 SDValue ScalarizeVectorOp(SDValue O);
Scott Michelfdc40a02009-02-17 22:15:04 +0000213
Mon P Wangf007a8b2008-11-06 05:31:54 +0000214 /// Useful 16 element vector type that is used to pass operands for widening.
Scott Michelfdc40a02009-02-17 22:15:04 +0000215 typedef SmallVector<SDValue, 16> SDValueVector;
216
Mon P Wang0c397192008-10-30 08:01:45 +0000217 /// LoadWidenVectorOp - Load a vector for a wider type. Returns true if
218 /// the LdChain contains a single load and false if it contains a token
219 /// factor for multiple loads. It takes
220 /// Result: location to return the result
221 /// LdChain: location to return the load chain
222 /// Op: load operation to widen
223 /// NVT: widen vector result type we want for the load
Scott Michelfdc40a02009-02-17 22:15:04 +0000224 bool LoadWidenVectorOp(SDValue& Result, SDValue& LdChain,
Mon P Wang0c397192008-10-30 08:01:45 +0000225 SDValue Op, MVT NVT);
Scott Michelfdc40a02009-02-17 22:15:04 +0000226
Mon P Wang0c397192008-10-30 08:01:45 +0000227 /// Helper genWidenVectorLoads - Helper function to generate a set of
228 /// loads to load a vector with a resulting wider type. It takes
229 /// LdChain: list of chains for the load we have generated
230 /// Chain: incoming chain for the ld vector
231 /// BasePtr: base pointer to load from
232 /// SV: memory disambiguation source value
233 /// SVOffset: memory disambiugation offset
234 /// Alignment: alignment of the memory
235 /// isVolatile: volatile load
Scott Michelfdc40a02009-02-17 22:15:04 +0000236 /// LdWidth: width of memory that we want to load
Mon P Wang0c397192008-10-30 08:01:45 +0000237 /// ResType: the wider result result type for the resulting loaded vector
238 SDValue genWidenVectorLoads(SDValueVector& LdChain, SDValue Chain,
239 SDValue BasePtr, const Value *SV,
240 int SVOffset, unsigned Alignment,
241 bool isVolatile, unsigned LdWidth,
Dale Johannesenc6be1102009-02-02 22:49:46 +0000242 MVT ResType, DebugLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +0000243
Mon P Wang0c397192008-10-30 08:01:45 +0000244 /// StoreWidenVectorOp - Stores a widen vector into non widen memory
245 /// location. It takes
246 /// ST: store node that we want to replace
247 /// Chain: incoming store chain
248 /// BasePtr: base address of where we want to store into
Scott Michelfdc40a02009-02-17 22:15:04 +0000249 SDValue StoreWidenVectorOp(StoreSDNode *ST, SDValue Chain,
Mon P Wang0c397192008-10-30 08:01:45 +0000250 SDValue BasePtr);
Scott Michelfdc40a02009-02-17 22:15:04 +0000251
Mon P Wang0c397192008-10-30 08:01:45 +0000252 /// Helper genWidenVectorStores - Helper function to generate a set of
253 /// stores to store a widen vector into non widen memory
254 // It takes
255 // StChain: list of chains for the stores we have generated
256 // Chain: incoming chain for the ld vector
257 // BasePtr: base pointer to load from
258 // SV: memory disambiguation source value
259 // SVOffset: memory disambiugation offset
260 // Alignment: alignment of the memory
261 // isVolatile: volatile lod
Scott Michelfdc40a02009-02-17 22:15:04 +0000262 // ValOp: value to store
263 // StWidth: width of memory that we want to store
Mon P Wang0c397192008-10-30 08:01:45 +0000264 void genWidenVectorStores(SDValueVector& StChain, SDValue Chain,
265 SDValue BasePtr, const Value *SV,
266 int SVOffset, unsigned Alignment,
267 bool isVolatile, SDValue ValOp,
Dale Johannesenc6be1102009-02-02 22:49:46 +0000268 unsigned StWidth, DebugLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +0000269
Duncan Sandsd038e042008-07-21 10:20:31 +0000270 /// isShuffleLegal - Return non-null if a vector shuffle is legal with the
Chris Lattner4352cc92006-04-04 17:23:26 +0000271 /// specified mask and type. Targets can specify exactly which masks they
272 /// support and the code generator is tasked with not creating illegal masks.
273 ///
274 /// Note that this will also return true for shuffles that are promoted to a
275 /// different type.
276 ///
277 /// If this is a legal shuffle, this method returns the (possibly promoted)
278 /// build_vector Mask. If it's not a legal shuffle, it returns null.
Dan Gohman475871a2008-07-27 21:46:04 +0000279 SDNode *isShuffleLegal(MVT VT, SDValue Mask) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000280
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000281 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000282 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000283
Dale Johannesenbb5da912009-02-02 20:41:04 +0000284 void LegalizeSetCCOperands(SDValue &LHS, SDValue &RHS, SDValue &CC,
285 DebugLoc dl);
286 void LegalizeSetCCCondCode(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
287 DebugLoc dl);
288 void LegalizeSetCC(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
289 DebugLoc dl) {
290 LegalizeSetCCOperands(LHS, RHS, CC, dl);
291 LegalizeSetCCCondCode(VT, LHS, RHS, CC, dl);
Evan Cheng7f042682008-10-15 02:05:31 +0000292 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000293
Dan Gohman475871a2008-07-27 21:46:04 +0000294 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
295 SDValue &Hi);
Dale Johannesenaf435272009-02-02 19:03:57 +0000296 SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl);
Chris Lattnercad063f2005-07-16 00:19:57 +0000297
Dale Johannesen8a782a22009-02-02 22:12:50 +0000298 SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000299 SDValue ExpandBUILD_VECTOR(SDNode *Node);
300 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Scott Michelfdc40a02009-02-17 22:15:04 +0000301 SDValue LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +0000302 SDValue Op, DebugLoc dl);
303 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT,
304 DebugLoc dl);
305 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned,
306 DebugLoc dl);
307 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned,
308 DebugLoc dl);
Jeff Cohen00b168892005-07-27 06:12:32 +0000309
Dale Johannesen8a782a22009-02-02 22:12:50 +0000310 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
311 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000312 bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +0000313 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000314 void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +0000315 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000316
Dan Gohman475871a2008-07-27 21:46:04 +0000317 SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op);
318 SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000319};
320}
321
Chris Lattner4352cc92006-04-04 17:23:26 +0000322/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
323/// specified mask and type. Targets can specify exactly which masks they
324/// support and the code generator is tasked with not creating illegal masks.
325///
326/// Note that this will also return true for shuffles that are promoted to a
327/// different type.
Dan Gohman475871a2008-07-27 21:46:04 +0000328SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDValue Mask) const {
Chris Lattner4352cc92006-04-04 17:23:26 +0000329 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
330 default: return 0;
331 case TargetLowering::Legal:
332 case TargetLowering::Custom:
333 break;
334 case TargetLowering::Promote: {
335 // If this is promoted to a different type, convert the shuffle mask and
336 // ask if it is legal in the promoted type!
Duncan Sands83ec4b62008-06-06 12:08:01 +0000337 MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
Duncan Sandsd038e042008-07-21 10:20:31 +0000338 MVT EltVT = NVT.getVectorElementType();
Chris Lattner4352cc92006-04-04 17:23:26 +0000339
340 // If we changed # elements, change the shuffle mask.
341 unsigned NumEltsGrowth =
Duncan Sands83ec4b62008-06-06 12:08:01 +0000342 NVT.getVectorNumElements() / VT.getVectorNumElements();
Chris Lattner4352cc92006-04-04 17:23:26 +0000343 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
344 if (NumEltsGrowth > 1) {
345 // Renumber the elements.
Dan Gohman475871a2008-07-27 21:46:04 +0000346 SmallVector<SDValue, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000347 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +0000348 SDValue InOp = Mask.getOperand(i);
Chris Lattner4352cc92006-04-04 17:23:26 +0000349 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
350 if (InOp.getOpcode() == ISD::UNDEF)
Dale Johannesene8d72302009-02-06 23:05:02 +0000351 Ops.push_back(DAG.getUNDEF(EltVT));
Chris Lattner4352cc92006-04-04 17:23:26 +0000352 else {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000353 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getZExtValue();
Duncan Sandsd038e042008-07-21 10:20:31 +0000354 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, EltVT));
Chris Lattner4352cc92006-04-04 17:23:26 +0000355 }
356 }
357 }
Evan Chenga87008d2009-02-25 22:49:59 +0000358 Mask = DAG.getNode(ISD::BUILD_VECTOR, Mask.getDebugLoc(),
359 NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000360 }
361 VT = NVT;
362 break;
363 }
364 }
Gabor Greifba36cb52008-08-28 21:40:38 +0000365 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.getNode() : 0;
Chris Lattner4352cc92006-04-04 17:23:26 +0000366}
367
Bill Wendling5aa49772009-02-24 02:35:30 +0000368SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag,
369 bool types, bool fast)
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000370 : TLI(dag.getTargetLoweringInfo()), DAG(dag), TypesNeedLegalizing(types),
Bill Wendling5aa49772009-02-24 02:35:30 +0000371 Fast(fast), ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000372 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000373 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000374}
375
Chris Lattner3e928bb2005-01-07 07:47:09 +0000376void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000377 LastCALLSEQ_END = DAG.getEntryNode();
378 IsLegalizingCall = false;
Mon P Wange5ab34e2009-02-04 19:38:14 +0000379 IsLegalizingCallArgs = false;
380
Chris Lattnerab510a72005-10-02 17:49:46 +0000381 // The legalize process is inherently a bottom-up recursive process (users
382 // legalize their uses before themselves). Given infinite stack space, we
383 // could just start legalizing on the root and traverse the whole graph. In
384 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000385 // blocks. To avoid this problem, compute an ordering of the nodes where each
386 // node is only legalized after all of its operands are legalized.
Dan Gohmanf06c8352008-09-30 18:30:35 +0000387 DAG.AssignTopologicalOrder();
388 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
389 E = prior(DAG.allnodes_end()); I != next(E); ++I)
390 HandleOp(SDValue(I, 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000391
392 // Finally, it's possible the root changed. Get the new root.
Dan Gohman475871a2008-07-27 21:46:04 +0000393 SDValue OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000394 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
395 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000396
397 ExpandedNodes.clear();
398 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000399 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000400 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000401 ScalarizedNodes.clear();
Mon P Wang0c397192008-10-30 08:01:45 +0000402 WidenNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000403
404 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000405 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000406}
407
Chris Lattner6831a812006-02-13 09:18:02 +0000408
409/// FindCallEndFromCallStart - Given a chained node that is part of a call
410/// sequence, find the CALLSEQ_END node that terminates the call sequence.
411static SDNode *FindCallEndFromCallStart(SDNode *Node) {
412 if (Node->getOpcode() == ISD::CALLSEQ_END)
413 return Node;
414 if (Node->use_empty())
415 return 0; // No CallSeqEnd
Scott Michelfdc40a02009-02-17 22:15:04 +0000416
Chris Lattner6831a812006-02-13 09:18:02 +0000417 // The chain is usually at the end.
Dan Gohman475871a2008-07-27 21:46:04 +0000418 SDValue TheChain(Node, Node->getNumValues()-1);
Chris Lattner6831a812006-02-13 09:18:02 +0000419 if (TheChain.getValueType() != MVT::Other) {
420 // Sometimes it's at the beginning.
Dan Gohman475871a2008-07-27 21:46:04 +0000421 TheChain = SDValue(Node, 0);
Chris Lattner6831a812006-02-13 09:18:02 +0000422 if (TheChain.getValueType() != MVT::Other) {
423 // Otherwise, hunt for it.
424 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
425 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman475871a2008-07-27 21:46:04 +0000426 TheChain = SDValue(Node, i);
Chris Lattner6831a812006-02-13 09:18:02 +0000427 break;
428 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000429
430 // Otherwise, we walked into a node without a chain.
Chris Lattner6831a812006-02-13 09:18:02 +0000431 if (TheChain.getValueType() != MVT::Other)
432 return 0;
433 }
434 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000435
Chris Lattner6831a812006-02-13 09:18:02 +0000436 for (SDNode::use_iterator UI = Node->use_begin(),
437 E = Node->use_end(); UI != E; ++UI) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000438
Chris Lattner6831a812006-02-13 09:18:02 +0000439 // Make sure to only follow users of our token chain.
Dan Gohman89684502008-07-27 20:43:25 +0000440 SDNode *User = *UI;
Chris Lattner6831a812006-02-13 09:18:02 +0000441 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
442 if (User->getOperand(i) == TheChain)
443 if (SDNode *Result = FindCallEndFromCallStart(User))
444 return Result;
445 }
446 return 0;
447}
448
Scott Michelfdc40a02009-02-17 22:15:04 +0000449/// FindCallStartFromCallEnd - Given a chained node that is part of a call
Chris Lattner6831a812006-02-13 09:18:02 +0000450/// sequence, find the CALLSEQ_START node that initiates the call sequence.
451static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
452 assert(Node && "Didn't find callseq_start for a call??");
453 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Scott Michelfdc40a02009-02-17 22:15:04 +0000454
Chris Lattner6831a812006-02-13 09:18:02 +0000455 assert(Node->getOperand(0).getValueType() == MVT::Other &&
456 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000457 return FindCallStartFromCallEnd(Node->getOperand(0).getNode());
Chris Lattner6831a812006-02-13 09:18:02 +0000458}
459
460/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
Scott Michelfdc40a02009-02-17 22:15:04 +0000461/// see if any uses can reach Dest. If no dest operands can get to dest,
Chris Lattner6831a812006-02-13 09:18:02 +0000462/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000463///
464/// Keep track of the nodes we fine that actually do lead to Dest in
465/// NodesLeadingTo. This avoids retraversing them exponential number of times.
466///
467bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000468 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000469 if (N == Dest) return true; // N certainly leads to Dest :)
Scott Michelfdc40a02009-02-17 22:15:04 +0000470
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000471 // If we've already processed this node and it does lead to Dest, there is no
472 // need to reprocess it.
473 if (NodesLeadingTo.count(N)) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +0000474
Chris Lattner6831a812006-02-13 09:18:02 +0000475 // If the first result of this node has been already legalized, then it cannot
476 // reach N.
477 switch (getTypeAction(N->getValueType(0))) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000478 case Legal:
Dan Gohman475871a2008-07-27 21:46:04 +0000479 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000480 break;
481 case Promote:
Dan Gohman475871a2008-07-27 21:46:04 +0000482 if (PromotedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000483 break;
484 case Expand:
Dan Gohman475871a2008-07-27 21:46:04 +0000485 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000486 break;
487 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000488
Chris Lattner6831a812006-02-13 09:18:02 +0000489 // Okay, this node has not already been legalized. Check and legalize all
490 // operands. If none lead to Dest, then we can legalize this node.
491 bool OperandsLeadToDest = false;
492 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
493 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Gabor Greifba36cb52008-08-28 21:40:38 +0000494 LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000495
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000496 if (OperandsLeadToDest) {
497 NodesLeadingTo.insert(N);
498 return true;
499 }
Chris Lattner6831a812006-02-13 09:18:02 +0000500
501 // Okay, this node looks safe, legalize it and return false.
Dan Gohman475871a2008-07-27 21:46:04 +0000502 HandleOp(SDValue(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000503 return false;
504}
505
Mon P Wang0c397192008-10-30 08:01:45 +0000506/// HandleOp - Legalize, Promote, Widen, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000507/// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000508void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000509 MVT VT = Op.getValueType();
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000510 // If the type legalizer was run then we should never see any illegal result
511 // types here except for target constants (the type legalizer does not touch
Mon P Wang87c8a8f2008-12-18 20:03:17 +0000512 // those) or for build vector used as a mask for a vector shuffle.
513 // FIXME: We can removed the BUILD_VECTOR case when we fix PR2957.
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000514 assert((TypesNeedLegalizing || getTypeAction(VT) == Legal ||
Mon P Wange5ab34e2009-02-04 19:38:14 +0000515 IsLegalizingCallArgs || Op.getOpcode() == ISD::TargetConstant ||
Mon P Wang87c8a8f2008-12-18 20:03:17 +0000516 Op.getOpcode() == ISD::BUILD_VECTOR) &&
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000517 "Illegal type introduced after type legalization?");
Dan Gohman7f321562007-06-25 16:23:39 +0000518 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000519 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000520 case Legal: (void)LegalizeOp(Op); break;
Mon P Wang0c397192008-10-30 08:01:45 +0000521 case Promote:
522 if (!VT.isVector()) {
523 (void)PromoteOp(Op);
524 break;
525 }
526 else {
527 // See if we can widen otherwise use Expand to either scalarize or split
528 MVT WidenVT = TLI.getWidenVectorType(VT);
529 if (WidenVT != MVT::Other) {
530 (void) WidenVectorOp(Op, WidenVT);
531 break;
532 }
533 // else fall thru to expand since we can't widen the vector
534 }
Chris Lattnerc7029802006-03-18 01:44:44 +0000535 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000536 if (!VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +0000537 // If this is an illegal scalar, expand it into its two component
538 // pieces.
Dan Gohman475871a2008-07-27 21:46:04 +0000539 SDValue X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000540 if (Op.getOpcode() == ISD::TargetConstant)
541 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000542 ExpandOp(Op, X, Y);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000543 } else if (VT.getVectorNumElements() == 1) {
Dan Gohman7f321562007-06-25 16:23:39 +0000544 // If this is an illegal single element vector, convert it to a
545 // scalar operation.
546 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000547 } else {
Mon P Wang0c397192008-10-30 08:01:45 +0000548 // This is an illegal multiple element vector.
Dan Gohman7f321562007-06-25 16:23:39 +0000549 // Split it in half and legalize both parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000550 SDValue X, Y;
Dan Gohman7f321562007-06-25 16:23:39 +0000551 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000552 }
553 break;
554 }
555}
Chris Lattner6831a812006-02-13 09:18:02 +0000556
Evan Cheng9f877882006-12-13 20:57:08 +0000557/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
558/// a load from the constant pool.
Dan Gohman475871a2008-07-27 21:46:04 +0000559static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Dan Gohman0d137d72009-01-15 16:43:02 +0000560 SelectionDAG &DAG, const TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000561 bool Extend = false;
Dale Johannesen33c960f2009-02-04 20:06:27 +0000562 DebugLoc dl = CFP->getDebugLoc();
Evan Cheng00495212006-12-12 21:32:44 +0000563
564 // If a FP immediate is precise when represented as a float and if the
565 // target can do an extending load from float to double, we put it into
566 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000567 // double. This shrinks FP constants and canonicalizes them for targets where
568 // an FP extending load is the same cost as a normal load (such as on the x87
569 // fp stack or PPC FP unit).
Duncan Sands83ec4b62008-06-06 12:08:01 +0000570 MVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000571 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000572 if (!UseCP) {
Chris Lattnerd2e936a2009-03-08 01:47:41 +0000573 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000574 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000575 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000576 }
577
Duncan Sands83ec4b62008-06-06 12:08:01 +0000578 MVT OrigVT = VT;
579 MVT SVT = VT;
Evan Chengef120572008-03-04 08:05:30 +0000580 while (SVT != MVT::f32) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000581 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Chengef120572008-03-04 08:05:30 +0000582 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
583 // Only do this if the target has a native EXTLOAD instruction from
584 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000585 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000586 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000587 const Type *SType = SVT.getTypeForMVT();
Evan Chengef120572008-03-04 08:05:30 +0000588 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
589 VT = SVT;
590 Extend = true;
591 }
Evan Cheng00495212006-12-12 21:32:44 +0000592 }
593
Dan Gohman475871a2008-07-27 21:46:04 +0000594 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +0000595 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Chengef120572008-03-04 08:05:30 +0000596 if (Extend)
Dale Johannesen33c960f2009-02-04 20:06:27 +0000597 return DAG.getExtLoad(ISD::EXTLOAD, dl,
Dale Johannesen39355f92009-02-04 02:34:38 +0000598 OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000599 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman50284d82008-09-16 22:05:41 +0000600 0, VT, false, Alignment);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000601 return DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +0000602 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +0000603}
604
Chris Lattner6831a812006-02-13 09:18:02 +0000605
Evan Cheng912095b2007-01-04 21:56:39 +0000606/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
607/// operations.
608static
Dan Gohman475871a2008-07-27 21:46:04 +0000609SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
Dan Gohman0d137d72009-01-15 16:43:02 +0000610 SelectionDAG &DAG,
611 const TargetLowering &TLI) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000612 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000613 MVT VT = Node->getValueType(0);
614 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000615 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
616 "fcopysign expansion only supported for f32 and f64");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000617 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000618
Evan Cheng912095b2007-01-04 21:56:39 +0000619 // First get the sign bit of second operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000620 SDValue Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000621 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
622 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000623 Mask1 = DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT, Mask1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000624 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT,
Dale Johannesenbb5da912009-02-02 20:41:04 +0000625 Node->getOperand(1));
626 SignBit = DAG.getNode(ISD::AND, dl, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000627 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000628 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng912095b2007-01-04 21:56:39 +0000629 if (SizeDiff > 0) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000630 SignBit = DAG.getNode(ISD::SRL, dl, SrcNVT, SignBit,
Evan Cheng912095b2007-01-04 21:56:39 +0000631 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000632 SignBit = DAG.getNode(ISD::TRUNCATE, dl, NVT, SignBit);
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000633 } else if (SizeDiff < 0) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000634 SignBit = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, SignBit);
635 SignBit = DAG.getNode(ISD::SHL, dl, NVT, SignBit,
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000636 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
637 }
Evan Cheng068c5f42007-01-05 21:31:51 +0000638
639 // Clear the sign bit of first operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000640 SDValue Mask2 = (VT == MVT::f64)
Evan Cheng068c5f42007-01-05 21:31:51 +0000641 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
642 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000643 Mask2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask2);
644 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
645 Result = DAG.getNode(ISD::AND, dl, NVT, Result, Mask2);
Evan Cheng068c5f42007-01-05 21:31:51 +0000646
647 // Or the value with the sign bit.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000648 Result = DAG.getNode(ISD::OR, dl, NVT, Result, SignBit);
Evan Cheng912095b2007-01-04 21:56:39 +0000649 return Result;
650}
651
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000652/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
653static
Dan Gohman475871a2008-07-27 21:46:04 +0000654SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
Dan Gohman0d137d72009-01-15 16:43:02 +0000655 const TargetLowering &TLI) {
Dan Gohman475871a2008-07-27 21:46:04 +0000656 SDValue Chain = ST->getChain();
657 SDValue Ptr = ST->getBasePtr();
658 SDValue Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000659 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000660 int Alignment = ST->getAlignment();
661 int SVOffset = ST->getSrcValueOffset();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000662 DebugLoc dl = ST->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000663 if (ST->getMemoryVT().isFloatingPoint() ||
664 ST->getMemoryVT().isVector()) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000665 MVT intVT = MVT::getIntegerVT(VT.getSizeInBits());
666 if (TLI.isTypeLegal(intVT)) {
667 // Expand to a bitconvert of the value to the integer type of the
668 // same size, then a (misaligned) int store.
669 // FIXME: Does not handle truncating floating point stores!
Dale Johannesenbb5da912009-02-02 20:41:04 +0000670 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, intVT, Val);
671 return DAG.getStore(Chain, dl, Result, Ptr, ST->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000672 SVOffset, ST->isVolatile(), Alignment);
673 } else {
674 // Do a (aligned) store to a stack slot, then copy from the stack slot
675 // to the final destination using (unaligned) integer loads and stores.
676 MVT StoredVT = ST->getMemoryVT();
677 MVT RegVT =
678 TLI.getRegisterType(MVT::getIntegerVT(StoredVT.getSizeInBits()));
679 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
680 unsigned RegBytes = RegVT.getSizeInBits() / 8;
681 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000682
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000683 // Make sure the stack slot is also aligned for the register type.
684 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
685
686 // Perform the original store, only redirected to the stack slot.
Scott Michelfdc40a02009-02-17 22:15:04 +0000687 SDValue Store = DAG.getTruncStore(Chain, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +0000688 Val, StackPtr, NULL, 0, StoredVT);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000689 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
690 SmallVector<SDValue, 8> Stores;
691 unsigned Offset = 0;
692
693 // Do all but one copies using the full register width.
694 for (unsigned i = 1; i < NumRegs; i++) {
695 // Load one integer register's worth from the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000696 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr, NULL, 0);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000697 // Store it to the final location. Remember the store.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000698 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000699 ST->getSrcValue(), SVOffset + Offset,
700 ST->isVolatile(),
701 MinAlign(ST->getAlignment(), Offset)));
702 // Increment the pointers.
703 Offset += RegBytes;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000704 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000705 Increment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000706 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000707 }
708
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000709 // The last store may be partial. Do a truncating store. On big-endian
710 // machines this requires an extending load from the stack slot to ensure
711 // that the bits are in the right place.
712 MVT MemVT = MVT::getIntegerVT(8 * (StoredBytes - Offset));
Duncan Sands05e11fa2008-12-12 21:47:02 +0000713
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000714 // Load from the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000715 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000716 NULL, 0, MemVT);
717
Dale Johannesenbb5da912009-02-02 20:41:04 +0000718 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000719 ST->getSrcValue(), SVOffset + Offset,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000720 MemVT, ST->isVolatile(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000721 MinAlign(ST->getAlignment(), Offset)));
722 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000723 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sands05e11fa2008-12-12 21:47:02 +0000724 Stores.size());
725 }
Dale Johannesen907f28c2007-09-08 19:29:23 +0000726 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000727 assert(ST->getMemoryVT().isInteger() &&
728 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000729 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000730 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000731 MVT NewStoredVT =
732 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
733 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000734 int IncrementSize = NumBits / 8;
735
736 // Divide the stored value in two parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000737 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
738 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000739 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000740
741 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000742 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000743 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000744 ST->getSrcValue(), SVOffset, NewStoredVT,
745 ST->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000746 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000747 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000748 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000749 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000750 ST->getSrcValue(), SVOffset + IncrementSize,
751 NewStoredVT, ST->isVolatile(), Alignment);
752
Dale Johannesenbb5da912009-02-02 20:41:04 +0000753 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000754}
755
756/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
757static
Dan Gohman475871a2008-07-27 21:46:04 +0000758SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
Dan Gohmane9530ec2009-01-15 16:58:17 +0000759 const TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000760 int SVOffset = LD->getSrcValueOffset();
Dan Gohman475871a2008-07-27 21:46:04 +0000761 SDValue Chain = LD->getChain();
762 SDValue Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000763 MVT VT = LD->getValueType(0);
764 MVT LoadedVT = LD->getMemoryVT();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000765 DebugLoc dl = LD->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000766 if (VT.isFloatingPoint() || VT.isVector()) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000767 MVT intVT = MVT::getIntegerVT(LoadedVT.getSizeInBits());
768 if (TLI.isTypeLegal(intVT)) {
769 // Expand to a (misaligned) integer load of the same size,
770 // then bitconvert to floating point or vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000771 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000772 SVOffset, LD->isVolatile(),
Dale Johannesen907f28c2007-09-08 19:29:23 +0000773 LD->getAlignment());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000774 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, LoadedVT, newLoad);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000775 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesenbb5da912009-02-02 20:41:04 +0000776 Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000777
Duncan Sands05e11fa2008-12-12 21:47:02 +0000778 SDValue Ops[] = { Result, Chain };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000779 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000780 } else {
781 // Copy the value to a (aligned) stack slot using (unaligned) integer
782 // loads and stores, then do a (aligned) load from the stack slot.
783 MVT RegVT = TLI.getRegisterType(intVT);
784 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
785 unsigned RegBytes = RegVT.getSizeInBits() / 8;
786 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
787
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000788 // Make sure the stack slot is also aligned for the register type.
789 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
790
Duncan Sands05e11fa2008-12-12 21:47:02 +0000791 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
792 SmallVector<SDValue, 8> Stores;
793 SDValue StackPtr = StackBase;
794 unsigned Offset = 0;
795
796 // Do all but one copies using the full register width.
797 for (unsigned i = 1; i < NumRegs; i++) {
798 // Load one integer register's worth from the original location.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000799 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000800 SVOffset + Offset, LD->isVolatile(),
801 MinAlign(LD->getAlignment(), Offset));
802 // Follow the load with a store to the stack slot. Remember the store.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000803 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000804 NULL, 0));
805 // Increment the pointers.
806 Offset += RegBytes;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000807 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
808 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000809 Increment);
810 }
811
812 // The last copy may be partial. Do an extending load.
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000813 MVT MemVT = MVT::getIntegerVT(8 * (LoadedBytes - Offset));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000814 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000815 LD->getSrcValue(), SVOffset + Offset,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000816 MemVT, LD->isVolatile(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000817 MinAlign(LD->getAlignment(), Offset));
818 // Follow the load with a store to the stack slot. Remember the store.
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000819 // On big-endian machines this requires a truncating store to ensure
820 // that the bits end up in the right place.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000821 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000822 NULL, 0, MemVT));
Duncan Sands05e11fa2008-12-12 21:47:02 +0000823
824 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000825 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sands05e11fa2008-12-12 21:47:02 +0000826 Stores.size());
827
828 // Finally, perform the original load only redirected to the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000829 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000830 NULL, 0, LoadedVT);
831
832 // Callers expect a MERGE_VALUES node.
833 SDValue Ops[] = { Load, TF };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000834 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000835 }
Dale Johannesen907f28c2007-09-08 19:29:23 +0000836 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000837 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000838 "Unaligned load of unsupported type.");
839
Dale Johannesen8155d642008-02-27 22:36:00 +0000840 // Compute the new VT that is half the size of the old one. This is an
841 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000842 unsigned NumBits = LoadedVT.getSizeInBits();
843 MVT NewLoadedVT;
844 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000845 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000846
Chris Lattnere400af82007-11-19 21:38:03 +0000847 unsigned Alignment = LD->getAlignment();
848 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000849 ISD::LoadExtType HiExtType = LD->getExtensionType();
850
851 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
852 if (HiExtType == ISD::NON_EXTLOAD)
853 HiExtType = ISD::ZEXTLOAD;
854
855 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000856 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000857 if (TLI.isLittleEndian()) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000858 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000859 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000860 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000861 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000862 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000863 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000864 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000865 } else {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000866 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +0000867 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000868 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000869 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000870 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000871 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000872 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000873 }
874
875 // aggregate the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000876 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000877 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
878 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000879
Dale Johannesenbb5da912009-02-02 20:41:04 +0000880 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000881 Hi.getValue(1));
882
Dan Gohman475871a2008-07-27 21:46:04 +0000883 SDValue Ops[] = { Result, TF };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000884 return DAG.getMergeValues(Ops, 2, dl);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000885}
Evan Cheng912095b2007-01-04 21:56:39 +0000886
Dan Gohman82669522007-10-11 23:57:53 +0000887/// UnrollVectorOp - We know that the given vector has a legal type, however
888/// the operation it performs is not legal and is an operation that we have
889/// no way of lowering. "Unroll" the vector, splitting out the scalars and
890/// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000891SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000892 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000893 assert(isTypeLegal(VT) &&
894 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000895 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman82669522007-10-11 23:57:53 +0000896 "Can't unroll a vector with multiple results!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000897 unsigned NE = VT.getVectorNumElements();
898 MVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000899 DebugLoc dl = Op.getDebugLoc();
Dan Gohman82669522007-10-11 23:57:53 +0000900
Dan Gohman475871a2008-07-27 21:46:04 +0000901 SmallVector<SDValue, 8> Scalars;
902 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman82669522007-10-11 23:57:53 +0000903 for (unsigned i = 0; i != NE; ++i) {
904 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +0000905 SDValue Operand = Op.getOperand(j);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000906 MVT OperandVT = Operand.getValueType();
907 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000908 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000909 MVT OperandEltVT = OperandVT.getVectorElementType();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000910 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dan Gohman82669522007-10-11 23:57:53 +0000911 OperandEltVT,
912 Operand,
913 DAG.getConstant(i, MVT::i32));
914 } else {
915 // A scalar operand; just use it as is.
916 Operands[j] = Operand;
917 }
918 }
Mon P Wange9f10152008-12-09 05:46:39 +0000919
920 switch (Op.getOpcode()) {
921 default:
Dale Johannesenbb5da912009-02-02 20:41:04 +0000922 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT,
Mon P Wange9f10152008-12-09 05:46:39 +0000923 &Operands[0], Operands.size()));
924 break;
925 case ISD::SHL:
926 case ISD::SRA:
927 case ISD::SRL:
Duncan Sands92abc622009-01-31 15:50:11 +0000928 case ISD::ROTL:
929 case ISD::ROTR:
Dale Johannesenbb5da912009-02-02 20:41:04 +0000930 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT, Operands[0],
Duncan Sands92abc622009-01-31 15:50:11 +0000931 DAG.getShiftAmountOperand(Operands[1])));
Mon P Wange9f10152008-12-09 05:46:39 +0000932 break;
933 }
Dan Gohman82669522007-10-11 23:57:53 +0000934 }
935
Evan Chenga87008d2009-02-25 22:49:59 +0000936 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Scalars[0], Scalars.size());
Dan Gohman82669522007-10-11 23:57:53 +0000937}
938
Duncan Sands007f9842008-01-10 10:28:30 +0000939/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000940static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000941 RTLIB::Libcall Call_F32,
942 RTLIB::Libcall Call_F64,
943 RTLIB::Libcall Call_F80,
944 RTLIB::Libcall Call_PPCF128) {
945 return
946 VT == MVT::f32 ? Call_F32 :
947 VT == MVT::f64 ? Call_F64 :
948 VT == MVT::f80 ? Call_F80 :
949 VT == MVT::ppcf128 ? Call_PPCF128 :
950 RTLIB::UNKNOWN_LIBCALL;
951}
952
Nate Begeman68679912008-04-25 18:07:40 +0000953/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
954/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
955/// is necessary to spill the vector being inserted into to memory, perform
956/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000957SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000958PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
959 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000960 SDValue Tmp1 = Vec;
961 SDValue Tmp2 = Val;
962 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000963
Nate Begeman68679912008-04-25 18:07:40 +0000964 // If the target doesn't support this, we have to spill the input vector
965 // to a temporary stack slot, update the element, then reload it. This is
966 // badness. We could also load the value into a vector register (either
967 // with a "move to register" or "extload into register" instruction, then
968 // permute it into place, if the idx is a constant and if the idx is
969 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000970 MVT VT = Tmp1.getValueType();
971 MVT EltVT = VT.getVectorElementType();
972 MVT IdxVT = Tmp3.getValueType();
973 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000974 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000975
Gabor Greifba36cb52008-08-28 21:40:38 +0000976 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman68679912008-04-25 18:07:40 +0000977
978 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000979 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Mon P Wang0c397192008-10-30 08:01:45 +0000980 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000981
982 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000983 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000984 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000985 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000986 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000987 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
988 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000989 // Store the scalar value.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000990 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2,
Dan Gohmana54cf172008-07-11 22:44:52 +0000991 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman68679912008-04-25 18:07:40 +0000992 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000993 return DAG.getLoad(VT, dl, Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +0000994 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000995}
996
Mon P Wange9f10152008-12-09 05:46:39 +0000997
Dan Gohmana3466152007-07-13 20:14:11 +0000998/// LegalizeOp - We know that the specified value has a legal type, and
999/// that its operands are legal. Now ensure that the operation itself
1000/// is legal, recursively ensuring that the operands' operations remain
1001/// legal.
Dan Gohman475871a2008-07-27 21:46:04 +00001002SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +00001003 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
1004 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00001005
Chris Lattnerc9c60f62005-08-24 16:35:28 +00001006 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +00001007 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +00001008 SDNode *Node = Op.getNode();
Dale Johannesen7d2ad622009-01-30 23:10:59 +00001009 DebugLoc dl = Node->getDebugLoc();
Chris Lattnere3304a32005-01-08 20:35:13 +00001010
Chris Lattner3e928bb2005-01-07 07:47:09 +00001011 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +00001012 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +00001013 if (Node->getNumValues() > 1) {
1014 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +00001015 if (getTypeAction(Node->getValueType(i)) != Legal) {
1016 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001017 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +00001018 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +00001019 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +00001020 }
1021 }
1022
Chris Lattner45982da2005-05-12 16:53:42 +00001023 // Note that LegalizeOp may be reentered even from single-use nodes, which
1024 // means that we always must cache transformed nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00001025 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +00001026 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001027
Dan Gohman475871a2008-07-27 21:46:04 +00001028 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
1029 SDValue Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +00001030 bool isCustom = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001031
Chris Lattner3e928bb2005-01-07 07:47:09 +00001032 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +00001033 case ISD::FrameIndex:
1034 case ISD::EntryToken:
1035 case ISD::Register:
1036 case ISD::BasicBlock:
1037 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +00001038 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +00001039 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +00001040 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +00001041 case ISD::TargetConstantPool:
1042 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001043 case ISD::TargetGlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +00001044 case ISD::TargetExternalSymbol:
Chris Lattner948c1b12006-01-28 08:31:04 +00001045 case ISD::VALUETYPE:
1046 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +00001047 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +00001048 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +00001049 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +00001050 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00001051 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +00001052 "This must be legal!");
1053 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001054 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001055 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
1056 // If this is a target node, legalize it by legalizing the operands then
1057 // passing it through.
Dan Gohman475871a2008-07-27 21:46:04 +00001058 SmallVector<SDValue, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001059 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001060 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001061
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001062 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001063
1064 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1065 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001066 return Result.getValue(Op.getResNo());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001067 }
1068 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001069#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00001070 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001071#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00001072 assert(0 && "Do not know how to legalize this operator!");
1073 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +00001074 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +00001075 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001076 case ISD::GlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +00001077 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +00001078 case ISD::ConstantPool:
1079 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001080 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1081 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +00001082 case TargetLowering::Custom:
1083 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001084 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner948c1b12006-01-28 08:31:04 +00001085 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001086 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001087 break;
1088 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001089 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +00001090 case ISD::FRAMEADDR:
1091 case ISD::RETURNADDR:
1092 // The only option for these nodes is to custom lower them. If the target
1093 // does not custom lower them, then return zero.
1094 Tmp1 = TLI.LowerOperation(Op, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00001095 if (Tmp1.getNode())
Nate Begemanbcc5f362007-01-29 22:58:52 +00001096 Result = Tmp1;
1097 else
1098 Result = DAG.getConstant(0, TLI.getPointerTy());
1099 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +00001100 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001101 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001102 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1103 default: assert(0 && "This action is not supported yet!");
1104 case TargetLowering::Custom:
1105 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001106 if (Result.getNode()) break;
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001107 // Fall Thru
1108 case TargetLowering::Legal:
1109 Result = DAG.getConstant(0, VT);
1110 break;
1111 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +00001112 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001113 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +00001114 case ISD::EXCEPTIONADDR: {
1115 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001116 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001117 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1118 default: assert(0 && "This action is not supported yet!");
1119 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +00001120 unsigned Reg = TLI.getExceptionAddressRegister();
Dale Johannesenc460ae92009-02-04 00:13:36 +00001121 Result = DAG.getCopyFromReg(Tmp1, dl, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001122 }
1123 break;
1124 case TargetLowering::Custom:
1125 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001126 if (Result.getNode()) break;
Jim Laskey2bc210d2007-02-22 15:37:19 +00001127 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001128 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001129 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Dale Johannesenca57b842009-02-02 23:46:53 +00001130 Result = DAG.getMergeValues(Ops, 2, dl);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001131 break;
1132 }
1133 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001134 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001135 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +00001136
Gabor Greifba36cb52008-08-28 21:40:38 +00001137 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +00001138 "Cannot return more than two values!");
1139
1140 // Since we produced two values, make sure to remember that we
1141 // legalized both of them.
1142 Tmp1 = LegalizeOp(Result);
1143 Tmp2 = LegalizeOp(Result.getValue(1));
1144 AddLegalizedOperand(Op.getValue(0), Tmp1);
1145 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001146 return Op.getResNo() ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +00001147 case ISD::EHSELECTION: {
1148 Tmp1 = LegalizeOp(Node->getOperand(0));
1149 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001150 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +00001151 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1152 default: assert(0 && "This action is not supported yet!");
1153 case TargetLowering::Expand: {
1154 unsigned Reg = TLI.getExceptionSelectorRegister();
Dale Johannesenc460ae92009-02-04 00:13:36 +00001155 Result = DAG.getCopyFromReg(Tmp2, dl, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +00001156 }
1157 break;
1158 case TargetLowering::Custom:
1159 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001160 if (Result.getNode()) break;
Jim Laskey8782d482007-02-28 20:43:58 +00001161 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001162 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001163 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Dale Johannesenca57b842009-02-02 23:46:53 +00001164 Result = DAG.getMergeValues(Ops, 2, dl);
Jim Laskey8782d482007-02-28 20:43:58 +00001165 break;
1166 }
1167 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001168 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001169 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +00001170
Gabor Greifba36cb52008-08-28 21:40:38 +00001171 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +00001172 "Cannot return more than two values!");
1173
1174 // Since we produced two values, make sure to remember that we
1175 // legalized both of them.
1176 Tmp1 = LegalizeOp(Result);
1177 Tmp2 = LegalizeOp(Result.getValue(1));
1178 AddLegalizedOperand(Op.getValue(0), Tmp1);
1179 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001180 return Op.getResNo() ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001181 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001182 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001183 // The only "good" option for this node is to custom lower it.
1184 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1185 default: assert(0 && "This action is not supported at all!");
1186 case TargetLowering::Custom:
1187 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001188 if (Result.getNode()) break;
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001189 // Fall Thru
1190 case TargetLowering::Legal:
1191 // Target does not know, how to lower this, lower to noop
1192 Result = LegalizeOp(Node->getOperand(0));
1193 break;
1194 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001195 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001196 break;
Chris Lattner08951a32005-09-02 01:15:01 +00001197 case ISD::AssertSext:
1198 case ISD::AssertZext:
1199 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001200 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +00001201 break;
Chris Lattner308575b2005-11-20 22:56:56 +00001202 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001203 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif99a6cb92008-08-26 22:36:50 +00001204 Result = Node->getOperand(Op.getResNo());
Chris Lattner456a93a2006-01-28 07:39:30 +00001205 break;
Chris Lattner69a52152005-01-14 22:38:01 +00001206 case ISD::CopyFromReg:
1207 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001208 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001209 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001210 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +00001211 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001212 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001213 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001214 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001215 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1216 } else {
1217 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1218 }
Chris Lattner7310fb12005-12-18 15:27:43 +00001219 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1220 }
Chris Lattner13c184d2005-01-28 06:27:38 +00001221 // Since CopyFromReg produces two values, make sure to remember that we
1222 // legalized both of them.
1223 AddLegalizedOperand(Op.getValue(0), Result);
1224 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001225 return Result.getValue(Op.getResNo());
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001226 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001227 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001228 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +00001229 default: assert(0 && "This action is not supported yet!");
1230 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001231 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001232 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001233 else if (VT.isFloatingPoint())
1234 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +00001235 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001236 else
1237 assert(0 && "Unknown value type!");
1238 break;
Nate Begemanea19cd52005-04-02 00:41:14 +00001239 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001240 break;
1241 }
1242 break;
1243 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001244
Chris Lattner48b61a72006-03-28 00:40:33 +00001245 case ISD::INTRINSIC_W_CHAIN:
1246 case ISD::INTRINSIC_WO_CHAIN:
1247 case ISD::INTRINSIC_VOID: {
Dan Gohman475871a2008-07-27 21:46:04 +00001248 SmallVector<SDValue, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001249 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1250 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001251 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001252
Chris Lattner10d7fa62006-03-26 09:12:51 +00001253 // Allow the target to custom lower its intrinsics if it wants to.
Scott Michelfdc40a02009-02-17 22:15:04 +00001254 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001255 TargetLowering::Custom) {
1256 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001257 if (Tmp3.getNode()) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001258 }
1259
Gabor Greifba36cb52008-08-28 21:40:38 +00001260 if (Result.getNode()->getNumValues() == 1) break;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001261
1262 // Must have return value and chain result.
Gabor Greifba36cb52008-08-28 21:40:38 +00001263 assert(Result.getNode()->getNumValues() == 2 &&
Chris Lattner13fc2f12006-03-27 20:28:29 +00001264 "Cannot return more than two values!");
1265
Scott Michelfdc40a02009-02-17 22:15:04 +00001266 // Since loads produce two values, make sure to remember that we
Chris Lattner13fc2f12006-03-27 20:28:29 +00001267 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001268 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1269 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001270 return Result.getValue(Op.getResNo());
Scott Michelfdc40a02009-02-17 22:15:04 +00001271 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001272
Dan Gohman7f460202008-06-30 20:59:49 +00001273 case ISD::DBG_STOPPOINT:
1274 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner36ce6912005-11-29 06:21:05 +00001275 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00001276
Dan Gohman7f460202008-06-30 20:59:49 +00001277 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner36ce6912005-11-29 06:21:05 +00001278 case TargetLowering::Promote:
1279 default: assert(0 && "This action is not supported yet!");
Bill Wendling92c1e122009-02-13 02:16:35 +00001280 case TargetLowering::Expand: {
1281 DwarfWriter *DW = DAG.getDwarfWriter();
1282 bool useDEBUG_LOC = TLI.isOperationLegalOrCustom(ISD::DEBUG_LOC,
1283 MVT::Other);
1284 bool useLABEL = TLI.isOperationLegalOrCustom(ISD::DBG_LABEL, MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00001285
Bill Wendling92c1e122009-02-13 02:16:35 +00001286 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
1287 GlobalVariable *CU_GV = cast<GlobalVariable>(DSP->getCompileUnit());
1288 if (DW && (useDEBUG_LOC || useLABEL) && !CU_GV->isDeclaration()) {
1289 DICompileUnit CU(cast<GlobalVariable>(DSP->getCompileUnit()));
Bill Wendling0582ae92009-03-13 04:39:26 +00001290 std::string Dir, FN;
1291 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir),
1292 CU.getFilename(FN));
Scott Michelfdc40a02009-02-17 22:15:04 +00001293
Bill Wendling92c1e122009-02-13 02:16:35 +00001294 unsigned Line = DSP->getLine();
1295 unsigned Col = DSP->getColumn();
Bill Wendling86e6cb92009-02-17 01:04:54 +00001296
Bill Wendling5aa49772009-02-24 02:35:30 +00001297 if (Fast) {
Bill Wendling86e6cb92009-02-17 01:04:54 +00001298 // A bit self-referential to have DebugLoc on Debug_Loc nodes, but it
1299 // won't hurt anything.
1300 if (useDEBUG_LOC) {
1301 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Bill Wendling92c1e122009-02-13 02:16:35 +00001302 DAG.getConstant(Col, MVT::i32),
1303 DAG.getConstant(SrcFile, MVT::i32) };
Bill Wendling86e6cb92009-02-17 01:04:54 +00001304 Result = DAG.getNode(ISD::DEBUG_LOC, dl, MVT::Other, Ops, 4);
1305 } else {
1306 unsigned ID = DW->RecordSourceLine(Line, Col, SrcFile);
1307 Result = DAG.getLabel(ISD::DBG_LABEL, dl, Tmp1, ID);
1308 }
Bill Wendling92c1e122009-02-13 02:16:35 +00001309 } else {
Bill Wendling86e6cb92009-02-17 01:04:54 +00001310 Result = Tmp1; // chain
Bill Wendling92c1e122009-02-13 02:16:35 +00001311 }
1312 } else {
1313 Result = Tmp1; // chain
1314 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001315 break;
Bill Wendling92c1e122009-02-13 02:16:35 +00001316 }
Sanjiv Gupta5274a4a2009-04-02 18:03:10 +00001317 case TargetLowering::Custom:
1318 Result = TLI.LowerOperation(Op, DAG);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001319 if (Result.getNode())
Sanjiv Gupta5274a4a2009-04-02 18:03:10 +00001320 break;
Evan Cheng71e86852008-07-08 20:06:39 +00001321 case TargetLowering::Legal: {
1322 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1323 if (Action == Legal && Tmp1 == Node->getOperand(0))
1324 break;
1325
Dan Gohman475871a2008-07-27 21:46:04 +00001326 SmallVector<SDValue, 8> Ops;
Evan Cheng71e86852008-07-08 20:06:39 +00001327 Ops.push_back(Tmp1);
1328 if (Action == Legal) {
1329 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1330 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1331 } else {
1332 // Otherwise promote them.
1333 Ops.push_back(PromoteOp(Node->getOperand(1)));
1334 Ops.push_back(PromoteOp(Node->getOperand(2)));
Chris Lattner36ce6912005-11-29 06:21:05 +00001335 }
Evan Cheng71e86852008-07-08 20:06:39 +00001336 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1337 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1338 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001339 break;
1340 }
Evan Cheng71e86852008-07-08 20:06:39 +00001341 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001342 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001343
1344 case ISD::DECLARE:
1345 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1346 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1347 default: assert(0 && "This action is not supported yet!");
1348 case TargetLowering::Legal:
1349 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1350 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1351 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1352 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1353 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001354 case TargetLowering::Expand:
1355 Result = LegalizeOp(Node->getOperand(0));
1356 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001357 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001358 break;
1359
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001360 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001361 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001362 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001363 default: assert(0 && "This action is not supported yet!");
Evan Cheng71e86852008-07-08 20:06:39 +00001364 case TargetLowering::Legal: {
1365 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001366 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng71e86852008-07-08 20:06:39 +00001367 if (Action == Legal && Tmp1 == Node->getOperand(0))
1368 break;
1369 if (Action == Legal) {
1370 Tmp2 = Node->getOperand(1);
1371 Tmp3 = Node->getOperand(2);
1372 Tmp4 = Node->getOperand(3);
1373 } else {
1374 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1375 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1376 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1377 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001378 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001379 break;
1380 }
Evan Cheng71e86852008-07-08 20:06:39 +00001381 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001382 break;
Jim Laskeyabf6d172006-01-05 01:25:28 +00001383
Dan Gohman44066042008-07-01 00:05:16 +00001384 case ISD::DBG_LABEL:
1385 case ISD::EH_LABEL:
1386 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1387 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001388 default: assert(0 && "This action is not supported yet!");
1389 case TargetLowering::Legal:
1390 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001391 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001392 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001393 case TargetLowering::Expand:
1394 Result = LegalizeOp(Node->getOperand(0));
1395 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001396 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001397 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001398
Evan Cheng27b7db52008-03-08 00:58:38 +00001399 case ISD::PREFETCH:
1400 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1401 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1402 default: assert(0 && "This action is not supported yet!");
1403 case TargetLowering::Legal:
1404 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1405 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1406 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1407 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1408 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1409 break;
1410 case TargetLowering::Expand:
1411 // It's a noop.
1412 Result = LegalizeOp(Node->getOperand(0));
1413 break;
1414 }
1415 break;
1416
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001417 case ISD::MEMBARRIER: {
1418 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001419 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1420 default: assert(0 && "This action is not supported yet!");
1421 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001422 SDValue Ops[6];
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001423 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001424 for (int x = 1; x < 6; ++x) {
1425 Ops[x] = Node->getOperand(x);
1426 if (!isTypeLegal(Ops[x].getValueType()))
1427 Ops[x] = PromoteOp(Ops[x]);
1428 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001429 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1430 break;
1431 }
1432 case TargetLowering::Expand:
1433 //There is no libgcc call for this op
1434 Result = Node->getOperand(0); // Noop
1435 break;
1436 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001437 break;
1438 }
1439
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001440 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001441 unsigned int num_operands = 4;
1442 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001443 SDValue Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001444 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001445 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001446 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Scott Michelfdc40a02009-02-17 22:15:04 +00001447
Mon P Wang63307c32008-05-05 19:05:59 +00001448 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1449 default: assert(0 && "This action is not supported yet!");
1450 case TargetLowering::Custom:
1451 Result = TLI.LowerOperation(Result, DAG);
1452 break;
1453 case TargetLowering::Legal:
1454 break;
1455 }
Dan Gohman475871a2008-07-27 21:46:04 +00001456 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1457 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001458 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001459 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001460 case ISD::ATOMIC_LOAD_ADD:
1461 case ISD::ATOMIC_LOAD_SUB:
1462 case ISD::ATOMIC_LOAD_AND:
1463 case ISD::ATOMIC_LOAD_OR:
1464 case ISD::ATOMIC_LOAD_XOR:
1465 case ISD::ATOMIC_LOAD_NAND:
1466 case ISD::ATOMIC_LOAD_MIN:
1467 case ISD::ATOMIC_LOAD_MAX:
1468 case ISD::ATOMIC_LOAD_UMIN:
1469 case ISD::ATOMIC_LOAD_UMAX:
1470 case ISD::ATOMIC_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001471 unsigned int num_operands = 3;
1472 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001473 SDValue Ops[3];
Mon P Wang63307c32008-05-05 19:05:59 +00001474 for (unsigned int x = 0; x < num_operands; ++x)
1475 Ops[x] = LegalizeOp(Node->getOperand(x));
1476 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001477
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001478 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001479 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001480 case TargetLowering::Custom:
1481 Result = TLI.LowerOperation(Result, DAG);
1482 break;
1483 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001484 break;
1485 }
Dan Gohman475871a2008-07-27 21:46:04 +00001486 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1487 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001488 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001489 }
Scott Michelc1513d22007-08-08 23:23:31 +00001490 case ISD::Constant: {
1491 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1492 unsigned opAction =
1493 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1494
Chris Lattner3e928bb2005-01-07 07:47:09 +00001495 // We know we don't need to expand constants here, constants only have one
1496 // value and we check that it is fine above.
1497
Scott Michelc1513d22007-08-08 23:23:31 +00001498 if (opAction == TargetLowering::Custom) {
1499 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001500 if (Tmp1.getNode())
Scott Michelc1513d22007-08-08 23:23:31 +00001501 Result = Tmp1;
1502 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001503 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001504 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001505 case ISD::ConstantFP: {
1506 // Spill FP immediates to the constant pool if the target cannot directly
1507 // codegen them. Targets often have some immediate values that can be
1508 // efficiently generated into an FP register without a load. We explicitly
1509 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001510 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1511
Chris Lattner3181a772006-01-29 06:26:56 +00001512 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1513 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001514 case TargetLowering::Legal:
1515 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001516 case TargetLowering::Custom:
1517 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001518 if (Tmp3.getNode()) {
Chris Lattner3181a772006-01-29 06:26:56 +00001519 Result = Tmp3;
1520 break;
1521 }
1522 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001523 case TargetLowering::Expand: {
1524 // Check to see if this FP immediate is already legal.
1525 bool isLegal = false;
1526 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1527 E = TLI.legal_fpimm_end(); I != E; ++I) {
1528 if (CFP->isExactlyValue(*I)) {
1529 isLegal = true;
1530 break;
1531 }
1532 }
1533 // If this is a legal constant, turn it into a TargetConstantFP node.
1534 if (isLegal)
1535 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001536 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001537 }
Nate Begemane1795842008-02-14 08:57:00 +00001538 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001539 break;
1540 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001541 case ISD::TokenFactor:
1542 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001543 Tmp1 = LegalizeOp(Node->getOperand(0));
1544 Tmp2 = LegalizeOp(Node->getOperand(1));
1545 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1546 } else if (Node->getNumOperands() == 3) {
1547 Tmp1 = LegalizeOp(Node->getOperand(0));
1548 Tmp2 = LegalizeOp(Node->getOperand(1));
1549 Tmp3 = LegalizeOp(Node->getOperand(2));
1550 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001551 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001552 SmallVector<SDValue, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001553 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001554 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1555 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001556 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001557 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001558 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001559
Chris Lattnerfdfded52006-04-12 16:20:43 +00001560 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001561 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001562 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001563 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001564 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001565 // A call within a calling sequence must be legalized to something
1566 // other than the normal CALLSEQ_END. Violating this gets Legalize
1567 // into an infinite loop.
1568 assert ((!IsLegalizingCall ||
1569 Node->getOpcode() != ISD::CALL ||
Gabor Greifba36cb52008-08-28 21:40:38 +00001570 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesen0ea03562008-03-05 19:14:03 +00001571 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001572
1573 // The number of incoming and outgoing values should match; unless the final
1574 // outgoing value is a flag.
Gabor Greifba36cb52008-08-28 21:40:38 +00001575 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1576 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1577 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001578 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001579 "Lowering call/formal_arguments produced unexpected # results!");
Scott Michelfdc40a02009-02-17 22:15:04 +00001580
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001581 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001582 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greifba36cb52008-08-28 21:40:38 +00001583 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1584 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001585 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001586 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001587 if (Op.getResNo() == i)
Chris Lattnere2e41732006-05-16 05:49:56 +00001588 Tmp2 = Tmp1;
Dan Gohman475871a2008-07-27 21:46:04 +00001589 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Chris Lattnere2e41732006-05-16 05:49:56 +00001590 }
1591 return Tmp2;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001592 case ISD::BUILD_VECTOR:
1593 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001594 default: assert(0 && "This action is not supported yet!");
1595 case TargetLowering::Custom:
1596 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001597 if (Tmp3.getNode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001598 Result = Tmp3;
1599 break;
1600 }
1601 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001602 case TargetLowering::Expand:
Gabor Greifba36cb52008-08-28 21:40:38 +00001603 Result = ExpandBUILD_VECTOR(Result.getNode());
Chris Lattnerb2827b02006-03-19 00:52:58 +00001604 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001605 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001606 break;
1607 case ISD::INSERT_VECTOR_ELT:
1608 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001609 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001610
1611 // The type of the value to insert may not be legal, even though the vector
1612 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1613 // here.
1614 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1615 default: assert(0 && "Cannot expand insert element operand");
1616 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1617 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Mon P Wang0c397192008-10-30 08:01:45 +00001618 case Expand:
1619 // FIXME: An alternative would be to check to see if the target is not
Scott Michelfdc40a02009-02-17 22:15:04 +00001620 // going to custom lower this operation, we could bitcast to half elt
Mon P Wang0c397192008-10-30 08:01:45 +00001621 // width and perform two inserts at that width, if that is legal.
1622 Tmp2 = Node->getOperand(1);
1623 break;
Nate Begeman0325d902008-02-13 06:43:04 +00001624 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001625 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00001626
Chris Lattner2332b9f2006-03-19 01:17:20 +00001627 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1628 Node->getValueType(0))) {
1629 default: assert(0 && "This action is not supported yet!");
1630 case TargetLowering::Legal:
1631 break;
1632 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001633 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001634 if (Tmp4.getNode()) {
Nate Begeman2281a992008-01-05 20:47:37 +00001635 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001636 break;
1637 }
1638 // FALLTHROUGH
Mon P Wang0c397192008-10-30 08:01:45 +00001639 case TargetLowering::Promote:
1640 // Fall thru for vector case
Chris Lattner2332b9f2006-03-19 01:17:20 +00001641 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001642 // If the insert index is a constant, codegen this as a scalar_to_vector,
1643 // then a shuffle that inserts it into the right position in the vector.
1644 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001645 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1646 // match the element type of the vector being created.
Scott Michelfdc40a02009-02-17 22:15:04 +00001647 if (Tmp2.getValueType() ==
Duncan Sands83ec4b62008-06-06 12:08:01 +00001648 Op.getValueType().getVectorElementType()) {
Dale Johannesenca57b842009-02-02 23:46:53 +00001649 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001650 Tmp1.getValueType(), Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00001651
Duncan Sands83ec4b62008-06-06 12:08:01 +00001652 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1653 MVT ShufMaskVT =
1654 MVT::getIntVectorWithNumElements(NumElts);
1655 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001656
Nate Begeman0325d902008-02-13 06:43:04 +00001657 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1658 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1659 // elt 0 of the RHS.
Dan Gohman475871a2008-07-27 21:46:04 +00001660 SmallVector<SDValue, 8> ShufOps;
Nate Begeman0325d902008-02-13 06:43:04 +00001661 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001662 if (i != InsertPos->getZExtValue())
Nate Begeman0325d902008-02-13 06:43:04 +00001663 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1664 else
1665 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1666 }
Evan Chenga87008d2009-02-25 22:49:59 +00001667 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, ShufMaskVT,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001668 &ShufOps[0], ShufOps.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001669
Dale Johannesenca57b842009-02-02 23:46:53 +00001670 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Tmp1.getValueType(),
Nate Begeman0325d902008-02-13 06:43:04 +00001671 Tmp1, ScVec, ShufMask);
1672 Result = LegalizeOp(Result);
1673 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001674 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001675 }
Dale Johannesenbb5da912009-02-02 20:41:04 +00001676 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3, dl);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001677 break;
1678 }
1679 }
1680 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001681 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001682 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1683 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1684 break;
1685 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001686
Chris Lattnerce872152006-03-19 06:31:19 +00001687 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1688 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1689 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1690 Node->getValueType(0))) {
1691 default: assert(0 && "This action is not supported yet!");
1692 case TargetLowering::Legal:
1693 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001694 case TargetLowering::Custom:
1695 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001696 if (Tmp3.getNode()) {
Chris Lattner4d3abee2006-03-19 06:47:21 +00001697 Result = Tmp3;
1698 break;
1699 }
1700 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001701 case TargetLowering::Expand:
1702 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001703 break;
1704 }
Chris Lattnerce872152006-03-19 06:31:19 +00001705 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001706 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001707 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1708 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1709 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1710
1711 // Allow targets to custom lower the SHUFFLEs they support.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001712 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, Result.getValueType())){
Chris Lattner4352cc92006-04-04 17:23:26 +00001713 default: assert(0 && "Unknown operation action!");
1714 case TargetLowering::Legal:
1715 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1716 "vector shuffle should not be created if not legal!");
1717 break;
1718 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001719 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001720 if (Tmp3.getNode()) {
Evan Cheng18dd6d02006-04-05 06:07:11 +00001721 Result = Tmp3;
1722 break;
1723 }
1724 // FALLTHROUGH
1725 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001726 MVT VT = Node->getValueType(0);
1727 MVT EltVT = VT.getVectorElementType();
1728 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00001729 SDValue Mask = Node->getOperand(2);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001730 unsigned NumElems = Mask.getNumOperands();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001731 SmallVector<SDValue, 8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001732 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001733 SDValue Arg = Mask.getOperand(i);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001734 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00001735 Ops.push_back(DAG.getUNDEF(EltVT));
Evan Cheng18dd6d02006-04-05 06:07:11 +00001736 } else {
1737 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001738 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng18dd6d02006-04-05 06:07:11 +00001739 if (Idx < NumElems)
Dale Johannesenca57b842009-02-02 23:46:53 +00001740 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp1,
Evan Cheng18dd6d02006-04-05 06:07:11 +00001741 DAG.getConstant(Idx, PtrVT)));
1742 else
Dale Johannesenca57b842009-02-02 23:46:53 +00001743 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp2,
Evan Cheng18dd6d02006-04-05 06:07:11 +00001744 DAG.getConstant(Idx - NumElems, PtrVT)));
1745 }
1746 }
Evan Chenga87008d2009-02-25 22:49:59 +00001747 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001748 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001749 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001750 case TargetLowering::Promote: {
1751 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001752 MVT OVT = Node->getValueType(0);
1753 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001754
1755 // Cast the two input vectors.
Dale Johannesenca57b842009-02-02 23:46:53 +00001756 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
1757 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00001758
Chris Lattner4352cc92006-04-04 17:23:26 +00001759 // Convert the shuffle mask to the right # elements.
Dan Gohman475871a2008-07-27 21:46:04 +00001760 Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001761 assert(Tmp3.getNode() && "Shuffle not legal?");
Dale Johannesenca57b842009-02-02 23:46:53 +00001762 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, NVT, Tmp1, Tmp2, Tmp3);
1763 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Chris Lattner4352cc92006-04-04 17:23:26 +00001764 break;
1765 }
Chris Lattner87100e02006-03-20 01:52:29 +00001766 }
1767 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001768
Chris Lattner384504c2006-03-21 20:44:12 +00001769 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001770 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001771 Tmp2 = LegalizeOp(Node->getOperand(1));
1772 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001773 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001774 break;
1775
Scott Michelfdc40a02009-02-17 22:15:04 +00001776 case ISD::EXTRACT_SUBVECTOR:
Dan Gohman7f321562007-06-25 16:23:39 +00001777 Tmp1 = Node->getOperand(0);
1778 Tmp2 = LegalizeOp(Node->getOperand(1));
1779 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1780 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001781 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001782
Mon P Wang0c397192008-10-30 08:01:45 +00001783 case ISD::CONCAT_VECTORS: {
1784 // Use extract/insert/build vector for now. We might try to be
1785 // more clever later.
1786 MVT PtrVT = TLI.getPointerTy();
1787 SmallVector<SDValue, 8> Ops;
1788 unsigned NumOperands = Node->getNumOperands();
1789 for (unsigned i=0; i < NumOperands; ++i) {
1790 SDValue SubOp = Node->getOperand(i);
1791 MVT VVT = SubOp.getNode()->getValueType(0);
1792 MVT EltVT = VVT.getVectorElementType();
1793 unsigned NumSubElem = VVT.getVectorNumElements();
1794 for (unsigned j=0; j < NumSubElem; ++j) {
Dale Johannesenca57b842009-02-02 23:46:53 +00001795 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, SubOp,
Mon P Wang0c397192008-10-30 08:01:45 +00001796 DAG.getConstant(j, PtrVT)));
1797 }
1798 }
Evan Chenga87008d2009-02-25 22:49:59 +00001799 return LegalizeOp(DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
1800 &Ops[0], Ops.size()));
Mon P Wang0c397192008-10-30 08:01:45 +00001801 }
1802
Chris Lattner6831a812006-02-13 09:18:02 +00001803 case ISD::CALLSEQ_START: {
1804 SDNode *CallEnd = FindCallEndFromCallStart(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00001805
Chris Lattner6831a812006-02-13 09:18:02 +00001806 // Recursively Legalize all of the inputs of the call end that do not lead
1807 // to this call start. This ensures that any libcalls that need be inserted
1808 // are inserted *before* the CALLSEQ_START.
Mon P Wange5ab34e2009-02-04 19:38:14 +00001809 IsLegalizingCallArgs = true;
Chris Lattner00755df2007-02-04 00:27:56 +00001810 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001811 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00001812 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001813 NodesLeadingTo);
1814 }
Mon P Wange5ab34e2009-02-04 19:38:14 +00001815 IsLegalizingCallArgs = false;
Chris Lattner6831a812006-02-13 09:18:02 +00001816
1817 // Now that we legalized all of the inputs (which may have inserted
1818 // libcalls) create the new CALLSEQ_START node.
1819 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1820
1821 // Merge in the last call, to ensure that this call start after the last
1822 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001823 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001824 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00001825 Tmp1, LastCALLSEQ_END);
Chris Lattnerb248e162006-05-17 17:55:45 +00001826 Tmp1 = LegalizeOp(Tmp1);
1827 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001828
Chris Lattner6831a812006-02-13 09:18:02 +00001829 // Do not try to legalize the target-specific arguments (#1+).
1830 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001831 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001832 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001833 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001834 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001835
Chris Lattner6831a812006-02-13 09:18:02 +00001836 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001837 AddLegalizedOperand(Op.getValue(0), Result);
1838 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1839 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001840
Chris Lattner6831a812006-02-13 09:18:02 +00001841 // Now that the callseq_start and all of the non-call nodes above this call
Scott Michelfdc40a02009-02-17 22:15:04 +00001842 // sequence have been legalized, legalize the call itself. During this
Chris Lattner6831a812006-02-13 09:18:02 +00001843 // process, no libcalls can/will be inserted, guaranteeing that no calls
1844 // can overlap.
1845 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001846 // Note that we are selecting this call!
Dan Gohman475871a2008-07-27 21:46:04 +00001847 LastCALLSEQ_END = SDValue(CallEnd, 0);
Chris Lattner6831a812006-02-13 09:18:02 +00001848 IsLegalizingCall = true;
Scott Michelfdc40a02009-02-17 22:15:04 +00001849
Chris Lattner6831a812006-02-13 09:18:02 +00001850 // Legalize the call, starting from the CALLSEQ_END.
1851 LegalizeOp(LastCALLSEQ_END);
1852 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1853 return Result;
1854 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001855 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001856 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1857 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greifba36cb52008-08-28 21:40:38 +00001858 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman475871a2008-07-27 21:46:04 +00001859 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1860 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001861 assert(I != LegalizedNodes.end() &&
1862 "Legalizing the call start should have legalized this node!");
1863 return I->second;
1864 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001865
1866 // Otherwise, the call start has been legalized and everything is going
Chris Lattner6831a812006-02-13 09:18:02 +00001867 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001868 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001869 // Do not try to legalize the target-specific arguments (#1+), except for
1870 // an optional flag input.
1871 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1872 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001873 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001874 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001875 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001876 }
1877 } else {
1878 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1879 if (Tmp1 != Node->getOperand(0) ||
1880 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001881 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001882 Ops[0] = Tmp1;
1883 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001884 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001885 }
Chris Lattner6a542892006-01-24 05:48:21 +00001886 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001887 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001888 // This finishes up call legalization.
1889 IsLegalizingCall = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001890
Chris Lattner4b653a02006-02-14 00:55:02 +00001891 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman475871a2008-07-27 21:46:04 +00001892 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Chris Lattner4b653a02006-02-14 00:55:02 +00001893 if (Node->getNumValues() == 2)
Dan Gohman475871a2008-07-27 21:46:04 +00001894 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001895 return Result.getValue(Op.getResNo());
Evan Chenga7dce3c2006-01-11 22:14:47 +00001896 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001897 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001898 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1899 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1900 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001901 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001902
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001903 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001904 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001905 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001906 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001907 case TargetLowering::Expand: {
1908 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1909 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1910 " not tell us which reg is the stack pointer!");
Dan Gohman475871a2008-07-27 21:46:04 +00001911 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001912
1913 // Chain the dynamic stack allocation so that it doesn't modify the stack
1914 // pointer when other instructions are using the stack.
Chris Lattnere563bbc2008-10-11 22:08:30 +00001915 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001916
Dan Gohman475871a2008-07-27 21:46:04 +00001917 SDValue Size = Tmp2.getOperand(1);
Dale Johannesenc460ae92009-02-04 00:13:36 +00001918 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001919 Chain = SP.getValue(1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001920 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Cheng61bbbab2007-08-16 23:50:06 +00001921 unsigned StackAlign =
1922 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1923 if (Align > StackAlign)
Dale Johannesenca57b842009-02-02 23:46:53 +00001924 SP = DAG.getNode(ISD::AND, dl, VT, SP,
Evan Cheng3e20bba2007-08-17 18:02:22 +00001925 DAG.getConstant(-(uint64_t)Align, VT));
Dale Johannesenca57b842009-02-02 23:46:53 +00001926 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Dale Johannesenc460ae92009-02-04 00:13:36 +00001927 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001928
Dale Johannesenca57b842009-02-02 23:46:53 +00001929 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Chris Lattnere563bbc2008-10-11 22:08:30 +00001930 DAG.getIntPtrConstant(0, true), SDValue());
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001931
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001932 Tmp1 = LegalizeOp(Tmp1);
1933 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001934 break;
1935 }
1936 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001937 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001938 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001939 Tmp1 = LegalizeOp(Tmp3);
1940 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001941 }
Chris Lattner903d2782006-01-15 08:54:32 +00001942 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001943 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001944 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001945 }
Chris Lattner903d2782006-01-15 08:54:32 +00001946 // Since this op produce two values, make sure to remember that we
1947 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001948 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1949 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001950 return Op.getResNo() ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001951 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001952 case ISD::INLINEASM: {
Dan Gohman475871a2008-07-27 21:46:04 +00001953 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001954 bool Changed = false;
1955 // Legalize all of the operands of the inline asm, in case they are nodes
1956 // that need to be expanded or something. Note we skip the asm string and
1957 // all of the TargetConstant flags.
Dan Gohman475871a2008-07-27 21:46:04 +00001958 SDValue Op = LegalizeOp(Ops[0]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001959 Changed = Op != Ops[0];
1960 Ops[0] = Op;
1961
1962 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1963 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Evan Cheng697cbbf2009-03-20 18:03:34 +00001964 unsigned NumVals = InlineAsm::
1965 getNumOperandRegisters(cast<ConstantSDNode>(Ops[i])->getZExtValue());
Chris Lattner25a022c2006-07-11 01:40:09 +00001966 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman475871a2008-07-27 21:46:04 +00001967 SDValue Op = LegalizeOp(Ops[i]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001968 if (Op != Ops[i]) {
1969 Changed = true;
1970 Ops[i] = Op;
1971 }
1972 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001973 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001974
1975 if (HasInFlag) {
1976 Op = LegalizeOp(Ops.back());
1977 Changed |= Op != Ops.back();
1978 Ops.back() = Op;
1979 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001980
Chris Lattner25a022c2006-07-11 01:40:09 +00001981 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001982 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001983
Chris Lattnerce7518c2006-01-26 22:24:51 +00001984 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman475871a2008-07-27 21:46:04 +00001985 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1986 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001987 return Result.getValue(Op.getResNo());
Chris Lattner25a022c2006-07-11 01:40:09 +00001988 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001989 case ISD::BR:
1990 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001991 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00001992 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00001993 Tmp1 = LegalizeOp(Tmp1);
1994 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00001995
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001996 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001997 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001998 case ISD::BRIND:
1999 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2000 // 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);
Nate Begeman37efe672006-04-22 18:53:45 +00002002 Tmp1 = LegalizeOp(Tmp1);
2003 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00002004
Nate Begeman37efe672006-04-22 18:53:45 +00002005 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2006 default: assert(0 && "Indirect target must be legal type (pointer)!");
2007 case Legal:
2008 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2009 break;
2010 }
2011 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2012 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00002013 case ISD::BR_JT:
2014 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2015 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002016 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002017 Tmp1 = LegalizeOp(Tmp1);
2018 LastCALLSEQ_END = DAG.getEntryNode();
2019
2020 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
2021 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2022
Scott Michelfdc40a02009-02-17 22:15:04 +00002023 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00002024 default: assert(0 && "This action is not supported yet!");
2025 case TargetLowering::Legal: break;
2026 case TargetLowering::Custom:
2027 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002028 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng3d4ce112006-10-30 08:00:44 +00002029 break;
2030 case TargetLowering::Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002031 SDValue Chain = Result.getOperand(0);
2032 SDValue Table = Result.getOperand(1);
2033 SDValue Index = Result.getOperand(2);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002034
Duncan Sands83ec4b62008-06-06 12:08:01 +00002035 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002036 MachineFunction &MF = DAG.getMachineFunction();
2037 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Scott Michelfdc40a02009-02-17 22:15:04 +00002038 Index= DAG.getNode(ISD::MUL, dl, PTy,
Dale Johannesenca57b842009-02-02 23:46:53 +00002039 Index, DAG.getConstant(EntrySize, PTy));
2040 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002041
Duncan Sands712f7b32008-12-12 08:13:38 +00002042 MVT MemVT = MVT::getIntegerVT(EntrySize * 8);
Dale Johannesenca57b842009-02-02 23:46:53 +00002043 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Duncan Sands712f7b32008-12-12 08:13:38 +00002044 PseudoSourceValue::getJumpTable(), 0, MemVT);
Evan Chengcc415862007-11-09 01:32:10 +00002045 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002046 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00002047 // For PIC, the sequence is:
2048 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00002049 // RelocBase can be JumpTable, GOT or some sort of global base.
Dale Johannesenca57b842009-02-02 23:46:53 +00002050 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
Evan Chengcc415862007-11-09 01:32:10 +00002051 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00002052 }
Dale Johannesenca57b842009-02-02 23:46:53 +00002053 Result = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002054 }
2055 }
2056 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002057 case ISD::BRCOND:
2058 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002059 // Ensure that libcalls are emitted before a return.
Dale Johannesenca57b842009-02-02 23:46:53 +00002060 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002061 Tmp1 = LegalizeOp(Tmp1);
2062 LastCALLSEQ_END = DAG.getEntryNode();
2063
Chris Lattner47e92232005-01-18 19:27:06 +00002064 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2065 case Expand: assert(0 && "It's impossible to expand bools");
2066 case Legal:
2067 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2068 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002069 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002070 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Scott Michelfdc40a02009-02-17 22:15:04 +00002071
Chris Lattnerf9908172006-11-27 04:39:56 +00002072 // The top bits of the promoted condition are not necessarily zero, ensure
2073 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002074 unsigned BitWidth = Tmp2.getValueSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002075 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002076 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenca57b842009-02-02 23:46:53 +00002077 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002078 break;
2079 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002080 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002081
2082 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002083 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00002084
2085 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
Nate Begeman7cbd5252005-08-16 19:49:35 +00002086 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002087 case TargetLowering::Legal: break;
2088 case TargetLowering::Custom:
2089 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002090 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002091 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002092 case TargetLowering::Expand:
2093 // Expand brcond's setcc into its constituent parts and create a BR_CC
2094 // Node.
2095 if (Tmp2.getOpcode() == ISD::SETCC) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002096 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00002097 Tmp1, Tmp2.getOperand(2),
Nate Begeman7cbd5252005-08-16 19:49:35 +00002098 Tmp2.getOperand(0), Tmp2.getOperand(1),
2099 Node->getOperand(2));
2100 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00002101 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Nate Begeman7cbd5252005-08-16 19:49:35 +00002102 DAG.getCondCode(ISD::SETNE), Tmp2,
2103 DAG.getConstant(0, Tmp2.getValueType()),
2104 Node->getOperand(2));
2105 }
2106 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002107 }
2108 break;
2109 case ISD::BR_CC:
2110 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002111 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002112 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002113 Tmp1 = LegalizeOp(Tmp1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002114 Tmp2 = Node->getOperand(2); // LHS
Nate Begeman750ac1b2006-02-01 07:19:44 +00002115 Tmp3 = Node->getOperand(3); // RHS
2116 Tmp4 = Node->getOperand(1); // CC
2117
Scott Michelfdc40a02009-02-17 22:15:04 +00002118 LegalizeSetCC(TLI.getSetCCResultType(Tmp2.getValueType()),
Dale Johannesenbb5da912009-02-02 20:41:04 +00002119 Tmp2, Tmp3, Tmp4, dl);
Evan Cheng722cb362006-12-18 22:55:34 +00002120 LastCALLSEQ_END = DAG.getEntryNode();
2121
Evan Cheng7f042682008-10-15 02:05:31 +00002122 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002123 // the LHS is a legal SETCC itself. In this case, we need to compare
2124 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00002125 if (Tmp3.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002126 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
2127 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00002128 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002129
2130 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002131 Node->getOperand(4));
Scott Michelfdc40a02009-02-17 22:15:04 +00002132
Chris Lattner181b7a32005-12-17 23:46:46 +00002133 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
2134 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002135 case TargetLowering::Legal: break;
2136 case TargetLowering::Custom:
2137 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002138 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00002139 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002140 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002141 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002142 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00002143 LoadSDNode *LD = cast<LoadSDNode>(Node);
2144 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
2145 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002146
Evan Cheng466685d2006-10-09 20:57:25 +00002147 ISD::LoadExtType ExtType = LD->getExtensionType();
2148 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002149 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00002150 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2151 Tmp3 = Result.getValue(0);
2152 Tmp4 = Result.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002153
Evan Cheng466685d2006-10-09 20:57:25 +00002154 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
2155 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002156 case TargetLowering::Legal:
2157 // If this is an unaligned load and the target doesn't support it,
2158 // expand it.
2159 if (!TLI.allowsUnalignedMemoryAccesses()) {
2160 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002161 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002162 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002163 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002164 TLI);
2165 Tmp3 = Result.getOperand(0);
2166 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00002167 Tmp3 = LegalizeOp(Tmp3);
2168 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002169 }
2170 }
2171 break;
Evan Cheng466685d2006-10-09 20:57:25 +00002172 case TargetLowering::Custom:
2173 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002174 if (Tmp1.getNode()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002175 Tmp3 = LegalizeOp(Tmp1);
2176 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00002177 }
Evan Cheng466685d2006-10-09 20:57:25 +00002178 break;
2179 case TargetLowering::Promote: {
2180 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002181 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00002182 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002183 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00002184
Dale Johannesenca57b842009-02-02 23:46:53 +00002185 Tmp1 = DAG.getLoad(NVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002186 LD->getSrcValueOffset(),
2187 LD->isVolatile(), LD->getAlignment());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00002188 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp1));
Evan Cheng466685d2006-10-09 20:57:25 +00002189 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002190 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00002191 }
Evan Cheng466685d2006-10-09 20:57:25 +00002192 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002193 // Since loads produce two values, make sure to remember that we
Evan Cheng466685d2006-10-09 20:57:25 +00002194 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002195 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
2196 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002197 return Op.getResNo() ? Tmp4 : Tmp3;
Evan Cheng466685d2006-10-09 20:57:25 +00002198 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002199 MVT SrcVT = LD->getMemoryVT();
2200 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002201 int SVOffset = LD->getSrcValueOffset();
2202 unsigned Alignment = LD->getAlignment();
2203 bool isVolatile = LD->isVolatile();
2204
Duncan Sands83ec4b62008-06-06 12:08:01 +00002205 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002206 // Some targets pretend to have an i1 loading operation, and actually
2207 // load an i8. This trick is correct for ZEXTLOAD because the top 7
2208 // bits are guaranteed to be zero; it helps the optimizers understand
2209 // that these bits are zero. It is also useful for EXTLOAD, since it
2210 // tells the optimizers that those bits are undefined. It would be
2211 // nice to have an effective generic way of getting these benefits...
2212 // Until such a way is found, don't insist on promoting i1 here.
2213 (SrcVT != MVT::i1 ||
Evan Cheng03294662008-10-14 21:26:46 +00002214 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002215 // Promote to a byte-sized load if not loading an integral number of
2216 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002217 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2218 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002219 SDValue Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002220
2221 // The extra bits are guaranteed to be zero, since we stored them that
2222 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2223
2224 ISD::LoadExtType NewExtType =
2225 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2226
Dale Johannesenca57b842009-02-02 23:46:53 +00002227 Result = DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002228 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2229 NVT, isVolatile, Alignment);
2230
2231 Ch = Result.getValue(1); // The chain.
2232
2233 if (ExtType == ISD::SEXTLOAD)
2234 // Having the top bits zero doesn't help when sign extending.
Scott Michelfdc40a02009-02-17 22:15:04 +00002235 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002236 Result.getValueType(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002237 Result, DAG.getValueType(SrcVT));
2238 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2239 // All the top bits are guaranteed to be zero - inform the optimizers.
Scott Michelfdc40a02009-02-17 22:15:04 +00002240 Result = DAG.getNode(ISD::AssertZext, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002241 Result.getValueType(), Result,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002242 DAG.getValueType(SrcVT));
2243
2244 Tmp1 = LegalizeOp(Result);
2245 Tmp2 = LegalizeOp(Ch);
2246 } else if (SrcWidth & (SrcWidth - 1)) {
2247 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002248 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002249 "Unsupported extload!");
2250 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2251 assert(RoundWidth < SrcWidth);
2252 unsigned ExtraWidth = SrcWidth - RoundWidth;
2253 assert(ExtraWidth < RoundWidth);
2254 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2255 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002256 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2257 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002258 SDValue Lo, Hi, Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002259 unsigned IncrementSize;
2260
2261 if (TLI.isLittleEndian()) {
2262 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2263 // Load the bottom RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002264 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
2265 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002266 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2267 Alignment);
2268
2269 // Load the remaining ExtraWidth bits.
2270 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002271 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002272 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002273 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002274 LD->getSrcValue(), SVOffset + IncrementSize,
2275 ExtraVT, isVolatile,
2276 MinAlign(Alignment, IncrementSize));
2277
2278 // Build a factor node to remember that this load is independent of the
2279 // other one.
Dale Johannesenca57b842009-02-02 23:46:53 +00002280 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002281 Hi.getValue(1));
2282
2283 // Move the top bits to the right place.
Dale Johannesenca57b842009-02-02 23:46:53 +00002284 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002285 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2286
2287 // Join the hi and lo parts.
Dale Johannesenca57b842009-02-02 23:46:53 +00002288 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002289 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002290 // Big endian - avoid unaligned loads.
2291 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2292 // Load the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002293 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002294 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2295 Alignment);
2296
2297 // Load the remaining ExtraWidth bits.
2298 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002299 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002300 DAG.getIntPtrConstant(IncrementSize));
Scott Michelfdc40a02009-02-17 22:15:04 +00002301 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002302 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002303 LD->getSrcValue(), SVOffset + IncrementSize,
2304 ExtraVT, isVolatile,
2305 MinAlign(Alignment, IncrementSize));
2306
2307 // Build a factor node to remember that this load is independent of the
2308 // other one.
Dale Johannesenca57b842009-02-02 23:46:53 +00002309 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002310 Hi.getValue(1));
2311
2312 // Move the top bits to the right place.
Dale Johannesenca57b842009-02-02 23:46:53 +00002313 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002314 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2315
2316 // Join the hi and lo parts.
Dale Johannesenca57b842009-02-02 23:46:53 +00002317 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002318 }
2319
2320 Tmp1 = LegalizeOp(Result);
2321 Tmp2 = LegalizeOp(Ch);
2322 } else {
Evan Cheng03294662008-10-14 21:26:46 +00002323 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002324 default: assert(0 && "This action is not supported yet!");
2325 case TargetLowering::Custom:
2326 isCustom = true;
2327 // FALLTHROUGH
2328 case TargetLowering::Legal:
2329 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2330 Tmp1 = Result.getValue(0);
2331 Tmp2 = Result.getValue(1);
2332
2333 if (isCustom) {
2334 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002335 if (Tmp3.getNode()) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002336 Tmp1 = LegalizeOp(Tmp3);
2337 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2338 }
2339 } else {
2340 // If this is an unaligned load and the target doesn't support it,
2341 // expand it.
2342 if (!TLI.allowsUnalignedMemoryAccesses()) {
2343 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002344 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002345 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002346 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002347 TLI);
2348 Tmp1 = Result.getOperand(0);
2349 Tmp2 = Result.getOperand(1);
2350 Tmp1 = LegalizeOp(Tmp1);
2351 Tmp2 = LegalizeOp(Tmp2);
2352 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002353 }
2354 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002355 break;
2356 case TargetLowering::Expand:
2357 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2358 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dale Johannesenca57b842009-02-02 23:46:53 +00002359 SDValue Load = DAG.getLoad(SrcVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002360 LD->getSrcValueOffset(),
2361 LD->isVolatile(), LD->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00002362 Result = DAG.getNode(ISD::FP_EXTEND, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002363 Node->getValueType(0), Load);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002364 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2365 Tmp2 = LegalizeOp(Load.getValue(1));
2366 break;
2367 }
2368 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2369 // Turn the unsupported load into an EXTLOAD followed by an explicit
2370 // zero/sign extend inreg.
Dale Johannesenca57b842009-02-02 23:46:53 +00002371 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002372 Tmp1, Tmp2, LD->getSrcValue(),
2373 LD->getSrcValueOffset(), SrcVT,
2374 LD->isVolatile(), LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00002375 SDValue ValRes;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002376 if (ExtType == ISD::SEXTLOAD)
Dale Johannesenca57b842009-02-02 23:46:53 +00002377 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
2378 Result.getValueType(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002379 Result, DAG.getValueType(SrcVT));
2380 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002381 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002382 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2383 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002384 break;
2385 }
Evan Cheng466685d2006-10-09 20:57:25 +00002386 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002387
Evan Cheng466685d2006-10-09 20:57:25 +00002388 // Since loads produce two values, make sure to remember that we legalized
2389 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002390 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2391 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002392 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002393 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002394 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002395 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002396 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002397 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002398 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002399 case Legal:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002400 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Nate Begeman5dc897b2005-10-19 00:06:56 +00002401 // 1 -> Hi
Dale Johannesenca57b842009-02-02 23:46:53 +00002402 Result = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002403 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002404 TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002405 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Result);
Nate Begeman5dc897b2005-10-19 00:06:56 +00002406 } else {
2407 // 0 -> Lo
Scott Michelfdc40a02009-02-17 22:15:04 +00002408 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
Nate Begeman5dc897b2005-10-19 00:06:56 +00002409 Node->getOperand(0));
2410 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002411 break;
2412 case Expand:
2413 // Get both the low and high parts.
2414 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002415 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Nate Begeman5dc897b2005-10-19 00:06:56 +00002416 Result = Tmp2; // 1 -> Hi
2417 else
2418 Result = Tmp1; // 0 -> Lo
2419 break;
2420 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002421 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002422 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002423
2424 case ISD::CopyToReg:
2425 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002426
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002427 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002428 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002429 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002430 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002431 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002432 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002433 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002434 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002435 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002436 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002437 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2438 Tmp3);
2439 } else {
2440 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002441 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002442
Chris Lattner7310fb12005-12-18 15:27:43 +00002443 // Since this produces two values, make sure to remember that we legalized
2444 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002445 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2446 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002447 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002448 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002449 break;
2450
2451 case ISD::RET:
2452 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002453
2454 // Ensure that libcalls are emitted before a return.
Dale Johannesenca57b842009-02-02 23:46:53 +00002455 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002456 Tmp1 = LegalizeOp(Tmp1);
2457 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00002458
Chris Lattner3e928bb2005-01-07 07:47:09 +00002459 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002460 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002461 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002462 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002463 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002464 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002465 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002466 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002467 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002468 if (!Tmp2.getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002469 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002470 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002471
2472 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002473 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002474 std::swap(Lo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00002475
Gabor Greifba36cb52008-08-28 21:40:38 +00002476 if (Hi.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00002477 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002478 Tmp1, Lo, Tmp3, Hi, Tmp3);
Evan Cheng13acce32006-12-11 19:27:14 +00002479 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002480 Result = DAG.getNode(ISD::RET, dl, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002481 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002482 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00002483 SDNode *InVal = Tmp2.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002484 int InIx = Tmp2.getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002485 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2486 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00002487
Dan Gohman7f321562007-06-25 16:23:39 +00002488 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002489 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002490 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002491 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002492 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002493 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002494 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002495 } else if (NumElems == 1) {
2496 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002497 Tmp2 = ScalarizeVectorOp(Tmp2);
2498 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002499 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00002500
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002501 // FIXME: Returns of gcc generic vectors smaller than a legal type
2502 // should be returned in integer registers!
Scott Michelfdc40a02009-02-17 22:15:04 +00002503
Chris Lattnerf87324e2006-04-11 01:31:51 +00002504 // The scalarized value type may not be legal, e.g. it might require
2505 // promotion or expansion. Relegalize the return.
2506 Result = LegalizeOp(Result);
2507 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002508 // FIXME: Returns of gcc generic vectors larger than a legal vector
2509 // type should be returned by reference!
Dan Gohman475871a2008-07-27 21:46:04 +00002510 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002511 SplitVectorOp(Tmp2, Lo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00002512 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002513 Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002514 Result = LegalizeOp(Result);
2515 }
2516 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002517 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002518 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002519 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002520 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002521 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002522 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002523 }
2524 break;
2525 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002526 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002527 break;
2528 default: { // ret <values>
Dan Gohman475871a2008-07-27 21:46:04 +00002529 SmallVector<SDValue, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002530 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002531 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002532 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2533 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002534 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002535 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002536 break;
2537 case Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002538 SDValue Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002539 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002540 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002541 ExpandOp(Node->getOperand(i), Lo, Hi);
2542 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002543 NewValues.push_back(Node->getOperand(i+1));
Gabor Greifba36cb52008-08-28 21:40:38 +00002544 if (Hi.getNode()) {
Evan Cheng13acce32006-12-11 19:27:14 +00002545 NewValues.push_back(Hi);
2546 NewValues.push_back(Node->getOperand(i+1));
2547 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002548 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002549 }
2550 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002551 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002552 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002553
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002554 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002555 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002556 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002557 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002558 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002559 break;
2560 }
2561 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002562
Chris Lattner6862dbc2006-01-29 21:02:23 +00002563 if (Result.getOpcode() == ISD::RET) {
2564 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2565 default: assert(0 && "This action is not supported yet!");
2566 case TargetLowering::Legal: break;
2567 case TargetLowering::Custom:
2568 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002569 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner6862dbc2006-01-29 21:02:23 +00002570 break;
2571 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002572 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002573 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002574 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002575 StoreSDNode *ST = cast<StoreSDNode>(Node);
2576 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2577 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002578 int SVOffset = ST->getSrcValueOffset();
2579 unsigned Alignment = ST->getAlignment();
2580 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002581
Evan Cheng8b2794a2006-10-13 21:14:26 +00002582 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002583 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2584 // FIXME: We shouldn't do this for TargetConstantFP's.
2585 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2586 // to phase ordering between legalized code and the dag combiner. This
2587 // probably means that we need to integrate dag combiner and legalizer
2588 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002589 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002590 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002591 if (CFP->getValueType(0) == MVT::f32 &&
Chris Lattner3cb93512007-10-15 05:46:06 +00002592 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002593 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen7111b022008-10-09 18:53:47 +00002594 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002595 MVT::i32);
Dale Johannesenca57b842009-02-02 23:46:53 +00002596 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002597 SVOffset, isVolatile, Alignment);
2598 break;
2599 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002600 // If this target supports 64-bit registers, do a single 64-bit store.
2601 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen7111b022008-10-09 18:53:47 +00002602 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002603 zextOrTrunc(64), MVT::i64);
Dale Johannesenca57b842009-02-02 23:46:53 +00002604 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner3cb93512007-10-15 05:46:06 +00002605 SVOffset, isVolatile, Alignment);
2606 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002607 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002608 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2609 // stores. If the target supports neither 32- nor 64-bits, this
2610 // xform is certainly not worth it.
Dale Johannesen7111b022008-10-09 18:53:47 +00002611 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman475871a2008-07-27 21:46:04 +00002612 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2613 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002614 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002615
Dale Johannesenca57b842009-02-02 23:46:53 +00002616 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Chris Lattner3cb93512007-10-15 05:46:06 +00002617 SVOffset, isVolatile, Alignment);
Dale Johannesenca57b842009-02-02 23:46:53 +00002618 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002619 DAG.getIntPtrConstant(4));
Dale Johannesenca57b842009-02-02 23:46:53 +00002620 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002621 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002622
Dale Johannesenca57b842009-02-02 23:46:53 +00002623 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002624 break;
2625 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002626 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002627 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002628
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002629 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002630 case Legal: {
2631 Tmp3 = LegalizeOp(ST->getValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00002632 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002633 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002634
Duncan Sands83ec4b62008-06-06 12:08:01 +00002635 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002636 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2637 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002638 case TargetLowering::Legal:
2639 // If this is an unaligned store and the target doesn't support it,
2640 // expand it.
2641 if (!TLI.allowsUnalignedMemoryAccesses()) {
2642 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002643 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002644 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002645 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002646 TLI);
2647 }
2648 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002649 case TargetLowering::Custom:
2650 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002651 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002652 break;
2653 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002654 assert(VT.isVector() && "Unknown legal promote case!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002655 Tmp3 = DAG.getNode(ISD::BIT_CONVERT, dl,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002656 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
Dale Johannesenca57b842009-02-02 23:46:53 +00002657 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002658 ST->getSrcValue(), SVOffset, isVolatile,
2659 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002660 break;
2661 }
2662 break;
2663 }
2664 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002665 if (!ST->getMemoryVT().isVector()) {
2666 // Truncate the value and store the result.
2667 Tmp3 = PromoteOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002668 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Mon P Wang0c397192008-10-30 08:01:45 +00002669 SVOffset, ST->getMemoryVT(),
2670 isVolatile, Alignment);
2671 break;
2672 }
2673 // Fall thru to expand for vector
2674 case Expand: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002675 unsigned IncrementSize = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002676 SDValue Lo, Hi;
Scott Michelfdc40a02009-02-17 22:15:04 +00002677
Evan Cheng8b2794a2006-10-13 21:14:26 +00002678 // If this is a vector type, then we have to calculate the increment as
2679 // the product of the element size in bytes, and the number of elements
2680 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002681 if (ST->getValue().getValueType().isVector()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002682 SDNode *InVal = ST->getValue().getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002683 int InIx = ST->getValue().getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002684 MVT InVT = InVal->getValueType(InIx);
2685 unsigned NumElems = InVT.getVectorNumElements();
2686 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002687
Dan Gohman7f321562007-06-25 16:23:39 +00002688 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002689 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002690 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002691 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002692 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002693 Tmp3 = LegalizeOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002694 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002695 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002696 Result = LegalizeOp(Result);
2697 break;
2698 } else if (NumElems == 1) {
2699 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002700 Tmp3 = ScalarizeVectorOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002701 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002702 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002703 // The scalarized value type may not be legal, e.g. it might require
2704 // promotion or expansion. Relegalize the scalar store.
2705 Result = LegalizeOp(Result);
2706 break;
2707 } else {
Mon P Wang0c397192008-10-30 08:01:45 +00002708 // Check if we have widen this node with another value
2709 std::map<SDValue, SDValue>::iterator I =
2710 WidenNodes.find(ST->getValue());
2711 if (I != WidenNodes.end()) {
2712 Result = StoreWidenVectorOp(ST, Tmp1, Tmp2);
2713 break;
2714 }
2715 else {
2716 SplitVectorOp(ST->getValue(), Lo, Hi);
2717 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
2718 EVT.getSizeInBits()/8;
2719 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002720 }
2721 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002722 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002723 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002724
Richard Pennington4b052dc2008-09-25 16:15:10 +00002725 if (Hi.getNode() && TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002726 std::swap(Lo, Hi);
2727 }
2728
Dale Johannesenca57b842009-02-02 23:46:53 +00002729 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002730 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002731
Gabor Greifba36cb52008-08-28 21:40:38 +00002732 if (Hi.getNode() == NULL) {
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002733 // Must be int <-> float one-to-one expansion.
2734 Result = Lo;
2735 break;
2736 }
2737
Dale Johannesenca57b842009-02-02 23:46:53 +00002738 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002739 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002740 assert(isTypeLegal(Tmp2.getValueType()) &&
2741 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002742 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002743 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenca57b842009-02-02 23:46:53 +00002744 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002745 SVOffset, isVolatile, Alignment);
Dale Johannesenca57b842009-02-02 23:46:53 +00002746 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002747 break;
Mon P Wang0c397192008-10-30 08:01:45 +00002748 } // case Expand
Evan Cheng8b2794a2006-10-13 21:14:26 +00002749 }
2750 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002751 switch (getTypeAction(ST->getValue().getValueType())) {
2752 case Legal:
2753 Tmp3 = LegalizeOp(ST->getValue());
2754 break;
2755 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002756 if (!ST->getValue().getValueType().isVector()) {
2757 // We can promote the value, the truncstore will still take care of it.
2758 Tmp3 = PromoteOp(ST->getValue());
2759 break;
2760 }
2761 // Vector case falls through to expand
Chris Lattnerddf89562008-01-17 19:59:44 +00002762 case Expand:
2763 // Just store the low part. This may become a non-trunc store, so make
2764 // sure to use getTruncStore, not UpdateNodeOperands below.
2765 ExpandOp(ST->getValue(), Tmp3, Tmp4);
Dale Johannesenca57b842009-02-02 23:46:53 +00002766 return DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattnerddf89562008-01-17 19:59:44 +00002767 SVOffset, MVT::i8, isVolatile, Alignment);
2768 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002769
Duncan Sands83ec4b62008-06-06 12:08:01 +00002770 MVT StVT = ST->getMemoryVT();
2771 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002772
Duncan Sands83ec4b62008-06-06 12:08:01 +00002773 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002774 // Promote to a byte-sized store with upper bits zero if not
2775 // storing an integral number of bytes. For example, promote
2776 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002777 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Dale Johannesenca57b842009-02-02 23:46:53 +00002778 Tmp3 = DAG.getZeroExtendInReg(Tmp3, dl, StVT);
2779 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002780 SVOffset, NVT, isVolatile, Alignment);
2781 } else if (StWidth & (StWidth - 1)) {
2782 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002783 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002784 "Unsupported truncstore!");
2785 unsigned RoundWidth = 1 << Log2_32(StWidth);
2786 assert(RoundWidth < StWidth);
2787 unsigned ExtraWidth = StWidth - RoundWidth;
2788 assert(ExtraWidth < RoundWidth);
2789 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2790 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002791 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2792 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002793 SDValue Lo, Hi;
Duncan Sands7e857202008-01-22 07:17:34 +00002794 unsigned IncrementSize;
2795
2796 if (TLI.isLittleEndian()) {
2797 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2798 // Store the bottom RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002799 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002800 SVOffset, RoundVT,
2801 isVolatile, Alignment);
2802
2803 // Store the remaining ExtraWidth bits.
2804 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002805 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00002806 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002807 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands7e857202008-01-22 07:17:34 +00002808 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002809 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002810 SVOffset + IncrementSize, ExtraVT, isVolatile,
2811 MinAlign(Alignment, IncrementSize));
2812 } else {
2813 // Big endian - avoid unaligned stores.
2814 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2815 // Store the top RoundWidth bits.
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(ExtraWidth, TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002818 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
2819 SVOffset, RoundVT, isVolatile, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00002820
2821 // Store the remaining ExtraWidth bits.
2822 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002823 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00002824 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002825 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002826 SVOffset + IncrementSize, ExtraVT, isVolatile,
2827 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002828 }
Duncan Sands7e857202008-01-22 07:17:34 +00002829
2830 // The order of the stores doesn't matter.
Dale Johannesenca57b842009-02-02 23:46:53 +00002831 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Duncan Sands7e857202008-01-22 07:17:34 +00002832 } else {
2833 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2834 Tmp2 != ST->getBasePtr())
2835 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2836 ST->getOffset());
2837
2838 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2839 default: assert(0 && "This action is not supported yet!");
2840 case TargetLowering::Legal:
2841 // If this is an unaligned store and the target doesn't support it,
2842 // expand it.
2843 if (!TLI.allowsUnalignedMemoryAccesses()) {
2844 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002845 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002846 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002847 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands7e857202008-01-22 07:17:34 +00002848 TLI);
2849 }
2850 break;
2851 case TargetLowering::Custom:
2852 Result = TLI.LowerOperation(Result, DAG);
2853 break;
2854 case Expand:
2855 // TRUNCSTORE:i16 i32 -> STORE i16
2856 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
Dale Johannesenca57b842009-02-02 23:46:53 +00002857 Tmp3 = DAG.getNode(ISD::TRUNCATE, dl, StVT, Tmp3);
2858 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
2859 SVOffset, isVolatile, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00002860 break;
2861 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002862 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002863 }
2864 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002865 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002866 case ISD::PCMARKER:
2867 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002868 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002869 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002870 case ISD::STACKSAVE:
2871 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002872 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2873 Tmp1 = Result.getValue(0);
2874 Tmp2 = Result.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002875
Chris Lattner140d53c2006-01-13 02:50:02 +00002876 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2877 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002878 case TargetLowering::Legal: break;
2879 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002880 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002881 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002882 Tmp1 = LegalizeOp(Tmp3);
2883 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002884 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002885 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002886 case TargetLowering::Expand:
Scott Michelfdc40a02009-02-17 22:15:04 +00002887 // Expand to CopyFromReg if the target set
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002888 // StackPointerRegisterToSaveRestore.
2889 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00002890 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), dl, SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002891 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002892 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002893 } else {
Dale Johannesene8d72302009-02-06 23:05:02 +00002894 Tmp1 = DAG.getUNDEF(Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002895 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002896 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002897 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002898 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002899
2900 // Since stacksave produce two values, make sure to remember that we
2901 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002902 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2903 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002904 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002905
Chris Lattner140d53c2006-01-13 02:50:02 +00002906 case ISD::STACKRESTORE:
2907 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2908 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002909 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00002910
Chris Lattner140d53c2006-01-13 02:50:02 +00002911 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2912 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002913 case TargetLowering::Legal: break;
2914 case TargetLowering::Custom:
2915 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002916 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002917 break;
2918 case TargetLowering::Expand:
Scott Michelfdc40a02009-02-17 22:15:04 +00002919 // Expand to CopyToReg if the target set
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002920 // StackPointerRegisterToSaveRestore.
2921 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00002922 Result = DAG.getCopyToReg(Tmp1, dl, SP, Tmp2);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002923 } else {
2924 Result = Tmp1;
2925 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002926 break;
2927 }
2928 break;
2929
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002930 case ISD::READCYCLECOUNTER:
2931 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002932 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002933 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2934 Node->getValueType(0))) {
2935 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002936 case TargetLowering::Legal:
2937 Tmp1 = Result.getValue(0);
2938 Tmp2 = Result.getValue(1);
2939 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002940 case TargetLowering::Custom:
2941 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002942 Tmp1 = LegalizeOp(Result.getValue(0));
2943 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002944 break;
2945 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002946
2947 // Since rdcc produce two values, make sure to remember that we legalized
2948 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002949 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2950 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002951 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002952
Chris Lattner2ee743f2005-01-14 22:08:15 +00002953 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002954 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2955 case Expand: assert(0 && "It's impossible to expand bools");
2956 case Legal:
2957 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2958 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002959 case Promote: {
Mon P Wang0c397192008-10-30 08:01:45 +00002960 assert(!Node->getOperand(0).getValueType().isVector() && "not possible");
Chris Lattner47e92232005-01-18 19:27:06 +00002961 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002962 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002963 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002964 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002965 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenca57b842009-02-02 23:46:53 +00002966 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002967 break;
2968 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002969 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002970 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002971 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002972
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002973 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00002974
Nate Begemanb942a3d2005-08-23 04:29:48 +00002975 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002976 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002977 case TargetLowering::Legal: break;
2978 case TargetLowering::Custom: {
2979 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002980 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002981 break;
2982 }
Nate Begeman9373a812005-08-10 20:51:12 +00002983 case TargetLowering::Expand:
2984 if (Tmp1.getOpcode() == ISD::SETCC) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002985 Result = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
Nate Begeman9373a812005-08-10 20:51:12 +00002986 Tmp2, Tmp3,
2987 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2988 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00002989 Result = DAG.getSelectCC(dl, Tmp1,
Nate Begeman9373a812005-08-10 20:51:12 +00002990 DAG.getConstant(0, Tmp1.getValueType()),
2991 Tmp2, Tmp3, ISD::SETNE);
2992 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002993 break;
2994 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002995 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002996 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2997 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002998 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002999 ExtOp = ISD::BIT_CONVERT;
3000 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003001 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003002 ExtOp = ISD::ANY_EXTEND;
3003 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003004 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00003005 ExtOp = ISD::FP_EXTEND;
3006 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003007 }
3008 // Promote each of the values to the new type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003009 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Tmp2);
3010 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Tmp3);
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003011 // Perform the larger operation, then round down.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00003012 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2, Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00003013 if (TruncOp != ISD::FP_ROUND)
Dale Johannesenca57b842009-02-02 23:46:53 +00003014 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003015 else
Dale Johannesenca57b842009-02-02 23:46:53 +00003016 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00003017 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003018 break;
3019 }
3020 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003021 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00003022 case ISD::SELECT_CC: {
3023 Tmp1 = Node->getOperand(0); // LHS
3024 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00003025 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
3026 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman475871a2008-07-27 21:46:04 +00003027 SDValue CC = Node->getOperand(4);
Scott Michelfdc40a02009-02-17 22:15:04 +00003028
3029 LegalizeSetCC(TLI.getSetCCResultType(Tmp1.getValueType()),
Dale Johannesenbb5da912009-02-02 20:41:04 +00003030 Tmp1, Tmp2, CC, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003031
Evan Cheng7f042682008-10-15 02:05:31 +00003032 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00003033 // the LHS is a legal SETCC itself. In this case, we need to compare
3034 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00003035 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003036 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3037 CC = DAG.getCondCode(ISD::SETNE);
3038 }
3039 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
3040
3041 // Everything is legal, see if we should expand this op or something.
3042 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
3043 default: assert(0 && "This action is not supported yet!");
3044 case TargetLowering::Legal: break;
3045 case TargetLowering::Custom:
3046 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003047 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00003048 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003049 }
3050 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00003051 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003052 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00003053 Tmp1 = Node->getOperand(0);
3054 Tmp2 = Node->getOperand(1);
3055 Tmp3 = Node->getOperand(2);
Dale Johannesenbb5da912009-02-02 20:41:04 +00003056 LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003057
3058 // If we had to Expand the SetCC operands into a SELECT node, then it may
3059 // not always be possible to return a true LHS & RHS. In this case, just
Nate Begeman750ac1b2006-02-01 07:19:44 +00003060 // return the value we legalized, returned in the LHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003061 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003062 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003063 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003064 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003065
Chris Lattner73e142f2006-01-30 22:43:50 +00003066 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003067 default: assert(0 && "Cannot handle this action for SETCC yet!");
3068 case TargetLowering::Custom:
3069 isCustom = true;
3070 // FALLTHROUGH.
3071 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00003072 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00003073 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00003074 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003075 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00003076 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003077 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003078 case TargetLowering::Promote: {
3079 // First step, figure out the appropriate operation to use.
3080 // Allow SETCC to not be supported for all legal data types
3081 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00003082 MVT NewInTy = Node->getOperand(0).getValueType();
3083 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00003084
3085 // Scan for the appropriate larger type to use.
3086 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003087 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00003088
Duncan Sands83ec4b62008-06-06 12:08:01 +00003089 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003090 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003091 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003092 "Fell off of the edge of the floating point world");
Scott Michelfdc40a02009-02-17 22:15:04 +00003093
Andrew Lenharthae355752005-11-30 17:12:26 +00003094 // If the target supports SETCC of this type, use it.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003095 if (TLI.isOperationLegalOrCustom(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00003096 break;
3097 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00003098 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00003099 assert(0 && "Cannot promote Legal Integer SETCC yet");
3100 else {
Dale Johannesenca57b842009-02-02 23:46:53 +00003101 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp1);
3102 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp2);
Andrew Lenharthae355752005-11-30 17:12:26 +00003103 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003104 Tmp1 = LegalizeOp(Tmp1);
3105 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00003106 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00003107 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00003108 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003109 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003110 case TargetLowering::Expand:
3111 // Expand a setcc node into a select_cc of the same condition, lhs, and
3112 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003113 MVT VT = Node->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003114 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Nate Begemanb942a3d2005-08-23 04:29:48 +00003115 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00003116 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00003117 break;
3118 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003119 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003120 case ISD::VSETCC: {
3121 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3122 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman475871a2008-07-27 21:46:04 +00003123 SDValue CC = Node->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00003124
Nate Begemanb43e9c12008-05-12 19:40:03 +00003125 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
3126
3127 // Everything is legal, see if we should expand this op or something.
3128 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
3129 default: assert(0 && "This action is not supported yet!");
3130 case TargetLowering::Legal: break;
3131 case TargetLowering::Custom:
3132 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003133 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003134 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003135 case TargetLowering::Expand: {
3136 // Unroll into a nasty set of scalar code for now.
3137 MVT VT = Node->getValueType(0);
3138 unsigned NumElems = VT.getVectorNumElements();
3139 MVT EltVT = VT.getVectorElementType();
3140 MVT TmpEltVT = Tmp1.getValueType().getVectorElementType();
3141 SmallVector<SDValue, 8> Ops(NumElems);
3142 for (unsigned i = 0; i < NumElems; ++i) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003143 SDValue In1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT,
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003144 Tmp1, DAG.getIntPtrConstant(i));
Dale Johannesenca57b842009-02-02 23:46:53 +00003145 Ops[i] = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(TmpEltVT),
3146 In1, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3147 TmpEltVT, Tmp2,
3148 DAG.getIntPtrConstant(i)),
Mon P Wang84aff842008-12-17 08:49:47 +00003149 CC);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00003150 Ops[i] = DAG.getNode(ISD::SELECT, dl, EltVT, Ops[i],
3151 DAG.getConstant(APInt::getAllOnesValue
3152 (EltVT.getSizeInBits()), EltVT),
3153 DAG.getConstant(0, EltVT));
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003154 }
Evan Chenga87008d2009-02-25 22:49:59 +00003155 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElems);
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003156 break;
3157 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00003158 }
3159 break;
3160 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00003161
Chris Lattner5b359c62005-04-02 04:00:59 +00003162 case ISD::SHL_PARTS:
3163 case ISD::SRA_PARTS:
3164 case ISD::SRL_PARTS: {
Dan Gohman475871a2008-07-27 21:46:04 +00003165 SmallVector<SDValue, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00003166 bool Changed = false;
Duncan Sands92abc622009-01-31 15:50:11 +00003167 unsigned N = Node->getNumOperands();
3168 for (unsigned i = 0; i + 1 < N; ++i) {
Chris Lattner84f67882005-01-20 18:52:28 +00003169 Ops.push_back(LegalizeOp(Node->getOperand(i)));
3170 Changed |= Ops.back() != Node->getOperand(i);
3171 }
Duncan Sands92abc622009-01-31 15:50:11 +00003172 Ops.push_back(LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(N-1))));
3173 Changed |= Ops.back() != Node->getOperand(N-1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003174 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003175 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00003176
Evan Cheng05a2d562006-01-09 18:31:59 +00003177 switch (TLI.getOperationAction(Node->getOpcode(),
3178 Node->getValueType(0))) {
3179 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003180 case TargetLowering::Legal: break;
3181 case TargetLowering::Custom:
3182 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003183 if (Tmp1.getNode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003184 SDValue Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00003185 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003186 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman475871a2008-07-27 21:46:04 +00003187 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003188 if (i == Op.getResNo())
Evan Cheng12f22742006-01-19 04:54:52 +00003189 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00003190 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003191 assert(RetVal.getNode() && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00003192 return RetVal;
3193 }
Evan Cheng05a2d562006-01-09 18:31:59 +00003194 break;
3195 }
3196
Chris Lattner2c8086f2005-04-02 05:00:07 +00003197 // Since these produce multiple values, make sure to remember that we
3198 // legalized all of them.
3199 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00003200 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00003201 return Result.getValue(Op.getResNo());
Chris Lattner84f67882005-01-20 18:52:28 +00003202 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003203
3204 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00003205 case ISD::ADD:
3206 case ISD::SUB:
3207 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00003208 case ISD::MULHS:
3209 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003210 case ISD::UDIV:
3211 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003212 case ISD::AND:
3213 case ISD::OR:
3214 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00003215 case ISD::SHL:
3216 case ISD::SRL:
3217 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00003218 case ISD::FADD:
3219 case ISD::FSUB:
3220 case ISD::FMUL:
3221 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00003222 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003223 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003224 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003225
3226 if ((Node->getOpcode() == ISD::SHL ||
3227 Node->getOpcode() == ISD::SRL ||
3228 Node->getOpcode() == ISD::SRA) &&
Duncan Sands92abc622009-01-31 15:50:11 +00003229 !Node->getValueType(0).isVector())
3230 Tmp2 = DAG.getShiftAmountOperand(Tmp2);
3231
3232 switch (getTypeAction(Tmp2.getValueType())) {
3233 case Expand: assert(0 && "Not possible");
3234 case Legal:
3235 Tmp2 = LegalizeOp(Tmp2); // Legalize the RHS.
3236 break;
3237 case Promote:
3238 Tmp2 = PromoteOp(Tmp2); // Promote the RHS.
3239 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003240 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003241
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003242 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Mon P Wangaeb06d22008-11-10 04:46:22 +00003243
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003244 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003245 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00003246 case TargetLowering::Legal: break;
3247 case TargetLowering::Custom:
3248 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003249 if (Tmp1.getNode()) {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003250 Result = Tmp1;
3251 break;
Nate Begeman24dc3462008-07-29 19:07:27 +00003252 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003253 // Fall through if the custom lower can't deal with the operation
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003254 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003255 MVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003256
Dan Gohman525178c2007-10-08 18:33:35 +00003257 // See if multiply or divide can be lowered using two-result operations.
3258 SDVTList VTs = DAG.getVTList(VT, VT);
3259 if (Node->getOpcode() == ISD::MUL) {
3260 // We just need the low half of the multiply; try both the signed
3261 // and unsigned forms. If the target supports both SMUL_LOHI and
3262 // UMUL_LOHI, form a preference by checking which forms of plain
3263 // MULH it supports.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003264 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3265 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3266 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3267 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
Dan Gohman525178c2007-10-08 18:33:35 +00003268 unsigned OpToUse = 0;
3269 if (HasSMUL_LOHI && !HasMULHS) {
3270 OpToUse = ISD::SMUL_LOHI;
3271 } else if (HasUMUL_LOHI && !HasMULHU) {
3272 OpToUse = ISD::UMUL_LOHI;
3273 } else if (HasSMUL_LOHI) {
3274 OpToUse = ISD::SMUL_LOHI;
3275 } else if (HasUMUL_LOHI) {
3276 OpToUse = ISD::UMUL_LOHI;
3277 }
3278 if (OpToUse) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003279 Result = SDValue(DAG.getNode(OpToUse, dl, VTs, Tmp1, Tmp2).getNode(),
3280 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003281 break;
3282 }
3283 }
3284 if (Node->getOpcode() == ISD::MULHS &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003285 TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003286 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003287 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003288 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003289 break;
3290 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003291 if (Node->getOpcode() == ISD::MULHU &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003292 TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003293 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, dl,
3294 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003295 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003296 break;
3297 }
3298 if (Node->getOpcode() == ISD::SDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003299 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003300 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003301 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003302 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003303 break;
3304 }
3305 if (Node->getOpcode() == ISD::UDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003306 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003307 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3308 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003309 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003310 break;
3311 }
Mon P Wang87c8a8f2008-12-18 20:03:17 +00003312
Dan Gohman82669522007-10-11 23:57:53 +00003313 // Check to see if we have a libcall for this operator.
3314 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3315 bool isSigned = false;
3316 switch (Node->getOpcode()) {
3317 case ISD::UDIV:
3318 case ISD::SDIV:
3319 if (VT == MVT::i32) {
3320 LC = Node->getOpcode() == ISD::UDIV
Mon P Wang0c397192008-10-30 08:01:45 +00003321 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003322 isSigned = Node->getOpcode() == ISD::SDIV;
3323 }
3324 break;
Chris Lattner31d71612008-10-04 21:27:46 +00003325 case ISD::MUL:
3326 if (VT == MVT::i32)
3327 LC = RTLIB::MUL_I32;
Nate Begeman9b994852009-01-24 22:12:48 +00003328 else if (VT == MVT::i64)
Scott Michel845145f2008-12-29 03:21:37 +00003329 LC = RTLIB::MUL_I64;
Chris Lattner31d71612008-10-04 21:27:46 +00003330 break;
Dan Gohman82669522007-10-11 23:57:53 +00003331 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003332 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3333 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003334 break;
Scott Micheld1e8d9c2009-01-21 04:58:48 +00003335 case ISD::FDIV:
3336 LC = GetFPLibCall(VT, RTLIB::DIV_F32, RTLIB::DIV_F64, RTLIB::DIV_F80,
3337 RTLIB::DIV_PPCF128);
3338 break;
Dan Gohman82669522007-10-11 23:57:53 +00003339 default: break;
3340 }
3341 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +00003342 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003343 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003344 break;
3345 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003346
Duncan Sands83ec4b62008-06-06 12:08:01 +00003347 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003348 "Cannot expand this binary operator!");
3349 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003350 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003351 break;
3352 }
Evan Chengcc987612006-04-12 21:20:24 +00003353 case TargetLowering::Promote: {
3354 switch (Node->getOpcode()) {
3355 default: assert(0 && "Do not know how to promote this BinOp!");
3356 case ISD::AND:
3357 case ISD::OR:
3358 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003359 MVT OVT = Node->getValueType(0);
3360 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3361 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003362 // Bit convert each of the values to the new type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003363 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
3364 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
3365 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Evan Chengcc987612006-04-12 21:20:24 +00003366 // Bit convert the result back the original type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003367 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Evan Chengcc987612006-04-12 21:20:24 +00003368 break;
3369 }
3370 }
3371 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003372 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003373 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003374
Dan Gohmane14ea862007-10-05 14:17:22 +00003375 case ISD::SMUL_LOHI:
3376 case ISD::UMUL_LOHI:
3377 case ISD::SDIVREM:
3378 case ISD::UDIVREM:
3379 // These nodes will only be produced by target-specific lowering, so
3380 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003381 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003382 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003383
3384 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3385 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3386 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003387 break;
3388
Chris Lattnera09f8482006-03-05 05:09:38 +00003389 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3390 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3391 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3392 case Expand: assert(0 && "Not possible");
3393 case Legal:
3394 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3395 break;
3396 case Promote:
3397 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3398 break;
3399 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003400
Chris Lattnera09f8482006-03-05 05:09:38 +00003401 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00003402
Chris Lattnera09f8482006-03-05 05:09:38 +00003403 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3404 default: assert(0 && "Operation not supported");
3405 case TargetLowering::Custom:
3406 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003407 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003408 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003409 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003410 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003411 // If this target supports fabs/fneg natively and select is cheap,
3412 // do this efficiently.
3413 if (!TLI.isSelectExpensive() &&
3414 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3415 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003416 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003417 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003418 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003419 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003420 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dale Johannesenca57b842009-02-02 23:46:53 +00003421 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, IVT, Tmp2);
3422 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(IVT),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003423 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3424 // Get the absolute value of the result.
Dale Johannesenca57b842009-02-02 23:46:53 +00003425 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
Chris Lattner8f4191d2006-03-13 06:08:38 +00003426 // Select between the nabs and abs value based on the sign bit of
3427 // the input.
Dale Johannesenca57b842009-02-02 23:46:53 +00003428 Result = DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
Scott Michelfdc40a02009-02-17 22:15:04 +00003429 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003430 AbsVal),
3431 AbsVal);
3432 Result = LegalizeOp(Result);
3433 break;
3434 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003435
Chris Lattner8f4191d2006-03-13 06:08:38 +00003436 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003437 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003438 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3439 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
Dale Johannesenca57b842009-02-02 23:46:53 +00003440 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0), Result);
Evan Cheng912095b2007-01-04 21:56:39 +00003441 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003442 break;
3443 }
Evan Cheng912095b2007-01-04 21:56:39 +00003444 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003445 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003446
Nate Begeman551bf3f2006-02-17 05:43:56 +00003447 case ISD::ADDC:
3448 case ISD::SUBC:
3449 Tmp1 = LegalizeOp(Node->getOperand(0));
3450 Tmp2 = LegalizeOp(Node->getOperand(1));
3451 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003452 Tmp3 = Result.getValue(0);
3453 Tmp4 = Result.getValue(1);
3454
3455 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3456 default: assert(0 && "This action is not supported yet!");
3457 case TargetLowering::Legal:
3458 break;
3459 case TargetLowering::Custom:
3460 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3461 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003462 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003463 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3464 }
3465 break;
3466 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003467 // Since this produces two values, make sure to remember that we legalized
3468 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003469 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3470 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3471 return Op.getResNo() ? Tmp4 : Tmp3;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003472
Nate Begeman551bf3f2006-02-17 05:43:56 +00003473 case ISD::ADDE:
3474 case ISD::SUBE:
3475 Tmp1 = LegalizeOp(Node->getOperand(0));
3476 Tmp2 = LegalizeOp(Node->getOperand(1));
3477 Tmp3 = LegalizeOp(Node->getOperand(2));
3478 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003479 Tmp3 = Result.getValue(0);
3480 Tmp4 = Result.getValue(1);
3481
3482 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3483 default: assert(0 && "This action is not supported yet!");
3484 case TargetLowering::Legal:
3485 break;
3486 case TargetLowering::Custom:
3487 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3488 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003489 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003490 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3491 }
3492 break;
3493 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003494 // Since this produces two values, make sure to remember that we legalized
3495 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003496 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3497 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3498 return Op.getResNo() ? Tmp4 : Tmp3;
Scott Michelfdc40a02009-02-17 22:15:04 +00003499
Nate Begeman419f8b62005-10-18 00:27:41 +00003500 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003501 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003502 // TODO: handle the case where the Lo and Hi operands are not of legal type
3503 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3504 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3505 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003506 case TargetLowering::Promote:
3507 case TargetLowering::Custom:
3508 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003509 case TargetLowering::Legal:
3510 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
Dale Johannesenca57b842009-02-02 23:46:53 +00003511 Result = DAG.getNode(ISD::BUILD_PAIR, dl, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003512 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003513 case TargetLowering::Expand:
Dale Johannesenca57b842009-02-02 23:46:53 +00003514 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Tmp1);
3515 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Tmp2);
3516 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003517 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003518 TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00003519 Result = DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003520 break;
3521 }
3522 break;
3523 }
3524
Nate Begemanc105e192005-04-06 00:23:54 +00003525 case ISD::UREM:
3526 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003527 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003528 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3529 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003530
Nate Begemanc105e192005-04-06 00:23:54 +00003531 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003532 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3533 case TargetLowering::Custom:
3534 isCustom = true;
3535 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003536 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003537 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003538 if (isCustom) {
3539 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003540 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003541 }
Nate Begemanc105e192005-04-06 00:23:54 +00003542 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003543 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003544 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003545 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003546 MVT VT = Node->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003547
Dan Gohman525178c2007-10-08 18:33:35 +00003548 // See if remainder can be lowered using two-result operations.
3549 SDVTList VTs = DAG.getVTList(VT, VT);
3550 if (Node->getOpcode() == ISD::SREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003551 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003552 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003553 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003554 break;
3555 }
3556 if (Node->getOpcode() == ISD::UREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003557 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003558 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3559 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003560 break;
3561 }
3562
Duncan Sands83ec4b62008-06-06 12:08:01 +00003563 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003564 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003565 TargetLowering::Legal) {
3566 // X % Y -> X-X/Y*Y
Dale Johannesenca57b842009-02-02 23:46:53 +00003567 Result = DAG.getNode(DivOpc, dl, VT, Tmp1, Tmp2);
3568 Result = DAG.getNode(ISD::MUL, dl, VT, Result, Tmp2);
3569 Result = DAG.getNode(ISD::SUB, dl, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003570 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003571 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003572 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003573 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003574 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003575 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3576 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman475871a2008-07-27 21:46:04 +00003577 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003578 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003579 }
Dan Gohman0d974262007-11-06 22:11:54 +00003580 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003581 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003582 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003583 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003584 Result = LegalizeOp(UnrollVectorOp(Op));
3585 } else {
3586 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003587 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3588 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003589 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003590 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003591 }
Nate Begemanc105e192005-04-06 00:23:54 +00003592 }
3593 break;
3594 }
Dan Gohman525178c2007-10-08 18:33:35 +00003595 }
Nate Begemanc105e192005-04-06 00:23:54 +00003596 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003597 case ISD::VAARG: {
3598 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3599 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3600
Duncan Sands83ec4b62008-06-06 12:08:01 +00003601 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003602 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3603 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003604 case TargetLowering::Custom:
3605 isCustom = true;
3606 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003607 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003608 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3609 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003610 Tmp1 = Result.getValue(1);
3611
3612 if (isCustom) {
3613 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003614 if (Tmp2.getNode()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003615 Result = LegalizeOp(Tmp2);
3616 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3617 }
3618 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003619 break;
3620 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003621 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenca57b842009-02-02 23:46:53 +00003622 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003623 // Increment the pointer, VAList, to the next vaarg
Dale Johannesenca57b842009-02-02 23:46:53 +00003624 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00003625 DAG.getConstant(TLI.getTargetData()->
3626 getTypePaddedSize(VT.getTypeForMVT()),
3627 TLI.getPointerTy()));
Nate Begemanacc398c2006-01-25 18:21:52 +00003628 // Store the incremented VAList to the legalized pointer
Dale Johannesenca57b842009-02-02 23:46:53 +00003629 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003630 // Load the actual argument out of the pointer VAList
Dale Johannesenca57b842009-02-02 23:46:53 +00003631 Result = DAG.getLoad(VT, dl, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003632 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003633 Result = LegalizeOp(Result);
3634 break;
3635 }
3636 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003637 // Since VAARG produces two values, make sure to remember that we
Nate Begemanacc398c2006-01-25 18:21:52 +00003638 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003639 AddLegalizedOperand(SDValue(Node, 0), Result);
3640 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003641 return Op.getResNo() ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003642 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003643
3644 case ISD::VACOPY:
Nate Begemanacc398c2006-01-25 18:21:52 +00003645 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3646 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3647 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3648
3649 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3650 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003651 case TargetLowering::Custom:
3652 isCustom = true;
3653 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003654 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003655 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3656 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003657 if (isCustom) {
3658 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003659 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003660 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003661 break;
3662 case TargetLowering::Expand:
3663 // This defaults to loading a pointer from the input and storing it to the
3664 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003665 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3666 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dale Johannesenca57b842009-02-02 23:46:53 +00003667 Tmp4 = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp3, VS, 0);
3668 Result = DAG.getStore(Tmp4.getValue(1), dl, Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003669 break;
3670 }
3671 break;
3672
Scott Michelfdc40a02009-02-17 22:15:04 +00003673 case ISD::VAEND:
Nate Begemanacc398c2006-01-25 18:21:52 +00003674 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3675 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3676
3677 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3678 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003679 case TargetLowering::Custom:
3680 isCustom = true;
3681 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003682 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003683 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003684 if (isCustom) {
3685 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003686 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003687 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003688 break;
3689 case TargetLowering::Expand:
3690 Result = Tmp1; // Default to a no-op, return the chain
3691 break;
3692 }
3693 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003694
3695 case ISD::VASTART:
Nate Begemanacc398c2006-01-25 18:21:52 +00003696 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3697 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3698
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003699 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00003700
Nate Begemanacc398c2006-01-25 18:21:52 +00003701 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3702 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003703 case TargetLowering::Legal: break;
3704 case TargetLowering::Custom:
3705 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003706 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003707 break;
3708 }
3709 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003710
Nate Begeman35ef9132006-01-11 21:21:00 +00003711 case ISD::ROTL:
3712 case ISD::ROTR:
3713 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003714 Tmp2 = LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(1))); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003715 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003716 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3717 default:
3718 assert(0 && "ROTL/ROTR legalize operation not supported");
3719 break;
3720 case TargetLowering::Legal:
3721 break;
3722 case TargetLowering::Custom:
3723 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003724 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelc9dc1142007-04-02 21:36:32 +00003725 break;
3726 case TargetLowering::Promote:
3727 assert(0 && "Do not know how to promote ROTL/ROTR");
3728 break;
3729 case TargetLowering::Expand:
3730 assert(0 && "Do not know how to expand ROTL/ROTR");
3731 break;
3732 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003733 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003734
Nate Begemand88fc032006-01-14 03:14:10 +00003735 case ISD::BSWAP:
3736 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3737 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003738 case TargetLowering::Custom:
3739 assert(0 && "Cannot custom legalize this yet!");
3740 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003741 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003742 break;
3743 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003744 MVT OVT = Tmp1.getValueType();
3745 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3746 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003747
Dale Johannesenca57b842009-02-02 23:46:53 +00003748 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
3749 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3750 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Chris Lattner456a93a2006-01-28 07:39:30 +00003751 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3752 break;
3753 }
3754 case TargetLowering::Expand:
Dale Johannesen8a782a22009-02-02 22:12:50 +00003755 Result = ExpandBSWAP(Tmp1, dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00003756 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003757 }
3758 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003759
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003760 case ISD::CTPOP:
3761 case ISD::CTTZ:
3762 case ISD::CTLZ:
3763 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3764 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003765 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003766 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003767 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003768 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003769 TargetLowering::Custom) {
3770 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003771 if (Tmp1.getNode()) {
Scott Michel335f4f72007-08-02 02:22:46 +00003772 Result = Tmp1;
3773 }
Scott Michel910b66d2007-07-30 21:00:31 +00003774 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003775 break;
3776 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003777 MVT OVT = Tmp1.getValueType();
3778 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003779
3780 // Zero extend the argument.
Dale Johannesenca57b842009-02-02 23:46:53 +00003781 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003782 // Perform the larger operation, then subtract if needed.
Dale Johannesenca57b842009-02-02 23:46:53 +00003783 Tmp1 = DAG.getNode(Node->getOpcode(), dl, Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003784 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003785 case ISD::CTPOP:
3786 Result = Tmp1;
3787 break;
3788 case ISD::CTTZ:
3789 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesenca57b842009-02-02 23:46:53 +00003790 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
3791 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003792 ISD::SETEQ);
Dale Johannesenca57b842009-02-02 23:46:53 +00003793 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003794 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003795 break;
3796 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003797 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesenca57b842009-02-02 23:46:53 +00003798 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003799 DAG.getConstant(NVT.getSizeInBits() -
3800 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003801 break;
3802 }
3803 break;
3804 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003805 case TargetLowering::Expand:
Dale Johannesen8a782a22009-02-02 22:12:50 +00003806 Result = ExpandBitCount(Node->getOpcode(), Tmp1, dl);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003807 break;
3808 }
3809 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003810
Chris Lattner2c8086f2005-04-02 05:00:07 +00003811 // Unary operators
3812 case ISD::FABS:
3813 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003814 case ISD::FSQRT:
3815 case ISD::FSIN:
3816 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003817 case ISD::FLOG:
3818 case ISD::FLOG2:
3819 case ISD::FLOG10:
3820 case ISD::FEXP:
3821 case ISD::FEXP2:
Dan Gohman509e84f2008-08-21 17:55:02 +00003822 case ISD::FTRUNC:
3823 case ISD::FFLOOR:
3824 case ISD::FCEIL:
3825 case ISD::FRINT:
3826 case ISD::FNEARBYINT:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003827 Tmp1 = LegalizeOp(Node->getOperand(0));
3828 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003829 case TargetLowering::Promote:
3830 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003831 isCustom = true;
3832 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003833 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003834 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003835 if (isCustom) {
3836 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003837 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng59ad7812006-01-31 18:14:25 +00003838 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003839 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003840 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003841 switch (Node->getOpcode()) {
3842 default: assert(0 && "Unreachable!");
3843 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003844 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3845 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00003846 Result = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003847 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003848 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003849 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003850 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003851 Tmp2 = DAG.getConstantFP(0.0, VT);
Dale Johannesenca57b842009-02-02 23:46:53 +00003852 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00003853 Tmp1, Tmp2, ISD::SETUGT);
Dale Johannesenca57b842009-02-02 23:46:53 +00003854 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3855 Result = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003856 break;
3857 }
Evan Cheng9d24ac52008-09-09 23:35:53 +00003858 case ISD::FSQRT:
3859 case ISD::FSIN:
Scott Michelfdc40a02009-02-17 22:15:04 +00003860 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003861 case ISD::FLOG:
3862 case ISD::FLOG2:
3863 case ISD::FLOG10:
3864 case ISD::FEXP:
3865 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003866 case ISD::FTRUNC:
3867 case ISD::FFLOOR:
3868 case ISD::FCEIL:
3869 case ISD::FRINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00003870 case ISD::FNEARBYINT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003871 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003872
3873 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003874 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003875 Result = LegalizeOp(UnrollVectorOp(Op));
3876 break;
3877 }
3878
Evan Cheng56966222007-01-12 02:11:51 +00003879 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003880 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003881 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003882 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3883 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003884 break;
3885 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003886 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3887 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003888 break;
3889 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003890 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3891 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003892 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003893 case ISD::FLOG:
3894 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3895 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3896 break;
3897 case ISD::FLOG2:
3898 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3899 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3900 break;
3901 case ISD::FLOG10:
3902 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3903 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3904 break;
3905 case ISD::FEXP:
3906 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3907 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3908 break;
3909 case ISD::FEXP2:
3910 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3911 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3912 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003913 case ISD::FTRUNC:
3914 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3915 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3916 break;
3917 case ISD::FFLOOR:
3918 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3919 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3920 break;
3921 case ISD::FCEIL:
3922 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3923 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3924 break;
3925 case ISD::FRINT:
3926 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3927 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3928 break;
3929 case ISD::FNEARBYINT:
3930 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3931 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3932 break;
Evan Cheng9d24ac52008-09-09 23:35:53 +00003933 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003934 default: assert(0 && "Unreachable!");
3935 }
Dan Gohman475871a2008-07-27 21:46:04 +00003936 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003937 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003938 break;
3939 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003940 }
3941 break;
3942 }
3943 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003944 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003945 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003946
3947 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003948 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003949 Result = LegalizeOp(UnrollVectorOp(Op));
3950 break;
3951 }
3952
3953 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003954 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3955 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003956 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003957 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003958 break;
3959 }
Chris Lattner35481892005-12-23 00:16:34 +00003960 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003961 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003962 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00003963 Node->getValueType(0), dl);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003964 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003965 // The input has to be a vector type, we have to either scalarize it, pack
3966 // it, or convert it based on whether the input vector type is legal.
Gabor Greifba36cb52008-08-28 21:40:38 +00003967 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00003968 int InIx = Node->getOperand(0).getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003969 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3970 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003971
Dan Gohman7f321562007-06-25 16:23:39 +00003972 // Figure out if there is a simple type corresponding to this Vector
3973 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003974 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003975 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003976 // Turn this into a bit convert of the vector input.
Scott Michelfdc40a02009-02-17 22:15:04 +00003977 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohman7f321562007-06-25 16:23:39 +00003978 LegalizeOp(Node->getOperand(0)));
3979 break;
3980 } else if (NumElems == 1) {
3981 // Turn this into a bit convert of the scalar input.
Scott Michelfdc40a02009-02-17 22:15:04 +00003982 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohman7f321562007-06-25 16:23:39 +00003983 ScalarizeVectorOp(Node->getOperand(0)));
3984 break;
3985 } else {
3986 // FIXME: UNIMP! Store then reload
3987 assert(0 && "Cast from unsupported vector type not implemented yet!");
3988 }
Chris Lattner67993f72006-01-23 07:30:46 +00003989 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003990 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3991 Node->getOperand(0).getValueType())) {
3992 default: assert(0 && "Unknown operation action!");
3993 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003994 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00003995 Node->getValueType(0), dl);
Chris Lattner35481892005-12-23 00:16:34 +00003996 break;
3997 case TargetLowering::Legal:
3998 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003999 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00004000 break;
4001 }
4002 }
4003 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004004 case ISD::CONVERT_RNDSAT: {
4005 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4006 switch (CvtCode) {
4007 default: assert(0 && "Unknown cvt code!");
4008 case ISD::CVT_SF:
4009 case ISD::CVT_UF:
Mon P Wang77cdf302008-11-10 20:54:11 +00004010 case ISD::CVT_FF:
Mon P Wang1cd46bb2008-12-09 07:27:39 +00004011 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004012 case ISD::CVT_FS:
4013 case ISD::CVT_FU:
4014 case ISD::CVT_SS:
4015 case ISD::CVT_SU:
4016 case ISD::CVT_US:
4017 case ISD::CVT_UU: {
4018 SDValue DTyOp = Node->getOperand(1);
4019 SDValue STyOp = Node->getOperand(2);
4020 SDValue RndOp = Node->getOperand(3);
4021 SDValue SatOp = Node->getOperand(4);
4022 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4023 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4024 case Legal:
4025 Tmp1 = LegalizeOp(Node->getOperand(0));
4026 Result = DAG.UpdateNodeOperands(Result, Tmp1, DTyOp, STyOp,
4027 RndOp, SatOp);
4028 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4029 TargetLowering::Custom) {
4030 Tmp1 = TLI.LowerOperation(Result, DAG);
4031 if (Tmp1.getNode()) Result = Tmp1;
4032 }
4033 break;
4034 case Promote:
4035 Result = PromoteOp(Node->getOperand(0));
4036 // For FP, make Op1 a i32
Scott Michelfdc40a02009-02-17 22:15:04 +00004037
Dale Johannesenc460ae92009-02-04 00:13:36 +00004038 Result = DAG.getConvertRndSat(Op.getValueType(), dl, Result,
Mon P Wang77cdf302008-11-10 20:54:11 +00004039 DTyOp, STyOp, RndOp, SatOp, CvtCode);
4040 break;
4041 }
4042 break;
4043 }
4044 } // end switch CvtCode
4045 break;
4046 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00004047 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00004048 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004049 case ISD::UINT_TO_FP: {
4050 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman7f8613e2008-08-14 20:04:46 +00004051 Result = LegalizeINT_TO_FP(Result, isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00004052 Node->getValueType(0), Node->getOperand(0), dl);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004053 break;
4054 }
4055 case ISD::TRUNCATE:
4056 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4057 case Legal:
4058 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel546d7b52008-12-02 19:55:08 +00004059 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
4060 default: assert(0 && "Unknown TRUNCATE legalization operation action!");
4061 case TargetLowering::Custom:
Mon P Wangf67303d2008-12-11 00:44:22 +00004062 isCustom = true;
4063 // FALLTHROUGH
Scott Michel546d7b52008-12-02 19:55:08 +00004064 case TargetLowering::Legal:
Mon P Wangf67303d2008-12-11 00:44:22 +00004065 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4066 if (isCustom) {
4067 Tmp1 = TLI.LowerOperation(Result, DAG);
4068 if (Tmp1.getNode()) Result = Tmp1;
4069 }
4070 break;
Mon P Wang9e5ecb82008-12-12 01:25:51 +00004071 case TargetLowering::Expand:
4072 assert(Result.getValueType().isVector() && "must be vector type");
4073 // Unroll the truncate. We should do better.
4074 Result = LegalizeOp(UnrollVectorOp(Result));
Tilmann Schellerb0a5cdd2008-12-02 12:12:25 +00004075 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004076 break;
4077 case Expand:
4078 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4079
4080 // Since the result is legal, we should just be able to truncate the low
4081 // part of the source.
Dale Johannesenca57b842009-02-02 23:46:53 +00004082 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004083 break;
4084 case Promote:
4085 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004086 Result = DAG.getNode(ISD::TRUNCATE, dl, Op.getValueType(), Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004087 break;
4088 }
4089 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004090
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004091 case ISD::FP_TO_SINT:
4092 case ISD::FP_TO_UINT:
4093 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4094 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00004095 Tmp1 = LegalizeOp(Node->getOperand(0));
4096
Chris Lattner1618beb2005-07-29 00:11:56 +00004097 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
4098 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004099 case TargetLowering::Custom:
4100 isCustom = true;
4101 // FALLTHROUGH
4102 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004103 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004104 if (isCustom) {
4105 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004106 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00004107 }
4108 break;
4109 case TargetLowering::Promote:
4110 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00004111 Node->getOpcode() == ISD::FP_TO_SINT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004112 dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00004113 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00004114 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00004115 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman475871a2008-07-27 21:46:04 +00004116 SDValue True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004117 MVT VT = Node->getOperand(0).getValueType();
4118 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00004119 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00004120 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
4121 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004122 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00004123 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004124 Tmp3 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
Dale Johannesenaf435272009-02-02 19:03:57 +00004125 Node->getOperand(0),
Duncan Sands5480c042009-01-01 15:52:00 +00004126 Tmp2, ISD::SETLT);
Dale Johannesenaf435272009-02-02 19:03:57 +00004127 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
4128 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004129 DAG.getNode(ISD::FSUB, dl, VT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004130 Node->getOperand(0), Tmp2));
4131 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004132 DAG.getConstant(x, NVT));
Dale Johannesenaf435272009-02-02 19:03:57 +00004133 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp3, True, False);
Chris Lattner456a93a2006-01-28 07:39:30 +00004134 break;
Nate Begemand2558e32005-08-14 01:20:53 +00004135 } else {
4136 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
4137 }
4138 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00004139 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004140 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00004141 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004142 MVT VT = Op.getValueType();
4143 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004144 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004145 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004146 if (Node->getOpcode() == ISD::FP_TO_SINT) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004147 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, MVT::ppcf128,
Chris Lattner0bd48932008-01-17 07:00:52 +00004148 Node->getOperand(0), DAG.getValueType(MVT::f64));
Scott Michelfdc40a02009-02-17 22:15:04 +00004149 Result = DAG.getNode(ISD::FP_ROUND, dl, MVT::f64, Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00004150 DAG.getIntPtrConstant(1));
Dale Johannesenaf435272009-02-02 19:03:57 +00004151 Result = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004152 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004153 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
4154 APFloat apf = APFloat(APInt(128, 2, TwoE31));
4155 Tmp2 = DAG.getConstantFP(apf, OVT);
4156 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
4157 // FIXME: generated code sucks.
Scott Michelfdc40a02009-02-17 22:15:04 +00004158 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Node->getOperand(0),
Dale Johannesenaf435272009-02-02 19:03:57 +00004159 Tmp2,
4160 DAG.getNode(ISD::ADD, dl, MVT::i32,
4161 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
4162 DAG.getNode(ISD::FSUB, dl, OVT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004163 Node->getOperand(0), Tmp2)),
4164 DAG.getConstant(0x80000000, MVT::i32)),
Scott Michelfdc40a02009-02-17 22:15:04 +00004165 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004166 Node->getOperand(0)),
4167 DAG.getCondCode(ISD::SETGE));
4168 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004169 break;
4170 }
Dan Gohmana2e94852008-03-10 23:03:31 +00004171 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsb2ff8852008-07-17 02:36:29 +00004172 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
4173 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
4174 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman475871a2008-07-27 21:46:04 +00004175 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00004176 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00004177 break;
4178 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004179 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004180 Tmp1 = PromoteOp(Node->getOperand(0));
4181 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
4182 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004183 break;
4184 }
4185 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004186
Chris Lattnerf2670a82008-01-16 06:57:07 +00004187 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004188 MVT DstVT = Op.getValueType();
4189 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004190 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4191 // The only other way we can lower this is to turn it into a STORE,
4192 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen8a782a22009-02-02 22:12:50 +00004193 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT, dl);
Chris Lattner0bd48932008-01-17 07:00:52 +00004194 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00004195 }
4196 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4197 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4198 case Legal:
4199 Tmp1 = LegalizeOp(Node->getOperand(0));
4200 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4201 break;
4202 case Promote:
4203 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004204 Result = DAG.getNode(ISD::FP_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattnerf2670a82008-01-16 06:57:07 +00004205 break;
4206 }
4207 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004208 }
Dale Johannesen5411a392007-08-09 01:04:01 +00004209 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004210 MVT DstVT = Op.getValueType();
4211 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004212 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4213 if (SrcVT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00004214 SDValue Lo;
Dale Johannesen713ed3f2008-01-20 01:18:38 +00004215 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004216 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00004217 if (DstVT!=MVT::f64)
Dale Johannesenca57b842009-02-02 23:46:53 +00004218 Result = DAG.getNode(ISD::FP_ROUND, dl,
4219 DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00004220 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00004221 }
Chris Lattner0bd48932008-01-17 07:00:52 +00004222 // The only other way we can lower this is to turn it into a STORE,
4223 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen8a782a22009-02-02 22:12:50 +00004224 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT, dl);
Chris Lattner0bd48932008-01-17 07:00:52 +00004225 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00004226 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00004227 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4228 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4229 case Legal:
4230 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00004231 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004232 break;
4233 case Promote:
4234 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004235 Result = DAG.getNode(ISD::FP_ROUND, dl, Op.getValueType(), Tmp1,
Chris Lattner0bd48932008-01-17 07:00:52 +00004236 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004237 break;
4238 }
4239 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004240 }
Chris Lattner13c78e22005-09-02 00:18:10 +00004241 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004242 case ISD::ZERO_EXTEND:
4243 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004244 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00004245 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004246 case Legal:
4247 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00004248 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00004249 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4250 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00004251 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004252 if (Tmp1.getNode()) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00004253 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004254 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004255 case Promote:
4256 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00004257 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004258 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004259 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00004260 break;
Chris Lattner1713e732005-01-16 00:38:00 +00004261 case ISD::ZERO_EXTEND:
4262 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004263 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4264 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004265 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00004266 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004267 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00004268 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004269 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4270 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004271 Result,
4272 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00004273 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004274 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004275 }
4276 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00004277 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00004278 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00004279 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004280 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00004281
4282 // If this operation is not supported, convert it to a shl/shr or load/store
4283 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004284 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
4285 default: assert(0 && "This action not supported for this op yet!");
4286 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004287 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004288 break;
4289 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00004290 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00004291 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00004292 // NOTE: we could fall back on load/store here too for targets without
4293 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004294 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
4295 ExtraVT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00004296 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Dale Johannesenca57b842009-02-02 23:46:53 +00004297 Result = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
Chris Lattner45b8caf2005-01-15 07:15:18 +00004298 Node->getOperand(0), ShiftCst);
Dale Johannesenca57b842009-02-02 23:46:53 +00004299 Result = DAG.getNode(ISD::SRA, dl, Node->getValueType(0),
Chris Lattner45b8caf2005-01-15 07:15:18 +00004300 Result, ShiftCst);
4301 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00004302 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00004303 // EXTLOAD pair, targetting a temporary location (a stack slot).
4304
4305 // NOTE: there is a choice here between constantly creating new stack
4306 // slots and always reusing the same one. We currently always create
4307 // new ones, as reuse may inhibit scheduling.
Scott Michelfdc40a02009-02-17 22:15:04 +00004308 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00004309 Node->getValueType(0), dl);
Chris Lattner45b8caf2005-01-15 07:15:18 +00004310 } else {
4311 assert(0 && "Unknown op");
4312 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004313 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00004314 }
Chris Lattner0f69b292005-01-15 06:18:18 +00004315 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004316 }
Duncan Sands36397f52007-07-27 12:58:54 +00004317 case ISD::TRAMPOLINE: {
Dan Gohman475871a2008-07-27 21:46:04 +00004318 SDValue Ops[6];
Duncan Sands36397f52007-07-27 12:58:54 +00004319 for (unsigned i = 0; i != 6; ++i)
4320 Ops[i] = LegalizeOp(Node->getOperand(i));
4321 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
4322 // The only option for this node is to custom lower it.
4323 Result = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004324 assert(Result.getNode() && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00004325
4326 // Since trampoline produces two values, make sure to remember that we
4327 // legalized both of them.
4328 Tmp1 = LegalizeOp(Result.getValue(1));
4329 Result = LegalizeOp(Result);
Dan Gohman475871a2008-07-27 21:46:04 +00004330 AddLegalizedOperand(SDValue(Node, 0), Result);
4331 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00004332 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00004333 }
Dan Gohman9c78a392008-05-14 00:43:10 +00004334 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004335 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004336 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4337 default: assert(0 && "This action not supported for this op yet!");
4338 case TargetLowering::Custom:
4339 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004340 if (Result.getNode()) break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004341 // Fall Thru
4342 case TargetLowering::Legal:
4343 // If this operation is not supported, lower it to constant 1
4344 Result = DAG.getConstant(1, VT);
4345 break;
4346 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00004347 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004348 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004349 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004350 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004351 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4352 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00004353 case TargetLowering::Legal:
4354 Tmp1 = LegalizeOp(Node->getOperand(0));
4355 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4356 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004357 case TargetLowering::Custom:
4358 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004359 if (Result.getNode()) break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004360 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00004361 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004362 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00004363 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004364 TargetLowering::ArgListTy Args;
Bob Wilsonec15bbf2009-04-10 18:48:47 +00004365 std::pair<SDValue, SDValue> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00004366 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00004367 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00004368 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Dale Johannesen7d2ad622009-01-30 23:10:59 +00004369 Args, DAG, dl);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004370 Result = CallResult.second;
4371 break;
4372 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004373 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004374 }
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004375
Bill Wendling74c37652008-12-09 22:08:41 +00004376 case ISD::SADDO:
4377 case ISD::SSUBO: {
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004378 MVT VT = Node->getValueType(0);
4379 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4380 default: assert(0 && "This action not supported for this op yet!");
4381 case TargetLowering::Custom:
4382 Result = TLI.LowerOperation(Op, DAG);
4383 if (Result.getNode()) break;
4384 // FALLTHROUGH
4385 case TargetLowering::Legal: {
4386 SDValue LHS = LegalizeOp(Node->getOperand(0));
4387 SDValue RHS = LegalizeOp(Node->getOperand(1));
4388
Scott Michelfdc40a02009-02-17 22:15:04 +00004389 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
Dale Johannesenca57b842009-02-02 23:46:53 +00004390 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling74c37652008-12-09 22:08:41 +00004391 LHS, RHS);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004392 MVT OType = Node->getValueType(1);
4393
Bill Wendlinga6af91a2008-11-25 08:19:22 +00004394 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004395
Bill Wendling740464e2008-11-25 19:40:17 +00004396 // LHSSign -> LHS >= 0
4397 // RHSSign -> RHS >= 0
4398 // SumSign -> Sum >= 0
4399 //
Bill Wendling74c37652008-12-09 22:08:41 +00004400 // Add:
Bill Wendling740464e2008-11-25 19:40:17 +00004401 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
Bill Wendling74c37652008-12-09 22:08:41 +00004402 // Sub:
4403 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
Bill Wendling740464e2008-11-25 19:40:17 +00004404 //
Dale Johannesenca57b842009-02-02 23:46:53 +00004405 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
4406 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
Scott Michelfdc40a02009-02-17 22:15:04 +00004407 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
4408 Node->getOpcode() == ISD::SADDO ?
Bill Wendling74c37652008-12-09 22:08:41 +00004409 ISD::SETEQ : ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004410
Dale Johannesenca57b842009-02-02 23:46:53 +00004411 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
4412 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004413
Dale Johannesenca57b842009-02-02 23:46:53 +00004414 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004415
4416 MVT ValueVTs[] = { LHS.getValueType(), OType };
4417 SDValue Ops[] = { Sum, Cmp };
4418
Scott Michelfdc40a02009-02-17 22:15:04 +00004419 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00004420 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004421 &Ops[0], 2);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004422 SDNode *RNode = Result.getNode();
4423 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), SDValue(RNode, 0));
4424 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), SDValue(RNode, 1));
4425 break;
4426 }
4427 }
4428
4429 break;
4430 }
Bill Wendling74c37652008-12-09 22:08:41 +00004431 case ISD::UADDO:
4432 case ISD::USUBO: {
Bill Wendling41ea7e72008-11-24 19:21:46 +00004433 MVT VT = Node->getValueType(0);
4434 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4435 default: assert(0 && "This action not supported for this op yet!");
4436 case TargetLowering::Custom:
4437 Result = TLI.LowerOperation(Op, DAG);
4438 if (Result.getNode()) break;
4439 // FALLTHROUGH
4440 case TargetLowering::Legal: {
4441 SDValue LHS = LegalizeOp(Node->getOperand(0));
4442 SDValue RHS = LegalizeOp(Node->getOperand(1));
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004443
Bill Wendling74c37652008-12-09 22:08:41 +00004444 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
Dale Johannesenca57b842009-02-02 23:46:53 +00004445 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling74c37652008-12-09 22:08:41 +00004446 LHS, RHS);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004447 MVT OType = Node->getValueType(1);
Dale Johannesenca57b842009-02-02 23:46:53 +00004448 SDValue Cmp = DAG.getSetCC(dl, OType, Sum, LHS,
Scott Michelfdc40a02009-02-17 22:15:04 +00004449 Node->getOpcode () == ISD::UADDO ?
Bill Wendling74c37652008-12-09 22:08:41 +00004450 ISD::SETULT : ISD::SETUGT);
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004451
Bill Wendling41ea7e72008-11-24 19:21:46 +00004452 MVT ValueVTs[] = { LHS.getValueType(), OType };
4453 SDValue Ops[] = { Sum, Cmp };
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004454
Scott Michelfdc40a02009-02-17 22:15:04 +00004455 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00004456 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004457 &Ops[0], 2);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004458 SDNode *RNode = Result.getNode();
4459 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), SDValue(RNode, 0));
4460 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), SDValue(RNode, 1));
4461 break;
4462 }
4463 }
4464
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004465 break;
4466 }
Bill Wendling74c37652008-12-09 22:08:41 +00004467 case ISD::SMULO:
4468 case ISD::UMULO: {
4469 MVT VT = Node->getValueType(0);
4470 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4471 default: assert(0 && "This action is not supported at all!");
4472 case TargetLowering::Custom:
4473 Result = TLI.LowerOperation(Op, DAG);
4474 if (Result.getNode()) break;
4475 // Fall Thru
4476 case TargetLowering::Legal:
4477 // FIXME: According to Hacker's Delight, this can be implemented in
4478 // target independent lowering, but it would be inefficient, since it
Bill Wendlingbc5e15e2008-12-10 02:01:32 +00004479 // requires a division + a branch.
Scott Michelfdc40a02009-02-17 22:15:04 +00004480 assert(0 && "Target independent lowering is not supported for SMULO/UMULO!");
Bill Wendling74c37652008-12-09 22:08:41 +00004481 break;
4482 }
4483 break;
4484 }
4485
Chris Lattner45b8caf2005-01-15 07:15:18 +00004486 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004487
Chris Lattner4ddd2832006-04-08 04:13:17 +00004488 assert(Result.getValueType() == Op.getValueType() &&
4489 "Bad legalization!");
Scott Michelfdc40a02009-02-17 22:15:04 +00004490
Chris Lattner456a93a2006-01-28 07:39:30 +00004491 // Make sure that the generated code is itself legal.
4492 if (Result != Op)
4493 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004494
Chris Lattner45982da2005-05-12 16:53:42 +00004495 // Note that LegalizeOp may be reentered even from single-use nodes, which
4496 // means that we always must cache transformed nodes.
4497 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004498 return Result;
4499}
4500
Chris Lattner8b6fa222005-01-15 22:16:26 +00004501/// PromoteOp - Given an operation that produces a value in an invalid type,
4502/// promote it to compute the value into a larger type. The produced value will
4503/// have the correct bits for the low portion of the register, but no guarantee
4504/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman475871a2008-07-27 21:46:04 +00004505SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004506 MVT VT = Op.getValueType();
4507 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004508 assert(getTypeAction(VT) == Promote &&
4509 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004510 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004511 "Cannot promote to smaller type!");
4512
Dan Gohman475871a2008-07-27 21:46:04 +00004513 SDValue Tmp1, Tmp2, Tmp3;
4514 SDValue Result;
Gabor Greifba36cb52008-08-28 21:40:38 +00004515 SDNode *Node = Op.getNode();
Dale Johannesen8a782a22009-02-02 22:12:50 +00004516 DebugLoc dl = Node->getDebugLoc();
Chris Lattner03c85462005-01-15 05:21:40 +00004517
Dan Gohman475871a2008-07-27 21:46:04 +00004518 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004519 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004520
Chris Lattner03c85462005-01-15 05:21:40 +00004521 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004522 case ISD::CopyFromReg:
4523 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004524 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004525#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004526 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004527#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004528 assert(0 && "Do not know how to promote this operator!");
4529 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004530 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00004531 Result = DAG.getUNDEF(NVT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004532 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004533 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004534 if (VT != MVT::i1)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004535 Result = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Op);
Chris Lattnerec176e32005-08-30 16:56:19 +00004536 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00004537 Result = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004538 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4539 break;
4540 case ISD::ConstantFP:
Dale Johannesen8a782a22009-02-02 22:12:50 +00004541 Result = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004542 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4543 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004544
Duncan Sands5480c042009-01-01 15:52:00 +00004545 case ISD::SETCC: {
4546 MVT VT0 = Node->getOperand(0).getValueType();
4547 assert(isTypeLegal(TLI.getSetCCResultType(VT0))
Nate Begeman5922f562008-03-14 00:53:31 +00004548 && "SetCC type is not legal??");
Dale Johannesen8a782a22009-02-02 22:12:50 +00004549 Result = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(VT0),
Nate Begeman5922f562008-03-14 00:53:31 +00004550 Node->getOperand(0), Node->getOperand(1),
4551 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004552 break;
Duncan Sands5480c042009-01-01 15:52:00 +00004553 }
Chris Lattner03c85462005-01-15 05:21:40 +00004554 case ISD::TRUNCATE:
4555 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4556 case Legal:
4557 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004558 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004559 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004560 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Dale Johannesen8a782a22009-02-02 22:12:50 +00004561 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Result);
Chris Lattner03c85462005-01-15 05:21:40 +00004562 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004563 case Promote:
4564 // The truncation is not required, because we don't guarantee anything
4565 // about high bits anyway.
4566 Result = PromoteOp(Node->getOperand(0));
4567 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004568 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004569 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4570 // Truncate the low part of the expanded value to the result type
Dale Johannesen8a782a22009-02-02 22:12:50 +00004571 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004572 }
4573 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004574 case ISD::SIGN_EXTEND:
4575 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004576 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004577 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4578 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4579 case Legal:
4580 // Input is legal? Just do extend all the way to the larger type.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004581 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004582 break;
4583 case Promote:
4584 // Promote the reg if it's smaller.
4585 Result = PromoteOp(Node->getOperand(0));
4586 // The high bits are not guaranteed to be anything. Insert an extend.
4587 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004588 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004589 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004590 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004591 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004592 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004593 break;
4594 }
4595 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004596 case ISD::CONVERT_RNDSAT: {
4597 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4598 assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
4599 CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
4600 CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) &&
4601 "can only promote integers");
Dale Johannesenc460ae92009-02-04 00:13:36 +00004602 Result = DAG.getConvertRndSat(NVT, dl, Node->getOperand(0),
Mon P Wang77cdf302008-11-10 20:54:11 +00004603 Node->getOperand(1), Node->getOperand(2),
4604 Node->getOperand(3), Node->getOperand(4),
4605 CvtCode);
4606 break;
4607
4608 }
Chris Lattner35481892005-12-23 00:16:34 +00004609 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004610 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00004611 Node->getValueType(0), dl);
Chris Lattner35481892005-12-23 00:16:34 +00004612 Result = PromoteOp(Result);
4613 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00004614
Chris Lattner8b6fa222005-01-15 22:16:26 +00004615 case ISD::FP_EXTEND:
4616 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4617 case ISD::FP_ROUND:
4618 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4619 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4620 case Promote: assert(0 && "Unreachable with 2 FP types!");
4621 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004622 if (Node->getConstantOperandVal(1) == 0) {
4623 // Input is legal? Do an FP_ROUND_INREG.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004624 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Node->getOperand(0),
Chris Lattner0bd48932008-01-17 07:00:52 +00004625 DAG.getValueType(VT));
4626 } else {
4627 // Just remove the truncate, it isn't affecting the value.
Scott Michelfdc40a02009-02-17 22:15:04 +00004628 Result = DAG.getNode(ISD::FP_ROUND, dl, NVT, Node->getOperand(0),
Chris Lattner0bd48932008-01-17 07:00:52 +00004629 Node->getOperand(1));
4630 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004631 break;
4632 }
4633 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004634 case ISD::SINT_TO_FP:
4635 case ISD::UINT_TO_FP:
4636 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4637 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004638 // No extra round required here.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004639 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004640 break;
4641
4642 case Promote:
4643 Result = PromoteOp(Node->getOperand(0));
4644 if (Node->getOpcode() == ISD::SINT_TO_FP)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004645 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004646 Result,
4647 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004648 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00004649 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004650 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004651 // No extra round required here.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004652 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004653 break;
4654 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004655 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00004656 Node->getOperand(0), dl);
Chris Lattner77e77a62005-01-21 06:05:23 +00004657 // Round if we cannot tolerate excess precision.
4658 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004659 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004660 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004661 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004662 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004663 break;
4664
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004665 case ISD::SIGN_EXTEND_INREG:
4666 Result = PromoteOp(Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004667 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004668 Node->getOperand(1));
4669 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004670 case ISD::FP_TO_SINT:
4671 case ISD::FP_TO_UINT:
4672 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4673 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004674 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004675 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004676 break;
4677 case Promote:
4678 // The input result is prerounded, so we don't have to do anything
4679 // special.
4680 Tmp1 = PromoteOp(Node->getOperand(0));
4681 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004682 }
Nate Begemand2558e32005-08-14 01:20:53 +00004683 // If we're promoting a UINT to a larger size, check to see if the new node
4684 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4685 // we can use that instead. This allows us to generate better code for
4686 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4687 // legal, such as PowerPC.
Scott Michelfdc40a02009-02-17 22:15:04 +00004688 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00004689 !TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NVT) &&
4690 (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT) ||
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004691 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Dale Johannesen8a782a22009-02-02 22:12:50 +00004692 Result = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Tmp1);
Nate Begemand2558e32005-08-14 01:20:53 +00004693 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00004694 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Nate Begemand2558e32005-08-14 01:20:53 +00004695 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004696 break;
4697
Chris Lattner2c8086f2005-04-02 05:00:07 +00004698 case ISD::FABS:
4699 case ISD::FNEG:
4700 Tmp1 = PromoteOp(Node->getOperand(0));
4701 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004702 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner2c8086f2005-04-02 05:00:07 +00004703 // NOTE: we do not have to do any extra rounding here for
4704 // NoExcessFPPrecision, because we know the input will have the appropriate
4705 // precision, and these operations don't modify precision at all.
4706 break;
4707
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004708 case ISD::FLOG:
4709 case ISD::FLOG2:
4710 case ISD::FLOG10:
4711 case ISD::FEXP:
4712 case ISD::FEXP2:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004713 case ISD::FSQRT:
4714 case ISD::FSIN:
4715 case ISD::FCOS:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00004716 case ISD::FTRUNC:
4717 case ISD::FFLOOR:
4718 case ISD::FCEIL:
4719 case ISD::FRINT:
4720 case ISD::FNEARBYINT:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004721 Tmp1 = PromoteOp(Node->getOperand(0));
4722 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004723 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004724 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004725 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004726 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004727 break;
4728
Evan Cheng9d24ac52008-09-09 23:35:53 +00004729 case ISD::FPOW:
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004730 case ISD::FPOWI: {
Evan Cheng9d24ac52008-09-09 23:35:53 +00004731 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004732 // directly as well, which may be better.
4733 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng9d24ac52008-09-09 23:35:53 +00004734 Tmp2 = Node->getOperand(1);
4735 if (Node->getOpcode() == ISD::FPOW)
4736 Tmp2 = PromoteOp(Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004737 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004738 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004739 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004740 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004741 DAG.getValueType(VT));
4742 break;
4743 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004744
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004745 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004746 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004747 Tmp2 = PromoteOp(Node->getOperand(2));
4748 Tmp3 = PromoteOp(Node->getOperand(3));
Scott Michelfdc40a02009-02-17 22:15:04 +00004749 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
4750 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004751 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004752 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004753 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004754 // Remember that we legalized the chain.
4755 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4756 break;
4757 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004758 case ISD::ATOMIC_LOAD_ADD:
4759 case ISD::ATOMIC_LOAD_SUB:
4760 case ISD::ATOMIC_LOAD_AND:
4761 case ISD::ATOMIC_LOAD_OR:
4762 case ISD::ATOMIC_LOAD_XOR:
4763 case ISD::ATOMIC_LOAD_NAND:
4764 case ISD::ATOMIC_LOAD_MIN:
4765 case ISD::ATOMIC_LOAD_MAX:
4766 case ISD::ATOMIC_LOAD_UMIN:
4767 case ISD::ATOMIC_LOAD_UMAX:
4768 case ISD::ATOMIC_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004769 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004770 Tmp2 = PromoteOp(Node->getOperand(2));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004771 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00004772 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004773 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004774 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004775 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004776 // Remember that we legalized the chain.
4777 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4778 break;
4779 }
4780
Chris Lattner03c85462005-01-15 05:21:40 +00004781 case ISD::AND:
4782 case ISD::OR:
4783 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004784 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004785 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004786 case ISD::MUL:
4787 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004788 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004789 // that too is okay if they are integer operations.
4790 Tmp1 = PromoteOp(Node->getOperand(0));
4791 Tmp2 = PromoteOp(Node->getOperand(1));
4792 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004793 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004794 break;
4795 case ISD::FADD:
4796 case ISD::FSUB:
4797 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004798 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);
Scott Michelfdc40a02009-02-17 22:15:04 +00004802
Chris Lattner01b3d732005-09-28 22:28:18 +00004803 // Floating point operations will give excess precision that we may not be
4804 // able to tolerate. If we DO allow excess precision, just leave it,
4805 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004806 // FIXME: Why would we need to round FP ops more than integer ones?
4807 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004808 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004809 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004810 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004811 break;
4812
Chris Lattner8b6fa222005-01-15 22:16:26 +00004813 case ISD::SDIV:
4814 case ISD::SREM:
4815 // These operators require that their input be sign extended.
4816 Tmp1 = PromoteOp(Node->getOperand(0));
4817 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004818 if (NVT.isInteger()) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00004819 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Chris Lattner15e4b012005-07-10 00:07:11 +00004820 DAG.getValueType(VT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004821 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Chris Lattner15e4b012005-07-10 00:07:11 +00004822 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004823 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00004824 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004825
4826 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004827 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004828 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004829 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004830 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004831 case ISD::FDIV:
4832 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004833 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004834 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004835 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004836 case Expand: assert(0 && "not implemented");
4837 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4838 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004839 }
4840 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004841 case Expand: assert(0 && "not implemented");
4842 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4843 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004844 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00004845 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00004846
Chris Lattner01b3d732005-09-28 22:28:18 +00004847 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004848 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004849 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner01b3d732005-09-28 22:28:18 +00004850 DAG.getValueType(VT));
4851 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004852
4853 case ISD::UDIV:
4854 case ISD::UREM:
4855 // These operators require that their input be zero extended.
4856 Tmp1 = PromoteOp(Node->getOperand(0));
4857 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004858 assert(NVT.isInteger() && "Operators don't apply to FP!");
Dale Johannesen8a782a22009-02-02 22:12:50 +00004859 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4860 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
4861 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004862 break;
4863
4864 case ISD::SHL:
4865 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004866 Result = DAG.getNode(ISD::SHL, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004867 break;
4868 case ISD::SRA:
4869 // The input value must be properly sign extended.
4870 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004871 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Chris Lattner15e4b012005-07-10 00:07:11 +00004872 DAG.getValueType(VT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004873 Result = DAG.getNode(ISD::SRA, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004874 break;
4875 case ISD::SRL:
4876 // The input value must be properly zero extended.
4877 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004878 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4879 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004880 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004881
4882 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004883 Tmp1 = Node->getOperand(0); // Get the chain.
4884 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004885 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00004886 Tmp3 = DAG.getVAArg(VT, dl, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004887 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004888 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004889 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenc460ae92009-02-04 00:13:36 +00004890 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004891 // Increment the pointer, VAList, to the next vaarg
Scott Michelfdc40a02009-02-17 22:15:04 +00004892 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004893 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004894 TLI.getPointerTy()));
4895 // Store the incremented VAList to the legalized pointer
Dale Johannesen8a782a22009-02-02 22:12:50 +00004896 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004897 // Load the actual argument out of the pointer VAList
Dale Johannesen8a782a22009-02-02 22:12:50 +00004898 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004899 }
4900 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004901 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004902 break;
4903
Evan Cheng466685d2006-10-09 20:57:25 +00004904 case ISD::LOAD: {
4905 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004906 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4907 ? ISD::EXTLOAD : LD->getExtensionType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00004908 Result = DAG.getExtLoad(ExtType, dl, NVT,
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004909 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004910 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004911 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004912 LD->isVolatile(),
4913 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004914 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004915 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004916 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004917 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004918 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004919 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4920 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004921
Duncan Sands83ec4b62008-06-06 12:08:01 +00004922 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004923 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004924 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4925 // Ensure that the resulting node is at least the same size as the operands'
4926 // value types, because we cannot assume that TLI.getSetCCValueType() is
4927 // constant.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004928 Result = DAG.getNode(ISD::SELECT, dl, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004929 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004930 }
Nate Begeman9373a812005-08-10 20:51:12 +00004931 case ISD::SELECT_CC:
4932 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4933 Tmp3 = PromoteOp(Node->getOperand(3)); // False
Dale Johannesen8a782a22009-02-02 22:12:50 +00004934 Result = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004935 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004936 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004937 case ISD::BSWAP:
4938 Tmp1 = Node->getOperand(0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004939 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
4940 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4941 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004942 DAG.getConstant(NVT.getSizeInBits() -
4943 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004944 TLI.getShiftAmountTy()));
4945 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004946 case ISD::CTPOP:
4947 case ISD::CTTZ:
4948 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004949 // Zero extend the argument
Dale Johannesen8a782a22009-02-02 22:12:50 +00004950 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004951 // Perform the larger operation, then subtract if needed.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004952 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004953 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004954 case ISD::CTPOP:
4955 Result = Tmp1;
4956 break;
4957 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004958 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004959 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004960 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004961 ISD::SETEQ);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004962 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004963 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004964 break;
4965 case ISD::CTLZ:
4966 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00004967 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004968 DAG.getConstant(NVT.getSizeInBits() -
4969 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004970 break;
4971 }
4972 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004973 case ISD::EXTRACT_SUBVECTOR:
4974 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004975 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004976 case ISD::EXTRACT_VECTOR_ELT:
4977 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4978 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004979 }
4980
Gabor Greifba36cb52008-08-28 21:40:38 +00004981 assert(Result.getNode() && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004982
4983 // Make sure the result is itself legal.
4984 Result = LegalizeOp(Result);
Scott Michelfdc40a02009-02-17 22:15:04 +00004985
Chris Lattner456a93a2006-01-28 07:39:30 +00004986 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004987 AddPromotedOperand(Op, Result);
4988 return Result;
4989}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004990
Dan Gohman7f321562007-06-25 16:23:39 +00004991/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4992/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4993/// based on the vector type. The return type of this matches the element type
4994/// of the vector, which may not be legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00004995SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004996 // We know that operand #0 is the Vec vector. If the index is a constant
4997 // or if the invec is a supported hardware type, we can use it. Otherwise,
4998 // lower to a store then an indexed load.
Dan Gohman475871a2008-07-27 21:46:04 +00004999 SDValue Vec = Op.getOperand(0);
5000 SDValue Idx = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005001 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00005002
Duncan Sands83ec4b62008-06-06 12:08:01 +00005003 MVT TVT = Vec.getValueType();
5004 unsigned NumElems = TVT.getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00005005
Dan Gohman7f321562007-06-25 16:23:39 +00005006 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
5007 default: assert(0 && "This action is not supported yet!");
5008 case TargetLowering::Custom: {
5009 Vec = LegalizeOp(Vec);
5010 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005011 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005012 if (Tmp3.getNode())
Dan Gohman7f321562007-06-25 16:23:39 +00005013 return Tmp3;
5014 break;
5015 }
5016 case TargetLowering::Legal:
5017 if (isTypeLegal(TVT)) {
5018 Vec = LegalizeOp(Vec);
5019 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00005020 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00005021 }
5022 break;
Mon P Wang0c397192008-10-30 08:01:45 +00005023 case TargetLowering::Promote:
5024 assert(TVT.isVector() && "not vector type");
5025 // fall thru to expand since vectors are by default are promote
Dan Gohman7f321562007-06-25 16:23:39 +00005026 case TargetLowering::Expand:
5027 break;
5028 }
5029
5030 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00005031 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00005032 Op = ScalarizeVectorOp(Vec);
5033 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00005034 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00005035 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005036 SDValue Lo, Hi;
Chris Lattner15972212006-03-31 17:55:51 +00005037 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005038 if (CIdx->getZExtValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00005039 Vec = Lo;
5040 } else {
5041 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005042 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00005043 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00005044 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005045
Chris Lattner15972212006-03-31 17:55:51 +00005046 // It's now an extract from the appropriate high or low part. Recurse.
5047 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005048 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00005049 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00005050 // Store the value to a temporary stack slot, then LOAD the scalar
5051 // element back out.
Dan Gohman475871a2008-07-27 21:46:04 +00005052 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dale Johannesenbb5da912009-02-02 20:41:04 +00005053 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, NULL, 0);
Dan Gohman7f321562007-06-25 16:23:39 +00005054
5055 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005056 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +00005057 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Dan Gohman7f321562007-06-25 16:23:39 +00005058 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005059
Duncan Sands8e4eb092008-06-08 20:54:56 +00005060 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Dale Johannesenbb5da912009-02-02 20:41:04 +00005061 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005062 else
Dale Johannesenbb5da912009-02-02 20:41:04 +00005063 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005064
Dale Johannesenbb5da912009-02-02 20:41:04 +00005065 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
Dan Gohman7f321562007-06-25 16:23:39 +00005066
Dale Johannesenbb5da912009-02-02 20:41:04 +00005067 Op = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00005068 }
Dan Gohman7f321562007-06-25 16:23:39 +00005069 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00005070}
5071
Dan Gohman7f321562007-06-25 16:23:39 +00005072/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00005073/// we assume the operation can be split if it is not already legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005074SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohman65956352007-06-13 15:12:02 +00005075 // We know that operand #0 is the Vec vector. For now we assume the index
5076 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman475871a2008-07-27 21:46:04 +00005077 SDValue Vec = Op.getOperand(0);
5078 SDValue Idx = LegalizeOp(Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005079
Duncan Sands83ec4b62008-06-06 12:08:01 +00005080 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00005081
Duncan Sands83ec4b62008-06-06 12:08:01 +00005082 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00005083 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00005084 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00005085 }
5086
5087 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005088 SDValue Lo, Hi;
Dan Gohman65956352007-06-13 15:12:02 +00005089 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005090 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohman65956352007-06-13 15:12:02 +00005091 Vec = Lo;
5092 } else {
5093 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005094 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
5095 Idx.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00005096 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005097
Dan Gohman65956352007-06-13 15:12:02 +00005098 // It's now an extract from the appropriate high or low part. Recurse.
5099 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005100 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00005101}
5102
Nate Begeman750ac1b2006-02-01 07:19:44 +00005103/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
5104/// with condition CC on the current target. This usually involves legalizing
5105/// or promoting the arguments. In the case where LHS and RHS must be expanded,
5106/// there may be no choice but to create a new SetCC node to represent the
5107/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman475871a2008-07-27 21:46:04 +00005108/// LHS, and the SDValue returned in RHS has a nil SDNode value.
5109void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
5110 SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005111 SDValue &CC,
5112 DebugLoc dl) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005113 SDValue Tmp1, Tmp2, Tmp3, Result;
5114
Nate Begeman750ac1b2006-02-01 07:19:44 +00005115 switch (getTypeAction(LHS.getValueType())) {
5116 case Legal:
5117 Tmp1 = LegalizeOp(LHS); // LHS
5118 Tmp2 = LegalizeOp(RHS); // RHS
5119 break;
5120 case Promote:
5121 Tmp1 = PromoteOp(LHS); // LHS
5122 Tmp2 = PromoteOp(RHS); // RHS
5123
5124 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005125 if (LHS.getValueType().isInteger()) {
5126 MVT VT = LHS.getValueType();
5127 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005128
5129 // Otherwise, we have to insert explicit sign or zero extends. Note
5130 // that we could insert sign extends for ALL conditions, but zero extend
5131 // is cheaper on many machines (an AND instead of two shifts), so prefer
5132 // it.
5133 switch (cast<CondCodeSDNode>(CC)->get()) {
5134 default: assert(0 && "Unknown integer comparison!");
5135 case ISD::SETEQ:
5136 case ISD::SETNE:
5137 case ISD::SETUGE:
5138 case ISD::SETUGT:
5139 case ISD::SETULE:
5140 case ISD::SETULT:
5141 // ALL of these operations will work if we either sign or zero extend
5142 // the operands (including the unsigned comparisons!). Zero extend is
5143 // usually a simpler/cheaper operation, so prefer it.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005144 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
5145 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005146 break;
5147 case ISD::SETGE:
5148 case ISD::SETGT:
5149 case ISD::SETLT:
5150 case ISD::SETLE:
Dale Johannesenbb5da912009-02-02 20:41:04 +00005151 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005152 DAG.getValueType(VT));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005153 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005154 DAG.getValueType(VT));
Evan Chengefa53392008-10-13 18:46:18 +00005155 Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
5156 Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
Nate Begeman750ac1b2006-02-01 07:19:44 +00005157 break;
5158 }
5159 }
5160 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005161 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005162 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00005163 if (VT == MVT::f32 || VT == MVT::f64) {
5164 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00005165 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00005166 switch (cast<CondCodeSDNode>(CC)->get()) {
5167 case ISD::SETEQ:
5168 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00005169 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005170 break;
5171 case ISD::SETNE:
5172 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00005173 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005174 break;
5175 case ISD::SETGE:
5176 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00005177 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005178 break;
5179 case ISD::SETLT:
5180 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00005181 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005182 break;
5183 case ISD::SETLE:
5184 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00005185 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005186 break;
5187 case ISD::SETGT:
5188 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00005189 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005190 break;
5191 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00005192 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5193 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005194 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00005195 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005196 break;
5197 default:
Evan Cheng56966222007-01-12 02:11:51 +00005198 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005199 switch (cast<CondCodeSDNode>(CC)->get()) {
5200 case ISD::SETONE:
5201 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00005202 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005203 // Fallthrough
5204 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00005205 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005206 break;
5207 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00005208 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005209 break;
5210 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00005211 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005212 break;
5213 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00005214 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005215 break;
Evan Cheng56966222007-01-12 02:11:51 +00005216 case ISD::SETUEQ:
5217 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00005218 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005219 default: assert(0 && "Unsupported FP setcc!");
5220 }
5221 }
Duncan Sandsf9516202008-06-30 10:19:09 +00005222
Dan Gohman475871a2008-07-27 21:46:04 +00005223 SDValue Dummy;
5224 SDValue Ops[2] = { LHS, RHS };
Dale Johannesenbb5da912009-02-02 20:41:04 +00005225 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005226 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00005227 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00005228 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00005229 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Dale Johannesenbb5da912009-02-02 20:41:04 +00005230 Tmp1 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005231 TLI.getSetCCResultType(Tmp1.getValueType()),
5232 Tmp1, Tmp2, CC);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005233 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005234 false /*sign irrelevant*/, Dummy);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005235 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005236 TLI.getSetCCResultType(LHS.getValueType()), LHS,
5237 Tmp2, DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005238 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman475871a2008-07-27 21:46:04 +00005239 Tmp2 = SDValue();
Evan Cheng2b49c502006-12-15 02:59:56 +00005240 }
Evan Cheng21cacc42008-07-07 07:18:09 +00005241 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00005242 RHS = Tmp2;
5243 return;
5244 }
5245
Dan Gohman475871a2008-07-27 21:46:04 +00005246 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Nate Begeman750ac1b2006-02-01 07:19:44 +00005247 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00005248 ExpandOp(RHS, RHSLo, RHSHi);
5249 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5250
5251 if (VT==MVT::ppcf128) {
5252 // FIXME: This generated code sucks. We want to generate
Dale Johannesene2f20832008-09-12 00:30:56 +00005253 // FCMPU crN, hi1, hi2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005254 // BNE crN, L:
Dale Johannesene2f20832008-09-12 00:30:56 +00005255 // FCMPU crN, lo1, lo2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005256 // The following can be improved, but not that much.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005257 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005258 LHSHi, RHSHi, ISD::SETOEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005259 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005260 LHSLo, RHSLo, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005261 Tmp3 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5262 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005263 LHSHi, RHSHi, ISD::SETUNE);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005264 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005265 LHSHi, RHSHi, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005266 Tmp1 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5267 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman475871a2008-07-27 21:46:04 +00005268 Tmp2 = SDValue();
Dale Johannesen638ccd52007-10-06 01:24:11 +00005269 break;
5270 }
5271
5272 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005273 case ISD::SETEQ:
5274 case ISD::SETNE:
5275 if (RHSLo == RHSHi)
5276 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
5277 if (RHSCST->isAllOnesValue()) {
5278 // Comparison to -1.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005279 Tmp1 = DAG.getNode(ISD::AND, dl,LHSLo.getValueType(), LHSLo, LHSHi);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005280 Tmp2 = RHSLo;
5281 break;
5282 }
5283
Dale Johannesenbb5da912009-02-02 20:41:04 +00005284 Tmp1 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
5285 Tmp2 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
5286 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005287 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
5288 break;
5289 default:
5290 // If this is a comparison of the sign bit, just look at the top part.
5291 // X > -1, x < 0
5292 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
Scott Michelfdc40a02009-02-17 22:15:04 +00005293 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00005294 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00005295 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
5296 CST->isAllOnesValue())) { // X > -1
5297 Tmp1 = LHSHi;
5298 Tmp2 = RHSHi;
5299 break;
5300 }
5301
5302 // FIXME: This generated code sucks.
5303 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00005304 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005305 default: assert(0 && "Unknown integer setcc!");
5306 case ISD::SETLT:
5307 case ISD::SETULT: LowCC = ISD::SETULT; break;
5308 case ISD::SETGT:
5309 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
5310 case ISD::SETLE:
5311 case ISD::SETULE: LowCC = ISD::SETULE; break;
5312 case ISD::SETGE:
5313 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
5314 }
5315
5316 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
5317 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
5318 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
5319
5320 // NOTE: on targets without efficient SELECT of bools, we can always use
5321 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00005322 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Duncan Sands5480c042009-01-01 15:52:00 +00005323 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005324 LHSLo, RHSLo, LowCC, false, DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005325 if (!Tmp1.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005326 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005327 LHSLo, RHSLo, LowCC);
5328 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005329 LHSHi, RHSHi, CCCode, false, DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005330 if (!Tmp2.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005331 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005332 TLI.getSetCCResultType(LHSHi.getValueType()),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005333 LHSHi, RHSHi, CC);
Scott Michelfdc40a02009-02-17 22:15:04 +00005334
Gabor Greifba36cb52008-08-28 21:40:38 +00005335 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
5336 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman002e5d02008-03-13 22:13:53 +00005337 if ((Tmp1C && Tmp1C->isNullValue()) ||
5338 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00005339 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
5340 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00005341 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00005342 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
5343 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
5344 // low part is known false, returns high part.
5345 // For LE / GE, if high part is known false, ignore the low part.
5346 // For LT / GT, if high part is known true, ignore the low part.
5347 Tmp1 = Tmp2;
Dan Gohman475871a2008-07-27 21:46:04 +00005348 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005349 } else {
Duncan Sands5480c042009-01-01 15:52:00 +00005350 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
5351 LHSHi, RHSHi, ISD::SETEQ, false,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005352 DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005353 if (!Result.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005354 Result=DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005355 LHSHi, RHSHi, ISD::SETEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005356 Result = LegalizeOp(DAG.getNode(ISD::SELECT, dl, Tmp1.getValueType(),
Evan Cheng2e677812007-02-08 22:16:19 +00005357 Result, Tmp1, Tmp2));
5358 Tmp1 = Result;
Dan Gohman475871a2008-07-27 21:46:04 +00005359 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005360 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005361 }
5362 }
Evan Cheng2b49c502006-12-15 02:59:56 +00005363 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005364 LHS = Tmp1;
5365 RHS = Tmp2;
5366}
5367
Evan Cheng7f042682008-10-15 02:05:31 +00005368/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
5369/// condition code CC on the current target. This routine assumes LHS and rHS
5370/// have already been legalized by LegalizeSetCCOperands. It expands SETCC with
5371/// illegal condition code into AND / OR of multiple SETCC values.
5372void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT,
5373 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005374 SDValue &CC,
5375 DebugLoc dl) {
Evan Cheng7f042682008-10-15 02:05:31 +00005376 MVT OpVT = LHS.getValueType();
5377 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5378 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
5379 default: assert(0 && "Unknown condition code action!");
5380 case TargetLowering::Legal:
5381 // Nothing to do.
5382 break;
5383 case TargetLowering::Expand: {
5384 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
5385 unsigned Opc = 0;
5386 switch (CCCode) {
5387 default: assert(0 && "Don't know how to expand this condition!"); abort();
Dan Gohmane7d238e2008-10-21 03:12:54 +00005388 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
5389 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5390 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5391 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5392 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5393 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5394 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5395 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5396 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5397 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5398 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5399 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng7f042682008-10-15 02:05:31 +00005400 // FIXME: Implement more expansions.
5401 }
5402
Dale Johannesenbb5da912009-02-02 20:41:04 +00005403 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
5404 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
5405 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00005406 RHS = SDValue();
5407 CC = SDValue();
5408 break;
5409 }
5410 }
5411}
5412
Chris Lattner1401d152008-01-16 07:45:30 +00005413/// EmitStackConvert - Emit a store/load combination to the stack. This stores
5414/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
5415/// a load from the stack slot to DestVT, extending it if needed.
5416/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005417SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
5418 MVT SlotVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005419 MVT DestVT,
5420 DebugLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00005421 // Create the stack frame object.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005422 unsigned SrcAlign =
5423 TLI.getTargetData()->getPrefTypeAlignment(SrcOp.getValueType().
5424 getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00005425 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00005426
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005427 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005428 int SPFI = StackPtrFI->getIndex();
Dan Gohman15b38302009-01-29 21:02:43 +00005429 const Value *SV = PseudoSourceValue::getFixedStack(SPFI);
5430
Duncan Sands83ec4b62008-06-06 12:08:01 +00005431 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
5432 unsigned SlotSize = SlotVT.getSizeInBits();
5433 unsigned DestSize = DestVT.getSizeInBits();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005434 unsigned DestAlign =
5435 TLI.getTargetData()->getPrefTypeAlignment(DestVT.getTypeForMVT());
Scott Michelfdc40a02009-02-17 22:15:04 +00005436
Chris Lattner1401d152008-01-16 07:45:30 +00005437 // Emit a store to the stack slot. Use a truncstore if the input value is
5438 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00005439 SDValue Store;
Scott Michelfdc40a02009-02-17 22:15:04 +00005440
Chris Lattner1401d152008-01-16 07:45:30 +00005441 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005442 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005443 SV, 0, SlotVT, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005444 else {
5445 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00005446 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005447 SV, 0, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005448 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005449
Chris Lattner35481892005-12-23 00:16:34 +00005450 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00005451 if (SlotSize == DestSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005452 return DAG.getLoad(DestVT, dl, Store, FIPtr, SV, 0, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00005453
Chris Lattner1401d152008-01-16 07:45:30 +00005454 assert(SlotSize < DestSize && "Unknown extension!");
Dale Johannesen8a782a22009-02-02 22:12:50 +00005455 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr, SV, 0, SlotVT,
Mon P Wang364d73d2008-07-05 20:40:31 +00005456 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00005457}
5458
Dan Gohman475871a2008-07-27 21:46:04 +00005459SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005460 DebugLoc dl = Node->getDebugLoc();
Chris Lattner4352cc92006-04-04 17:23:26 +00005461 // Create a vector sized/aligned stack slot, store the value to element #0,
5462 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00005463 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00005464
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005465 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005466 int SPFI = StackPtrFI->getIndex();
5467
Scott Michelfdc40a02009-02-17 22:15:04 +00005468 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(0),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005469 StackPtr,
5470 PseudoSourceValue::getFixedStack(SPFI), 0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00005471 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00005472 PseudoSourceValue::getFixedStack(SPFI), 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00005473}
5474
5475
Chris Lattnerce872152006-03-19 06:31:19 +00005476/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00005477/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00005478SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005479 unsigned NumElems = Node->getNumOperands();
5480 SDValue SplatValue = Node->getOperand(0);
5481 DebugLoc dl = Node->getDebugLoc();
5482 MVT VT = Node->getValueType(0);
5483 MVT OpVT = SplatValue.getValueType();
5484 MVT EltVT = VT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005485
5486 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00005487 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattnerce872152006-03-19 06:31:19 +00005488 bool isOnlyLowElement = true;
Scott Michelfdc40a02009-02-17 22:15:04 +00005489
Dan Gohman475871a2008-07-27 21:46:04 +00005490 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005491 // and use a bitmask instead of a list of elements.
Dan Gohman475871a2008-07-27 21:46:04 +00005492 std::map<SDValue, std::vector<unsigned> > Values;
Evan Cheng033e6812006-03-24 01:17:21 +00005493 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005494 bool isConstant = true;
5495 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
5496 SplatValue.getOpcode() != ISD::UNDEF)
5497 isConstant = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005498
Evan Cheng033e6812006-03-24 01:17:21 +00005499 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005500 SDValue V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00005501 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00005502 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00005503 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00005504 if (SplatValue != V)
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005505 SplatValue = SDValue(0, 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005506
5507 // If this isn't a constant element or an undef, we can't use a constant
5508 // pool load.
5509 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
5510 V.getOpcode() != ISD::UNDEF)
5511 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00005512 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005513
Chris Lattnerce872152006-03-19 06:31:19 +00005514 if (isOnlyLowElement) {
5515 // If the low element is an undef too, then this whole things is an undef.
5516 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005517 return DAG.getUNDEF(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005518 // Otherwise, turn this into a scalar_to_vector node.
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005519 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Chris Lattnerce872152006-03-19 06:31:19 +00005520 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005521
Chris Lattner2eb86532006-03-24 07:29:17 +00005522 // If all elements are constants, create a load from the constant pool.
5523 if (isConstant) {
Chris Lattner2eb86532006-03-24 07:29:17 +00005524 std::vector<Constant*> CV;
5525 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005526 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00005527 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005528 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00005529 } else if (ConstantSDNode *V =
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005530 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005531 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00005532 } else {
5533 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005534 const Type *OpNTy = OpVT.getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00005535 CV.push_back(UndefValue::get(OpNTy));
5536 }
5537 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00005538 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00005539 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00005540 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00005541 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005542 PseudoSourceValue::getConstantPool(), 0,
5543 false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00005544 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005545
Gabor Greifba36cb52008-08-28 21:40:38 +00005546 if (SplatValue.getNode()) { // Splat of one value?
Chris Lattner87100e02006-03-20 01:52:29 +00005547 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005548 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman475871a2008-07-27 21:46:04 +00005549 SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
5550 std::vector<SDValue> ZeroVec(NumElems, Zero);
Evan Chenga87008d2009-02-25 22:49:59 +00005551 SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005552 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00005553
5554 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005555 if (isShuffleLegal(VT, SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00005556 // Get the splatted value into the low element of a vector register.
Scott Michelfdc40a02009-02-17 22:15:04 +00005557 SDValue LowValVec =
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005558 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, SplatValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00005559
Chris Lattner87100e02006-03-20 01:52:29 +00005560 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005561 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, LowValVec,
5562 DAG.getUNDEF(VT), SplatMask);
Chris Lattner87100e02006-03-20 01:52:29 +00005563 }
5564 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005565
Evan Cheng033e6812006-03-24 01:17:21 +00005566 // If there are only two unique elements, we may be able to turn this into a
5567 // vector shuffle.
5568 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005569 // Get the two values in deterministic order.
Dan Gohman475871a2008-07-27 21:46:04 +00005570 SDValue Val1 = Node->getOperand(1);
5571 SDValue Val2;
5572 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005573 if (MI->first != Val1)
5574 Val2 = MI->first;
5575 else
5576 Val2 = (++MI)->first;
Scott Michelfdc40a02009-02-17 22:15:04 +00005577
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005578 // If Val1 is an undef, make sure it ends up as Val2, to ensure that our
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005579 // vector shuffle has the undef vector on the RHS.
5580 if (Val1.getOpcode() == ISD::UNDEF)
5581 std::swap(Val1, Val2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005582
Evan Cheng033e6812006-03-24 01:17:21 +00005583 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005584 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5585 MVT MaskEltVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00005586 std::vector<SDValue> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005587
5588 // Set elements of the shuffle mask for Val1.
5589 std::vector<unsigned> &Val1Elts = Values[Val1];
5590 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5591 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5592
5593 // Set elements of the shuffle mask for Val2.
5594 std::vector<unsigned> &Val2Elts = Values[Val2];
5595 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5596 if (Val2.getOpcode() != ISD::UNDEF)
5597 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5598 else
Dale Johannesene8d72302009-02-06 23:05:02 +00005599 MaskVec[Val2Elts[i]] = DAG.getUNDEF(MaskEltVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005600
Evan Chenga87008d2009-02-25 22:49:59 +00005601 SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005602 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00005603
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005604 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005605 if (TLI.isOperationLegalOrCustom(ISD::SCALAR_TO_VECTOR, VT) &&
5606 isShuffleLegal(VT, ShuffleMask)) {
5607 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Val1);
5608 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Val2);
Dan Gohman475871a2008-07-27 21:46:04 +00005609 SDValue Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00005610
5611 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005612 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl, VT, Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00005613 }
5614 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005615
Chris Lattnerce872152006-03-19 06:31:19 +00005616 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5617 // aligned object on the stack, store each element into it, then load
5618 // the result as a vector.
Chris Lattnerce872152006-03-19 06:31:19 +00005619 // Create the stack frame object.
Dan Gohman475871a2008-07-27 21:46:04 +00005620 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohman15b38302009-01-29 21:02:43 +00005621 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
5622 const Value *SV = PseudoSourceValue::getFixedStack(FI);
5623
Chris Lattnerce872152006-03-19 06:31:19 +00005624 // Emit a store of each element to the stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00005625 SmallVector<SDValue, 8> Stores;
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005626 unsigned TypeByteSize = OpVT.getSizeInBits() / 8;
Chris Lattnerce872152006-03-19 06:31:19 +00005627 // Store (in the right endianness) the elements to memory.
5628 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5629 // Ignore undef elements.
5630 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00005631
Chris Lattner841c8822006-03-22 01:46:54 +00005632 unsigned Offset = TypeByteSize*i;
Scott Michelfdc40a02009-02-17 22:15:04 +00005633
Dan Gohman475871a2008-07-27 21:46:04 +00005634 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Dale Johannesen8a782a22009-02-02 22:12:50 +00005635 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005636
Dale Johannesen8a782a22009-02-02 22:12:50 +00005637 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(i),
5638 Idx, SV, Offset));
Chris Lattnerce872152006-03-19 06:31:19 +00005639 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005640
Dan Gohman475871a2008-07-27 21:46:04 +00005641 SDValue StoreChain;
Chris Lattnerce872152006-03-19 06:31:19 +00005642 if (!Stores.empty()) // Not all undef elements?
Dale Johannesen8a782a22009-02-02 22:12:50 +00005643 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005644 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005645 else
5646 StoreChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005647
Chris Lattnerce872152006-03-19 06:31:19 +00005648 // Result is a load from the stack slot.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005649 return DAG.getLoad(VT, dl, StoreChain, FIPtr, SV, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005650}
5651
Chris Lattner5b359c62005-04-02 04:00:59 +00005652void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman475871a2008-07-27 21:46:04 +00005653 SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005654 SDValue &Lo, SDValue &Hi,
5655 DebugLoc dl) {
Chris Lattner5b359c62005-04-02 04:00:59 +00005656 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00005657 SDValue LHSL, LHSH;
Chris Lattner5b359c62005-04-02 04:00:59 +00005658 ExpandOp(Op, LHSL, LHSH);
5659
Dan Gohman475871a2008-07-27 21:46:04 +00005660 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005661 MVT VT = LHSL.getValueType();
Dan Gohmanfc166572009-04-09 23:54:40 +00005662 Lo = DAG.getNode(NodeOp, dl, DAG.getVTList(VT, VT), Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005663 Hi = Lo.getValue(1);
5664}
5665
5666
Chris Lattnere34b3962005-01-19 04:19:40 +00005667/// ExpandShift - Try to find a clever way to expand this shift operation out to
5668/// smaller elements. If we can't find a way that is more efficient than a
5669/// libcall on this target, return false. Otherwise, return true with the
5670/// low-parts expanded into Lo and Hi.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005671bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005672 SDValue &Lo, SDValue &Hi,
5673 DebugLoc dl) {
Chris Lattnere34b3962005-01-19 04:19:40 +00005674 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5675 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005676
Duncan Sands83ec4b62008-06-06 12:08:01 +00005677 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman475871a2008-07-27 21:46:04 +00005678 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005679 MVT ShTy = ShAmt.getValueType();
5680 unsigned ShBits = ShTy.getSizeInBits();
5681 unsigned VTBits = Op.getValueType().getSizeInBits();
5682 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005683
Chris Lattner7a3c8552007-10-14 20:35:12 +00005684 // Handle the case when Amt is an immediate.
Gabor Greifba36cb52008-08-28 21:40:38 +00005685 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005686 unsigned Cst = CN->getZExtValue();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005687 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005688 SDValue InL, InH;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005689 ExpandOp(Op, InL, InH);
5690 switch(Opc) {
5691 case ISD::SHL:
5692 if (Cst > VTBits) {
5693 Lo = DAG.getConstant(0, NVT);
5694 Hi = DAG.getConstant(0, NVT);
5695 } else if (Cst > NVTBits) {
5696 Lo = DAG.getConstant(0, NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00005697 Hi = DAG.getNode(ISD::SHL, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005698 NVT, InL, DAG.getConstant(Cst-NVTBits, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005699 } else if (Cst == NVTBits) {
5700 Lo = DAG.getConstant(0, NVT);
5701 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005702 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005703 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, DAG.getConstant(Cst, ShTy));
5704 Hi = DAG.getNode(ISD::OR, dl, NVT,
5705 DAG.getNode(ISD::SHL, dl, NVT, InH, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005706 DAG.getNode(ISD::SRL, dl, NVT, InL,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005707 DAG.getConstant(NVTBits-Cst, ShTy)));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005708 }
5709 return true;
5710 case ISD::SRL:
5711 if (Cst > VTBits) {
5712 Lo = DAG.getConstant(0, NVT);
5713 Hi = DAG.getConstant(0, NVT);
5714 } else if (Cst > NVTBits) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005715 Lo = DAG.getNode(ISD::SRL, dl, NVT,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005716 InH, DAG.getConstant(Cst-NVTBits, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005717 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005718 } else if (Cst == NVTBits) {
5719 Lo = InH;
5720 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005721 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005722 Lo = DAG.getNode(ISD::OR, dl, NVT,
5723 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005724 DAG.getNode(ISD::SHL, dl, NVT, InH,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005725 DAG.getConstant(NVTBits-Cst, ShTy)));
5726 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005727 }
5728 return true;
5729 case ISD::SRA:
5730 if (Cst > VTBits) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005731 Hi = Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005732 DAG.getConstant(NVTBits-1, ShTy));
5733 } else if (Cst > NVTBits) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005734 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005735 DAG.getConstant(Cst-NVTBits, ShTy));
Dale Johannesen8a782a22009-02-02 22:12:50 +00005736 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005737 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005738 } else if (Cst == NVTBits) {
5739 Lo = InH;
Dale Johannesen8a782a22009-02-02 22:12:50 +00005740 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005741 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005742 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005743 Lo = DAG.getNode(ISD::OR, dl, NVT,
5744 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005745 DAG.getNode(ISD::SHL, dl,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005746 NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5747 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005748 }
5749 return true;
5750 }
5751 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005752
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005753 // Okay, the shift amount isn't constant. However, if we can tell that it is
5754 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005755 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5756 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005757 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00005758
Dan Gohman9e255b72008-02-22 01:12:31 +00005759 // If we know that if any of the high bits of the shift amount are one, then
5760 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005761 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005762 // Mask out the high bit, which we know is set.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005763 Amt = DAG.getNode(ISD::AND, dl, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005764 DAG.getConstant(~Mask, Amt.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00005765
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005766 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005767 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005768 ExpandOp(Op, InL, InH);
5769 switch(Opc) {
5770 case ISD::SHL:
5771 Lo = DAG.getConstant(0, NVT); // Low part is zero.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005772 Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005773 return true;
5774 case ISD::SRL:
5775 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005776 Lo = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); // Lo part from Hi part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005777 return true;
5778 case ISD::SRA:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005779 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, // Sign extend high part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005780 DAG.getConstant(NVTBits-1, Amt.getValueType()));
Dale Johannesen8a782a22009-02-02 22:12:50 +00005781 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); // Lo part from Hi part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005782 return true;
5783 }
5784 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005785
Dan Gohman9e255b72008-02-22 01:12:31 +00005786 // If we know that the high bits of the shift amount are all zero, then we can
5787 // do this as a couple of simple shifts.
5788 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005789 // Compute 32-amt.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005790 SDValue Amt2 = DAG.getNode(ISD::SUB, dl, Amt.getValueType(),
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005791 DAG.getConstant(NVTBits, Amt.getValueType()),
5792 Amt);
Scott Michelfdc40a02009-02-17 22:15:04 +00005793
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005794 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005795 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005796 ExpandOp(Op, InL, InH);
5797 switch(Opc) {
5798 case ISD::SHL:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005799 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt);
5800 Hi = DAG.getNode(ISD::OR, dl, NVT,
5801 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt),
5802 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005803 return true;
5804 case ISD::SRL:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005805 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt);
5806 Lo = DAG.getNode(ISD::OR, dl, NVT,
5807 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5808 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005809 return true;
5810 case ISD::SRA:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005811 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt);
5812 Lo = DAG.getNode(ISD::OR, dl, NVT,
5813 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5814 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005815 return true;
5816 }
5817 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005818
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005819 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005820}
Chris Lattner77e77a62005-01-21 06:05:23 +00005821
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005822
Chris Lattner77e77a62005-01-21 06:05:23 +00005823// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5824// does not fit into a register, return the lo part and set the hi part to the
5825// by-reg argument. If it does fit into a single register, return the result
5826// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00005827SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5828 bool isSigned, SDValue &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005829 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
Scott Michelfdc40a02009-02-17 22:15:04 +00005830 // The input chain to this libcall is the entry node of the function.
Chris Lattner6831a812006-02-13 09:18:02 +00005831 // Legalizing the call will automatically add the previous call to the
5832 // dependence.
Dan Gohman475871a2008-07-27 21:46:04 +00005833 SDValue InChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005834
Chris Lattner77e77a62005-01-21 06:05:23 +00005835 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005836 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005837 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005838 MVT ArgVT = Node->getOperand(i).getValueType();
5839 const Type *ArgTy = ArgVT.getTypeForMVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00005840 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005841 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005842 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005843 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005844 }
Bill Wendling056292f2008-09-16 21:48:12 +00005845 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00005846 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005847
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005848 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005849 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005850 std::pair<SDValue, SDValue> CallInfo =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005851 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005852 CallingConv::C, false, Callee, Args, DAG,
5853 Node->getDebugLoc());
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005854
Chris Lattner6831a812006-02-13 09:18:02 +00005855 // Legalize the call sequence, starting with the chain. This will advance
5856 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5857 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5858 LegalizeOp(CallInfo.second);
Dan Gohman475871a2008-07-27 21:46:04 +00005859 SDValue Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005860 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005861 default: assert(0 && "Unknown thing");
5862 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005863 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005864 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005865 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005866 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005867 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005868 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005869 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005870}
5871
Dan Gohman7f8613e2008-08-14 20:04:46 +00005872/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5873///
5874SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005875LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op,
5876 DebugLoc dl) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00005877 bool isCustom = false;
5878 SDValue Tmp1;
5879 switch (getTypeAction(Op.getValueType())) {
5880 case Legal:
5881 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5882 Op.getValueType())) {
5883 default: assert(0 && "Unknown operation action!");
5884 case TargetLowering::Custom:
5885 isCustom = true;
5886 // FALLTHROUGH
5887 case TargetLowering::Legal:
5888 Tmp1 = LegalizeOp(Op);
Gabor Greifba36cb52008-08-28 21:40:38 +00005889 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005890 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5891 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005892 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005893 DestTy, Tmp1);
5894 if (isCustom) {
5895 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005896 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005897 }
5898 break;
5899 case TargetLowering::Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005900 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005901 break;
5902 case TargetLowering::Promote:
Dale Johannesenaf435272009-02-02 19:03:57 +00005903 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005904 break;
5905 }
5906 break;
5907 case Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005908 Result = ExpandIntToFP(isSigned, DestTy, Op, dl) ;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005909 break;
5910 case Promote:
5911 Tmp1 = PromoteOp(Op);
5912 if (isSigned) {
Dale Johannesenaf435272009-02-02 19:03:57 +00005913 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp1.getValueType(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005914 Tmp1, DAG.getValueType(Op.getValueType()));
Dan Gohman7f8613e2008-08-14 20:04:46 +00005915 } else {
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005916 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, Op.getValueType());
Dan Gohman7f8613e2008-08-14 20:04:46 +00005917 }
Gabor Greifba36cb52008-08-28 21:40:38 +00005918 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005919 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5920 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005921 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005922 DestTy, Tmp1);
5923 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5924 break;
5925 }
5926 return Result;
5927}
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005928
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005929/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5930///
Dan Gohman475871a2008-07-27 21:46:04 +00005931SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005932ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005933 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005934 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005935
Dan Gohman7f8613e2008-08-14 20:04:46 +00005936 // Expand unsupported int-to-fp vector casts by unrolling them.
5937 if (DestTy.isVector()) {
5938 if (!ExpandSource)
5939 return LegalizeOp(UnrollVectorOp(Source));
5940 MVT DestEltTy = DestTy.getVectorElementType();
5941 if (DestTy.getVectorNumElements() == 1) {
5942 SDValue Scalar = ScalarizeVectorOp(Source);
5943 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00005944 DestEltTy, Scalar, dl);
Evan Chenga87008d2009-02-25 22:49:59 +00005945 return DAG.getNode(ISD::BUILD_VECTOR, dl, DestTy, Result);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005946 }
5947 SDValue Lo, Hi;
5948 SplitVectorOp(Source, Lo, Hi);
5949 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5950 DestTy.getVectorNumElements() / 2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005951 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +00005952 Lo, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00005953 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +00005954 Hi, dl);
5955 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, DestTy, LoResult,
Evan Chengefa53392008-10-13 18:46:18 +00005956 HiResult));
Dan Gohman7f8613e2008-08-14 20:04:46 +00005957 }
5958
Evan Cheng9845eb52008-04-01 02:18:22 +00005959 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5960 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005961 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005962 // incoming integer is set. To handle this, we dynamically test to see if
5963 // it is set, and, if so, add a fudge factor.
Dan Gohman475871a2008-07-27 21:46:04 +00005964 SDValue Hi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005965 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005966 SDValue Lo;
Dan Gohman034f60e2008-03-11 01:59:03 +00005967 ExpandOp(Source, Lo, Hi);
Dale Johannesenaf435272009-02-02 19:03:57 +00005968 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, Lo, Hi);
Dan Gohman034f60e2008-03-11 01:59:03 +00005969 } else {
5970 // The comparison for the sign bit will use the entire operand.
5971 Hi = Source;
5972 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005973
Dale Johannesen53997b02008-11-04 20:52:49 +00005974 // Check to see if the target has a custom way to lower this. If so, use
5975 // it. (Note we've already expanded the operand in this case.)
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005976 switch (TLI.getOperationAction(ISD::UINT_TO_FP, SourceVT)) {
5977 default: assert(0 && "This action not implemented for this operation!");
5978 case TargetLowering::Legal:
5979 case TargetLowering::Expand:
5980 break; // This case is handled below.
5981 case TargetLowering::Custom: {
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005982 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::UINT_TO_FP, dl, DestTy,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005983 Source), DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005984 if (NV.getNode())
5985 return LegalizeOp(NV);
5986 break; // The target decided this was legal after all
5987 }
5988 }
5989
Chris Lattner66de05b2005-05-13 04:45:13 +00005990 // If this is unsigned, and not supported, first perform the conversion to
5991 // signed, then adjust the result if the sign bit is set.
Dale Johannesenaf435272009-02-02 19:03:57 +00005992 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source, dl);
Chris Lattner66de05b2005-05-13 04:45:13 +00005993
Scott Michelfdc40a02009-02-17 22:15:04 +00005994 SDValue SignSet = DAG.getSetCC(dl,
Dale Johannesenaf435272009-02-02 19:03:57 +00005995 TLI.getSetCCResultType(Hi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005996 Hi, DAG.getConstant(0, Hi.getValueType()),
5997 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00005998 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00005999 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattnere9c35e72005-04-13 05:09:42 +00006000 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00006001 uint64_t FF = 0x5f800000ULL;
6002 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattnerd2e936a2009-03-08 01:47:41 +00006003 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00006004
Dan Gohman475871a2008-07-27 21:46:04 +00006005 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00006006 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00006007 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00006008 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00006009 SDValue FudgeInReg;
Chris Lattnere9c35e72005-04-13 05:09:42 +00006010 if (DestTy == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00006011 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00006012 PseudoSourceValue::getConstantPool(), 0,
6013 false, Alignment);
Duncan Sands8e4eb092008-06-08 20:54:56 +00006014 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006015 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesenaf435272009-02-02 19:03:57 +00006016 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, dl, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00006017 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00006018 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00006019 MVT::f32, false, Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00006020 else
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006021 assert(0 && "Unexpected conversion");
6022
Duncan Sands83ec4b62008-06-06 12:08:01 +00006023 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006024 if (SCVT != DestTy) {
6025 // Destination type needs to be expanded as well. The FADD now we are
6026 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006027 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
6028 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dale Johannesenaf435272009-02-02 19:03:57 +00006029 SignedConv = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006030 SignedConv, SignedConv.getValue(1));
6031 }
Dale Johannesenaf435272009-02-02 19:03:57 +00006032 SignedConv = DAG.getNode(ISD::BIT_CONVERT, dl, DestTy, SignedConv);
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006033 }
Dale Johannesenaf435272009-02-02 19:03:57 +00006034 return DAG.getNode(ISD::FADD, dl, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00006035 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00006036
Chris Lattnera88a2602005-05-14 05:33:54 +00006037 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00006038 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00006039 default: assert(0 && "This action not implemented for this operation!");
6040 case TargetLowering::Legal:
6041 case TargetLowering::Expand:
6042 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00006043 case TargetLowering::Custom: {
Dale Johannesenaf435272009-02-02 19:03:57 +00006044 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, dl, DestTy,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006045 Source), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006046 if (NV.getNode())
Chris Lattner07dffd62005-08-26 00:14:16 +00006047 return LegalizeOp(NV);
6048 break; // The target decided this was legal after all
6049 }
Chris Lattnera88a2602005-05-14 05:33:54 +00006050 }
6051
Chris Lattner13689e22005-05-12 07:00:44 +00006052 // Expand the source, then glue it back together for the call. We must expand
6053 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00006054 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00006055 SDValue SrcLo, SrcHi;
Dan Gohman034f60e2008-03-11 01:59:03 +00006056 ExpandOp(Source, SrcLo, SrcHi);
Dale Johannesenaf435272009-02-02 19:03:57 +00006057 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, SrcLo, SrcHi);
Dan Gohman034f60e2008-03-11 01:59:03 +00006058 }
Chris Lattner13689e22005-05-12 07:00:44 +00006059
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006060 RTLIB::Libcall LC = isSigned ?
6061 RTLIB::getSINTTOFP(SourceVT, DestTy) :
6062 RTLIB::getUINTTOFP(SourceVT, DestTy);
6063 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
6064
Dale Johannesenaf435272009-02-02 19:03:57 +00006065 Source = DAG.getNode(ISD::SINT_TO_FP, dl, DestTy, Source);
Dan Gohman475871a2008-07-27 21:46:04 +00006066 SDValue HiPart;
Gabor Greifba36cb52008-08-28 21:40:38 +00006067 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
6068 if (Result.getValueType() != DestTy && HiPart.getNode())
Dale Johannesenaf435272009-02-02 19:03:57 +00006069 Result = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy, Result, HiPart);
Dan Gohmana2e94852008-03-10 23:03:31 +00006070 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00006071}
Misha Brukmanedf128a2005-04-21 22:36:52 +00006072
Chris Lattner22cde6a2006-01-28 08:25:58 +00006073/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
6074/// INT_TO_FP operation of the specified operand when the target requests that
6075/// we expand it. At this point, we know that the result and operand types are
6076/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00006077SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
6078 SDValue Op0,
Dale Johannesenaf435272009-02-02 19:03:57 +00006079 MVT DestVT,
6080 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006081 if (Op0.getValueType() == MVT::i32) {
6082 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00006083
Chris Lattner23594d42008-01-16 07:03:22 +00006084 // Get the stack frame index of a 8 byte buffer.
Dan Gohman475871a2008-07-27 21:46:04 +00006085 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00006086
Chris Lattner22cde6a2006-01-28 08:25:58 +00006087 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00006088 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00006089 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00006090 SDValue Hi = StackSlot;
Scott Michelfdc40a02009-02-17 22:15:04 +00006091 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006092 TLI.getPointerTy(), StackSlot, WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00006093 if (TLI.isLittleEndian())
6094 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00006095
Chris Lattner22cde6a2006-01-28 08:25:58 +00006096 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00006097 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006098 if (isSigned) {
6099 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman475871a2008-07-27 21:46:04 +00006100 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dale Johannesenaf435272009-02-02 19:03:57 +00006101 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006102 } else {
6103 Op0Mapped = Op0;
6104 }
6105 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00006106 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006107 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006108 // initial hi portion of constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00006109 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006110 // store the hi of the constructed double - biased exponent
Dale Johannesenaf435272009-02-02 19:03:57 +00006111 SDValue Store2=DAG.getStore(Store1, dl, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006112 // load the constructed double
Dale Johannesenaf435272009-02-02 19:03:57 +00006113 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006114 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00006115 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006116 BitsToDouble(0x4330000080000000ULL) :
6117 BitsToDouble(0x4330000000000000ULL),
Chris Lattner22cde6a2006-01-28 08:25:58 +00006118 MVT::f64);
6119 // subtract the bias
Dale Johannesenaf435272009-02-02 19:03:57 +00006120 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006121 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00006122 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006123 // handle final rounding
6124 if (DestVT == MVT::f64) {
6125 // do nothing
6126 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006127 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006128 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00006129 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00006130 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006131 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006132 }
6133 return Result;
6134 }
6135 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesenaf435272009-02-02 19:03:57 +00006136 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006137
Dale Johannesenaf435272009-02-02 19:03:57 +00006138 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00006139 Op0, DAG.getConstant(0, Op0.getValueType()),
6140 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00006141 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00006142 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattner22cde6a2006-01-28 08:25:58 +00006143 SignSet, Four, Zero);
6144
6145 // If the sign bit of the integer is set, the large number will be treated
6146 // as a negative number. To counteract this, the dynamic code adds an
6147 // offset depending on the data type.
6148 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006149 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006150 default: assert(0 && "Unsupported integer type!");
6151 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
6152 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
6153 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
6154 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
6155 }
6156 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattnerd2e936a2009-03-08 01:47:41 +00006157 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006158
Dan Gohman475871a2008-07-27 21:46:04 +00006159 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00006160 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00006161 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00006162 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00006163 SDValue FudgeInReg;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006164 if (DestVT == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00006165 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00006166 PseudoSourceValue::getConstantPool(), 0,
6167 false, Alignment);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006168 else {
Dan Gohman69de1932008-02-06 22:27:42 +00006169 FudgeInReg =
Dale Johannesenaf435272009-02-02 19:03:57 +00006170 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
Dan Gohman69de1932008-02-06 22:27:42 +00006171 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00006172 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00006173 MVT::f32, false, Alignment));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006174 }
6175
Dale Johannesenaf435272009-02-02 19:03:57 +00006176 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006177}
6178
6179/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
6180/// *INT_TO_FP operation of the specified operand when the target requests that
6181/// we promote it. At this point, we know that the result and operand types are
6182/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
6183/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00006184SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
6185 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006186 bool isSigned,
6187 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006188 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006189 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006190
6191 unsigned OpToUse = 0;
6192
6193 // Scan for the appropriate larger type to use.
6194 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006195 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
6196 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006197
6198 // If the target supports SINT_TO_FP of this type, use it.
6199 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
6200 default: break;
6201 case TargetLowering::Legal:
6202 if (!TLI.isTypeLegal(NewInTy))
6203 break; // Can't use this datatype.
6204 // FALL THROUGH.
6205 case TargetLowering::Custom:
6206 OpToUse = ISD::SINT_TO_FP;
6207 break;
6208 }
6209 if (OpToUse) break;
6210 if (isSigned) continue;
6211
6212 // If the target supports UINT_TO_FP of this type, use it.
6213 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
6214 default: break;
6215 case TargetLowering::Legal:
6216 if (!TLI.isTypeLegal(NewInTy))
6217 break; // Can't use this datatype.
6218 // FALL THROUGH.
6219 case TargetLowering::Custom:
6220 OpToUse = ISD::UINT_TO_FP;
6221 break;
6222 }
6223 if (OpToUse) break;
6224
6225 // Otherwise, try a larger type.
6226 }
6227
6228 // Okay, we found the operation and type to use. Zero extend our input to the
6229 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00006230 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00006231 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00006232 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006233}
6234
6235/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
6236/// FP_TO_*INT operation of the specified operand when the target requests that
6237/// we promote it. At this point, we know that the result and operand types are
6238/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
6239/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00006240SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
6241 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006242 bool isSigned,
6243 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006244 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006245 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006246
6247 unsigned OpToUse = 0;
6248
6249 // Scan for the appropriate larger type to use.
6250 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006251 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
6252 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006253
6254 // If the target supports FP_TO_SINT returning this type, use it.
6255 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
6256 default: break;
6257 case TargetLowering::Legal:
6258 if (!TLI.isTypeLegal(NewOutTy))
6259 break; // Can't use this datatype.
6260 // FALL THROUGH.
6261 case TargetLowering::Custom:
6262 OpToUse = ISD::FP_TO_SINT;
6263 break;
6264 }
6265 if (OpToUse) break;
6266
6267 // If the target supports FP_TO_UINT of this type, use it.
6268 switch (TLI.getOperationAction(ISD::FP_TO_UINT, 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_UINT;
6276 break;
6277 }
6278 if (OpToUse) break;
6279
6280 // Otherwise, try a larger type.
6281 }
6282
Scott Michelfdc40a02009-02-17 22:15:04 +00006283
Chris Lattner27a6c732007-11-24 07:07:01 +00006284 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00006285 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00006286
Chris Lattner27a6c732007-11-24 07:07:01 +00006287 // If the operation produces an invalid type, it must be custom lowered. Use
6288 // the target lowering hooks to expand it. Just keep the low part of the
6289 // expanded operation, we know that we're truncating anyway.
6290 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands1607f052008-12-01 11:39:25 +00006291 SmallVector<SDValue, 2> Results;
6292 TLI.ReplaceNodeResults(Operation.getNode(), Results, DAG);
6293 assert(Results.size() == 1 && "Incorrect FP_TO_XINT lowering!");
6294 Operation = Results[0];
Chris Lattner27a6c732007-11-24 07:07:01 +00006295 }
Duncan Sands126d9072008-07-04 11:47:58 +00006296
Chris Lattner27a6c732007-11-24 07:07:01 +00006297 // Truncate the result of the extended FP_TO_*INT operation to the desired
6298 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00006299 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006300}
6301
6302/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
6303///
Dale Johannesen8a782a22009-02-02 22:12:50 +00006304SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006305 MVT VT = Op.getValueType();
6306 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman475871a2008-07-27 21:46:04 +00006307 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006308 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006309 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
6310 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006311 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6312 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6313 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006314 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006315 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6316 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6317 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6318 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6319 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
6320 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
6321 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6322 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6323 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006324 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006325 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
6326 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
6327 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6328 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6329 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6330 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6331 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
6332 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
6333 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
6334 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
6335 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
6336 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
6337 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
6338 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
6339 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
6340 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
6341 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6342 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6343 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
6344 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
6345 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006346 }
6347}
6348
6349/// ExpandBitCount - Expand the specified bitcount instruction into operations.
6350///
Scott Michelfdc40a02009-02-17 22:15:04 +00006351SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen8a782a22009-02-02 22:12:50 +00006352 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006353 switch (Opc) {
6354 default: assert(0 && "Cannot expand this yet!");
6355 case ISD::CTPOP: {
6356 static const uint64_t mask[6] = {
6357 0x5555555555555555ULL, 0x3333333333333333ULL,
6358 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
6359 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
6360 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00006361 MVT VT = Op.getValueType();
6362 MVT ShVT = TLI.getShiftAmountTy();
6363 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006364 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
6365 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006366 unsigned EltSize = VT.isVector() ?
6367 VT.getVectorElementType().getSizeInBits() : len;
6368 SDValue Tmp2 = DAG.getConstant(APInt(EltSize, mask[i]), VT);
Dan Gohman475871a2008-07-27 21:46:04 +00006369 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00006370 Op = DAG.getNode(ISD::ADD, dl, VT,
Dale Johannesene72c5962009-02-06 21:55:48 +00006371 DAG.getNode(ISD::AND, dl, VT, Op, Tmp2),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006372 DAG.getNode(ISD::AND, dl, VT,
6373 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3),
6374 Tmp2));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006375 }
6376 return Op;
6377 }
6378 case ISD::CTLZ: {
6379 // for now, we do this:
6380 // x = x | (x >> 1);
6381 // x = x | (x >> 2);
6382 // ...
6383 // x = x | (x >>16);
6384 // x = x | (x >>32); // for 64-bit input
6385 // return popcount(~x);
6386 //
6387 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006388 MVT VT = Op.getValueType();
6389 MVT ShVT = TLI.getShiftAmountTy();
6390 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006391 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006392 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00006393 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00006394 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006395 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00006396 Op = DAG.getNOT(dl, Op, VT);
6397 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006398 }
6399 case ISD::CTTZ: {
6400 // for now, we use: { return popcount(~x & (x - 1)); }
6401 // unless the target has ctlz but not ctpop, in which case we use:
6402 // { return 32 - nlz(~x & (x-1)); }
6403 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006404 MVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006405 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
6406 DAG.getNOT(dl, Op, VT),
6407 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00006408 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006409 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006410 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
6411 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00006412 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006413 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006414 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
6415 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006416 }
6417 }
6418}
Chris Lattnere34b3962005-01-19 04:19:40 +00006419
Dan Gohman475871a2008-07-27 21:46:04 +00006420/// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattner3e928bb2005-01-07 07:47:09 +00006421/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman929d3eb2008-10-01 15:07:49 +00006422/// LegalizedNodes map is filled in for any results that are not expanded, the
Chris Lattner3e928bb2005-01-07 07:47:09 +00006423/// ExpandedNodes map is filled in for any results that are expanded, and the
6424/// Lo/Hi values are returned.
Dan Gohman475871a2008-07-27 21:46:04 +00006425void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00006426 MVT VT = Op.getValueType();
6427 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greifba36cb52008-08-28 21:40:38 +00006428 SDNode *Node = Op.getNode();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006429 DebugLoc dl = Node->getDebugLoc();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006430 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00006431 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00006432 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006433
Chris Lattner6fdcb252005-09-02 20:32:45 +00006434 // See if we already expanded it.
Dan Gohman475871a2008-07-27 21:46:04 +00006435 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00006436 = ExpandedNodes.find(Op);
6437 if (I != ExpandedNodes.end()) {
6438 Lo = I->second.first;
6439 Hi = I->second.second;
6440 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006441 }
6442
Chris Lattner3e928bb2005-01-07 07:47:09 +00006443 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006444 case ISD::CopyFromReg:
6445 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006446 case ISD::FP_ROUND_INREG:
Scott Michelfdc40a02009-02-17 22:15:04 +00006447 if (VT == MVT::ppcf128 &&
6448 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006449 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006450 SDValue SrcLo, SrcHi, Src;
Dale Johannesenfcf4d242007-10-11 23:32:15 +00006451 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006452 Src = DAG.getNode(ISD::BUILD_PAIR, dl, VT, SrcLo, SrcHi);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006453 SDValue Result =
6454 TLI.LowerOperation(DAG.getNode(ISD::FP_ROUND_INREG, dl, VT, Src,
6455 Op.getOperand(1)), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006456 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
6457 Lo = Result.getNode()->getOperand(0);
6458 Hi = Result.getNode()->getOperand(1);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006459 break;
6460 }
6461 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00006462 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006463#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006464 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006465#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00006466 assert(0 && "Do not know how to expand this operator!");
6467 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00006468 case ISD::EXTRACT_ELEMENT:
6469 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006470 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman1953ecb2008-02-27 01:52:30 +00006471 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00006472 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00006473 case ISD::EXTRACT_VECTOR_ELT:
Dale Johannesen25f1d082007-10-31 00:32:36 +00006474 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
6475 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
6476 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006477 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00006478 Lo = DAG.getUNDEF(NVT);
6479 Hi = DAG.getUNDEF(NVT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006480 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006481 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006482 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00006483 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
6484 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
6485 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006486 break;
6487 }
Evan Cheng00495212006-12-12 21:32:44 +00006488 case ISD::ConstantFP: {
6489 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00006490 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen7111b022008-10-09 18:53:47 +00006491 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesena471c2e2007-10-11 18:07:22 +00006492 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
6493 MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00006494 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
Dale Johannesena471c2e2007-10-11 18:07:22 +00006495 MVT::f64);
6496 break;
6497 }
Evan Cheng279101e2006-12-12 22:19:28 +00006498 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00006499 if (getTypeAction(Lo.getValueType()) == Expand)
6500 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006501 break;
6502 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006503 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006504 // Return the operands.
6505 Lo = Node->getOperand(0);
6506 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006507 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006508
Chris Lattner27a6c732007-11-24 07:07:01 +00006509 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00006510 if (Node->getNumValues() == 1) {
6511 ExpandOp(Op.getOperand(0), Lo, Hi);
6512 break;
6513 }
Chris Lattner27a6c732007-11-24 07:07:01 +00006514 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif99a6cb92008-08-26 22:36:50 +00006515 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattner27a6c732007-11-24 07:07:01 +00006516 Op.getValue(1).getValueType() == MVT::Other &&
6517 "unhandled MERGE_VALUES");
6518 ExpandOp(Op.getOperand(0), Lo, Hi);
6519 // Remember that we legalized the chain.
6520 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
6521 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006522
Chris Lattner58f79632005-12-12 22:27:43 +00006523 case ISD::SIGN_EXTEND_INREG:
6524 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00006525 // sext_inreg the low part if needed.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006526 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Lo, Node->getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006527
Chris Lattner4bdd2752006-10-06 17:34:12 +00006528 // The high part gets the sign extension from the lo-part. This handles
6529 // things like sextinreg V:i64 from i8.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006530 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006531 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00006532 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00006533 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006534
Nate Begemand88fc032006-01-14 03:14:10 +00006535 case ISD::BSWAP: {
6536 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006537 SDValue TempLo = DAG.getNode(ISD::BSWAP, dl, NVT, Hi);
6538 Hi = DAG.getNode(ISD::BSWAP, dl, NVT, Lo);
Nate Begemand88fc032006-01-14 03:14:10 +00006539 Lo = TempLo;
6540 break;
6541 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006542
Chris Lattneredb1add2005-05-11 04:51:16 +00006543 case ISD::CTPOP:
6544 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006545 Lo = DAG.getNode(ISD::ADD, dl, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
6546 DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
6547 DAG.getNode(ISD::CTPOP, dl, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00006548 Hi = DAG.getConstant(0, NVT);
6549 break;
6550
Chris Lattner39a8f332005-05-12 19:05:01 +00006551 case ISD::CTLZ: {
6552 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006553 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006554 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006555 SDValue HLZ = DAG.getNode(ISD::CTLZ, dl, NVT, Hi);
6556 SDValue TopNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), HLZ,
6557 BitsC, ISD::SETNE);
6558 SDValue LowPart = DAG.getNode(ISD::CTLZ, dl, NVT, Lo);
6559 LowPart = DAG.getNode(ISD::ADD, dl, NVT, LowPart, BitsC);
Chris Lattner39a8f332005-05-12 19:05:01 +00006560
Dale Johannesen8a782a22009-02-02 22:12:50 +00006561 Lo = DAG.getNode(ISD::SELECT, dl, NVT, TopNotZero, HLZ, LowPart);
Chris Lattner39a8f332005-05-12 19:05:01 +00006562 Hi = DAG.getConstant(0, NVT);
6563 break;
6564 }
6565
6566 case ISD::CTTZ: {
6567 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006568 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006569 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006570 SDValue LTZ = DAG.getNode(ISD::CTTZ, dl, NVT, Lo);
6571 SDValue BotNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), LTZ,
6572 BitsC, ISD::SETNE);
6573 SDValue HiPart = DAG.getNode(ISD::CTTZ, dl, NVT, Hi);
6574 HiPart = DAG.getNode(ISD::ADD, dl, NVT, HiPart, BitsC);
Chris Lattner39a8f332005-05-12 19:05:01 +00006575
Dale Johannesen8a782a22009-02-02 22:12:50 +00006576 Lo = DAG.getNode(ISD::SELECT, dl, NVT, BotNotZero, LTZ, HiPart);
Chris Lattner39a8f332005-05-12 19:05:01 +00006577 Hi = DAG.getConstant(0, NVT);
6578 break;
6579 }
Chris Lattneredb1add2005-05-11 04:51:16 +00006580
Nate Begemanacc398c2006-01-25 18:21:52 +00006581 case ISD::VAARG: {
Dan Gohman475871a2008-07-27 21:46:04 +00006582 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6583 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Dale Johannesenc460ae92009-02-04 00:13:36 +00006584 Lo = DAG.getVAArg(NVT, dl, Ch, Ptr, Node->getOperand(2));
6585 Hi = DAG.getVAArg(NVT, dl, Lo.getValue(1), Ptr, Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00006586
6587 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00006588 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00006589 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00006590 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00006591 std::swap(Lo, Hi);
6592 break;
6593 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006594
Chris Lattner3e928bb2005-01-07 07:47:09 +00006595 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00006596 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00006597 SDValue Ch = LD->getChain(); // Legalize the chain.
6598 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Evan Cheng466685d2006-10-09 20:57:25 +00006599 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f8613e2008-08-14 20:04:46 +00006600 const Value *SV = LD->getSrcValue();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006601 int SVOffset = LD->getSrcValueOffset();
6602 unsigned Alignment = LD->getAlignment();
6603 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006604
Evan Cheng466685d2006-10-09 20:57:25 +00006605 if (ExtType == ISD::NON_EXTLOAD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006606 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006607 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00006608 if (VT == MVT::f32 || VT == MVT::f64) {
6609 // f32->i32 or f64->i64 one to one expansion.
6610 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006611 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00006612 // Recursively expand the new load.
6613 if (getTypeAction(NVT) == Expand)
6614 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006615 break;
6616 }
Chris Lattnerec39a452005-01-19 18:02:17 +00006617
Evan Cheng466685d2006-10-09 20:57:25 +00006618 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006619 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Dale Johannesen8a782a22009-02-02 22:12:50 +00006620 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006621 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006622 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006623 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006624 Hi = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006625 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00006626
Evan Cheng466685d2006-10-09 20:57:25 +00006627 // Build a factor node to remember that this load is independent of the
6628 // other one.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006629 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006630 Hi.getValue(1));
Evan Cheng466685d2006-10-09 20:57:25 +00006631
6632 // Remember that we legalized the chain.
6633 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00006634 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00006635 std::swap(Lo, Hi);
6636 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006637 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00006638
Dale Johannesenb6210fc2007-10-19 20:29:00 +00006639 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6640 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00006641 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dale Johannesen8a782a22009-02-02 22:12:50 +00006642 SDValue Load = DAG.getLoad(EVT, dl, Ch, Ptr, SV,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006643 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00006644 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006645 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Dale Johannesen8a782a22009-02-02 22:12:50 +00006646 ExpandOp(DAG.getNode(ISD::FP_EXTEND, dl, VT, Load), Lo, Hi);
Evan Cheng548f6112006-12-13 03:19:57 +00006647 break;
6648 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006649
Evan Cheng466685d2006-10-09 20:57:25 +00006650 if (EVT == NVT)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006651 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006652 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006653 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00006654 Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006655 SVOffset, EVT, isVolatile,
6656 Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00006657
Evan Cheng466685d2006-10-09 20:57:25 +00006658 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006659 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng466685d2006-10-09 20:57:25 +00006660
6661 if (ExtType == ISD::SEXTLOAD) {
6662 // The high part is obtained by SRA'ing all but one of the bits of the
6663 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006664 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006665 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Evan Cheng466685d2006-10-09 20:57:25 +00006666 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6667 } else if (ExtType == ISD::ZEXTLOAD) {
6668 // The high part is just a zero.
6669 Hi = DAG.getConstant(0, NVT);
6670 } else /* if (ExtType == ISD::EXTLOAD) */ {
6671 // The high part is undefined.
Dale Johannesene8d72302009-02-06 23:05:02 +00006672 Hi = DAG.getUNDEF(NVT);
Evan Cheng466685d2006-10-09 20:57:25 +00006673 }
6674 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006675 break;
6676 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006677 case ISD::AND:
6678 case ISD::OR:
6679 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman475871a2008-07-27 21:46:04 +00006680 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006681 ExpandOp(Node->getOperand(0), LL, LH);
6682 ExpandOp(Node->getOperand(1), RL, RH);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006683 Lo = DAG.getNode(Node->getOpcode(), dl, NVT, LL, RL);
6684 Hi = DAG.getNode(Node->getOpcode(), dl, NVT, LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006685 break;
6686 }
6687 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006688 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006689 ExpandOp(Node->getOperand(1), LL, LH);
6690 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006691 if (getTypeAction(NVT) == Expand)
6692 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006693 Lo = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006694 if (VT != MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006695 Hi = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006696 break;
6697 }
Nate Begeman9373a812005-08-10 20:51:12 +00006698 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006699 SDValue TL, TH, FL, FH;
Nate Begeman9373a812005-08-10 20:51:12 +00006700 ExpandOp(Node->getOperand(2), TL, TH);
6701 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006702 if (getTypeAction(NVT) == Expand)
6703 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006704 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Nate Begeman9373a812005-08-10 20:51:12 +00006705 Node->getOperand(1), TL, FL, Node->getOperand(4));
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_CC, dl, NVT, Node->getOperand(0),
Evan Cheng19103b12006-12-15 22:42:55 +00006708 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006709 break;
6710 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006711 case ISD::ANY_EXTEND:
6712 // The low part is any extension of the input (which degenerates to a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006713 Lo = DAG.getNode(ISD::ANY_EXTEND, dl, NVT, Node->getOperand(0));
Chris Lattner8137c9e2006-01-28 05:07:51 +00006714 // The high part is undefined.
Dale Johannesene8d72302009-02-06 23:05:02 +00006715 Hi = DAG.getUNDEF(NVT);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006716 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006717 case ISD::SIGN_EXTEND: {
6718 // The low part is just a sign extension of the input (which degenerates to
6719 // a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006720 Lo = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006721
Chris Lattner3e928bb2005-01-07 07:47:09 +00006722 // The high part is obtained by SRA'ing all but one of the bits of the lo
6723 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006724 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006725 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Chris Lattner8137c9e2006-01-28 05:07:51 +00006726 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006727 break;
6728 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006729 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006730 // The low part is just a zero extension of the input (which degenerates to
6731 // a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006732 Lo = DAG.getNode(ISD::ZERO_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 just a zero.
6735 Hi = DAG.getConstant(0, NVT);
6736 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006737
Chris Lattner4c948eb2007-02-13 23:55:16 +00006738 case ISD::TRUNCATE: {
6739 // The input value must be larger than this value. Expand *it*.
Dan Gohman475871a2008-07-27 21:46:04 +00006740 SDValue NewLo;
Chris Lattner4c948eb2007-02-13 23:55:16 +00006741 ExpandOp(Node->getOperand(0), NewLo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00006742
Chris Lattner4c948eb2007-02-13 23:55:16 +00006743 // The low part is now either the right size, or it is closer. If not the
6744 // right size, make an illegal truncate so we recursively expand it.
6745 if (NewLo.getValueType() != Node->getValueType(0))
Dale Johannesen8a782a22009-02-02 22:12:50 +00006746 NewLo = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), NewLo);
Chris Lattner4c948eb2007-02-13 23:55:16 +00006747 ExpandOp(NewLo, Lo, Hi);
6748 break;
6749 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006750
Chris Lattner35481892005-12-23 00:16:34 +00006751 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006752 SDValue Tmp;
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006753 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6754 // If the target wants to, allow it to lower this itself.
6755 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6756 case Expand: assert(0 && "cannot expand FP!");
6757 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6758 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6759 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00006760 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp), DAG);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006761 }
6762
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006763 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006764 if (VT == MVT::f32 || VT == MVT::f64) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006765 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006766 if (getTypeAction(NVT) == Expand)
6767 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006768 break;
6769 }
6770
6771 // If source operand will be expanded to the same type as VT, i.e.
6772 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006773 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006774 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6775 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006776 break;
6777 }
6778
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006779 // Turn this into a load/store pair by default.
Gabor Greifba36cb52008-08-28 21:40:38 +00006780 if (Tmp.getNode() == 0)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006781 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00006782
Chris Lattner35481892005-12-23 00:16:34 +00006783 ExpandOp(Tmp, Lo, Hi);
6784 break;
6785 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006786
Chris Lattner27a6c732007-11-24 07:07:01 +00006787 case ISD::READCYCLECOUNTER: {
Scott Michelfdc40a02009-02-17 22:15:04 +00006788 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
Chris Lattner308575b2005-11-20 22:56:56 +00006789 TargetLowering::Custom &&
6790 "Must custom expand ReadCycleCounter");
Dan Gohman475871a2008-07-27 21:46:04 +00006791 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006792 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattner27a6c732007-11-24 07:07:01 +00006793 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006794 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006795 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006796 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006797 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006798
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006799 case ISD::ATOMIC_CMP_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006800 // This operation does not need a loop.
6801 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6802 assert(Tmp.getNode() && "Node must be custom expanded!");
6803 ExpandOp(Tmp.getValue(0), Lo, Hi);
6804 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6805 LegalizeOp(Tmp.getValue(1)));
6806 break;
6807 }
6808
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006809 case ISD::ATOMIC_LOAD_ADD:
6810 case ISD::ATOMIC_LOAD_SUB:
6811 case ISD::ATOMIC_LOAD_AND:
6812 case ISD::ATOMIC_LOAD_OR:
6813 case ISD::ATOMIC_LOAD_XOR:
6814 case ISD::ATOMIC_LOAD_NAND:
6815 case ISD::ATOMIC_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006816 // These operations require a loop to be generated. We can't do that yet,
6817 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006818 SDValue In2Lo, In2Hi, In2;
6819 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006820 In2 = DAG.getNode(ISD::BUILD_PAIR, dl, VT, In2Lo, In2Hi);
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006821 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00006822 SDValue Replace =
Dale Johannesen8a782a22009-02-02 22:12:50 +00006823 DAG.getAtomic(Op.getOpcode(), dl, Anode->getMemoryVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006824 Op.getOperand(0), Op.getOperand(1), In2,
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006825 Anode->getSrcValue(), Anode->getAlignment());
6826 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006827 ExpandOp(Result.getValue(0), Lo, Hi);
6828 // Remember that we legalized the chain.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006829 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Result.getValue(1)));
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006830 break;
6831 }
6832
Chris Lattner4e6c7462005-01-08 19:27:05 +00006833 // These operators cannot be expanded directly, emit them as calls to
6834 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006835 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006836 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006837 SDValue Op;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006838 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6839 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006840 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6841 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006842 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006843
Dale Johannesen8a782a22009-02-02 22:12:50 +00006844 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op), DAG);
Chris Lattnerf20d1832005-07-30 01:40:57 +00006845
Chris Lattner80a3e942005-07-29 00:33:32 +00006846 // Now that the custom expander is done, expand the result, which is still
6847 // VT.
Gabor Greifba36cb52008-08-28 21:40:38 +00006848 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006849 ExpandOp(Op, Lo, Hi);
6850 break;
6851 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006852 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006853
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006854 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6855 VT);
6856 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6857 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006858 break;
Evan Cheng56966222007-01-12 02:11:51 +00006859 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006860
Evan Cheng56966222007-01-12 02:11:51 +00006861 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006862 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006863 SDValue Op;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006864 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6865 case Expand: assert(0 && "cannot expand FP!");
6866 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6867 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6868 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006869
Dale Johannesen8a782a22009-02-02 22:12:50 +00006870 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, dl, VT, Op), DAG);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006871
6872 // Now that the custom expander is done, expand the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00006873 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006874 ExpandOp(Op, Lo, Hi);
6875 break;
6876 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006877 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006878
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006879 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6880 VT);
6881 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6882 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006883 break;
Evan Cheng56966222007-01-12 02:11:51 +00006884 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006885
Evan Cheng05a2d562006-01-09 18:31:59 +00006886 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006887 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006888 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006889 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006890 SDValue Op = DAG.getNode(ISD::SHL, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006891 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006892 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006893 // Now that the custom expander is done, expand the result, which is
6894 // still VT.
6895 ExpandOp(Op, Lo, Hi);
6896 break;
6897 }
6898 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006899
6900 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
Chris Lattner79980b02006-09-13 03:50:39 +00006901 // this X << 1 as X+X.
6902 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006903 if (ShAmt->getAPIntValue() == 1 &&
Scott Michelfdc40a02009-02-17 22:15:04 +00006904 TLI.isOperationLegalOrCustom(ISD::ADDC, NVT) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006905 TLI.isOperationLegalOrCustom(ISD::ADDE, NVT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006906 SDValue LoOps[2], HiOps[3];
Chris Lattner79980b02006-09-13 03:50:39 +00006907 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6908 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6909 LoOps[1] = LoOps[0];
Dale Johannesen8a782a22009-02-02 22:12:50 +00006910 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Chris Lattner79980b02006-09-13 03:50:39 +00006911
6912 HiOps[1] = HiOps[0];
6913 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006914 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Chris Lattner79980b02006-09-13 03:50:39 +00006915 break;
6916 }
6917 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006918
Chris Lattnere34b3962005-01-19 04:19:40 +00006919 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006920 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006921 break;
Chris Lattner47599822005-04-02 03:38:53 +00006922
6923 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006924 TargetLowering::LegalizeAction Action =
6925 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6926 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6927 Action == TargetLowering::Custom) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006928 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006929 ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006930 break;
6931 }
6932
Chris Lattnere34b3962005-01-19 04:19:40 +00006933 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006934 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006935 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006936 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006937
Evan Cheng05a2d562006-01-09 18:31:59 +00006938 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006939 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006940 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006941 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dale Johannesene72c5962009-02-06 21:55:48 +00006942 SDValue Op = DAG.getNode(ISD::SRA, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006943 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006944 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006945 // Now that the custom expander is done, expand the result, which is
6946 // still VT.
6947 ExpandOp(Op, Lo, Hi);
6948 break;
6949 }
6950 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006951
Chris Lattnere34b3962005-01-19 04:19:40 +00006952 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006953 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006954 break;
Chris Lattner47599822005-04-02 03:38:53 +00006955
6956 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006957 TargetLowering::LegalizeAction Action =
6958 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6959 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6960 Action == TargetLowering::Custom) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006961 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006962 ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006963 break;
6964 }
6965
Chris Lattnere34b3962005-01-19 04:19:40 +00006966 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006967 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006968 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006969 }
6970
6971 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006972 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006973 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006974 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006975 SDValue Op = DAG.getNode(ISD::SRL, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006976 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006977 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006978 // Now that the custom expander is done, expand the result, which is
6979 // still VT.
6980 ExpandOp(Op, Lo, Hi);
6981 break;
6982 }
6983 }
6984
Chris Lattnere34b3962005-01-19 04:19:40 +00006985 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006986 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006987 break;
Chris Lattner47599822005-04-02 03:38:53 +00006988
6989 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006990 TargetLowering::LegalizeAction Action =
6991 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6992 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6993 Action == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006994 ExpandShiftParts(ISD::SRL_PARTS,
6995 Node->getOperand(0), ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006996 break;
6997 }
6998
Chris Lattnere34b3962005-01-19 04:19:40 +00006999 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00007000 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00007001 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00007002 }
Chris Lattnere34b3962005-01-19 04:19:40 +00007003
Misha Brukmanedf128a2005-04-21 22:36:52 +00007004 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00007005 case ISD::SUB: {
7006 // If the target wants to custom expand this, let them.
7007 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
7008 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00007009 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007010 if (Result.getNode()) {
Duncan Sands69bfb152008-06-22 09:42:16 +00007011 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00007012 break;
7013 }
7014 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00007015 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007016 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattner8137c9e2006-01-28 05:07:51 +00007017 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7018 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Dan Gohman475871a2008-07-27 21:46:04 +00007019 SDValue LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00007020 LoOps[0] = LHSL;
7021 LoOps[1] = RHSL;
7022 HiOps[0] = LHSH;
7023 HiOps[1] = RHSH;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00007024
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007025 //cascaded check to see if any smaller size has a a carry flag.
7026 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
7027 bool hasCarry = false;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00007028 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
7029 MVT AVT = MVT::getIntegerVT(BitSize);
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007030 if (TLI.isOperationLegalOrCustom(OpV, AVT)) {
Andrew Lenharth2163ca12008-10-07 18:27:23 +00007031 hasCarry = true;
7032 break;
7033 }
7034 }
7035
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007036 if(hasCarry) {
Evan Cheng637ed032008-12-12 18:49:09 +00007037 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007038 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007039 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007040 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007041 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007042 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007043 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007044 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007045 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007046 }
7047 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007048 } else {
Andrew Lenharth40d51392008-10-07 14:15:42 +00007049 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007050 Lo = DAG.getNode(ISD::ADD, dl, NVT, LoOps, 2);
7051 Hi = DAG.getNode(ISD::ADD, dl, NVT, HiOps, 2);
7052 SDValue Cmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007053 Lo, LoOps[0], ISD::SETULT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007054 SDValue Carry1 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp1,
Scott Michelfdc40a02009-02-17 22:15:04 +00007055 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007056 DAG.getConstant(0, NVT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00007057 SDValue Cmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007058 Lo, LoOps[1], ISD::SETULT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007059 SDValue Carry2 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp2,
Scott Michelfdc40a02009-02-17 22:15:04 +00007060 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007061 Carry1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007062 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, Carry2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007063 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007064 Lo = DAG.getNode(ISD::SUB, dl, NVT, LoOps, 2);
7065 Hi = DAG.getNode(ISD::SUB, dl, NVT, HiOps, 2);
7066 SDValue Cmp = DAG.getSetCC(dl, NVT, LoOps[0], LoOps[1], ISD::SETULT);
7067 SDValue Borrow = DAG.getNode(ISD::SELECT, dl, NVT, Cmp,
Scott Michelfdc40a02009-02-17 22:15:04 +00007068 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007069 DAG.getConstant(0, NVT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00007070 Hi = DAG.getNode(ISD::SUB, dl, NVT, Hi, Borrow);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007071 }
7072 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007073 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00007074 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007075
Chris Lattnerb429f732007-05-17 18:15:41 +00007076 case ISD::ADDC:
7077 case ISD::SUBC: {
7078 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007079 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007080 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7081 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7082 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007083 SDValue LoOps[2] = { LHSL, RHSL };
7084 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michelfdc40a02009-02-17 22:15:04 +00007085
Chris Lattnerb429f732007-05-17 18:15:41 +00007086 if (Node->getOpcode() == ISD::ADDC) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007087 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Chris Lattnerb429f732007-05-17 18:15:41 +00007088 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007089 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007090 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007091 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Chris Lattnerb429f732007-05-17 18:15:41 +00007092 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007093 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007094 }
7095 // Remember that we legalized the flag.
7096 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7097 break;
7098 }
7099 case ISD::ADDE:
7100 case ISD::SUBE: {
7101 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007102 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007103 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7104 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7105 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007106 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
7107 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michelfdc40a02009-02-17 22:15:04 +00007108
Dale Johannesen8a782a22009-02-02 22:12:50 +00007109 Lo = DAG.getNode(Node->getOpcode(), dl, VTList, LoOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007110 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007111 Hi = DAG.getNode(Node->getOpcode(), dl, VTList, HiOps, 3);
Scott Michelfdc40a02009-02-17 22:15:04 +00007112
Chris Lattnerb429f732007-05-17 18:15:41 +00007113 // Remember that we legalized the flag.
7114 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7115 break;
7116 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007117 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007118 // If the target wants to custom expand this, let them.
7119 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00007120 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007121 if (New.getNode()) {
Chris Lattner8829dc82006-09-16 05:08:34 +00007122 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007123 break;
7124 }
7125 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007126
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007127 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, NVT);
7128 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, NVT);
7129 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, NVT);
7130 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00007131 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman475871a2008-07-27 21:46:04 +00007132 SDValue LL, LH, RL, RH;
Nate Begemanc7c16572005-04-11 03:01:51 +00007133 ExpandOp(Node->getOperand(0), LL, LH);
7134 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007135 unsigned OuterBitSize = Op.getValueSizeInBits();
7136 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00007137 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
7138 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00007139 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
7140 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
7141 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00007142 // The inputs are both zero-extended.
7143 if (HasUMUL_LOHI) {
7144 // We can emit a umul_lohi.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007145 Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007146 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007147 break;
7148 }
7149 if (HasMULHU) {
7150 // We can emit a mulhu+mul.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007151 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7152 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
Dan Gohman525178c2007-10-08 18:33:35 +00007153 break;
7154 }
Dan Gohman525178c2007-10-08 18:33:35 +00007155 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007156 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00007157 // The input values are both sign-extended.
7158 if (HasSMUL_LOHI) {
7159 // We can emit a smul_lohi.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007160 Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007161 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007162 break;
7163 }
7164 if (HasMULHS) {
7165 // We can emit a mulhs+mul.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007166 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7167 Hi = DAG.getNode(ISD::MULHS, dl, NVT, LL, RL);
Dan Gohman525178c2007-10-08 18:33:35 +00007168 break;
7169 }
7170 }
7171 if (HasUMUL_LOHI) {
7172 // Lo,Hi = umul LHS, RHS.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007173 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, dl,
Dan Gohman525178c2007-10-08 18:33:35 +00007174 DAG.getVTList(NVT, NVT), LL, RL);
7175 Lo = UMulLOHI;
7176 Hi = UMulLOHI.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007177 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7178 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7179 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7180 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00007181 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00007182 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007183 if (HasMULHU) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007184 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7185 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
7186 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7187 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7188 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7189 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007190 break;
7191 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007192 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00007193
Dan Gohman525178c2007-10-08 18:33:35 +00007194 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00007195 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00007196 break;
7197 }
Evan Cheng56966222007-01-12 02:11:51 +00007198 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007199 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007200 break;
7201 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007202 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007203 break;
7204 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007205 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007206 break;
7207 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007208 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007209 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00007210
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007211 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00007212 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
7213 RTLIB::ADD_F64,
7214 RTLIB::ADD_F80,
7215 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007216 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007217 break;
7218 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00007219 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
7220 RTLIB::SUB_F64,
7221 RTLIB::SUB_F80,
7222 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007223 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007224 break;
7225 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00007226 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
7227 RTLIB::MUL_F64,
7228 RTLIB::MUL_F80,
7229 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007230 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007231 break;
7232 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007233 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
7234 RTLIB::DIV_F64,
7235 RTLIB::DIV_F80,
7236 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007237 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007238 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007239 case ISD::FP_EXTEND: {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007240 if (VT == MVT::ppcf128) {
7241 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
7242 Node->getOperand(0).getValueType()==MVT::f64);
7243 const uint64_t zero = 0;
7244 if (Node->getOperand(0).getValueType()==MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00007245 Hi = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Node->getOperand(0));
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007246 else
7247 Hi = Node->getOperand(0);
7248 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7249 break;
7250 }
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007251 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
7252 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
7253 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007254 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007255 }
7256 case ISD::FP_ROUND: {
7257 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
7258 VT);
7259 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
7260 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007261 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007262 }
Evan Cheng4b887022008-09-09 23:02:14 +00007263 case ISD::FSQRT:
7264 case ISD::FSIN:
Scott Michelfdc40a02009-02-17 22:15:04 +00007265 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007266 case ISD::FLOG:
7267 case ISD::FLOG2:
7268 case ISD::FLOG10:
7269 case ISD::FEXP:
7270 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007271 case ISD::FTRUNC:
7272 case ISD::FFLOOR:
7273 case ISD::FCEIL:
7274 case ISD::FRINT:
7275 case ISD::FNEARBYINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00007276 case ISD::FPOW:
7277 case ISD::FPOWI: {
Evan Cheng56966222007-01-12 02:11:51 +00007278 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007279 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00007280 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00007281 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
7282 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007283 break;
7284 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00007285 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
7286 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007287 break;
7288 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00007289 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
7290 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007291 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007292 case ISD::FLOG:
7293 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
7294 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
7295 break;
7296 case ISD::FLOG2:
7297 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
7298 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
7299 break;
7300 case ISD::FLOG10:
7301 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
7302 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
7303 break;
7304 case ISD::FEXP:
7305 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
7306 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
7307 break;
7308 case ISD::FEXP2:
7309 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
7310 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
7311 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007312 case ISD::FTRUNC:
7313 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
7314 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
7315 break;
7316 case ISD::FFLOOR:
7317 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
7318 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
7319 break;
7320 case ISD::FCEIL:
7321 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
7322 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
7323 break;
7324 case ISD::FRINT:
7325 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
7326 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
7327 break;
7328 case ISD::FNEARBYINT:
7329 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
7330 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
7331 break;
Evan Cheng4b887022008-09-09 23:02:14 +00007332 case ISD::FPOW:
7333 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
7334 RTLIB::POW_PPCF128);
7335 break;
7336 case ISD::FPOWI:
7337 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
7338 RTLIB::POWI_PPCF128);
7339 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007340 default: assert(0 && "Unreachable!");
7341 }
Duncan Sands460a14e2008-04-12 17:14:18 +00007342 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00007343 break;
7344 }
Evan Cheng966bf242006-12-16 00:52:40 +00007345 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007346 if (VT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00007347 SDValue Tmp;
Dale Johannesenf6467742007-10-12 19:02:17 +00007348 ExpandOp(Node->getOperand(0), Lo, Tmp);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007349 Hi = DAG.getNode(ISD::FABS, dl, NVT, Tmp);
Dale Johannesenf6467742007-10-12 19:02:17 +00007350 // lo = hi==fabs(hi) ? lo : -lo;
Dale Johannesen8a782a22009-02-02 22:12:50 +00007351 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Hi, Tmp,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007352 Lo, DAG.getNode(ISD::FNEG, dl, NVT, Lo),
7353 DAG.getCondCode(ISD::SETEQ));
Dale Johannesenf6467742007-10-12 19:02:17 +00007354 break;
7355 }
Dan Gohman475871a2008-07-27 21:46:04 +00007356 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007357 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
7358 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007359 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7360 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7361 Lo = DAG.getNode(ISD::AND, dl, NVT, Lo, Mask);
Evan Cheng966bf242006-12-16 00:52:40 +00007362 if (getTypeAction(NVT) == Expand)
7363 ExpandOp(Lo, Lo, Hi);
7364 break;
7365 }
7366 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007367 if (VT == MVT::ppcf128) {
7368 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007369 Lo = DAG.getNode(ISD::FNEG, dl, MVT::f64, Lo);
7370 Hi = DAG.getNode(ISD::FNEG, dl, MVT::f64, Hi);
Dale Johannesenf6467742007-10-12 19:02:17 +00007371 break;
7372 }
Dan Gohman475871a2008-07-27 21:46:04 +00007373 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007374 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
7375 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007376 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7377 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7378 Lo = DAG.getNode(ISD::XOR, dl, NVT, Lo, Mask);
Evan Cheng966bf242006-12-16 00:52:40 +00007379 if (getTypeAction(NVT) == Expand)
7380 ExpandOp(Lo, Lo, Hi);
7381 break;
7382 }
Evan Cheng912095b2007-01-04 21:56:39 +00007383 case ISD::FCOPYSIGN: {
7384 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
7385 if (getTypeAction(NVT) == Expand)
7386 ExpandOp(Lo, Lo, Hi);
7387 break;
7388 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007389 case ISD::SINT_TO_FP:
7390 case ISD::UINT_TO_FP: {
7391 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007392 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00007393
7394 // Promote the operand if needed. Do this before checking for
7395 // ppcf128 so conversions of i16 and i8 work.
7396 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman475871a2008-07-27 21:46:04 +00007397 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesencf498192008-03-18 17:28:38 +00007398 Tmp = isSigned
Dale Johannesen8a782a22009-02-02 22:12:50 +00007399 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp.getValueType(), Tmp,
Dale Johannesencf498192008-03-18 17:28:38 +00007400 DAG.getValueType(SrcVT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00007401 : DAG.getZeroExtendInReg(Tmp, dl, SrcVT);
Gabor Greifba36cb52008-08-28 21:40:38 +00007402 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesencf498192008-03-18 17:28:38 +00007403 SrcVT = Node->getOperand(0).getValueType();
7404 }
7405
Dan Gohmana2e94852008-03-10 23:03:31 +00007406 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007407 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007408 if (isSigned) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007409 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007410 Node->getOperand(0)));
7411 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7412 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007413 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Scott Michelfdc40a02009-02-17 22:15:04 +00007414 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007415 Node->getOperand(0)));
7416 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007417 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007418 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen8a782a22009-02-02 22:12:50 +00007419 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl,
7420 MVT::ppcf128, Node->getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00007421 DAG.getConstant(0, MVT::i32),
Dale Johannesen8a782a22009-02-02 22:12:50 +00007422 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007423 DAG.getConstantFP
7424 (APFloat(APInt(128, 2, TwoE32)),
7425 MVT::ppcf128)),
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007426 Hi,
7427 DAG.getCondCode(ISD::SETLT)),
7428 Lo, Hi);
7429 }
7430 break;
7431 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00007432 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
7433 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007434 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen8a782a22009-02-02 22:12:50 +00007435 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::ppcf128,
7436 Node->getOperand(0)), Lo, Hi);
7437 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007438 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
Dale Johannesen8a782a22009-02-02 22:12:50 +00007439 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl, MVT::ppcf128,
7440 Node->getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00007441 DAG.getConstant(0, MVT::i64),
Dale Johannesen8a782a22009-02-02 22:12:50 +00007442 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007443 DAG.getConstantFP
7444 (APFloat(APInt(128, 2, TwoE64)),
7445 MVT::ppcf128)),
Dale Johannesen6e63e092007-10-12 17:52:03 +00007446 Hi,
7447 DAG.getCondCode(ISD::SETLT)),
7448 Lo, Hi);
7449 break;
7450 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007451
Dan Gohmana2e94852008-03-10 23:03:31 +00007452 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00007453 Node->getOperand(0), dl);
Evan Cheng110cf482008-04-01 01:50:16 +00007454 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00007455 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00007456 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00007457 break;
7458 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00007459 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00007460
Chris Lattner83397362005-12-21 18:02:52 +00007461 // Make sure the resultant values have been legalized themselves, unless this
7462 // is a type that requires multi-step expansion.
7463 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
7464 Lo = LegalizeOp(Lo);
Gabor Greifba36cb52008-08-28 21:40:38 +00007465 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00007466 // Don't legalize the high part if it is expanded to a single node.
7467 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00007468 }
Evan Cheng05a2d562006-01-09 18:31:59 +00007469
7470 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00007471 bool isNew =
7472 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00007473 assert(isNew && "Value already expanded?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007474 isNew = isNew;
Chris Lattner3e928bb2005-01-07 07:47:09 +00007475}
7476
Dan Gohman7f321562007-06-25 16:23:39 +00007477/// SplitVectorOp - Given an operand of vector type, break it down into
7478/// two smaller values, still of vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00007479void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
7480 SDValue &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007481 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007482 SDNode *Node = Op.getNode();
Dale Johannesenbb5da912009-02-02 20:41:04 +00007483 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007484 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00007485 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00007486
Duncan Sands83ec4b62008-06-06 12:08:01 +00007487 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00007488
7489 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
7490 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
7491
Duncan Sands83ec4b62008-06-06 12:08:01 +00007492 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
7493 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007494
Chris Lattnerc7029802006-03-18 01:44:44 +00007495 // See if we already split it.
Dan Gohman475871a2008-07-27 21:46:04 +00007496 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattnerc7029802006-03-18 01:44:44 +00007497 = SplitNodes.find(Op);
7498 if (I != SplitNodes.end()) {
7499 Lo = I->second.first;
7500 Hi = I->second.second;
7501 return;
7502 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007503
Chris Lattnerc7029802006-03-18 01:44:44 +00007504 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007505 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007506#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007507 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007508#endif
7509 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007510 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00007511 Lo = DAG.getUNDEF(NewVT_Lo);
7512 Hi = DAG.getUNDEF(NewVT_Hi);
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007513 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007514 case ISD::BUILD_PAIR:
7515 Lo = Node->getOperand(0);
7516 Hi = Node->getOperand(1);
7517 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00007518 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00007519 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
7520 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007521 unsigned Index = Idx->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007522 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman68679912008-04-25 18:07:40 +00007523 if (Index < NewNumElts_Lo)
Dale Johannesenc6be1102009-02-02 22:49:46 +00007524 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Lo, Lo, ScalarOp,
Nate Begeman68679912008-04-25 18:07:40 +00007525 DAG.getIntPtrConstant(Index));
7526 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00007527 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Hi, Hi, ScalarOp,
Nate Begeman68679912008-04-25 18:07:40 +00007528 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
7529 break;
7530 }
Dan Gohman475871a2008-07-27 21:46:04 +00007531 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007532 Node->getOperand(1),
7533 Node->getOperand(2), dl);
Nate Begeman68679912008-04-25 18:07:40 +00007534 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00007535 break;
7536 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00007537 case ISD::VECTOR_SHUFFLE: {
7538 // Build the low part.
Dan Gohman475871a2008-07-27 21:46:04 +00007539 SDValue Mask = Node->getOperand(2);
7540 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007541 MVT PtrVT = TLI.getPointerTy();
Scott Michelfdc40a02009-02-17 22:15:04 +00007542
7543 // Insert all of the elements from the input that are needed. We use
Chris Lattner6c9c6802007-11-19 21:16:54 +00007544 // buildvector of extractelement here because the input vectors will have
7545 // to be legalized, so this makes the code simpler.
7546 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007547 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007548 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007549 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman5922f562008-03-14 00:53:31 +00007550 continue;
7551 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007552 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007553 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007554 if (Idx >= NumElements) {
7555 InVec = Node->getOperand(1);
7556 Idx -= NumElements;
7557 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00007558 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner6c9c6802007-11-19 21:16:54 +00007559 DAG.getConstant(Idx, PtrVT)));
7560 }
Evan Chenga87008d2009-02-25 22:49:59 +00007561 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007562 Ops.clear();
Scott Michelfdc40a02009-02-17 22:15:04 +00007563
Chris Lattner6c9c6802007-11-19 21:16:54 +00007564 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007565 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007566 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007567 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman5922f562008-03-14 00:53:31 +00007568 continue;
7569 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007570 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007571 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007572 if (Idx >= NumElements) {
7573 InVec = Node->getOperand(1);
7574 Idx -= NumElements;
7575 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00007576 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner6c9c6802007-11-19 21:16:54 +00007577 DAG.getConstant(Idx, PtrVT)));
7578 }
Evan Chenga87008d2009-02-25 22:49:59 +00007579 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007580 break;
7581 }
Dan Gohman7f321562007-06-25 16:23:39 +00007582 case ISD::BUILD_VECTOR: {
Scott Michelfdc40a02009-02-17 22:15:04 +00007583 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007584 Node->op_begin()+NewNumElts_Lo);
Evan Chenga87008d2009-02-25 22:49:59 +00007585 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007586
Scott Michelfdc40a02009-02-17 22:15:04 +00007587 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007588 Node->op_end());
Evan Chenga87008d2009-02-25 22:49:59 +00007589 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007590 break;
7591 }
Dan Gohman7f321562007-06-25 16:23:39 +00007592 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00007593 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00007594 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7595 if (NewNumSubvectors == 1) {
7596 Lo = Node->getOperand(0);
7597 Hi = Node->getOperand(1);
7598 } else {
Mon P Wangaeb06d22008-11-10 04:46:22 +00007599 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
7600 Node->op_begin()+NewNumSubvectors);
Scott Michelfdc40a02009-02-17 22:15:04 +00007601 Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Lo,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007602 &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00007603
Mon P Wangaeb06d22008-11-10 04:46:22 +00007604 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007605 Node->op_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00007606 Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Hi,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007607 &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00007608 }
Dan Gohman65956352007-06-13 15:12:02 +00007609 break;
7610 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00007611 case ISD::EXTRACT_SUBVECTOR: {
7612 SDValue Vec = Op.getOperand(0);
7613 SDValue Idx = Op.getOperand(1);
7614 MVT IdxVT = Idx.getValueType();
7615
Dale Johannesenc6be1102009-02-02 22:49:46 +00007616 Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Lo, Vec, Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007617 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
7618 if (CIdx) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007619 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec,
Mon P Wangaeb06d22008-11-10 04:46:22 +00007620 DAG.getConstant(CIdx->getZExtValue() + NewNumElts_Lo,
7621 IdxVT));
7622 } else {
Dale Johannesenc6be1102009-02-02 22:49:46 +00007623 Idx = DAG.getNode(ISD::ADD, dl, IdxVT, Idx,
Mon P Wangaeb06d22008-11-10 04:46:22 +00007624 DAG.getConstant(NewNumElts_Lo, IdxVT));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007625 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec, Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007626 }
7627 break;
7628 }
Dan Gohmanc6230962007-10-17 14:48:28 +00007629 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007630 SDValue Cond = Node->getOperand(0);
Dan Gohmanc6230962007-10-17 14:48:28 +00007631
Dan Gohman475871a2008-07-27 21:46:04 +00007632 SDValue LL, LH, RL, RH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007633 SplitVectorOp(Node->getOperand(1), LL, LH);
7634 SplitVectorOp(Node->getOperand(2), RL, RH);
7635
Duncan Sands83ec4b62008-06-06 12:08:01 +00007636 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00007637 // Handle a vector merge.
Dan Gohman475871a2008-07-27 21:46:04 +00007638 SDValue CL, CH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007639 SplitVectorOp(Cond, CL, CH);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007640 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, CL, LL, RL);
7641 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007642 } else {
7643 // Handle a simple select with vector operands.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007644 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, Cond, LL, RL);
7645 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007646 }
7647 break;
7648 }
Chris Lattner80c1a562008-06-30 02:43:01 +00007649 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007650 SDValue CondLHS = Node->getOperand(0);
7651 SDValue CondRHS = Node->getOperand(1);
7652 SDValue CondCode = Node->getOperand(4);
Scott Michelfdc40a02009-02-17 22:15:04 +00007653
Dan Gohman475871a2008-07-27 21:46:04 +00007654 SDValue LL, LH, RL, RH;
Chris Lattner80c1a562008-06-30 02:43:01 +00007655 SplitVectorOp(Node->getOperand(2), LL, LH);
7656 SplitVectorOp(Node->getOperand(3), RL, RH);
Scott Michelfdc40a02009-02-17 22:15:04 +00007657
Chris Lattner80c1a562008-06-30 02:43:01 +00007658 // Handle a simple select with vector operands.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007659 Lo = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Lo, CondLHS, CondRHS,
Chris Lattner80c1a562008-06-30 02:43:01 +00007660 LL, RL, CondCode);
Scott Michelfdc40a02009-02-17 22:15:04 +00007661 Hi = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Hi, CondLHS, CondRHS,
Chris Lattner80c1a562008-06-30 02:43:01 +00007662 LH, RH, CondCode);
7663 break;
7664 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00007665 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007666 SDValue LL, LH, RL, RH;
Nate Begemanb43e9c12008-05-12 19:40:03 +00007667 SplitVectorOp(Node->getOperand(0), LL, LH);
7668 SplitVectorOp(Node->getOperand(1), RL, RH);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007669 Lo = DAG.getNode(ISD::VSETCC, dl, NewVT_Lo, LL, RL, Node->getOperand(2));
7670 Hi = DAG.getNode(ISD::VSETCC, dl, NewVT_Hi, LH, RH, Node->getOperand(2));
Nate Begemanb43e9c12008-05-12 19:40:03 +00007671 break;
7672 }
Dan Gohman7f321562007-06-25 16:23:39 +00007673 case ISD::ADD:
7674 case ISD::SUB:
7675 case ISD::MUL:
7676 case ISD::FADD:
7677 case ISD::FSUB:
7678 case ISD::FMUL:
7679 case ISD::SDIV:
7680 case ISD::UDIV:
7681 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00007682 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007683 case ISD::AND:
7684 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00007685 case ISD::XOR:
7686 case ISD::UREM:
7687 case ISD::SREM:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00007688 case ISD::FREM:
7689 case ISD::SHL:
7690 case ISD::SRA:
7691 case ISD::SRL: {
Dan Gohman475871a2008-07-27 21:46:04 +00007692 SDValue LL, LH, RL, RH;
Chris Lattnerc7029802006-03-18 01:44:44 +00007693 SplitVectorOp(Node->getOperand(0), LL, LH);
7694 SplitVectorOp(Node->getOperand(1), RL, RH);
Scott Michelfdc40a02009-02-17 22:15:04 +00007695
Dale Johannesenc6be1102009-02-02 22:49:46 +00007696 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, LL, RL);
7697 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00007698 break;
7699 }
Dan Gohman7f8613e2008-08-14 20:04:46 +00007700 case ISD::FP_ROUND:
Dan Gohman82669522007-10-11 23:57:53 +00007701 case ISD::FPOWI: {
Dan Gohman475871a2008-07-27 21:46:04 +00007702 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007703 SplitVectorOp(Node->getOperand(0), L, H);
7704
Dale Johannesenc6be1102009-02-02 22:49:46 +00007705 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L, Node->getOperand(1));
7706 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00007707 break;
7708 }
7709 case ISD::CTTZ:
7710 case ISD::CTLZ:
7711 case ISD::CTPOP:
7712 case ISD::FNEG:
7713 case ISD::FABS:
7714 case ISD::FSQRT:
7715 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00007716 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007717 case ISD::FLOG:
7718 case ISD::FLOG2:
7719 case ISD::FLOG10:
7720 case ISD::FEXP:
7721 case ISD::FEXP2:
Nate Begemanb348d182007-11-17 03:58:34 +00007722 case ISD::FP_TO_SINT:
7723 case ISD::FP_TO_UINT:
7724 case ISD::SINT_TO_FP:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007725 case ISD::UINT_TO_FP:
7726 case ISD::TRUNCATE:
7727 case ISD::ANY_EXTEND:
7728 case ISD::SIGN_EXTEND:
7729 case ISD::ZERO_EXTEND:
7730 case ISD::FP_EXTEND: {
Dan Gohman475871a2008-07-27 21:46:04 +00007731 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007732 SplitVectorOp(Node->getOperand(0), L, H);
7733
Dale Johannesenc6be1102009-02-02 22:49:46 +00007734 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L);
7735 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00007736 break;
7737 }
Mon P Wang77cdf302008-11-10 20:54:11 +00007738 case ISD::CONVERT_RNDSAT: {
7739 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
7740 SDValue L, H;
7741 SplitVectorOp(Node->getOperand(0), L, H);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007742 SDValue DTyOpL = DAG.getValueType(NewVT_Lo);
7743 SDValue DTyOpH = DAG.getValueType(NewVT_Hi);
7744 SDValue STyOpL = DAG.getValueType(L.getValueType());
7745 SDValue STyOpH = DAG.getValueType(H.getValueType());
Mon P Wang77cdf302008-11-10 20:54:11 +00007746
7747 SDValue RndOp = Node->getOperand(3);
7748 SDValue SatOp = Node->getOperand(4);
7749
Dale Johannesenc460ae92009-02-04 00:13:36 +00007750 Lo = DAG.getConvertRndSat(NewVT_Lo, dl, L, DTyOpL, STyOpL,
Mon P Wang77cdf302008-11-10 20:54:11 +00007751 RndOp, SatOp, CvtCode);
Dale Johannesenc460ae92009-02-04 00:13:36 +00007752 Hi = DAG.getConvertRndSat(NewVT_Hi, dl, H, DTyOpH, STyOpH,
Mon P Wang77cdf302008-11-10 20:54:11 +00007753 RndOp, SatOp, CvtCode);
7754 break;
7755 }
Dan Gohman7f321562007-06-25 16:23:39 +00007756 case ISD::LOAD: {
7757 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007758 SDValue Ch = LD->getChain();
7759 SDValue Ptr = LD->getBasePtr();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007760 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007761 const Value *SV = LD->getSrcValue();
7762 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007763 MVT MemoryVT = LD->getMemoryVT();
Dan Gohman7f321562007-06-25 16:23:39 +00007764 unsigned Alignment = LD->getAlignment();
7765 bool isVolatile = LD->isVolatile();
7766
Dan Gohman7f8613e2008-08-14 20:04:46 +00007767 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesene8d72302009-02-06 23:05:02 +00007768 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Dan Gohman7f8613e2008-08-14 20:04:46 +00007769
7770 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7771 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7772 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7773
Dale Johannesenc6be1102009-02-02 22:49:46 +00007774 Lo = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007775 NewVT_Lo, Ch, Ptr, Offset,
7776 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7777 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Dale Johannesenc6be1102009-02-02 22:49:46 +00007778 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00007779 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00007780 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00007781 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007782 Hi = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007783 NewVT_Hi, Ch, Ptr, Offset,
7784 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00007785
Chris Lattnerc7029802006-03-18 01:44:44 +00007786 // Build a factor node to remember that this load is independent of the
7787 // other one.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007788 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007789 Hi.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00007790
Chris Lattnerc7029802006-03-18 01:44:44 +00007791 // Remember that we legalized the chain.
7792 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00007793 break;
7794 }
Dan Gohman7f321562007-06-25 16:23:39 +00007795 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00007796 // We know the result is a vector. The input may be either a vector or a
7797 // scalar value.
Dan Gohman475871a2008-07-27 21:46:04 +00007798 SDValue InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007799 if (!InOp.getValueType().isVector() ||
7800 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00007801 // The input is a scalar or single-element vector.
7802 // Lower to a store/load so that it can be split.
7803 // FIXME: this could be improved probably.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007804 unsigned LdAlign = TLI.getTargetData()->
7805 getPrefTypeAlignment(Op.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00007806 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greifba36cb52008-08-28 21:40:38 +00007807 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Chris Lattner7692eb42006-03-23 21:16:34 +00007808
Dale Johannesenc6be1102009-02-02 22:49:46 +00007809 SDValue St = DAG.getStore(DAG.getEntryNode(), dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007810 InOp, Ptr,
7811 PseudoSourceValue::getFixedStack(FI), 0);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007812 InOp = DAG.getLoad(Op.getValueType(), dl, St, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007813 PseudoSourceValue::getFixedStack(FI), 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00007814 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007815 // Split the vector and convert each of the pieces now.
7816 SplitVectorOp(InOp, Lo, Hi);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007817 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Lo, Lo);
7818 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007819 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007820 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007821 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007822
Chris Lattnerc7029802006-03-18 01:44:44 +00007823 // Remember in a map if the values will be reused later.
Scott Michelfdc40a02009-02-17 22:15:04 +00007824 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007825 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007826 assert(isNew && "Value already split?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007827 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00007828}
7829
7830
Dan Gohman89b20c02007-06-27 14:06:22 +00007831/// ScalarizeVectorOp - Given an operand of single-element vector type
7832/// (e.g. v1f32), convert it into the equivalent operation that returns a
7833/// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +00007834SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007835 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007836 SDNode *Node = Op.getNode();
Dale Johannesenc6be1102009-02-02 22:49:46 +00007837 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007838 MVT NewVT = Op.getValueType().getVectorElementType();
7839 assert(Op.getValueType().getVectorNumElements() == 1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007840
Dan Gohman7f321562007-06-25 16:23:39 +00007841 // See if we already scalarized it.
Dan Gohman475871a2008-07-27 21:46:04 +00007842 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohman7f321562007-06-25 16:23:39 +00007843 if (I != ScalarizedNodes.end()) return I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00007844
Dan Gohman475871a2008-07-27 21:46:04 +00007845 SDValue Result;
Chris Lattnerc7029802006-03-18 01:44:44 +00007846 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007847 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007848#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007849 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007850#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007851 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7852 case ISD::ADD:
7853 case ISD::FADD:
7854 case ISD::SUB:
7855 case ISD::FSUB:
7856 case ISD::MUL:
7857 case ISD::FMUL:
7858 case ISD::SDIV:
7859 case ISD::UDIV:
7860 case ISD::FDIV:
7861 case ISD::SREM:
7862 case ISD::UREM:
7863 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007864 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007865 case ISD::AND:
7866 case ISD::OR:
7867 case ISD::XOR:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007868 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007869 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007870 ScalarizeVectorOp(Node->getOperand(0)),
7871 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007872 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007873 case ISD::FNEG:
7874 case ISD::FABS:
7875 case ISD::FSQRT:
7876 case ISD::FSIN:
7877 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007878 case ISD::FLOG:
7879 case ISD::FLOG2:
7880 case ISD::FLOG10:
7881 case ISD::FEXP:
7882 case ISD::FEXP2:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007883 case ISD::FP_TO_SINT:
7884 case ISD::FP_TO_UINT:
7885 case ISD::SINT_TO_FP:
7886 case ISD::UINT_TO_FP:
7887 case ISD::SIGN_EXTEND:
7888 case ISD::ZERO_EXTEND:
7889 case ISD::ANY_EXTEND:
7890 case ISD::TRUNCATE:
7891 case ISD::FP_EXTEND:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007892 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007893 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007894 ScalarizeVectorOp(Node->getOperand(0)));
7895 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00007896 case ISD::CONVERT_RNDSAT: {
7897 SDValue Op0 = ScalarizeVectorOp(Node->getOperand(0));
Dale Johannesenc460ae92009-02-04 00:13:36 +00007898 Result = DAG.getConvertRndSat(NewVT, dl, Op0,
Mon P Wang77cdf302008-11-10 20:54:11 +00007899 DAG.getValueType(NewVT),
7900 DAG.getValueType(Op0.getValueType()),
7901 Node->getOperand(3),
7902 Node->getOperand(4),
7903 cast<CvtRndSatSDNode>(Node)->getCvtCode());
7904 break;
7905 }
Dan Gohman9e04c822007-10-12 14:13:46 +00007906 case ISD::FPOWI:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007907 case ISD::FP_ROUND:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007908 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007909 NewVT,
Dan Gohman9e04c822007-10-12 14:13:46 +00007910 ScalarizeVectorOp(Node->getOperand(0)),
7911 Node->getOperand(1));
7912 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007913 case ISD::LOAD: {
7914 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007915 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7916 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman7f8613e2008-08-14 20:04:46 +00007917 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007918 const Value *SV = LD->getSrcValue();
7919 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007920 MVT MemoryVT = LD->getMemoryVT();
7921 unsigned Alignment = LD->getAlignment();
7922 bool isVolatile = LD->isVolatile();
7923
7924 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesene8d72302009-02-06 23:05:02 +00007925 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Scott Michelfdc40a02009-02-17 22:15:04 +00007926
Dale Johannesenc6be1102009-02-02 22:49:46 +00007927 Result = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007928 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7929 MemoryVT.getVectorElementType(),
7930 isVolatile, Alignment);
Dan Gohman7f321562007-06-25 16:23:39 +00007931
Chris Lattnerc7029802006-03-18 01:44:44 +00007932 // Remember that we legalized the chain.
7933 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7934 break;
7935 }
Dan Gohman7f321562007-06-25 16:23:39 +00007936 case ISD::BUILD_VECTOR:
7937 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007938 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007939 case ISD::INSERT_VECTOR_ELT:
7940 // Returning the inserted scalar element.
7941 Result = Node->getOperand(1);
7942 break;
7943 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007944 assert(Node->getOperand(0).getValueType() == NewVT &&
7945 "Concat of non-legal vectors not yet supported!");
7946 Result = Node->getOperand(0);
7947 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007948 case ISD::VECTOR_SHUFFLE: {
7949 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman475871a2008-07-27 21:46:04 +00007950 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007951 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohman7f321562007-06-25 16:23:39 +00007952 Result = ScalarizeVectorOp(Node->getOperand(1));
7953 else
7954 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007955 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007956 }
7957 case ISD::EXTRACT_SUBVECTOR:
Scott Michelfdc40a02009-02-17 22:15:04 +00007958 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007959 Node->getOperand(0), Node->getOperand(1));
Dan Gohman65956352007-06-13 15:12:02 +00007960 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007961 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007962 SDValue Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007963 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007964 Op0 = ScalarizeVectorOp(Op0);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007965 Result = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007966 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007967 }
Dan Gohman7f321562007-06-25 16:23:39 +00007968 case ISD::SELECT:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007969 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007970 ScalarizeVectorOp(Op.getOperand(1)),
7971 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007972 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007973 case ISD::SELECT_CC:
Scott Michelfdc40a02009-02-17 22:15:04 +00007974 Result = DAG.getNode(ISD::SELECT_CC, dl, NewVT, Node->getOperand(0),
Chris Lattner80c1a562008-06-30 02:43:01 +00007975 Node->getOperand(1),
7976 ScalarizeVectorOp(Op.getOperand(2)),
7977 ScalarizeVectorOp(Op.getOperand(3)),
7978 Node->getOperand(4));
7979 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007980 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007981 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7982 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007983 Result = DAG.getNode(ISD::SETCC, dl,
7984 TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00007985 Op0, Op1, Op.getOperand(2));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007986 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Result,
Nate Begeman0d1704b2008-05-12 23:09:43 +00007987 DAG.getConstant(-1ULL, NewVT),
7988 DAG.getConstant(0ULL, NewVT));
7989 break;
7990 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007991 }
7992
7993 if (TLI.isTypeLegal(NewVT))
7994 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007995 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7996 assert(isNew && "Value already scalarized?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007997 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00007998 return Result;
7999}
8000
Chris Lattner3e928bb2005-01-07 07:47:09 +00008001
Mon P Wang0c397192008-10-30 08:01:45 +00008002SDValue SelectionDAGLegalize::WidenVectorOp(SDValue Op, MVT WidenVT) {
8003 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(Op);
8004 if (I != WidenNodes.end()) return I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00008005
Mon P Wang0c397192008-10-30 08:01:45 +00008006 MVT VT = Op.getValueType();
8007 assert(VT.isVector() && "Cannot widen non-vector type!");
8008
8009 SDValue Result;
8010 SDNode *Node = Op.getNode();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008011 DebugLoc dl = Node->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008012 MVT EVT = VT.getVectorElementType();
8013
8014 unsigned NumElts = VT.getVectorNumElements();
8015 unsigned NewNumElts = WidenVT.getVectorNumElements();
8016 assert(NewNumElts > NumElts && "Cannot widen to smaller type!");
8017 assert(NewNumElts < 17);
8018
8019 // When widen is called, it is assumed that it is more efficient to use a
8020 // wide type. The default action is to widen to operation to a wider legal
8021 // vector type and then do the operation if it is legal by calling LegalizeOp
8022 // again. If there is no vector equivalent, we will unroll the operation, do
8023 // it, and rebuild the vector. If most of the operations are vectorizible to
8024 // the legal type, the resulting code will be more efficient. If this is not
8025 // the case, the resulting code will preform badly as we end up generating
8026 // code to pack/unpack the results. It is the function that calls widen
Mon P Wangf007a8b2008-11-06 05:31:54 +00008027 // that is responsible for seeing this doesn't happen.
Mon P Wang0c397192008-10-30 08:01:45 +00008028 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008029 default:
Mon P Wang0c397192008-10-30 08:01:45 +00008030#ifndef NDEBUG
8031 Node->dump(&DAG);
8032#endif
8033 assert(0 && "Unexpected operation in WidenVectorOp!");
8034 break;
8035 case ISD::CopyFromReg:
Mon P Wang49292f12008-11-15 06:05:52 +00008036 assert(0 && "CopyFromReg doesn't need widening!");
Mon P Wang0c397192008-10-30 08:01:45 +00008037 case ISD::Constant:
8038 case ISD::ConstantFP:
8039 // To build a vector of these elements, clients should call BuildVector
8040 // and with each element instead of creating a node with a vector type
8041 assert(0 && "Unexpected operation in WidenVectorOp!");
8042 case ISD::VAARG:
8043 // Variable Arguments with vector types doesn't make any sense to me
8044 assert(0 && "Unexpected operation in WidenVectorOp!");
8045 break;
Mon P Wang49292f12008-11-15 06:05:52 +00008046 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00008047 Result = DAG.getUNDEF(WidenVT);
Mon P Wang49292f12008-11-15 06:05:52 +00008048 break;
Mon P Wang0c397192008-10-30 08:01:45 +00008049 case ISD::BUILD_VECTOR: {
8050 // Build a vector with undefined for the new nodes
8051 SDValueVector NewOps(Node->op_begin(), Node->op_end());
8052 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesene8d72302009-02-06 23:05:02 +00008053 NewOps.push_back(DAG.getUNDEF(EVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008054 }
Evan Chenga87008d2009-02-25 22:49:59 +00008055 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT,
8056 &NewOps[0], NewOps.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008057 break;
8058 }
8059 case ISD::INSERT_VECTOR_ELT: {
8060 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008061 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, WidenVT, Tmp1,
Mon P Wang0c397192008-10-30 08:01:45 +00008062 Node->getOperand(1), Node->getOperand(2));
8063 break;
8064 }
8065 case ISD::VECTOR_SHUFFLE: {
8066 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8067 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8068 // VECTOR_SHUFFLE 3rd operand must be a constant build vector that is
8069 // used as permutation array. We build the vector here instead of widening
8070 // because we don't want to legalize and have it turned to something else.
8071 SDValue PermOp = Node->getOperand(2);
8072 SDValueVector NewOps;
8073 MVT PVT = PermOp.getValueType().getVectorElementType();
8074 for (unsigned i = 0; i < NumElts; ++i) {
8075 if (PermOp.getOperand(i).getOpcode() == ISD::UNDEF) {
8076 NewOps.push_back(PermOp.getOperand(i));
8077 } else {
8078 unsigned Idx =
Mon P Wange1a0b2e2008-12-13 08:15:14 +00008079 cast<ConstantSDNode>(PermOp.getOperand(i))->getZExtValue();
Mon P Wang0c397192008-10-30 08:01:45 +00008080 if (Idx < NumElts) {
8081 NewOps.push_back(PermOp.getOperand(i));
8082 }
8083 else {
8084 NewOps.push_back(DAG.getConstant(Idx + NewNumElts - NumElts,
8085 PermOp.getOperand(i).getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00008086 }
Mon P Wang0c397192008-10-30 08:01:45 +00008087 }
8088 }
8089 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesene8d72302009-02-06 23:05:02 +00008090 NewOps.push_back(DAG.getUNDEF(PVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008091 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008092
Evan Chenga87008d2009-02-25 22:49:59 +00008093 SDValue Tmp3 = DAG.getNode(ISD::BUILD_VECTOR, dl,
8094 MVT::getVectorVT(PVT, NewOps.size()),
8095 &NewOps[0], NewOps.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00008096
Dale Johannesenc6be1102009-02-02 22:49:46 +00008097 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, WidenVT, Tmp1, Tmp2, Tmp3);
Mon P Wang0c397192008-10-30 08:01:45 +00008098 break;
8099 }
8100 case ISD::LOAD: {
8101 // If the load widen returns true, we can use a single load for the
8102 // vector. Otherwise, it is returning a token factor for multiple
8103 // loads.
8104 SDValue TFOp;
8105 if (LoadWidenVectorOp(Result, TFOp, Op, WidenVT))
8106 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(1)));
8107 else
8108 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(0)));
8109 break;
8110 }
8111
8112 case ISD::BIT_CONVERT: {
8113 SDValue Tmp1 = Node->getOperand(0);
8114 // Converts between two different types so we need to determine
8115 // the correct widen type for the input operand.
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008116 MVT InVT = Tmp1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008117 unsigned WidenSize = WidenVT.getSizeInBits();
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008118 if (InVT.isVector()) {
8119 MVT InEltVT = InVT.getVectorElementType();
8120 unsigned InEltSize = InEltVT.getSizeInBits();
8121 assert(WidenSize % InEltSize == 0 &&
8122 "can not widen bit convert that are not multiple of element type");
8123 MVT NewInWidenVT = MVT::getVectorVT(InEltVT, WidenSize / InEltSize);
8124 Tmp1 = WidenVectorOp(Tmp1, NewInWidenVT);
8125 assert(Tmp1.getValueType().getSizeInBits() == WidenVT.getSizeInBits());
Dale Johannesenc6be1102009-02-02 22:49:46 +00008126 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Tmp1);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008127 } else {
8128 // If the result size is a multiple of the input size, widen the input
8129 // and then convert.
8130 unsigned InSize = InVT.getSizeInBits();
8131 assert(WidenSize % InSize == 0 &&
8132 "can not widen bit convert that are not multiple of element type");
8133 unsigned NewNumElts = WidenSize / InSize;
8134 SmallVector<SDValue, 16> Ops(NewNumElts);
Dale Johannesene8d72302009-02-06 23:05:02 +00008135 SDValue UndefVal = DAG.getUNDEF(InVT);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008136 Ops[0] = Tmp1;
8137 for (unsigned i = 1; i < NewNumElts; ++i)
8138 Ops[i] = UndefVal;
Mon P Wang0c397192008-10-30 08:01:45 +00008139
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008140 MVT NewInVT = MVT::getVectorVT(InVT, NewNumElts);
Evan Chenga87008d2009-02-25 22:49:59 +00008141 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, NewInVT, &Ops[0], NewNumElts);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008142 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008143 }
8144 break;
8145 }
8146
8147 case ISD::SINT_TO_FP:
8148 case ISD::UINT_TO_FP:
8149 case ISD::FP_TO_SINT:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008150 case ISD::FP_TO_UINT:
8151 case ISD::FP_ROUND: {
Mon P Wang0c397192008-10-30 08:01:45 +00008152 SDValue Tmp1 = Node->getOperand(0);
8153 // Converts between two different types so we need to determine
8154 // the correct widen type for the input operand.
8155 MVT TVT = Tmp1.getValueType();
8156 assert(TVT.isVector() && "can not widen non vector type");
8157 MVT TEVT = TVT.getVectorElementType();
8158 MVT TWidenVT = MVT::getVectorVT(TEVT, NewNumElts);
8159 Tmp1 = WidenVectorOp(Tmp1, TWidenVT);
8160 assert(Tmp1.getValueType().getVectorNumElements() == NewNumElts);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008161 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008162 break;
8163 }
8164
8165 case ISD::FP_EXTEND:
8166 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
8167 case ISD::TRUNCATE:
8168 case ISD::SIGN_EXTEND:
8169 case ISD::ZERO_EXTEND:
8170 case ISD::ANY_EXTEND:
Mon P Wang0c397192008-10-30 08:01:45 +00008171 case ISD::SIGN_EXTEND_INREG:
8172 case ISD::FABS:
8173 case ISD::FNEG:
8174 case ISD::FSQRT:
8175 case ISD::FSIN:
Mon P Wang49292f12008-11-15 06:05:52 +00008176 case ISD::FCOS:
8177 case ISD::CTPOP:
8178 case ISD::CTTZ:
8179 case ISD::CTLZ: {
Mon P Wang0c397192008-10-30 08:01:45 +00008180 // Unary op widening
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008181 SDValue Tmp1;
Mon P Wang0c397192008-10-30 08:01:45 +00008182 Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8183 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008184 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008185 break;
8186 }
Mon P Wang77cdf302008-11-10 20:54:11 +00008187 case ISD::CONVERT_RNDSAT: {
8188 SDValue RndOp = Node->getOperand(3);
8189 SDValue SatOp = Node->getOperand(4);
Mon P Wang77cdf302008-11-10 20:54:11 +00008190 SDValue SrcOp = Node->getOperand(0);
8191
8192 // Converts between two different types so we need to determine
8193 // the correct widen type for the input operand.
8194 MVT SVT = SrcOp.getValueType();
8195 assert(SVT.isVector() && "can not widen non vector type");
8196 MVT SEVT = SVT.getVectorElementType();
8197 MVT SWidenVT = MVT::getVectorVT(SEVT, NewNumElts);
8198
8199 SrcOp = WidenVectorOp(SrcOp, SWidenVT);
8200 assert(SrcOp.getValueType() == WidenVT);
8201 SDValue DTyOp = DAG.getValueType(WidenVT);
8202 SDValue STyOp = DAG.getValueType(SrcOp.getValueType());
8203 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
8204
Dale Johannesenc460ae92009-02-04 00:13:36 +00008205 Result = DAG.getConvertRndSat(WidenVT, dl, SrcOp, DTyOp, STyOp,
Mon P Wang77cdf302008-11-10 20:54:11 +00008206 RndOp, SatOp, CvtCode);
Mon P Wang77cdf302008-11-10 20:54:11 +00008207 break;
8208 }
Mon P Wang0c397192008-10-30 08:01:45 +00008209 case ISD::FPOW:
Scott Michelfdc40a02009-02-17 22:15:04 +00008210 case ISD::FPOWI:
Mon P Wang0c397192008-10-30 08:01:45 +00008211 case ISD::ADD:
8212 case ISD::SUB:
8213 case ISD::MUL:
8214 case ISD::MULHS:
8215 case ISD::MULHU:
8216 case ISD::AND:
8217 case ISD::OR:
8218 case ISD::XOR:
8219 case ISD::FADD:
8220 case ISD::FSUB:
8221 case ISD::FMUL:
8222 case ISD::SDIV:
8223 case ISD::SREM:
8224 case ISD::FDIV:
8225 case ISD::FREM:
8226 case ISD::FCOPYSIGN:
8227 case ISD::UDIV:
8228 case ISD::UREM:
8229 case ISD::BSWAP: {
8230 // Binary op widening
Mon P Wang0c397192008-10-30 08:01:45 +00008231 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8232 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8233 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008234 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008235 break;
8236 }
8237
8238 case ISD::SHL:
8239 case ISD::SRA:
8240 case ISD::SRL: {
Mon P Wang0c397192008-10-30 08:01:45 +00008241 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8242 assert(Tmp1.getValueType() == WidenVT);
Mon P Wangfb13f002008-12-02 07:35:08 +00008243 SDValue ShOp = Node->getOperand(1);
8244 MVT ShVT = ShOp.getValueType();
8245 MVT NewShVT = MVT::getVectorVT(ShVT.getVectorElementType(),
8246 WidenVT.getVectorNumElements());
8247 ShOp = WidenVectorOp(ShOp, NewShVT);
8248 assert(ShOp.getValueType() == NewShVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008249 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, ShOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008250 break;
8251 }
Mon P Wangfb13f002008-12-02 07:35:08 +00008252
Mon P Wang0c397192008-10-30 08:01:45 +00008253 case ISD::EXTRACT_VECTOR_ELT: {
8254 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8255 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008256 Result = DAG.getNode(Node->getOpcode(), dl, EVT, Tmp1, Node->getOperand(1));
Mon P Wang0c397192008-10-30 08:01:45 +00008257 break;
8258 }
8259 case ISD::CONCAT_VECTORS: {
8260 // We concurrently support only widen on a multiple of the incoming vector.
8261 // We could widen on a multiple of the incoming operand if necessary.
8262 unsigned NumConcat = NewNumElts / NumElts;
8263 assert(NewNumElts % NumElts == 0 && "Can widen only a multiple of vector");
Dale Johannesene8d72302009-02-06 23:05:02 +00008264 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang0c397192008-10-30 08:01:45 +00008265 SmallVector<SDValue, 8> MOps;
8266 MOps.push_back(Op);
8267 for (unsigned i = 1; i != NumConcat; ++i) {
8268 MOps.push_back(UndefVal);
8269 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00008270 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008271 &MOps[0], MOps.size()));
8272 break;
8273 }
8274 case ISD::EXTRACT_SUBVECTOR: {
Mon P Wang49292f12008-11-15 06:05:52 +00008275 SDValue Tmp1 = Node->getOperand(0);
8276 SDValue Idx = Node->getOperand(1);
8277 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
8278 if (CIdx && CIdx->getZExtValue() == 0) {
8279 // Since we are access the start of the vector, the incoming
8280 // vector type might be the proper.
8281 MVT Tmp1VT = Tmp1.getValueType();
8282 if (Tmp1VT == WidenVT)
8283 return Tmp1;
8284 else {
8285 unsigned Tmp1VTNumElts = Tmp1VT.getVectorNumElements();
8286 if (Tmp1VTNumElts < NewNumElts)
8287 Result = WidenVectorOp(Tmp1, WidenVT);
8288 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00008289 Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, WidenVT, Tmp1, Idx);
Mon P Wang49292f12008-11-15 06:05:52 +00008290 }
8291 } else if (NewNumElts % NumElts == 0) {
8292 // Widen the extracted subvector.
8293 unsigned NumConcat = NewNumElts / NumElts;
Dale Johannesene8d72302009-02-06 23:05:02 +00008294 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang49292f12008-11-15 06:05:52 +00008295 SmallVector<SDValue, 8> MOps;
8296 MOps.push_back(Op);
8297 for (unsigned i = 1; i != NumConcat; ++i) {
8298 MOps.push_back(UndefVal);
8299 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00008300 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang49292f12008-11-15 06:05:52 +00008301 &MOps[0], MOps.size()));
8302 } else {
8303 assert(0 && "can not widen extract subvector");
8304 // This could be implemented using insert and build vector but I would
8305 // like to see when this happens.
8306 }
Mon P Wang0c397192008-10-30 08:01:45 +00008307 break;
8308 }
8309
8310 case ISD::SELECT: {
Mon P Wang0c397192008-10-30 08:01:45 +00008311 // Determine new condition widen type and widen
8312 SDValue Cond1 = Node->getOperand(0);
8313 MVT CondVT = Cond1.getValueType();
8314 assert(CondVT.isVector() && "can not widen non vector type");
8315 MVT CondEVT = CondVT.getVectorElementType();
8316 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8317 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8318 assert(Cond1.getValueType() == CondWidenVT && "Condition not widen");
8319
8320 SDValue Tmp1 = WidenVectorOp(Node->getOperand(1), WidenVT);
8321 SDValue Tmp2 = WidenVectorOp(Node->getOperand(2), WidenVT);
8322 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008323 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008324 break;
8325 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008326
Mon P Wang0c397192008-10-30 08:01:45 +00008327 case ISD::SELECT_CC: {
Mon P Wang0c397192008-10-30 08:01:45 +00008328 // Determine new condition widen type and widen
8329 SDValue Cond1 = Node->getOperand(0);
8330 SDValue Cond2 = Node->getOperand(1);
8331 MVT CondVT = Cond1.getValueType();
8332 assert(CondVT.isVector() && "can not widen non vector type");
8333 assert(CondVT == Cond2.getValueType() && "mismatch lhs/rhs");
8334 MVT CondEVT = CondVT.getVectorElementType();
8335 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8336 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8337 Cond2 = WidenVectorOp(Cond2, CondWidenVT);
8338 assert(Cond1.getValueType() == CondWidenVT &&
8339 Cond2.getValueType() == CondWidenVT && "condition not widen");
8340
8341 SDValue Tmp1 = WidenVectorOp(Node->getOperand(2), WidenVT);
8342 SDValue Tmp2 = WidenVectorOp(Node->getOperand(3), WidenVT);
8343 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT &&
8344 "operands not widen");
Dale Johannesenc6be1102009-02-02 22:49:46 +00008345 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Cond2, Tmp1,
Mon P Wang0c397192008-10-30 08:01:45 +00008346 Tmp2, Node->getOperand(4));
Mon P Wang0c397192008-10-30 08:01:45 +00008347 break;
Mon P Wang2eb13c32008-10-30 18:21:52 +00008348 }
8349 case ISD::VSETCC: {
8350 // Determine widen for the operand
8351 SDValue Tmp1 = Node->getOperand(0);
8352 MVT TmpVT = Tmp1.getValueType();
8353 assert(TmpVT.isVector() && "can not widen non vector type");
8354 MVT TmpEVT = TmpVT.getVectorElementType();
8355 MVT TmpWidenVT = MVT::getVectorVT(TmpEVT, NewNumElts);
8356 Tmp1 = WidenVectorOp(Tmp1, TmpWidenVT);
8357 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), TmpWidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008358 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2,
Mon P Wang2eb13c32008-10-30 18:21:52 +00008359 Node->getOperand(2));
Mon P Wang0c397192008-10-30 08:01:45 +00008360 break;
8361 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008362 case ISD::ATOMIC_CMP_SWAP:
8363 case ISD::ATOMIC_LOAD_ADD:
8364 case ISD::ATOMIC_LOAD_SUB:
8365 case ISD::ATOMIC_LOAD_AND:
8366 case ISD::ATOMIC_LOAD_OR:
8367 case ISD::ATOMIC_LOAD_XOR:
8368 case ISD::ATOMIC_LOAD_NAND:
8369 case ISD::ATOMIC_LOAD_MIN:
8370 case ISD::ATOMIC_LOAD_MAX:
8371 case ISD::ATOMIC_LOAD_UMIN:
8372 case ISD::ATOMIC_LOAD_UMAX:
8373 case ISD::ATOMIC_SWAP: {
Mon P Wang0c397192008-10-30 08:01:45 +00008374 // For now, we assume that using vectors for these operations don't make
8375 // much sense so we just split it. We return an empty result
8376 SDValue X, Y;
8377 SplitVectorOp(Op, X, Y);
8378 return Result;
8379 break;
8380 }
8381
8382 } // end switch (Node->getOpcode())
8383
Scott Michelfdc40a02009-02-17 22:15:04 +00008384 assert(Result.getNode() && "Didn't set a result!");
Mon P Wang0c397192008-10-30 08:01:45 +00008385 if (Result != Op)
8386 Result = LegalizeOp(Result);
8387
Mon P Wangf007a8b2008-11-06 05:31:54 +00008388 AddWidenedOperand(Op, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008389 return Result;
8390}
8391
8392// Utility function to find a legal vector type and its associated element
8393// type from a preferred width and whose vector type must be the same size
8394// as the VVT.
8395// TLI: Target lowering used to determine legal types
8396// Width: Preferred width of element type
8397// VVT: Vector value type whose size we must match.
8398// Returns VecEVT and EVT - the vector type and its associated element type
Dan Gohman0d137d72009-01-15 16:43:02 +00008399static void FindWidenVecType(const TargetLowering &TLI, unsigned Width, MVT VVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008400 MVT& EVT, MVT& VecEVT) {
8401 // We start with the preferred width, make it a power of 2 and see if
8402 // we can find a vector type of that width. If not, we reduce it by
8403 // another power of 2. If we have widen the type, a vector of bytes should
8404 // always be legal.
8405 assert(TLI.isTypeLegal(VVT));
8406 unsigned EWidth = Width + 1;
8407 do {
8408 assert(EWidth > 0);
8409 EWidth = (1 << Log2_32(EWidth-1));
8410 EVT = MVT::getIntegerVT(EWidth);
8411 unsigned NumEVT = VVT.getSizeInBits()/EWidth;
8412 VecEVT = MVT::getVectorVT(EVT, NumEVT);
8413 } while (!TLI.isTypeLegal(VecEVT) ||
8414 VVT.getSizeInBits() != VecEVT.getSizeInBits());
8415}
8416
8417SDValue SelectionDAGLegalize::genWidenVectorLoads(SDValueVector& LdChain,
8418 SDValue Chain,
8419 SDValue BasePtr,
8420 const Value *SV,
8421 int SVOffset,
8422 unsigned Alignment,
8423 bool isVolatile,
8424 unsigned LdWidth,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008425 MVT ResType,
8426 DebugLoc dl) {
Mon P Wang0c397192008-10-30 08:01:45 +00008427 // We assume that we have good rules to handle loading power of two loads so
8428 // we break down the operations to power of 2 loads. The strategy is to
8429 // load the largest power of 2 that we can easily transform to a legal vector
8430 // and then insert into that vector, and the cast the result into the legal
8431 // vector that we want. This avoids unnecessary stack converts.
8432 // TODO: If the Ldwidth is legal, alignment is the same as the LdWidth, and
8433 // the load is nonvolatile, we an use a wider load for the value.
8434 // Find a vector length we can load a large chunk
8435 MVT EVT, VecEVT;
8436 unsigned EVTWidth;
8437 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8438 EVTWidth = EVT.getSizeInBits();
8439
Dale Johannesenc6be1102009-02-02 22:49:46 +00008440 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV, SVOffset,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008441 isVolatile, Alignment);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008442 SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecEVT, LdOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008443 LdChain.push_back(LdOp.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00008444
Mon P Wang0c397192008-10-30 08:01:45 +00008445 // Check if we can load the element with one instruction
8446 if (LdWidth == EVTWidth) {
Dale Johannesenc6be1102009-02-02 22:49:46 +00008447 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008448 }
8449
8450 // The vector element order is endianness dependent.
8451 unsigned Idx = 1;
8452 LdWidth -= EVTWidth;
8453 unsigned Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008454
Mon P Wang0c397192008-10-30 08:01:45 +00008455 while (LdWidth > 0) {
8456 unsigned Increment = EVTWidth / 8;
8457 Offset += Increment;
Dale Johannesenc6be1102009-02-02 22:49:46 +00008458 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang0c397192008-10-30 08:01:45 +00008459 DAG.getIntPtrConstant(Increment));
8460
8461 if (LdWidth < EVTWidth) {
8462 // Our current type we are using is too large, use a smaller size by
8463 // using a smaller power of 2
8464 unsigned oEVTWidth = EVTWidth;
8465 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8466 EVTWidth = EVT.getSizeInBits();
8467 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008468 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008469 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008470 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008471
Dale Johannesenc6be1102009-02-02 22:49:46 +00008472 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008473 SVOffset+Offset, isVolatile,
8474 MinAlign(Alignment, Offset));
Mon P Wang0c397192008-10-30 08:01:45 +00008475 LdChain.push_back(LdOp.getValue(1));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008476 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecEVT, VecOp, LdOp,
Mon P Wang0c397192008-10-30 08:01:45 +00008477 DAG.getIntPtrConstant(Idx++));
Scott Michelfdc40a02009-02-17 22:15:04 +00008478
Mon P Wang0c397192008-10-30 08:01:45 +00008479 LdWidth -= EVTWidth;
8480 }
8481
Dale Johannesenc6be1102009-02-02 22:49:46 +00008482 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008483}
8484
8485bool SelectionDAGLegalize::LoadWidenVectorOp(SDValue& Result,
8486 SDValue& TFOp,
8487 SDValue Op,
8488 MVT NVT) {
8489 // TODO: Add support for ConcatVec and the ability to load many vector
8490 // types (e.g., v4i8). This will not work when a vector register
8491 // to memory mapping is strange (e.g., vector elements are not
8492 // stored in some sequential order).
8493
Scott Michelfdc40a02009-02-17 22:15:04 +00008494 // It must be true that the widen vector type is bigger than where
Mon P Wang0c397192008-10-30 08:01:45 +00008495 // we need to load from.
8496 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
8497 MVT LdVT = LD->getMemoryVT();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008498 DebugLoc dl = LD->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008499 assert(LdVT.isVector() && NVT.isVector());
8500 assert(LdVT.getVectorElementType() == NVT.getVectorElementType());
Scott Michelfdc40a02009-02-17 22:15:04 +00008501
Mon P Wang0c397192008-10-30 08:01:45 +00008502 // Load information
8503 SDValue Chain = LD->getChain();
8504 SDValue BasePtr = LD->getBasePtr();
8505 int SVOffset = LD->getSrcValueOffset();
8506 unsigned Alignment = LD->getAlignment();
8507 bool isVolatile = LD->isVolatile();
8508 const Value *SV = LD->getSrcValue();
8509 unsigned int LdWidth = LdVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00008510
Mon P Wang0c397192008-10-30 08:01:45 +00008511 // Load value as a large register
8512 SDValueVector LdChain;
8513 Result = genWidenVectorLoads(LdChain, Chain, BasePtr, SV, SVOffset,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008514 Alignment, isVolatile, LdWidth, NVT, dl);
Mon P Wang0c397192008-10-30 08:01:45 +00008515
8516 if (LdChain.size() == 1) {
8517 TFOp = LdChain[0];
8518 return true;
8519 }
8520 else {
Scott Michelfdc40a02009-02-17 22:15:04 +00008521 TFOp=DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008522 &LdChain[0], LdChain.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008523 return false;
8524 }
8525}
8526
8527
8528void SelectionDAGLegalize::genWidenVectorStores(SDValueVector& StChain,
8529 SDValue Chain,
8530 SDValue BasePtr,
8531 const Value *SV,
8532 int SVOffset,
8533 unsigned Alignment,
8534 bool isVolatile,
Mon P Wang49292f12008-11-15 06:05:52 +00008535 SDValue ValOp,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008536 unsigned StWidth,
8537 DebugLoc dl) {
Mon P Wang0c397192008-10-30 08:01:45 +00008538 // Breaks the stores into a series of power of 2 width stores. For any
8539 // width, we convert the vector to the vector of element size that we
8540 // want to store. This avoids requiring a stack convert.
Scott Michelfdc40a02009-02-17 22:15:04 +00008541
Mon P Wang0c397192008-10-30 08:01:45 +00008542 // Find a width of the element type we can store with
8543 MVT VVT = ValOp.getValueType();
8544 MVT EVT, VecEVT;
8545 unsigned EVTWidth;
8546 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8547 EVTWidth = EVT.getSizeInBits();
8548
Dale Johannesenc6be1102009-02-02 22:49:46 +00008549 SDValue VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, ValOp);
8550 SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wange0b436a2008-11-06 22:52:21 +00008551 DAG.getIntPtrConstant(0));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008552 SDValue StOp = DAG.getStore(Chain, dl, EOp, BasePtr, SV, SVOffset,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008553 isVolatile, Alignment);
Mon P Wang0c397192008-10-30 08:01:45 +00008554 StChain.push_back(StOp);
8555
8556 // Check if we are done
8557 if (StWidth == EVTWidth) {
8558 return;
8559 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008560
Mon P Wang0c397192008-10-30 08:01:45 +00008561 unsigned Idx = 1;
8562 StWidth -= EVTWidth;
8563 unsigned Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008564
Mon P Wang0c397192008-10-30 08:01:45 +00008565 while (StWidth > 0) {
8566 unsigned Increment = EVTWidth / 8;
8567 Offset += Increment;
Dale Johannesenc6be1102009-02-02 22:49:46 +00008568 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang0c397192008-10-30 08:01:45 +00008569 DAG.getIntPtrConstant(Increment));
Scott Michelfdc40a02009-02-17 22:15:04 +00008570
Mon P Wang0c397192008-10-30 08:01:45 +00008571 if (StWidth < EVTWidth) {
8572 // Our current type we are using is too large, use a smaller size by
8573 // using a smaller power of 2
8574 unsigned oEVTWidth = EVTWidth;
8575 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8576 EVTWidth = EVT.getSizeInBits();
8577 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008578 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008579 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008580 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008581
Dale Johannesenc6be1102009-02-02 22:49:46 +00008582 EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang49292f12008-11-15 06:05:52 +00008583 DAG.getIntPtrConstant(Idx++));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008584 StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr, SV,
Mon P Wang0c397192008-10-30 08:01:45 +00008585 SVOffset + Offset, isVolatile,
8586 MinAlign(Alignment, Offset)));
8587 StWidth -= EVTWidth;
8588 }
8589}
8590
8591
8592SDValue SelectionDAGLegalize::StoreWidenVectorOp(StoreSDNode *ST,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008593 SDValue Chain,
8594 SDValue BasePtr) {
Mon P Wang0c397192008-10-30 08:01:45 +00008595 // TODO: It might be cleaner if we can use SplitVector and have more legal
8596 // vector types that can be stored into memory (e.g., v4xi8 can
8597 // be stored as a word). This will not work when a vector register
8598 // to memory mapping is strange (e.g., vector elements are not
8599 // stored in some sequential order).
Scott Michelfdc40a02009-02-17 22:15:04 +00008600
Mon P Wang0c397192008-10-30 08:01:45 +00008601 MVT StVT = ST->getMemoryVT();
8602 SDValue ValOp = ST->getValue();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008603 DebugLoc dl = ST->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008604
8605 // Check if we have widen this node with another value
8606 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(ValOp);
8607 if (I != WidenNodes.end())
8608 ValOp = I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00008609
Mon P Wang0c397192008-10-30 08:01:45 +00008610 MVT VVT = ValOp.getValueType();
8611
8612 // It must be true that we the widen vector type is bigger than where
8613 // we need to store.
8614 assert(StVT.isVector() && VVT.isVector());
Dan Gohmanf83c81a2009-01-28 03:10:52 +00008615 assert(StVT.bitsLT(VVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008616 assert(StVT.getVectorElementType() == VVT.getVectorElementType());
8617
8618 // Store value
8619 SDValueVector StChain;
8620 genWidenVectorStores(StChain, Chain, BasePtr, ST->getSrcValue(),
8621 ST->getSrcValueOffset(), ST->getAlignment(),
Dale Johannesenc6be1102009-02-02 22:49:46 +00008622 ST->isVolatile(), ValOp, StVT.getSizeInBits(), dl);
Mon P Wang0c397192008-10-30 08:01:45 +00008623 if (StChain.size() == 1)
8624 return StChain[0];
Scott Michelfdc40a02009-02-17 22:15:04 +00008625 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00008626 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
8627 &StChain[0], StChain.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008628}
8629
8630
Chris Lattner3e928bb2005-01-07 07:47:09 +00008631// SelectionDAG::Legalize - This is the entry point for the file.
8632//
Bill Wendling5aa49772009-02-24 02:35:30 +00008633void SelectionDAG::Legalize(bool TypesNeedLegalizing, bool Fast) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00008634 /// run - This is the main entry point to this class.
8635 ///
Bill Wendling5aa49772009-02-24 02:35:30 +00008636 SelectionDAGLegalize(*this, TypesNeedLegalizing, Fast).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00008637}
8638