blob: 0854aad9b6827cea6e827c7c36930a3548b449aa [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());
Dan Gohman50284d82008-09-16 22:05:41 +0000595 unsigned Alignment = 1 << 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,
Dale Johannesenbb5da912009-02-02 20:41:04 +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(),
867 SVOffset, NewLoadedVT,LD->isVolatile(), Alignment);
868 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()));
Evan Chenge3d42322009-02-25 07:04:34 +00001290 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(),
1291 CU.getFilename());
Scott Michelfdc40a02009-02-17 22:15:04 +00001292
Bill Wendling92c1e122009-02-13 02:16:35 +00001293 unsigned Line = DSP->getLine();
1294 unsigned Col = DSP->getColumn();
Bill Wendling86e6cb92009-02-17 01:04:54 +00001295
Bill Wendling5aa49772009-02-24 02:35:30 +00001296 if (Fast) {
Bill Wendling86e6cb92009-02-17 01:04:54 +00001297 // A bit self-referential to have DebugLoc on Debug_Loc nodes, but it
1298 // won't hurt anything.
1299 if (useDEBUG_LOC) {
1300 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Bill Wendling92c1e122009-02-13 02:16:35 +00001301 DAG.getConstant(Col, MVT::i32),
1302 DAG.getConstant(SrcFile, MVT::i32) };
Bill Wendling86e6cb92009-02-17 01:04:54 +00001303 Result = DAG.getNode(ISD::DEBUG_LOC, dl, MVT::Other, Ops, 4);
1304 } else {
1305 unsigned ID = DW->RecordSourceLine(Line, Col, SrcFile);
1306 Result = DAG.getLabel(ISD::DBG_LABEL, dl, Tmp1, ID);
1307 }
Bill Wendling92c1e122009-02-13 02:16:35 +00001308 } else {
Bill Wendling86e6cb92009-02-17 01:04:54 +00001309 Result = Tmp1; // chain
Bill Wendling92c1e122009-02-13 02:16:35 +00001310 }
1311 } else {
1312 Result = Tmp1; // chain
1313 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001314 break;
Bill Wendling92c1e122009-02-13 02:16:35 +00001315 }
Evan Cheng71e86852008-07-08 20:06:39 +00001316 case TargetLowering::Legal: {
1317 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1318 if (Action == Legal && Tmp1 == Node->getOperand(0))
1319 break;
1320
Dan Gohman475871a2008-07-27 21:46:04 +00001321 SmallVector<SDValue, 8> Ops;
Evan Cheng71e86852008-07-08 20:06:39 +00001322 Ops.push_back(Tmp1);
1323 if (Action == Legal) {
1324 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1325 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1326 } else {
1327 // Otherwise promote them.
1328 Ops.push_back(PromoteOp(Node->getOperand(1)));
1329 Ops.push_back(PromoteOp(Node->getOperand(2)));
Chris Lattner36ce6912005-11-29 06:21:05 +00001330 }
Evan Cheng71e86852008-07-08 20:06:39 +00001331 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1332 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1333 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001334 break;
1335 }
Evan Cheng71e86852008-07-08 20:06:39 +00001336 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001337 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001338
1339 case ISD::DECLARE:
1340 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1341 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1342 default: assert(0 && "This action is not supported yet!");
1343 case TargetLowering::Legal:
1344 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1345 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1346 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1347 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1348 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001349 case TargetLowering::Expand:
1350 Result = LegalizeOp(Node->getOperand(0));
1351 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001352 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001353 break;
1354
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001355 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001356 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001357 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001358 default: assert(0 && "This action is not supported yet!");
Evan Cheng71e86852008-07-08 20:06:39 +00001359 case TargetLowering::Legal: {
1360 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001361 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng71e86852008-07-08 20:06:39 +00001362 if (Action == Legal && Tmp1 == Node->getOperand(0))
1363 break;
1364 if (Action == Legal) {
1365 Tmp2 = Node->getOperand(1);
1366 Tmp3 = Node->getOperand(2);
1367 Tmp4 = Node->getOperand(3);
1368 } else {
1369 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1370 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1371 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1372 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001373 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001374 break;
1375 }
Evan Cheng71e86852008-07-08 20:06:39 +00001376 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001377 break;
Jim Laskeyabf6d172006-01-05 01:25:28 +00001378
Dan Gohman44066042008-07-01 00:05:16 +00001379 case ISD::DBG_LABEL:
1380 case ISD::EH_LABEL:
1381 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1382 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001383 default: assert(0 && "This action is not supported yet!");
1384 case TargetLowering::Legal:
1385 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001386 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001387 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001388 case TargetLowering::Expand:
1389 Result = LegalizeOp(Node->getOperand(0));
1390 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001391 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001392 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001393
Evan Cheng27b7db52008-03-08 00:58:38 +00001394 case ISD::PREFETCH:
1395 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1396 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1397 default: assert(0 && "This action is not supported yet!");
1398 case TargetLowering::Legal:
1399 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1400 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1401 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1402 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1403 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1404 break;
1405 case TargetLowering::Expand:
1406 // It's a noop.
1407 Result = LegalizeOp(Node->getOperand(0));
1408 break;
1409 }
1410 break;
1411
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001412 case ISD::MEMBARRIER: {
1413 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001414 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1415 default: assert(0 && "This action is not supported yet!");
1416 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001417 SDValue Ops[6];
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001418 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001419 for (int x = 1; x < 6; ++x) {
1420 Ops[x] = Node->getOperand(x);
1421 if (!isTypeLegal(Ops[x].getValueType()))
1422 Ops[x] = PromoteOp(Ops[x]);
1423 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001424 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1425 break;
1426 }
1427 case TargetLowering::Expand:
1428 //There is no libgcc call for this op
1429 Result = Node->getOperand(0); // Noop
1430 break;
1431 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001432 break;
1433 }
1434
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001435 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001436 unsigned int num_operands = 4;
1437 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001438 SDValue Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001439 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001440 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001441 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Scott Michelfdc40a02009-02-17 22:15:04 +00001442
Mon P Wang63307c32008-05-05 19:05:59 +00001443 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1444 default: assert(0 && "This action is not supported yet!");
1445 case TargetLowering::Custom:
1446 Result = TLI.LowerOperation(Result, DAG);
1447 break;
1448 case TargetLowering::Legal:
1449 break;
1450 }
Dan Gohman475871a2008-07-27 21:46:04 +00001451 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1452 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001453 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001454 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001455 case ISD::ATOMIC_LOAD_ADD:
1456 case ISD::ATOMIC_LOAD_SUB:
1457 case ISD::ATOMIC_LOAD_AND:
1458 case ISD::ATOMIC_LOAD_OR:
1459 case ISD::ATOMIC_LOAD_XOR:
1460 case ISD::ATOMIC_LOAD_NAND:
1461 case ISD::ATOMIC_LOAD_MIN:
1462 case ISD::ATOMIC_LOAD_MAX:
1463 case ISD::ATOMIC_LOAD_UMIN:
1464 case ISD::ATOMIC_LOAD_UMAX:
1465 case ISD::ATOMIC_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001466 unsigned int num_operands = 3;
1467 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001468 SDValue Ops[3];
Mon P Wang63307c32008-05-05 19:05:59 +00001469 for (unsigned int x = 0; x < num_operands; ++x)
1470 Ops[x] = LegalizeOp(Node->getOperand(x));
1471 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001472
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001473 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001474 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001475 case TargetLowering::Custom:
1476 Result = TLI.LowerOperation(Result, DAG);
1477 break;
1478 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001479 break;
1480 }
Dan Gohman475871a2008-07-27 21:46:04 +00001481 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1482 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001483 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001484 }
Scott Michelc1513d22007-08-08 23:23:31 +00001485 case ISD::Constant: {
1486 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1487 unsigned opAction =
1488 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1489
Chris Lattner3e928bb2005-01-07 07:47:09 +00001490 // We know we don't need to expand constants here, constants only have one
1491 // value and we check that it is fine above.
1492
Scott Michelc1513d22007-08-08 23:23:31 +00001493 if (opAction == TargetLowering::Custom) {
1494 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001495 if (Tmp1.getNode())
Scott Michelc1513d22007-08-08 23:23:31 +00001496 Result = Tmp1;
1497 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001498 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001499 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001500 case ISD::ConstantFP: {
1501 // Spill FP immediates to the constant pool if the target cannot directly
1502 // codegen them. Targets often have some immediate values that can be
1503 // efficiently generated into an FP register without a load. We explicitly
1504 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001505 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1506
Chris Lattner3181a772006-01-29 06:26:56 +00001507 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1508 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001509 case TargetLowering::Legal:
1510 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001511 case TargetLowering::Custom:
1512 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001513 if (Tmp3.getNode()) {
Chris Lattner3181a772006-01-29 06:26:56 +00001514 Result = Tmp3;
1515 break;
1516 }
1517 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001518 case TargetLowering::Expand: {
1519 // Check to see if this FP immediate is already legal.
1520 bool isLegal = false;
1521 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1522 E = TLI.legal_fpimm_end(); I != E; ++I) {
1523 if (CFP->isExactlyValue(*I)) {
1524 isLegal = true;
1525 break;
1526 }
1527 }
1528 // If this is a legal constant, turn it into a TargetConstantFP node.
1529 if (isLegal)
1530 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001531 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001532 }
Nate Begemane1795842008-02-14 08:57:00 +00001533 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001534 break;
1535 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001536 case ISD::TokenFactor:
1537 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001538 Tmp1 = LegalizeOp(Node->getOperand(0));
1539 Tmp2 = LegalizeOp(Node->getOperand(1));
1540 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1541 } else if (Node->getNumOperands() == 3) {
1542 Tmp1 = LegalizeOp(Node->getOperand(0));
1543 Tmp2 = LegalizeOp(Node->getOperand(1));
1544 Tmp3 = LegalizeOp(Node->getOperand(2));
1545 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001546 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001547 SmallVector<SDValue, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001548 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001549 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1550 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001551 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001552 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001553 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001554
Chris Lattnerfdfded52006-04-12 16:20:43 +00001555 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001556 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001557 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001558 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001559 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001560 // A call within a calling sequence must be legalized to something
1561 // other than the normal CALLSEQ_END. Violating this gets Legalize
1562 // into an infinite loop.
1563 assert ((!IsLegalizingCall ||
1564 Node->getOpcode() != ISD::CALL ||
Gabor Greifba36cb52008-08-28 21:40:38 +00001565 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesen0ea03562008-03-05 19:14:03 +00001566 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001567
1568 // The number of incoming and outgoing values should match; unless the final
1569 // outgoing value is a flag.
Gabor Greifba36cb52008-08-28 21:40:38 +00001570 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1571 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1572 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001573 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001574 "Lowering call/formal_arguments produced unexpected # results!");
Scott Michelfdc40a02009-02-17 22:15:04 +00001575
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001576 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001577 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greifba36cb52008-08-28 21:40:38 +00001578 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1579 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001580 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001581 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001582 if (Op.getResNo() == i)
Chris Lattnere2e41732006-05-16 05:49:56 +00001583 Tmp2 = Tmp1;
Dan Gohman475871a2008-07-27 21:46:04 +00001584 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Chris Lattnere2e41732006-05-16 05:49:56 +00001585 }
1586 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001587 case ISD::EXTRACT_SUBREG: {
1588 Tmp1 = LegalizeOp(Node->getOperand(0));
1589 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1590 assert(idx && "Operand must be a constant");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001591 Tmp2 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lamb557c3632007-07-26 07:34:40 +00001592 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1593 }
1594 break;
1595 case ISD::INSERT_SUBREG: {
1596 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00001597 Tmp2 = LegalizeOp(Node->getOperand(1));
Christopher Lamb557c3632007-07-26 07:34:40 +00001598 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1599 assert(idx && "Operand must be a constant");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001600 Tmp3 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lamb557c3632007-07-26 07:34:40 +00001601 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1602 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001603 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001604 case ISD::BUILD_VECTOR:
1605 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001606 default: assert(0 && "This action is not supported yet!");
1607 case TargetLowering::Custom:
1608 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001609 if (Tmp3.getNode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001610 Result = Tmp3;
1611 break;
1612 }
1613 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001614 case TargetLowering::Expand:
Gabor Greifba36cb52008-08-28 21:40:38 +00001615 Result = ExpandBUILD_VECTOR(Result.getNode());
Chris Lattnerb2827b02006-03-19 00:52:58 +00001616 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001617 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001618 break;
1619 case ISD::INSERT_VECTOR_ELT:
1620 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001621 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001622
1623 // The type of the value to insert may not be legal, even though the vector
1624 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1625 // here.
1626 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1627 default: assert(0 && "Cannot expand insert element operand");
1628 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1629 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Mon P Wang0c397192008-10-30 08:01:45 +00001630 case Expand:
1631 // FIXME: An alternative would be to check to see if the target is not
Scott Michelfdc40a02009-02-17 22:15:04 +00001632 // going to custom lower this operation, we could bitcast to half elt
Mon P Wang0c397192008-10-30 08:01:45 +00001633 // width and perform two inserts at that width, if that is legal.
1634 Tmp2 = Node->getOperand(1);
1635 break;
Nate Begeman0325d902008-02-13 06:43:04 +00001636 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001637 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00001638
Chris Lattner2332b9f2006-03-19 01:17:20 +00001639 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1640 Node->getValueType(0))) {
1641 default: assert(0 && "This action is not supported yet!");
1642 case TargetLowering::Legal:
1643 break;
1644 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001645 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001646 if (Tmp4.getNode()) {
Nate Begeman2281a992008-01-05 20:47:37 +00001647 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001648 break;
1649 }
1650 // FALLTHROUGH
Mon P Wang0c397192008-10-30 08:01:45 +00001651 case TargetLowering::Promote:
1652 // Fall thru for vector case
Chris Lattner2332b9f2006-03-19 01:17:20 +00001653 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001654 // If the insert index is a constant, codegen this as a scalar_to_vector,
1655 // then a shuffle that inserts it into the right position in the vector.
1656 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001657 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1658 // match the element type of the vector being created.
Scott Michelfdc40a02009-02-17 22:15:04 +00001659 if (Tmp2.getValueType() ==
Duncan Sands83ec4b62008-06-06 12:08:01 +00001660 Op.getValueType().getVectorElementType()) {
Dale Johannesenca57b842009-02-02 23:46:53 +00001661 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Nate Begeman0325d902008-02-13 06:43:04 +00001662 Tmp1.getValueType(), Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00001663
Duncan Sands83ec4b62008-06-06 12:08:01 +00001664 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1665 MVT ShufMaskVT =
1666 MVT::getIntVectorWithNumElements(NumElts);
1667 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001668
Nate Begeman0325d902008-02-13 06:43:04 +00001669 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1670 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1671 // elt 0 of the RHS.
Dan Gohman475871a2008-07-27 21:46:04 +00001672 SmallVector<SDValue, 8> ShufOps;
Nate Begeman0325d902008-02-13 06:43:04 +00001673 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001674 if (i != InsertPos->getZExtValue())
Nate Begeman0325d902008-02-13 06:43:04 +00001675 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1676 else
1677 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1678 }
Evan Chenga87008d2009-02-25 22:49:59 +00001679 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, dl, ShufMaskVT,
1680 &ShufOps[0], ShufOps.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001681
Dale Johannesenca57b842009-02-02 23:46:53 +00001682 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, Tmp1.getValueType(),
Nate Begeman0325d902008-02-13 06:43:04 +00001683 Tmp1, ScVec, ShufMask);
1684 Result = LegalizeOp(Result);
1685 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001686 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001687 }
Dale Johannesenbb5da912009-02-02 20:41:04 +00001688 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3, dl);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001689 break;
1690 }
1691 }
1692 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001693 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001694 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1695 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1696 break;
1697 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001698
Chris Lattnerce872152006-03-19 06:31:19 +00001699 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1700 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1701 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1702 Node->getValueType(0))) {
1703 default: assert(0 && "This action is not supported yet!");
1704 case TargetLowering::Legal:
1705 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001706 case TargetLowering::Custom:
1707 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001708 if (Tmp3.getNode()) {
Chris Lattner4d3abee2006-03-19 06:47:21 +00001709 Result = Tmp3;
1710 break;
1711 }
1712 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001713 case TargetLowering::Expand:
1714 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001715 break;
1716 }
Chris Lattnerce872152006-03-19 06:31:19 +00001717 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001718 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001719 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1720 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1721 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1722
1723 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001724 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1725 default: assert(0 && "Unknown operation action!");
1726 case TargetLowering::Legal:
1727 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1728 "vector shuffle should not be created if not legal!");
1729 break;
1730 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001731 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001732 if (Tmp3.getNode()) {
Evan Cheng18dd6d02006-04-05 06:07:11 +00001733 Result = Tmp3;
1734 break;
1735 }
1736 // FALLTHROUGH
1737 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001738 MVT VT = Node->getValueType(0);
1739 MVT EltVT = VT.getVectorElementType();
1740 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00001741 SDValue Mask = Node->getOperand(2);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001742 unsigned NumElems = Mask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00001743 SmallVector<SDValue,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001744 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001745 SDValue Arg = Mask.getOperand(i);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001746 if (Arg.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00001747 Ops.push_back(DAG.getUNDEF(EltVT));
Evan Cheng18dd6d02006-04-05 06:07:11 +00001748 } else {
1749 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001750 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng18dd6d02006-04-05 06:07:11 +00001751 if (Idx < NumElems)
Dale Johannesenca57b842009-02-02 23:46:53 +00001752 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp1,
Evan Cheng18dd6d02006-04-05 06:07:11 +00001753 DAG.getConstant(Idx, PtrVT)));
1754 else
Dale Johannesenca57b842009-02-02 23:46:53 +00001755 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp2,
Evan Cheng18dd6d02006-04-05 06:07:11 +00001756 DAG.getConstant(Idx - NumElems, PtrVT)));
1757 }
1758 }
Evan Chenga87008d2009-02-25 22:49:59 +00001759 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001760 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001761 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001762 case TargetLowering::Promote: {
1763 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001764 MVT OVT = Node->getValueType(0);
1765 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001766
1767 // Cast the two input vectors.
Dale Johannesenca57b842009-02-02 23:46:53 +00001768 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
1769 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00001770
Chris Lattner4352cc92006-04-04 17:23:26 +00001771 // Convert the shuffle mask to the right # elements.
Dan Gohman475871a2008-07-27 21:46:04 +00001772 Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001773 assert(Tmp3.getNode() && "Shuffle not legal?");
Dale Johannesenca57b842009-02-02 23:46:53 +00001774 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, NVT, Tmp1, Tmp2, Tmp3);
1775 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Chris Lattner4352cc92006-04-04 17:23:26 +00001776 break;
1777 }
Chris Lattner87100e02006-03-20 01:52:29 +00001778 }
1779 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001780
Chris Lattner384504c2006-03-21 20:44:12 +00001781 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001782 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001783 Tmp2 = LegalizeOp(Node->getOperand(1));
1784 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001785 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001786 break;
1787
Scott Michelfdc40a02009-02-17 22:15:04 +00001788 case ISD::EXTRACT_SUBVECTOR:
Dan Gohman7f321562007-06-25 16:23:39 +00001789 Tmp1 = Node->getOperand(0);
1790 Tmp2 = LegalizeOp(Node->getOperand(1));
1791 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1792 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001793 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001794
Mon P Wang0c397192008-10-30 08:01:45 +00001795 case ISD::CONCAT_VECTORS: {
1796 // Use extract/insert/build vector for now. We might try to be
1797 // more clever later.
1798 MVT PtrVT = TLI.getPointerTy();
1799 SmallVector<SDValue, 8> Ops;
1800 unsigned NumOperands = Node->getNumOperands();
1801 for (unsigned i=0; i < NumOperands; ++i) {
1802 SDValue SubOp = Node->getOperand(i);
1803 MVT VVT = SubOp.getNode()->getValueType(0);
1804 MVT EltVT = VVT.getVectorElementType();
1805 unsigned NumSubElem = VVT.getVectorNumElements();
1806 for (unsigned j=0; j < NumSubElem; ++j) {
Dale Johannesenca57b842009-02-02 23:46:53 +00001807 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, SubOp,
Mon P Wang0c397192008-10-30 08:01:45 +00001808 DAG.getConstant(j, PtrVT)));
1809 }
1810 }
Evan Chenga87008d2009-02-25 22:49:59 +00001811 return LegalizeOp(DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
1812 &Ops[0], Ops.size()));
Mon P Wang0c397192008-10-30 08:01:45 +00001813 }
1814
Chris Lattner6831a812006-02-13 09:18:02 +00001815 case ISD::CALLSEQ_START: {
1816 SDNode *CallEnd = FindCallEndFromCallStart(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00001817
Chris Lattner6831a812006-02-13 09:18:02 +00001818 // Recursively Legalize all of the inputs of the call end that do not lead
1819 // to this call start. This ensures that any libcalls that need be inserted
1820 // are inserted *before* the CALLSEQ_START.
Mon P Wange5ab34e2009-02-04 19:38:14 +00001821 IsLegalizingCallArgs = true;
Chris Lattner00755df2007-02-04 00:27:56 +00001822 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001823 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00001824 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001825 NodesLeadingTo);
1826 }
Mon P Wange5ab34e2009-02-04 19:38:14 +00001827 IsLegalizingCallArgs = false;
Chris Lattner6831a812006-02-13 09:18:02 +00001828
1829 // Now that we legalized all of the inputs (which may have inserted
1830 // libcalls) create the new CALLSEQ_START node.
1831 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1832
1833 // Merge in the last call, to ensure that this call start after the last
1834 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001835 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001836 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00001837 Tmp1, LastCALLSEQ_END);
Chris Lattnerb248e162006-05-17 17:55:45 +00001838 Tmp1 = LegalizeOp(Tmp1);
1839 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001840
Chris Lattner6831a812006-02-13 09:18:02 +00001841 // Do not try to legalize the target-specific arguments (#1+).
1842 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001843 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001844 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001845 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001846 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001847
Chris Lattner6831a812006-02-13 09:18:02 +00001848 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001849 AddLegalizedOperand(Op.getValue(0), Result);
1850 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1851 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001852
Chris Lattner6831a812006-02-13 09:18:02 +00001853 // Now that the callseq_start and all of the non-call nodes above this call
Scott Michelfdc40a02009-02-17 22:15:04 +00001854 // sequence have been legalized, legalize the call itself. During this
Chris Lattner6831a812006-02-13 09:18:02 +00001855 // process, no libcalls can/will be inserted, guaranteeing that no calls
1856 // can overlap.
1857 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001858 // Note that we are selecting this call!
Dan Gohman475871a2008-07-27 21:46:04 +00001859 LastCALLSEQ_END = SDValue(CallEnd, 0);
Chris Lattner6831a812006-02-13 09:18:02 +00001860 IsLegalizingCall = true;
Scott Michelfdc40a02009-02-17 22:15:04 +00001861
Chris Lattner6831a812006-02-13 09:18:02 +00001862 // Legalize the call, starting from the CALLSEQ_END.
1863 LegalizeOp(LastCALLSEQ_END);
1864 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1865 return Result;
1866 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001867 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001868 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1869 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greifba36cb52008-08-28 21:40:38 +00001870 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman475871a2008-07-27 21:46:04 +00001871 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1872 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001873 assert(I != LegalizedNodes.end() &&
1874 "Legalizing the call start should have legalized this node!");
1875 return I->second;
1876 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001877
1878 // Otherwise, the call start has been legalized and everything is going
Chris Lattner6831a812006-02-13 09:18:02 +00001879 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001880 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001881 // Do not try to legalize the target-specific arguments (#1+), except for
1882 // an optional flag input.
1883 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1884 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001885 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001886 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001887 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001888 }
1889 } else {
1890 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1891 if (Tmp1 != Node->getOperand(0) ||
1892 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001893 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001894 Ops[0] = Tmp1;
1895 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001896 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001897 }
Chris Lattner6a542892006-01-24 05:48:21 +00001898 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001899 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001900 // This finishes up call legalization.
1901 IsLegalizingCall = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001902
Chris Lattner4b653a02006-02-14 00:55:02 +00001903 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman475871a2008-07-27 21:46:04 +00001904 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Chris Lattner4b653a02006-02-14 00:55:02 +00001905 if (Node->getNumValues() == 2)
Dan Gohman475871a2008-07-27 21:46:04 +00001906 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001907 return Result.getValue(Op.getResNo());
Evan Chenga7dce3c2006-01-11 22:14:47 +00001908 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001909 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001910 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1911 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1912 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001913 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001914
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001915 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001916 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001917 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001918 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001919 case TargetLowering::Expand: {
1920 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1921 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1922 " not tell us which reg is the stack pointer!");
Dan Gohman475871a2008-07-27 21:46:04 +00001923 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001924
1925 // Chain the dynamic stack allocation so that it doesn't modify the stack
1926 // pointer when other instructions are using the stack.
Chris Lattnere563bbc2008-10-11 22:08:30 +00001927 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001928
Dan Gohman475871a2008-07-27 21:46:04 +00001929 SDValue Size = Tmp2.getOperand(1);
Dale Johannesenc460ae92009-02-04 00:13:36 +00001930 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001931 Chain = SP.getValue(1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001932 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Cheng61bbbab2007-08-16 23:50:06 +00001933 unsigned StackAlign =
1934 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1935 if (Align > StackAlign)
Dale Johannesenca57b842009-02-02 23:46:53 +00001936 SP = DAG.getNode(ISD::AND, dl, VT, SP,
Evan Cheng3e20bba2007-08-17 18:02:22 +00001937 DAG.getConstant(-(uint64_t)Align, VT));
Dale Johannesenca57b842009-02-02 23:46:53 +00001938 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Dale Johannesenc460ae92009-02-04 00:13:36 +00001939 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001940
Dale Johannesenca57b842009-02-02 23:46:53 +00001941 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Chris Lattnere563bbc2008-10-11 22:08:30 +00001942 DAG.getIntPtrConstant(0, true), SDValue());
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001943
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001944 Tmp1 = LegalizeOp(Tmp1);
1945 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001946 break;
1947 }
1948 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001949 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001950 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001951 Tmp1 = LegalizeOp(Tmp3);
1952 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001953 }
Chris Lattner903d2782006-01-15 08:54:32 +00001954 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001955 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001956 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001957 }
Chris Lattner903d2782006-01-15 08:54:32 +00001958 // Since this op produce two values, make sure to remember that we
1959 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001960 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1961 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001962 return Op.getResNo() ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001963 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001964 case ISD::INLINEASM: {
Dan Gohman475871a2008-07-27 21:46:04 +00001965 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001966 bool Changed = false;
1967 // Legalize all of the operands of the inline asm, in case they are nodes
1968 // that need to be expanded or something. Note we skip the asm string and
1969 // all of the TargetConstant flags.
Dan Gohman475871a2008-07-27 21:46:04 +00001970 SDValue Op = LegalizeOp(Ops[0]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001971 Changed = Op != Ops[0];
1972 Ops[0] = Op;
1973
1974 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1975 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001976 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getZExtValue() >> 3;
Chris Lattner25a022c2006-07-11 01:40:09 +00001977 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman475871a2008-07-27 21:46:04 +00001978 SDValue Op = LegalizeOp(Ops[i]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001979 if (Op != Ops[i]) {
1980 Changed = true;
1981 Ops[i] = Op;
1982 }
1983 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001984 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001985
1986 if (HasInFlag) {
1987 Op = LegalizeOp(Ops.back());
1988 Changed |= Op != Ops.back();
1989 Ops.back() = Op;
1990 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001991
Chris Lattner25a022c2006-07-11 01:40:09 +00001992 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001993 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001994
Chris Lattnerce7518c2006-01-26 22:24:51 +00001995 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman475871a2008-07-27 21:46:04 +00001996 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1997 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001998 return Result.getValue(Op.getResNo());
Chris Lattner25a022c2006-07-11 01:40:09 +00001999 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00002000 case ISD::BR:
2001 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002002 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002003 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002004 Tmp1 = LegalizeOp(Tmp1);
2005 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00002006
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002007 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00002008 break;
Nate Begeman37efe672006-04-22 18:53:45 +00002009 case ISD::BRIND:
2010 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2011 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002012 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Nate Begeman37efe672006-04-22 18:53:45 +00002013 Tmp1 = LegalizeOp(Tmp1);
2014 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00002015
Nate Begeman37efe672006-04-22 18:53:45 +00002016 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2017 default: assert(0 && "Indirect target must be legal type (pointer)!");
2018 case Legal:
2019 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2020 break;
2021 }
2022 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2023 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00002024 case ISD::BR_JT:
2025 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2026 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002027 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002028 Tmp1 = LegalizeOp(Tmp1);
2029 LastCALLSEQ_END = DAG.getEntryNode();
2030
2031 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
2032 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2033
Scott Michelfdc40a02009-02-17 22:15:04 +00002034 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00002035 default: assert(0 && "This action is not supported yet!");
2036 case TargetLowering::Legal: break;
2037 case TargetLowering::Custom:
2038 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002039 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng3d4ce112006-10-30 08:00:44 +00002040 break;
2041 case TargetLowering::Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002042 SDValue Chain = Result.getOperand(0);
2043 SDValue Table = Result.getOperand(1);
2044 SDValue Index = Result.getOperand(2);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002045
Duncan Sands83ec4b62008-06-06 12:08:01 +00002046 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002047 MachineFunction &MF = DAG.getMachineFunction();
2048 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Scott Michelfdc40a02009-02-17 22:15:04 +00002049 Index= DAG.getNode(ISD::MUL, dl, PTy,
Dale Johannesenca57b842009-02-02 23:46:53 +00002050 Index, DAG.getConstant(EntrySize, PTy));
2051 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002052
Duncan Sands712f7b32008-12-12 08:13:38 +00002053 MVT MemVT = MVT::getIntegerVT(EntrySize * 8);
Dale Johannesenca57b842009-02-02 23:46:53 +00002054 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Duncan Sands712f7b32008-12-12 08:13:38 +00002055 PseudoSourceValue::getJumpTable(), 0, MemVT);
Evan Chengcc415862007-11-09 01:32:10 +00002056 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002057 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00002058 // For PIC, the sequence is:
2059 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00002060 // RelocBase can be JumpTable, GOT or some sort of global base.
Dale Johannesenca57b842009-02-02 23:46:53 +00002061 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
Evan Chengcc415862007-11-09 01:32:10 +00002062 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00002063 }
Dale Johannesenca57b842009-02-02 23:46:53 +00002064 Result = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002065 }
2066 }
2067 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002068 case ISD::BRCOND:
2069 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002070 // Ensure that libcalls are emitted before a return.
Dale Johannesenca57b842009-02-02 23:46:53 +00002071 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002072 Tmp1 = LegalizeOp(Tmp1);
2073 LastCALLSEQ_END = DAG.getEntryNode();
2074
Chris Lattner47e92232005-01-18 19:27:06 +00002075 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2076 case Expand: assert(0 && "It's impossible to expand bools");
2077 case Legal:
2078 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2079 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002080 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002081 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Scott Michelfdc40a02009-02-17 22:15:04 +00002082
Chris Lattnerf9908172006-11-27 04:39:56 +00002083 // The top bits of the promoted condition are not necessarily zero, ensure
2084 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002085 unsigned BitWidth = Tmp2.getValueSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002086 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002087 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenca57b842009-02-02 23:46:53 +00002088 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002089 break;
2090 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002091 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002092
2093 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002094 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00002095
2096 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
Nate Begeman7cbd5252005-08-16 19:49:35 +00002097 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002098 case TargetLowering::Legal: break;
2099 case TargetLowering::Custom:
2100 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002101 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002102 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002103 case TargetLowering::Expand:
2104 // Expand brcond's setcc into its constituent parts and create a BR_CC
2105 // Node.
2106 if (Tmp2.getOpcode() == ISD::SETCC) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002107 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00002108 Tmp1, Tmp2.getOperand(2),
Nate Begeman7cbd5252005-08-16 19:49:35 +00002109 Tmp2.getOperand(0), Tmp2.getOperand(1),
2110 Node->getOperand(2));
2111 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00002112 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Nate Begeman7cbd5252005-08-16 19:49:35 +00002113 DAG.getCondCode(ISD::SETNE), Tmp2,
2114 DAG.getConstant(0, Tmp2.getValueType()),
2115 Node->getOperand(2));
2116 }
2117 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002118 }
2119 break;
2120 case ISD::BR_CC:
2121 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002122 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002123 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002124 Tmp1 = LegalizeOp(Tmp1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002125 Tmp2 = Node->getOperand(2); // LHS
Nate Begeman750ac1b2006-02-01 07:19:44 +00002126 Tmp3 = Node->getOperand(3); // RHS
2127 Tmp4 = Node->getOperand(1); // CC
2128
Scott Michelfdc40a02009-02-17 22:15:04 +00002129 LegalizeSetCC(TLI.getSetCCResultType(Tmp2.getValueType()),
Dale Johannesenbb5da912009-02-02 20:41:04 +00002130 Tmp2, Tmp3, Tmp4, dl);
Evan Cheng722cb362006-12-18 22:55:34 +00002131 LastCALLSEQ_END = DAG.getEntryNode();
2132
Evan Cheng7f042682008-10-15 02:05:31 +00002133 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002134 // the LHS is a legal SETCC itself. In this case, we need to compare
2135 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00002136 if (Tmp3.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002137 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
2138 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00002139 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002140
2141 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002142 Node->getOperand(4));
Scott Michelfdc40a02009-02-17 22:15:04 +00002143
Chris Lattner181b7a32005-12-17 23:46:46 +00002144 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
2145 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002146 case TargetLowering::Legal: break;
2147 case TargetLowering::Custom:
2148 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002149 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00002150 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002151 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002152 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002153 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00002154 LoadSDNode *LD = cast<LoadSDNode>(Node);
2155 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
2156 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002157
Evan Cheng466685d2006-10-09 20:57:25 +00002158 ISD::LoadExtType ExtType = LD->getExtensionType();
2159 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002160 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00002161 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2162 Tmp3 = Result.getValue(0);
2163 Tmp4 = Result.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002164
Evan Cheng466685d2006-10-09 20:57:25 +00002165 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
2166 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002167 case TargetLowering::Legal:
2168 // If this is an unaligned load and the target doesn't support it,
2169 // expand it.
2170 if (!TLI.allowsUnalignedMemoryAccesses()) {
2171 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002172 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002173 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002174 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002175 TLI);
2176 Tmp3 = Result.getOperand(0);
2177 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00002178 Tmp3 = LegalizeOp(Tmp3);
2179 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002180 }
2181 }
2182 break;
Evan Cheng466685d2006-10-09 20:57:25 +00002183 case TargetLowering::Custom:
2184 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002185 if (Tmp1.getNode()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002186 Tmp3 = LegalizeOp(Tmp1);
2187 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00002188 }
Evan Cheng466685d2006-10-09 20:57:25 +00002189 break;
2190 case TargetLowering::Promote: {
2191 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002192 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00002193 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002194 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00002195
Dale Johannesenca57b842009-02-02 23:46:53 +00002196 Tmp1 = DAG.getLoad(NVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002197 LD->getSrcValueOffset(),
2198 LD->isVolatile(), LD->getAlignment());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00002199 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp1));
Evan Cheng466685d2006-10-09 20:57:25 +00002200 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002201 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00002202 }
Evan Cheng466685d2006-10-09 20:57:25 +00002203 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002204 // Since loads produce two values, make sure to remember that we
Evan Cheng466685d2006-10-09 20:57:25 +00002205 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002206 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
2207 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002208 return Op.getResNo() ? Tmp4 : Tmp3;
Evan Cheng466685d2006-10-09 20:57:25 +00002209 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002210 MVT SrcVT = LD->getMemoryVT();
2211 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002212 int SVOffset = LD->getSrcValueOffset();
2213 unsigned Alignment = LD->getAlignment();
2214 bool isVolatile = LD->isVolatile();
2215
Duncan Sands83ec4b62008-06-06 12:08:01 +00002216 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002217 // Some targets pretend to have an i1 loading operation, and actually
2218 // load an i8. This trick is correct for ZEXTLOAD because the top 7
2219 // bits are guaranteed to be zero; it helps the optimizers understand
2220 // that these bits are zero. It is also useful for EXTLOAD, since it
2221 // tells the optimizers that those bits are undefined. It would be
2222 // nice to have an effective generic way of getting these benefits...
2223 // Until such a way is found, don't insist on promoting i1 here.
2224 (SrcVT != MVT::i1 ||
Evan Cheng03294662008-10-14 21:26:46 +00002225 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002226 // Promote to a byte-sized load if not loading an integral number of
2227 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002228 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2229 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002230 SDValue Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002231
2232 // The extra bits are guaranteed to be zero, since we stored them that
2233 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2234
2235 ISD::LoadExtType NewExtType =
2236 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2237
Dale Johannesenca57b842009-02-02 23:46:53 +00002238 Result = DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002239 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2240 NVT, isVolatile, Alignment);
2241
2242 Ch = Result.getValue(1); // The chain.
2243
2244 if (ExtType == ISD::SEXTLOAD)
2245 // Having the top bits zero doesn't help when sign extending.
Scott Michelfdc40a02009-02-17 22:15:04 +00002246 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002247 Result.getValueType(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002248 Result, DAG.getValueType(SrcVT));
2249 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2250 // All the top bits are guaranteed to be zero - inform the optimizers.
Scott Michelfdc40a02009-02-17 22:15:04 +00002251 Result = DAG.getNode(ISD::AssertZext, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002252 Result.getValueType(), Result,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002253 DAG.getValueType(SrcVT));
2254
2255 Tmp1 = LegalizeOp(Result);
2256 Tmp2 = LegalizeOp(Ch);
2257 } else if (SrcWidth & (SrcWidth - 1)) {
2258 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002259 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002260 "Unsupported extload!");
2261 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2262 assert(RoundWidth < SrcWidth);
2263 unsigned ExtraWidth = SrcWidth - RoundWidth;
2264 assert(ExtraWidth < RoundWidth);
2265 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2266 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002267 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2268 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002269 SDValue Lo, Hi, Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002270 unsigned IncrementSize;
2271
2272 if (TLI.isLittleEndian()) {
2273 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2274 // Load the bottom RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002275 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
2276 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002277 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2278 Alignment);
2279
2280 // Load the remaining ExtraWidth bits.
2281 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002282 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002283 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002284 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002285 LD->getSrcValue(), SVOffset + IncrementSize,
2286 ExtraVT, isVolatile,
2287 MinAlign(Alignment, IncrementSize));
2288
2289 // Build a factor node to remember that this load is independent of the
2290 // other one.
Dale Johannesenca57b842009-02-02 23:46:53 +00002291 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002292 Hi.getValue(1));
2293
2294 // Move the top bits to the right place.
Dale Johannesenca57b842009-02-02 23:46:53 +00002295 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002296 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2297
2298 // Join the hi and lo parts.
Dale Johannesenca57b842009-02-02 23:46:53 +00002299 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002300 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002301 // Big endian - avoid unaligned loads.
2302 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2303 // Load the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002304 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002305 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2306 Alignment);
2307
2308 // Load the remaining ExtraWidth bits.
2309 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002310 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002311 DAG.getIntPtrConstant(IncrementSize));
Scott Michelfdc40a02009-02-17 22:15:04 +00002312 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002313 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002314 LD->getSrcValue(), SVOffset + IncrementSize,
2315 ExtraVT, isVolatile,
2316 MinAlign(Alignment, IncrementSize));
2317
2318 // Build a factor node to remember that this load is independent of the
2319 // other one.
Dale Johannesenca57b842009-02-02 23:46:53 +00002320 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002321 Hi.getValue(1));
2322
2323 // Move the top bits to the right place.
Dale Johannesenca57b842009-02-02 23:46:53 +00002324 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002325 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2326
2327 // Join the hi and lo parts.
Dale Johannesenca57b842009-02-02 23:46:53 +00002328 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002329 }
2330
2331 Tmp1 = LegalizeOp(Result);
2332 Tmp2 = LegalizeOp(Ch);
2333 } else {
Evan Cheng03294662008-10-14 21:26:46 +00002334 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002335 default: assert(0 && "This action is not supported yet!");
2336 case TargetLowering::Custom:
2337 isCustom = true;
2338 // FALLTHROUGH
2339 case TargetLowering::Legal:
2340 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2341 Tmp1 = Result.getValue(0);
2342 Tmp2 = Result.getValue(1);
2343
2344 if (isCustom) {
2345 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002346 if (Tmp3.getNode()) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002347 Tmp1 = LegalizeOp(Tmp3);
2348 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2349 }
2350 } else {
2351 // If this is an unaligned load and the target doesn't support it,
2352 // expand it.
2353 if (!TLI.allowsUnalignedMemoryAccesses()) {
2354 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002355 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002356 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002357 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002358 TLI);
2359 Tmp1 = Result.getOperand(0);
2360 Tmp2 = Result.getOperand(1);
2361 Tmp1 = LegalizeOp(Tmp1);
2362 Tmp2 = LegalizeOp(Tmp2);
2363 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002364 }
2365 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002366 break;
2367 case TargetLowering::Expand:
2368 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2369 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dale Johannesenca57b842009-02-02 23:46:53 +00002370 SDValue Load = DAG.getLoad(SrcVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002371 LD->getSrcValueOffset(),
2372 LD->isVolatile(), LD->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00002373 Result = DAG.getNode(ISD::FP_EXTEND, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002374 Node->getValueType(0), Load);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002375 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2376 Tmp2 = LegalizeOp(Load.getValue(1));
2377 break;
2378 }
2379 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2380 // Turn the unsupported load into an EXTLOAD followed by an explicit
2381 // zero/sign extend inreg.
Dale Johannesenca57b842009-02-02 23:46:53 +00002382 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002383 Tmp1, Tmp2, LD->getSrcValue(),
2384 LD->getSrcValueOffset(), SrcVT,
2385 LD->isVolatile(), LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00002386 SDValue ValRes;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002387 if (ExtType == ISD::SEXTLOAD)
Dale Johannesenca57b842009-02-02 23:46:53 +00002388 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
2389 Result.getValueType(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002390 Result, DAG.getValueType(SrcVT));
2391 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002392 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002393 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2394 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002395 break;
2396 }
Evan Cheng466685d2006-10-09 20:57:25 +00002397 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002398
Evan Cheng466685d2006-10-09 20:57:25 +00002399 // Since loads produce two values, make sure to remember that we legalized
2400 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002401 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2402 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002403 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002404 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002405 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002406 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002407 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002408 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002409 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002410 case Legal:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002411 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Nate Begeman5dc897b2005-10-19 00:06:56 +00002412 // 1 -> Hi
Dale Johannesenca57b842009-02-02 23:46:53 +00002413 Result = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002414 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002415 TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002416 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Result);
Nate Begeman5dc897b2005-10-19 00:06:56 +00002417 } else {
2418 // 0 -> Lo
Scott Michelfdc40a02009-02-17 22:15:04 +00002419 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
Nate Begeman5dc897b2005-10-19 00:06:56 +00002420 Node->getOperand(0));
2421 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002422 break;
2423 case Expand:
2424 // Get both the low and high parts.
2425 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002426 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Nate Begeman5dc897b2005-10-19 00:06:56 +00002427 Result = Tmp2; // 1 -> Hi
2428 else
2429 Result = Tmp1; // 0 -> Lo
2430 break;
2431 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002432 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002433 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002434
2435 case ISD::CopyToReg:
2436 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002437
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002438 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002439 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002440 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002441 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002442 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002443 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002444 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002445 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002446 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002447 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002448 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2449 Tmp3);
2450 } else {
2451 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002452 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002453
Chris Lattner7310fb12005-12-18 15:27:43 +00002454 // Since this produces two values, make sure to remember that we legalized
2455 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002456 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2457 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002458 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002459 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002460 break;
2461
2462 case ISD::RET:
2463 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002464
2465 // Ensure that libcalls are emitted before a return.
Dale Johannesenca57b842009-02-02 23:46:53 +00002466 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002467 Tmp1 = LegalizeOp(Tmp1);
2468 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00002469
Chris Lattner3e928bb2005-01-07 07:47:09 +00002470 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002471 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002472 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002473 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002474 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002475 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002476 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002477 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002478 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002479 if (!Tmp2.getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002480 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002481 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002482
2483 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002484 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002485 std::swap(Lo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00002486
Gabor Greifba36cb52008-08-28 21:40:38 +00002487 if (Hi.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00002488 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00002489 Tmp1, Lo, Tmp3, Hi,Tmp3);
Evan Cheng13acce32006-12-11 19:27:14 +00002490 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002491 Result = DAG.getNode(ISD::RET, dl, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002492 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002493 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00002494 SDNode *InVal = Tmp2.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002495 int InIx = Tmp2.getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002496 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2497 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00002498
Dan Gohman7f321562007-06-25 16:23:39 +00002499 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002500 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002501 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002502 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002503 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002504 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002505 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002506 } else if (NumElems == 1) {
2507 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002508 Tmp2 = ScalarizeVectorOp(Tmp2);
2509 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002510 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00002511
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002512 // FIXME: Returns of gcc generic vectors smaller than a legal type
2513 // should be returned in integer registers!
Scott Michelfdc40a02009-02-17 22:15:04 +00002514
Chris Lattnerf87324e2006-04-11 01:31:51 +00002515 // The scalarized value type may not be legal, e.g. it might require
2516 // promotion or expansion. Relegalize the return.
2517 Result = LegalizeOp(Result);
2518 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002519 // FIXME: Returns of gcc generic vectors larger than a legal vector
2520 // type should be returned by reference!
Dan Gohman475871a2008-07-27 21:46:04 +00002521 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002522 SplitVectorOp(Tmp2, Lo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00002523 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00002524 Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002525 Result = LegalizeOp(Result);
2526 }
2527 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002528 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002529 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002530 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002531 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002532 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002533 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002534 }
2535 break;
2536 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002537 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002538 break;
2539 default: { // ret <values>
Dan Gohman475871a2008-07-27 21:46:04 +00002540 SmallVector<SDValue, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002541 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002542 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002543 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2544 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002545 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002546 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002547 break;
2548 case Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002549 SDValue Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002550 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002551 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002552 ExpandOp(Node->getOperand(i), Lo, Hi);
2553 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002554 NewValues.push_back(Node->getOperand(i+1));
Gabor Greifba36cb52008-08-28 21:40:38 +00002555 if (Hi.getNode()) {
Evan Cheng13acce32006-12-11 19:27:14 +00002556 NewValues.push_back(Hi);
2557 NewValues.push_back(Node->getOperand(i+1));
2558 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002559 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002560 }
2561 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002562 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002563 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002564
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002565 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002566 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002567 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002568 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002569 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002570 break;
2571 }
2572 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002573
Chris Lattner6862dbc2006-01-29 21:02:23 +00002574 if (Result.getOpcode() == ISD::RET) {
2575 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2576 default: assert(0 && "This action is not supported yet!");
2577 case TargetLowering::Legal: break;
2578 case TargetLowering::Custom:
2579 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002580 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner6862dbc2006-01-29 21:02:23 +00002581 break;
2582 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002583 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002584 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002585 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002586 StoreSDNode *ST = cast<StoreSDNode>(Node);
2587 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2588 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002589 int SVOffset = ST->getSrcValueOffset();
2590 unsigned Alignment = ST->getAlignment();
2591 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002592
Evan Cheng8b2794a2006-10-13 21:14:26 +00002593 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002594 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2595 // FIXME: We shouldn't do this for TargetConstantFP's.
2596 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2597 // to phase ordering between legalized code and the dag combiner. This
2598 // probably means that we need to integrate dag combiner and legalizer
2599 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002600 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002601 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002602 if (CFP->getValueType(0) == MVT::f32 &&
Chris Lattner3cb93512007-10-15 05:46:06 +00002603 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002604 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen7111b022008-10-09 18:53:47 +00002605 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002606 MVT::i32);
Dale Johannesenca57b842009-02-02 23:46:53 +00002607 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002608 SVOffset, isVolatile, Alignment);
2609 break;
2610 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002611 // If this target supports 64-bit registers, do a single 64-bit store.
2612 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen7111b022008-10-09 18:53:47 +00002613 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002614 zextOrTrunc(64), MVT::i64);
Dale Johannesenca57b842009-02-02 23:46:53 +00002615 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner3cb93512007-10-15 05:46:06 +00002616 SVOffset, isVolatile, Alignment);
2617 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002618 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002619 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2620 // stores. If the target supports neither 32- nor 64-bits, this
2621 // xform is certainly not worth it.
Dale Johannesen7111b022008-10-09 18:53:47 +00002622 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman475871a2008-07-27 21:46:04 +00002623 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2624 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002625 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002626
Dale Johannesenca57b842009-02-02 23:46:53 +00002627 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Chris Lattner3cb93512007-10-15 05:46:06 +00002628 SVOffset, isVolatile, Alignment);
Dale Johannesenca57b842009-02-02 23:46:53 +00002629 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002630 DAG.getIntPtrConstant(4));
Dale Johannesenca57b842009-02-02 23:46:53 +00002631 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002632 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002633
Dale Johannesenca57b842009-02-02 23:46:53 +00002634 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002635 break;
2636 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002637 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002638 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002639
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002640 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002641 case Legal: {
2642 Tmp3 = LegalizeOp(ST->getValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00002643 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002644 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002645
Duncan Sands83ec4b62008-06-06 12:08:01 +00002646 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002647 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2648 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002649 case TargetLowering::Legal:
2650 // If this is an unaligned store and the target doesn't support it,
2651 // expand it.
2652 if (!TLI.allowsUnalignedMemoryAccesses()) {
2653 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002654 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002655 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002656 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002657 TLI);
2658 }
2659 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002660 case TargetLowering::Custom:
2661 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002662 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002663 break;
2664 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002665 assert(VT.isVector() && "Unknown legal promote case!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002666 Tmp3 = DAG.getNode(ISD::BIT_CONVERT, dl,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002667 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
Dale Johannesenca57b842009-02-02 23:46:53 +00002668 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002669 ST->getSrcValue(), SVOffset, isVolatile,
2670 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002671 break;
2672 }
2673 break;
2674 }
2675 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002676 if (!ST->getMemoryVT().isVector()) {
2677 // Truncate the value and store the result.
2678 Tmp3 = PromoteOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002679 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Mon P Wang0c397192008-10-30 08:01:45 +00002680 SVOffset, ST->getMemoryVT(),
2681 isVolatile, Alignment);
2682 break;
2683 }
2684 // Fall thru to expand for vector
2685 case Expand: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002686 unsigned IncrementSize = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002687 SDValue Lo, Hi;
Scott Michelfdc40a02009-02-17 22:15:04 +00002688
Evan Cheng8b2794a2006-10-13 21:14:26 +00002689 // If this is a vector type, then we have to calculate the increment as
2690 // the product of the element size in bytes, and the number of elements
2691 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002692 if (ST->getValue().getValueType().isVector()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002693 SDNode *InVal = ST->getValue().getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002694 int InIx = ST->getValue().getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002695 MVT InVT = InVal->getValueType(InIx);
2696 unsigned NumElems = InVT.getVectorNumElements();
2697 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002698
Dan Gohman7f321562007-06-25 16:23:39 +00002699 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002700 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002701 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002702 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002703 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002704 Tmp3 = LegalizeOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002705 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002706 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002707 Result = LegalizeOp(Result);
2708 break;
2709 } else if (NumElems == 1) {
2710 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002711 Tmp3 = ScalarizeVectorOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002712 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002713 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002714 // The scalarized value type may not be legal, e.g. it might require
2715 // promotion or expansion. Relegalize the scalar store.
2716 Result = LegalizeOp(Result);
2717 break;
2718 } else {
Mon P Wang0c397192008-10-30 08:01:45 +00002719 // Check if we have widen this node with another value
2720 std::map<SDValue, SDValue>::iterator I =
2721 WidenNodes.find(ST->getValue());
2722 if (I != WidenNodes.end()) {
2723 Result = StoreWidenVectorOp(ST, Tmp1, Tmp2);
2724 break;
2725 }
2726 else {
2727 SplitVectorOp(ST->getValue(), Lo, Hi);
2728 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
2729 EVT.getSizeInBits()/8;
2730 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002731 }
2732 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002733 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002734 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002735
Richard Pennington4b052dc2008-09-25 16:15:10 +00002736 if (Hi.getNode() && TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002737 std::swap(Lo, Hi);
2738 }
2739
Dale Johannesenca57b842009-02-02 23:46:53 +00002740 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002741 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002742
Gabor Greifba36cb52008-08-28 21:40:38 +00002743 if (Hi.getNode() == NULL) {
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002744 // Must be int <-> float one-to-one expansion.
2745 Result = Lo;
2746 break;
2747 }
2748
Dale Johannesenca57b842009-02-02 23:46:53 +00002749 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002750 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002751 assert(isTypeLegal(Tmp2.getValueType()) &&
2752 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002753 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002754 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenca57b842009-02-02 23:46:53 +00002755 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002756 SVOffset, isVolatile, Alignment);
Dale Johannesenca57b842009-02-02 23:46:53 +00002757 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002758 break;
Mon P Wang0c397192008-10-30 08:01:45 +00002759 } // case Expand
Evan Cheng8b2794a2006-10-13 21:14:26 +00002760 }
2761 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002762 switch (getTypeAction(ST->getValue().getValueType())) {
2763 case Legal:
2764 Tmp3 = LegalizeOp(ST->getValue());
2765 break;
2766 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002767 if (!ST->getValue().getValueType().isVector()) {
2768 // We can promote the value, the truncstore will still take care of it.
2769 Tmp3 = PromoteOp(ST->getValue());
2770 break;
2771 }
2772 // Vector case falls through to expand
Chris Lattnerddf89562008-01-17 19:59:44 +00002773 case Expand:
2774 // Just store the low part. This may become a non-trunc store, so make
2775 // sure to use getTruncStore, not UpdateNodeOperands below.
2776 ExpandOp(ST->getValue(), Tmp3, Tmp4);
Dale Johannesenca57b842009-02-02 23:46:53 +00002777 return DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattnerddf89562008-01-17 19:59:44 +00002778 SVOffset, MVT::i8, isVolatile, Alignment);
2779 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002780
Duncan Sands83ec4b62008-06-06 12:08:01 +00002781 MVT StVT = ST->getMemoryVT();
2782 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002783
Duncan Sands83ec4b62008-06-06 12:08:01 +00002784 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002785 // Promote to a byte-sized store with upper bits zero if not
2786 // storing an integral number of bytes. For example, promote
2787 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002788 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Dale Johannesenca57b842009-02-02 23:46:53 +00002789 Tmp3 = DAG.getZeroExtendInReg(Tmp3, dl, StVT);
2790 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002791 SVOffset, NVT, isVolatile, Alignment);
2792 } else if (StWidth & (StWidth - 1)) {
2793 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002794 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002795 "Unsupported truncstore!");
2796 unsigned RoundWidth = 1 << Log2_32(StWidth);
2797 assert(RoundWidth < StWidth);
2798 unsigned ExtraWidth = StWidth - RoundWidth;
2799 assert(ExtraWidth < RoundWidth);
2800 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2801 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002802 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2803 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002804 SDValue Lo, Hi;
Duncan Sands7e857202008-01-22 07:17:34 +00002805 unsigned IncrementSize;
2806
2807 if (TLI.isLittleEndian()) {
2808 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2809 // Store the bottom RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002810 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002811 SVOffset, RoundVT,
2812 isVolatile, Alignment);
2813
2814 // Store the remaining ExtraWidth bits.
2815 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002816 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00002817 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002818 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands7e857202008-01-22 07:17:34 +00002819 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002820 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002821 SVOffset + IncrementSize, ExtraVT, isVolatile,
2822 MinAlign(Alignment, IncrementSize));
2823 } else {
2824 // Big endian - avoid unaligned stores.
2825 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2826 // Store the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002827 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands7e857202008-01-22 07:17:34 +00002828 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002829 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
2830 SVOffset, RoundVT, isVolatile, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00002831
2832 // Store the remaining ExtraWidth bits.
2833 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002834 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00002835 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002836 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002837 SVOffset + IncrementSize, ExtraVT, isVolatile,
2838 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002839 }
Duncan Sands7e857202008-01-22 07:17:34 +00002840
2841 // The order of the stores doesn't matter.
Dale Johannesenca57b842009-02-02 23:46:53 +00002842 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Duncan Sands7e857202008-01-22 07:17:34 +00002843 } else {
2844 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2845 Tmp2 != ST->getBasePtr())
2846 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2847 ST->getOffset());
2848
2849 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2850 default: assert(0 && "This action is not supported yet!");
2851 case TargetLowering::Legal:
2852 // If this is an unaligned store and the target doesn't support it,
2853 // expand it.
2854 if (!TLI.allowsUnalignedMemoryAccesses()) {
2855 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002856 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002857 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002858 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands7e857202008-01-22 07:17:34 +00002859 TLI);
2860 }
2861 break;
2862 case TargetLowering::Custom:
2863 Result = TLI.LowerOperation(Result, DAG);
2864 break;
2865 case Expand:
2866 // TRUNCSTORE:i16 i32 -> STORE i16
2867 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
Dale Johannesenca57b842009-02-02 23:46:53 +00002868 Tmp3 = DAG.getNode(ISD::TRUNCATE, dl, StVT, Tmp3);
2869 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
2870 SVOffset, isVolatile, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00002871 break;
2872 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002873 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002874 }
2875 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002876 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002877 case ISD::PCMARKER:
2878 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002879 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002880 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002881 case ISD::STACKSAVE:
2882 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002883 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2884 Tmp1 = Result.getValue(0);
2885 Tmp2 = Result.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002886
Chris Lattner140d53c2006-01-13 02:50:02 +00002887 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2888 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002889 case TargetLowering::Legal: break;
2890 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002891 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002892 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002893 Tmp1 = LegalizeOp(Tmp3);
2894 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002895 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002896 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002897 case TargetLowering::Expand:
Scott Michelfdc40a02009-02-17 22:15:04 +00002898 // Expand to CopyFromReg if the target set
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002899 // StackPointerRegisterToSaveRestore.
2900 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00002901 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), dl, SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002902 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002903 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002904 } else {
Dale Johannesene8d72302009-02-06 23:05:02 +00002905 Tmp1 = DAG.getUNDEF(Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002906 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002907 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002908 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002909 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002910
2911 // Since stacksave produce two values, make sure to remember that we
2912 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002913 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2914 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002915 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002916
Chris Lattner140d53c2006-01-13 02:50:02 +00002917 case ISD::STACKRESTORE:
2918 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2919 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002920 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00002921
Chris Lattner140d53c2006-01-13 02:50:02 +00002922 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2923 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002924 case TargetLowering::Legal: break;
2925 case TargetLowering::Custom:
2926 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002927 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002928 break;
2929 case TargetLowering::Expand:
Scott Michelfdc40a02009-02-17 22:15:04 +00002930 // Expand to CopyToReg if the target set
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002931 // StackPointerRegisterToSaveRestore.
2932 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00002933 Result = DAG.getCopyToReg(Tmp1, dl, SP, Tmp2);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002934 } else {
2935 Result = Tmp1;
2936 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002937 break;
2938 }
2939 break;
2940
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002941 case ISD::READCYCLECOUNTER:
2942 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002943 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002944 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2945 Node->getValueType(0))) {
2946 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002947 case TargetLowering::Legal:
2948 Tmp1 = Result.getValue(0);
2949 Tmp2 = Result.getValue(1);
2950 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002951 case TargetLowering::Custom:
2952 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002953 Tmp1 = LegalizeOp(Result.getValue(0));
2954 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002955 break;
2956 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002957
2958 // Since rdcc produce two values, make sure to remember that we legalized
2959 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002960 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2961 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002962 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002963
Chris Lattner2ee743f2005-01-14 22:08:15 +00002964 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002965 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2966 case Expand: assert(0 && "It's impossible to expand bools");
2967 case Legal:
2968 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2969 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002970 case Promote: {
Mon P Wang0c397192008-10-30 08:01:45 +00002971 assert(!Node->getOperand(0).getValueType().isVector() && "not possible");
Chris Lattner47e92232005-01-18 19:27:06 +00002972 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002973 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002974 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002975 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002976 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenca57b842009-02-02 23:46:53 +00002977 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002978 break;
2979 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002980 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002981 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002982 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002983
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002984 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00002985
Nate Begemanb942a3d2005-08-23 04:29:48 +00002986 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002987 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002988 case TargetLowering::Legal: break;
2989 case TargetLowering::Custom: {
2990 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002991 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002992 break;
2993 }
Nate Begeman9373a812005-08-10 20:51:12 +00002994 case TargetLowering::Expand:
2995 if (Tmp1.getOpcode() == ISD::SETCC) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002996 Result = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
Nate Begeman9373a812005-08-10 20:51:12 +00002997 Tmp2, Tmp3,
2998 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2999 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00003000 Result = DAG.getSelectCC(dl, Tmp1,
Nate Begeman9373a812005-08-10 20:51:12 +00003001 DAG.getConstant(0, Tmp1.getValueType()),
3002 Tmp2, Tmp3, ISD::SETNE);
3003 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003004 break;
3005 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003006 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003007 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
3008 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003009 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00003010 ExtOp = ISD::BIT_CONVERT;
3011 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003012 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003013 ExtOp = ISD::ANY_EXTEND;
3014 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003015 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00003016 ExtOp = ISD::FP_EXTEND;
3017 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003018 }
3019 // Promote each of the values to the new type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003020 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Tmp2);
3021 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Tmp3);
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003022 // Perform the larger operation, then round down.
Dale Johannesenca57b842009-02-02 23:46:53 +00003023 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00003024 if (TruncOp != ISD::FP_ROUND)
Dale Johannesenca57b842009-02-02 23:46:53 +00003025 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003026 else
Dale Johannesenca57b842009-02-02 23:46:53 +00003027 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00003028 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003029 break;
3030 }
3031 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003032 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00003033 case ISD::SELECT_CC: {
3034 Tmp1 = Node->getOperand(0); // LHS
3035 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00003036 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
3037 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman475871a2008-07-27 21:46:04 +00003038 SDValue CC = Node->getOperand(4);
Scott Michelfdc40a02009-02-17 22:15:04 +00003039
3040 LegalizeSetCC(TLI.getSetCCResultType(Tmp1.getValueType()),
Dale Johannesenbb5da912009-02-02 20:41:04 +00003041 Tmp1, Tmp2, CC, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003042
Evan Cheng7f042682008-10-15 02:05:31 +00003043 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00003044 // the LHS is a legal SETCC itself. In this case, we need to compare
3045 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00003046 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003047 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3048 CC = DAG.getCondCode(ISD::SETNE);
3049 }
3050 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
3051
3052 // Everything is legal, see if we should expand this op or something.
3053 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
3054 default: assert(0 && "This action is not supported yet!");
3055 case TargetLowering::Legal: break;
3056 case TargetLowering::Custom:
3057 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003058 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00003059 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003060 }
3061 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00003062 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003063 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00003064 Tmp1 = Node->getOperand(0);
3065 Tmp2 = Node->getOperand(1);
3066 Tmp3 = Node->getOperand(2);
Dale Johannesenbb5da912009-02-02 20:41:04 +00003067 LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003068
3069 // If we had to Expand the SetCC operands into a SELECT node, then it may
3070 // not always be possible to return a true LHS & RHS. In this case, just
Nate Begeman750ac1b2006-02-01 07:19:44 +00003071 // return the value we legalized, returned in the LHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003072 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003073 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003074 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003075 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003076
Chris Lattner73e142f2006-01-30 22:43:50 +00003077 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003078 default: assert(0 && "Cannot handle this action for SETCC yet!");
3079 case TargetLowering::Custom:
3080 isCustom = true;
3081 // FALLTHROUGH.
3082 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00003083 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00003084 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00003085 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003086 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00003087 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003088 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003089 case TargetLowering::Promote: {
3090 // First step, figure out the appropriate operation to use.
3091 // Allow SETCC to not be supported for all legal data types
3092 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00003093 MVT NewInTy = Node->getOperand(0).getValueType();
3094 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00003095
3096 // Scan for the appropriate larger type to use.
3097 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003098 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00003099
Duncan Sands83ec4b62008-06-06 12:08:01 +00003100 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003101 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003102 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003103 "Fell off of the edge of the floating point world");
Scott Michelfdc40a02009-02-17 22:15:04 +00003104
Andrew Lenharthae355752005-11-30 17:12:26 +00003105 // If the target supports SETCC of this type, use it.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003106 if (TLI.isOperationLegalOrCustom(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00003107 break;
3108 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00003109 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00003110 assert(0 && "Cannot promote Legal Integer SETCC yet");
3111 else {
Dale Johannesenca57b842009-02-02 23:46:53 +00003112 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp1);
3113 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp2);
Andrew Lenharthae355752005-11-30 17:12:26 +00003114 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003115 Tmp1 = LegalizeOp(Tmp1);
3116 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00003117 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00003118 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00003119 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003120 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003121 case TargetLowering::Expand:
3122 // Expand a setcc node into a select_cc of the same condition, lhs, and
3123 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003124 MVT VT = Node->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003125 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Nate Begemanb942a3d2005-08-23 04:29:48 +00003126 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00003127 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00003128 break;
3129 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003130 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003131 case ISD::VSETCC: {
3132 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3133 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman475871a2008-07-27 21:46:04 +00003134 SDValue CC = Node->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00003135
Nate Begemanb43e9c12008-05-12 19:40:03 +00003136 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
3137
3138 // Everything is legal, see if we should expand this op or something.
3139 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
3140 default: assert(0 && "This action is not supported yet!");
3141 case TargetLowering::Legal: break;
3142 case TargetLowering::Custom:
3143 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003144 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003145 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003146 case TargetLowering::Expand: {
3147 // Unroll into a nasty set of scalar code for now.
3148 MVT VT = Node->getValueType(0);
3149 unsigned NumElems = VT.getVectorNumElements();
3150 MVT EltVT = VT.getVectorElementType();
3151 MVT TmpEltVT = Tmp1.getValueType().getVectorElementType();
3152 SmallVector<SDValue, 8> Ops(NumElems);
3153 for (unsigned i = 0; i < NumElems; ++i) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003154 SDValue In1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT,
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003155 Tmp1, DAG.getIntPtrConstant(i));
Dale Johannesenca57b842009-02-02 23:46:53 +00003156 Ops[i] = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(TmpEltVT),
3157 In1, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3158 TmpEltVT, Tmp2,
3159 DAG.getIntPtrConstant(i)),
Mon P Wang84aff842008-12-17 08:49:47 +00003160 CC);
Dale Johannesenca57b842009-02-02 23:46:53 +00003161 Ops[i] = DAG.getNode(ISD::SELECT, dl, EltVT, Ops[i], DAG.getConstant(
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003162 APInt::getAllOnesValue(EltVT.getSizeInBits()),
3163 EltVT), DAG.getConstant(0, EltVT));
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003164 }
Evan Chenga87008d2009-02-25 22:49:59 +00003165 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElems);
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003166 break;
3167 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00003168 }
3169 break;
3170 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00003171
Chris Lattner5b359c62005-04-02 04:00:59 +00003172 case ISD::SHL_PARTS:
3173 case ISD::SRA_PARTS:
3174 case ISD::SRL_PARTS: {
Dan Gohman475871a2008-07-27 21:46:04 +00003175 SmallVector<SDValue, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00003176 bool Changed = false;
Duncan Sands92abc622009-01-31 15:50:11 +00003177 unsigned N = Node->getNumOperands();
3178 for (unsigned i = 0; i + 1 < N; ++i) {
Chris Lattner84f67882005-01-20 18:52:28 +00003179 Ops.push_back(LegalizeOp(Node->getOperand(i)));
3180 Changed |= Ops.back() != Node->getOperand(i);
3181 }
Duncan Sands92abc622009-01-31 15:50:11 +00003182 Ops.push_back(LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(N-1))));
3183 Changed |= Ops.back() != Node->getOperand(N-1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003184 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003185 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00003186
Evan Cheng05a2d562006-01-09 18:31:59 +00003187 switch (TLI.getOperationAction(Node->getOpcode(),
3188 Node->getValueType(0))) {
3189 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003190 case TargetLowering::Legal: break;
3191 case TargetLowering::Custom:
3192 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003193 if (Tmp1.getNode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003194 SDValue Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00003195 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003196 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman475871a2008-07-27 21:46:04 +00003197 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003198 if (i == Op.getResNo())
Evan Cheng12f22742006-01-19 04:54:52 +00003199 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00003200 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003201 assert(RetVal.getNode() && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00003202 return RetVal;
3203 }
Evan Cheng05a2d562006-01-09 18:31:59 +00003204 break;
3205 }
3206
Chris Lattner2c8086f2005-04-02 05:00:07 +00003207 // Since these produce multiple values, make sure to remember that we
3208 // legalized all of them.
3209 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00003210 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00003211 return Result.getValue(Op.getResNo());
Chris Lattner84f67882005-01-20 18:52:28 +00003212 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003213
3214 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00003215 case ISD::ADD:
3216 case ISD::SUB:
3217 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00003218 case ISD::MULHS:
3219 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003220 case ISD::UDIV:
3221 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003222 case ISD::AND:
3223 case ISD::OR:
3224 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00003225 case ISD::SHL:
3226 case ISD::SRL:
3227 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00003228 case ISD::FADD:
3229 case ISD::FSUB:
3230 case ISD::FMUL:
3231 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00003232 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003233 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003234 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003235
3236 if ((Node->getOpcode() == ISD::SHL ||
3237 Node->getOpcode() == ISD::SRL ||
3238 Node->getOpcode() == ISD::SRA) &&
Duncan Sands92abc622009-01-31 15:50:11 +00003239 !Node->getValueType(0).isVector())
3240 Tmp2 = DAG.getShiftAmountOperand(Tmp2);
3241
3242 switch (getTypeAction(Tmp2.getValueType())) {
3243 case Expand: assert(0 && "Not possible");
3244 case Legal:
3245 Tmp2 = LegalizeOp(Tmp2); // Legalize the RHS.
3246 break;
3247 case Promote:
3248 Tmp2 = PromoteOp(Tmp2); // Promote the RHS.
3249 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003250 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003251
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003252 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Mon P Wangaeb06d22008-11-10 04:46:22 +00003253
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003254 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003255 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00003256 case TargetLowering::Legal: break;
3257 case TargetLowering::Custom:
3258 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003259 if (Tmp1.getNode()) {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003260 Result = Tmp1;
3261 break;
Nate Begeman24dc3462008-07-29 19:07:27 +00003262 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003263 // Fall through if the custom lower can't deal with the operation
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003264 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003265 MVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003266
Dan Gohman525178c2007-10-08 18:33:35 +00003267 // See if multiply or divide can be lowered using two-result operations.
3268 SDVTList VTs = DAG.getVTList(VT, VT);
3269 if (Node->getOpcode() == ISD::MUL) {
3270 // We just need the low half of the multiply; try both the signed
3271 // and unsigned forms. If the target supports both SMUL_LOHI and
3272 // UMUL_LOHI, form a preference by checking which forms of plain
3273 // MULH it supports.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003274 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3275 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3276 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3277 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
Dan Gohman525178c2007-10-08 18:33:35 +00003278 unsigned OpToUse = 0;
3279 if (HasSMUL_LOHI && !HasMULHS) {
3280 OpToUse = ISD::SMUL_LOHI;
3281 } else if (HasUMUL_LOHI && !HasMULHU) {
3282 OpToUse = ISD::UMUL_LOHI;
3283 } else if (HasSMUL_LOHI) {
3284 OpToUse = ISD::SMUL_LOHI;
3285 } else if (HasUMUL_LOHI) {
3286 OpToUse = ISD::UMUL_LOHI;
3287 }
3288 if (OpToUse) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003289 Result = SDValue(DAG.getNode(OpToUse, dl, VTs, Tmp1, Tmp2).getNode(),
3290 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003291 break;
3292 }
3293 }
3294 if (Node->getOpcode() == ISD::MULHS &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003295 TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003296 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003297 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003298 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003299 break;
3300 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003301 if (Node->getOpcode() == ISD::MULHU &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003302 TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003303 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, dl,
3304 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003305 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003306 break;
3307 }
3308 if (Node->getOpcode() == ISD::SDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003309 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003310 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003311 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003312 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003313 break;
3314 }
3315 if (Node->getOpcode() == ISD::UDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003316 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003317 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3318 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003319 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003320 break;
3321 }
Mon P Wang87c8a8f2008-12-18 20:03:17 +00003322
Dan Gohman82669522007-10-11 23:57:53 +00003323 // Check to see if we have a libcall for this operator.
3324 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3325 bool isSigned = false;
3326 switch (Node->getOpcode()) {
3327 case ISD::UDIV:
3328 case ISD::SDIV:
3329 if (VT == MVT::i32) {
3330 LC = Node->getOpcode() == ISD::UDIV
Mon P Wang0c397192008-10-30 08:01:45 +00003331 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003332 isSigned = Node->getOpcode() == ISD::SDIV;
3333 }
3334 break;
Chris Lattner31d71612008-10-04 21:27:46 +00003335 case ISD::MUL:
3336 if (VT == MVT::i32)
3337 LC = RTLIB::MUL_I32;
Nate Begeman9b994852009-01-24 22:12:48 +00003338 else if (VT == MVT::i64)
Scott Michel845145f2008-12-29 03:21:37 +00003339 LC = RTLIB::MUL_I64;
Chris Lattner31d71612008-10-04 21:27:46 +00003340 break;
Dan Gohman82669522007-10-11 23:57:53 +00003341 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003342 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3343 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003344 break;
Scott Micheld1e8d9c2009-01-21 04:58:48 +00003345 case ISD::FDIV:
3346 LC = GetFPLibCall(VT, RTLIB::DIV_F32, RTLIB::DIV_F64, RTLIB::DIV_F80,
3347 RTLIB::DIV_PPCF128);
3348 break;
Dan Gohman82669522007-10-11 23:57:53 +00003349 default: break;
3350 }
3351 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +00003352 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003353 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003354 break;
3355 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003356
Duncan Sands83ec4b62008-06-06 12:08:01 +00003357 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003358 "Cannot expand this binary operator!");
3359 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003360 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003361 break;
3362 }
Evan Chengcc987612006-04-12 21:20:24 +00003363 case TargetLowering::Promote: {
3364 switch (Node->getOpcode()) {
3365 default: assert(0 && "Do not know how to promote this BinOp!");
3366 case ISD::AND:
3367 case ISD::OR:
3368 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003369 MVT OVT = Node->getValueType(0);
3370 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3371 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003372 // Bit convert each of the values to the new type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003373 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
3374 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
3375 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Evan Chengcc987612006-04-12 21:20:24 +00003376 // Bit convert the result back the original type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003377 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Evan Chengcc987612006-04-12 21:20:24 +00003378 break;
3379 }
3380 }
3381 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003382 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003383 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003384
Dan Gohmane14ea862007-10-05 14:17:22 +00003385 case ISD::SMUL_LOHI:
3386 case ISD::UMUL_LOHI:
3387 case ISD::SDIVREM:
3388 case ISD::UDIVREM:
3389 // These nodes will only be produced by target-specific lowering, so
3390 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003391 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003392 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003393
3394 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3395 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3396 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003397 break;
3398
Chris Lattnera09f8482006-03-05 05:09:38 +00003399 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3400 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3401 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3402 case Expand: assert(0 && "Not possible");
3403 case Legal:
3404 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3405 break;
3406 case Promote:
3407 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3408 break;
3409 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003410
Chris Lattnera09f8482006-03-05 05:09:38 +00003411 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00003412
Chris Lattnera09f8482006-03-05 05:09:38 +00003413 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3414 default: assert(0 && "Operation not supported");
3415 case TargetLowering::Custom:
3416 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003417 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003418 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003419 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003420 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003421 // If this target supports fabs/fneg natively and select is cheap,
3422 // do this efficiently.
3423 if (!TLI.isSelectExpensive() &&
3424 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3425 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003426 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003427 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003428 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003429 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003430 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dale Johannesenca57b842009-02-02 23:46:53 +00003431 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, IVT, Tmp2);
3432 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(IVT),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003433 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3434 // Get the absolute value of the result.
Dale Johannesenca57b842009-02-02 23:46:53 +00003435 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
Chris Lattner8f4191d2006-03-13 06:08:38 +00003436 // Select between the nabs and abs value based on the sign bit of
3437 // the input.
Dale Johannesenca57b842009-02-02 23:46:53 +00003438 Result = DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
Scott Michelfdc40a02009-02-17 22:15:04 +00003439 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003440 AbsVal),
3441 AbsVal);
3442 Result = LegalizeOp(Result);
3443 break;
3444 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003445
Chris Lattner8f4191d2006-03-13 06:08:38 +00003446 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003447 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003448 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3449 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
Dale Johannesenca57b842009-02-02 23:46:53 +00003450 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0), Result);
Evan Cheng912095b2007-01-04 21:56:39 +00003451 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003452 break;
3453 }
Evan Cheng912095b2007-01-04 21:56:39 +00003454 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003455 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003456
Nate Begeman551bf3f2006-02-17 05:43:56 +00003457 case ISD::ADDC:
3458 case ISD::SUBC:
3459 Tmp1 = LegalizeOp(Node->getOperand(0));
3460 Tmp2 = LegalizeOp(Node->getOperand(1));
3461 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003462 Tmp3 = Result.getValue(0);
3463 Tmp4 = Result.getValue(1);
3464
3465 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3466 default: assert(0 && "This action is not supported yet!");
3467 case TargetLowering::Legal:
3468 break;
3469 case TargetLowering::Custom:
3470 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3471 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003472 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003473 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3474 }
3475 break;
3476 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003477 // Since this produces two values, make sure to remember that we legalized
3478 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003479 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3480 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3481 return Op.getResNo() ? Tmp4 : Tmp3;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003482
Nate Begeman551bf3f2006-02-17 05:43:56 +00003483 case ISD::ADDE:
3484 case ISD::SUBE:
3485 Tmp1 = LegalizeOp(Node->getOperand(0));
3486 Tmp2 = LegalizeOp(Node->getOperand(1));
3487 Tmp3 = LegalizeOp(Node->getOperand(2));
3488 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003489 Tmp3 = Result.getValue(0);
3490 Tmp4 = Result.getValue(1);
3491
3492 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3493 default: assert(0 && "This action is not supported yet!");
3494 case TargetLowering::Legal:
3495 break;
3496 case TargetLowering::Custom:
3497 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3498 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003499 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003500 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3501 }
3502 break;
3503 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003504 // Since this produces two values, make sure to remember that we legalized
3505 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003506 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3507 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3508 return Op.getResNo() ? Tmp4 : Tmp3;
Scott Michelfdc40a02009-02-17 22:15:04 +00003509
Nate Begeman419f8b62005-10-18 00:27:41 +00003510 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003511 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003512 // TODO: handle the case where the Lo and Hi operands are not of legal type
3513 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3514 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3515 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003516 case TargetLowering::Promote:
3517 case TargetLowering::Custom:
3518 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003519 case TargetLowering::Legal:
3520 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
Dale Johannesenca57b842009-02-02 23:46:53 +00003521 Result = DAG.getNode(ISD::BUILD_PAIR, dl, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003522 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003523 case TargetLowering::Expand:
Dale Johannesenca57b842009-02-02 23:46:53 +00003524 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Tmp1);
3525 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Tmp2);
3526 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003527 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003528 TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00003529 Result = DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003530 break;
3531 }
3532 break;
3533 }
3534
Nate Begemanc105e192005-04-06 00:23:54 +00003535 case ISD::UREM:
3536 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003537 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003538 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3539 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003540
Nate Begemanc105e192005-04-06 00:23:54 +00003541 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003542 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3543 case TargetLowering::Custom:
3544 isCustom = true;
3545 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003546 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003547 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003548 if (isCustom) {
3549 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003550 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003551 }
Nate Begemanc105e192005-04-06 00:23:54 +00003552 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003553 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003554 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003555 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003556 MVT VT = Node->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003557
Dan Gohman525178c2007-10-08 18:33:35 +00003558 // See if remainder can be lowered using two-result operations.
3559 SDVTList VTs = DAG.getVTList(VT, VT);
3560 if (Node->getOpcode() == ISD::SREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003561 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003562 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003563 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003564 break;
3565 }
3566 if (Node->getOpcode() == ISD::UREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003567 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003568 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3569 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003570 break;
3571 }
3572
Duncan Sands83ec4b62008-06-06 12:08:01 +00003573 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003574 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003575 TargetLowering::Legal) {
3576 // X % Y -> X-X/Y*Y
Dale Johannesenca57b842009-02-02 23:46:53 +00003577 Result = DAG.getNode(DivOpc, dl, VT, Tmp1, Tmp2);
3578 Result = DAG.getNode(ISD::MUL, dl, VT, Result, Tmp2);
3579 Result = DAG.getNode(ISD::SUB, dl, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003580 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003581 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003582 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003583 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003584 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003585 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3586 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman475871a2008-07-27 21:46:04 +00003587 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003588 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003589 }
Dan Gohman0d974262007-11-06 22:11:54 +00003590 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003591 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003592 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003593 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003594 Result = LegalizeOp(UnrollVectorOp(Op));
3595 } else {
3596 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003597 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3598 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003599 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003600 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003601 }
Nate Begemanc105e192005-04-06 00:23:54 +00003602 }
3603 break;
3604 }
Dan Gohman525178c2007-10-08 18:33:35 +00003605 }
Nate Begemanc105e192005-04-06 00:23:54 +00003606 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003607 case ISD::VAARG: {
3608 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3609 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3610
Duncan Sands83ec4b62008-06-06 12:08:01 +00003611 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003612 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3613 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003614 case TargetLowering::Custom:
3615 isCustom = true;
3616 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003617 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003618 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3619 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003620 Tmp1 = Result.getValue(1);
3621
3622 if (isCustom) {
3623 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003624 if (Tmp2.getNode()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003625 Result = LegalizeOp(Tmp2);
3626 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3627 }
3628 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003629 break;
3630 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003631 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenca57b842009-02-02 23:46:53 +00003632 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003633 // Increment the pointer, VAList, to the next vaarg
Dale Johannesenca57b842009-02-02 23:46:53 +00003634 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00003635 DAG.getConstant(TLI.getTargetData()->
3636 getTypePaddedSize(VT.getTypeForMVT()),
3637 TLI.getPointerTy()));
Nate Begemanacc398c2006-01-25 18:21:52 +00003638 // Store the incremented VAList to the legalized pointer
Dale Johannesenca57b842009-02-02 23:46:53 +00003639 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003640 // Load the actual argument out of the pointer VAList
Dale Johannesenca57b842009-02-02 23:46:53 +00003641 Result = DAG.getLoad(VT, dl, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003642 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003643 Result = LegalizeOp(Result);
3644 break;
3645 }
3646 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003647 // Since VAARG produces two values, make sure to remember that we
Nate Begemanacc398c2006-01-25 18:21:52 +00003648 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003649 AddLegalizedOperand(SDValue(Node, 0), Result);
3650 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003651 return Op.getResNo() ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003652 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003653
3654 case ISD::VACOPY:
Nate Begemanacc398c2006-01-25 18:21:52 +00003655 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3656 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3657 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3658
3659 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3660 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003661 case TargetLowering::Custom:
3662 isCustom = true;
3663 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003664 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003665 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3666 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003667 if (isCustom) {
3668 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003669 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003670 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003671 break;
3672 case TargetLowering::Expand:
3673 // This defaults to loading a pointer from the input and storing it to the
3674 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003675 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3676 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dale Johannesenca57b842009-02-02 23:46:53 +00003677 Tmp4 = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp3, VS, 0);
3678 Result = DAG.getStore(Tmp4.getValue(1), dl, Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003679 break;
3680 }
3681 break;
3682
Scott Michelfdc40a02009-02-17 22:15:04 +00003683 case ISD::VAEND:
Nate Begemanacc398c2006-01-25 18:21:52 +00003684 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3685 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3686
3687 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3688 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003689 case TargetLowering::Custom:
3690 isCustom = true;
3691 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003692 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003693 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003694 if (isCustom) {
3695 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003696 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003697 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003698 break;
3699 case TargetLowering::Expand:
3700 Result = Tmp1; // Default to a no-op, return the chain
3701 break;
3702 }
3703 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003704
3705 case ISD::VASTART:
Nate Begemanacc398c2006-01-25 18:21:52 +00003706 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3707 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3708
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003709 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00003710
Nate Begemanacc398c2006-01-25 18:21:52 +00003711 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3712 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003713 case TargetLowering::Legal: break;
3714 case TargetLowering::Custom:
3715 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003716 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003717 break;
3718 }
3719 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003720
Nate Begeman35ef9132006-01-11 21:21:00 +00003721 case ISD::ROTL:
3722 case ISD::ROTR:
3723 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003724 Tmp2 = LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(1))); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003725 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003726 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3727 default:
3728 assert(0 && "ROTL/ROTR legalize operation not supported");
3729 break;
3730 case TargetLowering::Legal:
3731 break;
3732 case TargetLowering::Custom:
3733 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003734 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelc9dc1142007-04-02 21:36:32 +00003735 break;
3736 case TargetLowering::Promote:
3737 assert(0 && "Do not know how to promote ROTL/ROTR");
3738 break;
3739 case TargetLowering::Expand:
3740 assert(0 && "Do not know how to expand ROTL/ROTR");
3741 break;
3742 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003743 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003744
Nate Begemand88fc032006-01-14 03:14:10 +00003745 case ISD::BSWAP:
3746 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3747 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003748 case TargetLowering::Custom:
3749 assert(0 && "Cannot custom legalize this yet!");
3750 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003751 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003752 break;
3753 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003754 MVT OVT = Tmp1.getValueType();
3755 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3756 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003757
Dale Johannesenca57b842009-02-02 23:46:53 +00003758 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
3759 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3760 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Chris Lattner456a93a2006-01-28 07:39:30 +00003761 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3762 break;
3763 }
3764 case TargetLowering::Expand:
Dale Johannesen8a782a22009-02-02 22:12:50 +00003765 Result = ExpandBSWAP(Tmp1, dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00003766 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003767 }
3768 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003769
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003770 case ISD::CTPOP:
3771 case ISD::CTTZ:
3772 case ISD::CTLZ:
3773 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3774 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003775 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003776 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003777 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003778 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003779 TargetLowering::Custom) {
3780 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003781 if (Tmp1.getNode()) {
Scott Michel335f4f72007-08-02 02:22:46 +00003782 Result = Tmp1;
3783 }
Scott Michel910b66d2007-07-30 21:00:31 +00003784 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003785 break;
3786 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003787 MVT OVT = Tmp1.getValueType();
3788 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003789
3790 // Zero extend the argument.
Dale Johannesenca57b842009-02-02 23:46:53 +00003791 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003792 // Perform the larger operation, then subtract if needed.
Dale Johannesenca57b842009-02-02 23:46:53 +00003793 Tmp1 = DAG.getNode(Node->getOpcode(), dl, Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003794 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003795 case ISD::CTPOP:
3796 Result = Tmp1;
3797 break;
3798 case ISD::CTTZ:
3799 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesenca57b842009-02-02 23:46:53 +00003800 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
3801 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003802 ISD::SETEQ);
Dale Johannesenca57b842009-02-02 23:46:53 +00003803 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003804 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003805 break;
3806 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003807 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesenca57b842009-02-02 23:46:53 +00003808 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003809 DAG.getConstant(NVT.getSizeInBits() -
3810 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003811 break;
3812 }
3813 break;
3814 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003815 case TargetLowering::Expand:
Dale Johannesen8a782a22009-02-02 22:12:50 +00003816 Result = ExpandBitCount(Node->getOpcode(), Tmp1, dl);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003817 break;
3818 }
3819 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003820
Chris Lattner2c8086f2005-04-02 05:00:07 +00003821 // Unary operators
3822 case ISD::FABS:
3823 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003824 case ISD::FSQRT:
3825 case ISD::FSIN:
3826 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003827 case ISD::FLOG:
3828 case ISD::FLOG2:
3829 case ISD::FLOG10:
3830 case ISD::FEXP:
3831 case ISD::FEXP2:
Dan Gohman509e84f2008-08-21 17:55:02 +00003832 case ISD::FTRUNC:
3833 case ISD::FFLOOR:
3834 case ISD::FCEIL:
3835 case ISD::FRINT:
3836 case ISD::FNEARBYINT:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003837 Tmp1 = LegalizeOp(Node->getOperand(0));
3838 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003839 case TargetLowering::Promote:
3840 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003841 isCustom = true;
3842 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003843 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003844 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003845 if (isCustom) {
3846 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003847 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng59ad7812006-01-31 18:14:25 +00003848 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003849 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003850 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003851 switch (Node->getOpcode()) {
3852 default: assert(0 && "Unreachable!");
3853 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003854 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3855 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00003856 Result = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003857 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003858 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003859 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003860 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003861 Tmp2 = DAG.getConstantFP(0.0, VT);
Dale Johannesenca57b842009-02-02 23:46:53 +00003862 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00003863 Tmp1, Tmp2, ISD::SETUGT);
Dale Johannesenca57b842009-02-02 23:46:53 +00003864 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3865 Result = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003866 break;
3867 }
Evan Cheng9d24ac52008-09-09 23:35:53 +00003868 case ISD::FSQRT:
3869 case ISD::FSIN:
Scott Michelfdc40a02009-02-17 22:15:04 +00003870 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003871 case ISD::FLOG:
3872 case ISD::FLOG2:
3873 case ISD::FLOG10:
3874 case ISD::FEXP:
3875 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003876 case ISD::FTRUNC:
3877 case ISD::FFLOOR:
3878 case ISD::FCEIL:
3879 case ISD::FRINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00003880 case ISD::FNEARBYINT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003881 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003882
3883 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003884 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003885 Result = LegalizeOp(UnrollVectorOp(Op));
3886 break;
3887 }
3888
Evan Cheng56966222007-01-12 02:11:51 +00003889 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003890 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003891 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003892 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3893 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003894 break;
3895 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003896 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3897 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003898 break;
3899 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003900 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3901 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003902 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003903 case ISD::FLOG:
3904 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3905 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3906 break;
3907 case ISD::FLOG2:
3908 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3909 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3910 break;
3911 case ISD::FLOG10:
3912 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3913 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3914 break;
3915 case ISD::FEXP:
3916 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3917 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3918 break;
3919 case ISD::FEXP2:
3920 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3921 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3922 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003923 case ISD::FTRUNC:
3924 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3925 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3926 break;
3927 case ISD::FFLOOR:
3928 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3929 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3930 break;
3931 case ISD::FCEIL:
3932 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3933 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3934 break;
3935 case ISD::FRINT:
3936 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3937 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3938 break;
3939 case ISD::FNEARBYINT:
3940 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3941 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3942 break;
Evan Cheng9d24ac52008-09-09 23:35:53 +00003943 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003944 default: assert(0 && "Unreachable!");
3945 }
Dan Gohman475871a2008-07-27 21:46:04 +00003946 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003947 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003948 break;
3949 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003950 }
3951 break;
3952 }
3953 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003954 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003955 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003956
3957 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003958 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003959 Result = LegalizeOp(UnrollVectorOp(Op));
3960 break;
3961 }
3962
3963 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003964 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3965 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003966 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003967 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003968 break;
3969 }
Chris Lattner35481892005-12-23 00:16:34 +00003970 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003971 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003972 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00003973 Node->getValueType(0), dl);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003974 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003975 // The input has to be a vector type, we have to either scalarize it, pack
3976 // it, or convert it based on whether the input vector type is legal.
Gabor Greifba36cb52008-08-28 21:40:38 +00003977 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00003978 int InIx = Node->getOperand(0).getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003979 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3980 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003981
Dan Gohman7f321562007-06-25 16:23:39 +00003982 // Figure out if there is a simple type corresponding to this Vector
3983 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003984 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003985 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003986 // Turn this into a bit convert of the vector input.
Scott Michelfdc40a02009-02-17 22:15:04 +00003987 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohman7f321562007-06-25 16:23:39 +00003988 LegalizeOp(Node->getOperand(0)));
3989 break;
3990 } else if (NumElems == 1) {
3991 // Turn this into a bit convert of the scalar input.
Scott Michelfdc40a02009-02-17 22:15:04 +00003992 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohman7f321562007-06-25 16:23:39 +00003993 ScalarizeVectorOp(Node->getOperand(0)));
3994 break;
3995 } else {
3996 // FIXME: UNIMP! Store then reload
3997 assert(0 && "Cast from unsupported vector type not implemented yet!");
3998 }
Chris Lattner67993f72006-01-23 07:30:46 +00003999 } else {
Chris Lattner35481892005-12-23 00:16:34 +00004000 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
4001 Node->getOperand(0).getValueType())) {
4002 default: assert(0 && "Unknown operation action!");
4003 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00004004 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00004005 Node->getValueType(0), dl);
Chris Lattner35481892005-12-23 00:16:34 +00004006 break;
4007 case TargetLowering::Legal:
4008 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004009 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00004010 break;
4011 }
4012 }
4013 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004014 case ISD::CONVERT_RNDSAT: {
4015 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4016 switch (CvtCode) {
4017 default: assert(0 && "Unknown cvt code!");
4018 case ISD::CVT_SF:
4019 case ISD::CVT_UF:
Mon P Wang77cdf302008-11-10 20:54:11 +00004020 case ISD::CVT_FF:
Mon P Wang1cd46bb2008-12-09 07:27:39 +00004021 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004022 case ISD::CVT_FS:
4023 case ISD::CVT_FU:
4024 case ISD::CVT_SS:
4025 case ISD::CVT_SU:
4026 case ISD::CVT_US:
4027 case ISD::CVT_UU: {
4028 SDValue DTyOp = Node->getOperand(1);
4029 SDValue STyOp = Node->getOperand(2);
4030 SDValue RndOp = Node->getOperand(3);
4031 SDValue SatOp = Node->getOperand(4);
4032 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4033 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4034 case Legal:
4035 Tmp1 = LegalizeOp(Node->getOperand(0));
4036 Result = DAG.UpdateNodeOperands(Result, Tmp1, DTyOp, STyOp,
4037 RndOp, SatOp);
4038 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4039 TargetLowering::Custom) {
4040 Tmp1 = TLI.LowerOperation(Result, DAG);
4041 if (Tmp1.getNode()) Result = Tmp1;
4042 }
4043 break;
4044 case Promote:
4045 Result = PromoteOp(Node->getOperand(0));
4046 // For FP, make Op1 a i32
Scott Michelfdc40a02009-02-17 22:15:04 +00004047
Dale Johannesenc460ae92009-02-04 00:13:36 +00004048 Result = DAG.getConvertRndSat(Op.getValueType(), dl, Result,
Mon P Wang77cdf302008-11-10 20:54:11 +00004049 DTyOp, STyOp, RndOp, SatOp, CvtCode);
4050 break;
4051 }
4052 break;
4053 }
4054 } // end switch CvtCode
4055 break;
4056 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00004057 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00004058 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004059 case ISD::UINT_TO_FP: {
4060 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman7f8613e2008-08-14 20:04:46 +00004061 Result = LegalizeINT_TO_FP(Result, isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00004062 Node->getValueType(0), Node->getOperand(0), dl);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004063 break;
4064 }
4065 case ISD::TRUNCATE:
4066 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4067 case Legal:
4068 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel546d7b52008-12-02 19:55:08 +00004069 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
4070 default: assert(0 && "Unknown TRUNCATE legalization operation action!");
4071 case TargetLowering::Custom:
Mon P Wangf67303d2008-12-11 00:44:22 +00004072 isCustom = true;
4073 // FALLTHROUGH
Scott Michel546d7b52008-12-02 19:55:08 +00004074 case TargetLowering::Legal:
Mon P Wangf67303d2008-12-11 00:44:22 +00004075 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4076 if (isCustom) {
4077 Tmp1 = TLI.LowerOperation(Result, DAG);
4078 if (Tmp1.getNode()) Result = Tmp1;
4079 }
4080 break;
Mon P Wang9e5ecb82008-12-12 01:25:51 +00004081 case TargetLowering::Expand:
4082 assert(Result.getValueType().isVector() && "must be vector type");
4083 // Unroll the truncate. We should do better.
4084 Result = LegalizeOp(UnrollVectorOp(Result));
Tilmann Schellerb0a5cdd2008-12-02 12:12:25 +00004085 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004086 break;
4087 case Expand:
4088 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4089
4090 // Since the result is legal, we should just be able to truncate the low
4091 // part of the source.
Dale Johannesenca57b842009-02-02 23:46:53 +00004092 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004093 break;
4094 case Promote:
4095 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004096 Result = DAG.getNode(ISD::TRUNCATE, dl, Op.getValueType(), Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004097 break;
4098 }
4099 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004100
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004101 case ISD::FP_TO_SINT:
4102 case ISD::FP_TO_UINT:
4103 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4104 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00004105 Tmp1 = LegalizeOp(Node->getOperand(0));
4106
Chris Lattner1618beb2005-07-29 00:11:56 +00004107 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
4108 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004109 case TargetLowering::Custom:
4110 isCustom = true;
4111 // FALLTHROUGH
4112 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004113 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004114 if (isCustom) {
4115 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004116 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00004117 }
4118 break;
4119 case TargetLowering::Promote:
4120 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00004121 Node->getOpcode() == ISD::FP_TO_SINT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004122 dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00004123 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00004124 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00004125 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman475871a2008-07-27 21:46:04 +00004126 SDValue True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004127 MVT VT = Node->getOperand(0).getValueType();
4128 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00004129 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00004130 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
4131 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004132 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00004133 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004134 Tmp3 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
Dale Johannesenaf435272009-02-02 19:03:57 +00004135 Node->getOperand(0),
Duncan Sands5480c042009-01-01 15:52:00 +00004136 Tmp2, ISD::SETLT);
Dale Johannesenaf435272009-02-02 19:03:57 +00004137 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
4138 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004139 DAG.getNode(ISD::FSUB, dl, VT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004140 Node->getOperand(0), Tmp2));
4141 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004142 DAG.getConstant(x, NVT));
Dale Johannesenaf435272009-02-02 19:03:57 +00004143 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp3, True, False);
Chris Lattner456a93a2006-01-28 07:39:30 +00004144 break;
Nate Begemand2558e32005-08-14 01:20:53 +00004145 } else {
4146 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
4147 }
4148 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00004149 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004150 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00004151 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004152 MVT VT = Op.getValueType();
4153 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004154 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004155 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004156 if (Node->getOpcode() == ISD::FP_TO_SINT) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004157 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, MVT::ppcf128,
Chris Lattner0bd48932008-01-17 07:00:52 +00004158 Node->getOperand(0), DAG.getValueType(MVT::f64));
Scott Michelfdc40a02009-02-17 22:15:04 +00004159 Result = DAG.getNode(ISD::FP_ROUND, dl, MVT::f64, Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00004160 DAG.getIntPtrConstant(1));
Dale Johannesenaf435272009-02-02 19:03:57 +00004161 Result = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004162 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004163 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
4164 APFloat apf = APFloat(APInt(128, 2, TwoE31));
4165 Tmp2 = DAG.getConstantFP(apf, OVT);
4166 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
4167 // FIXME: generated code sucks.
Scott Michelfdc40a02009-02-17 22:15:04 +00004168 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Node->getOperand(0),
Dale Johannesenaf435272009-02-02 19:03:57 +00004169 Tmp2,
4170 DAG.getNode(ISD::ADD, dl, MVT::i32,
4171 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
4172 DAG.getNode(ISD::FSUB, dl, OVT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004173 Node->getOperand(0), Tmp2)),
4174 DAG.getConstant(0x80000000, MVT::i32)),
Scott Michelfdc40a02009-02-17 22:15:04 +00004175 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004176 Node->getOperand(0)),
4177 DAG.getCondCode(ISD::SETGE));
4178 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004179 break;
4180 }
Dan Gohmana2e94852008-03-10 23:03:31 +00004181 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsb2ff8852008-07-17 02:36:29 +00004182 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
4183 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
4184 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman475871a2008-07-27 21:46:04 +00004185 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00004186 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00004187 break;
4188 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004189 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004190 Tmp1 = PromoteOp(Node->getOperand(0));
4191 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
4192 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004193 break;
4194 }
4195 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004196
Chris Lattnerf2670a82008-01-16 06:57:07 +00004197 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004198 MVT DstVT = Op.getValueType();
4199 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004200 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4201 // The only other way we can lower this is to turn it into a STORE,
4202 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen8a782a22009-02-02 22:12:50 +00004203 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT, dl);
Chris Lattner0bd48932008-01-17 07:00:52 +00004204 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00004205 }
4206 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4207 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4208 case Legal:
4209 Tmp1 = LegalizeOp(Node->getOperand(0));
4210 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4211 break;
4212 case Promote:
4213 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004214 Result = DAG.getNode(ISD::FP_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattnerf2670a82008-01-16 06:57:07 +00004215 break;
4216 }
4217 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004218 }
Dale Johannesen5411a392007-08-09 01:04:01 +00004219 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004220 MVT DstVT = Op.getValueType();
4221 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004222 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4223 if (SrcVT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00004224 SDValue Lo;
Dale Johannesen713ed3f2008-01-20 01:18:38 +00004225 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004226 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00004227 if (DstVT!=MVT::f64)
Dale Johannesenca57b842009-02-02 23:46:53 +00004228 Result = DAG.getNode(ISD::FP_ROUND, dl,
4229 DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00004230 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00004231 }
Chris Lattner0bd48932008-01-17 07:00:52 +00004232 // The only other way we can lower this is to turn it into a STORE,
4233 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen8a782a22009-02-02 22:12:50 +00004234 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT, dl);
Chris Lattner0bd48932008-01-17 07:00:52 +00004235 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00004236 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00004237 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4238 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4239 case Legal:
4240 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00004241 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004242 break;
4243 case Promote:
4244 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004245 Result = DAG.getNode(ISD::FP_ROUND, dl, Op.getValueType(), Tmp1,
Chris Lattner0bd48932008-01-17 07:00:52 +00004246 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004247 break;
4248 }
4249 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004250 }
Chris Lattner13c78e22005-09-02 00:18:10 +00004251 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004252 case ISD::ZERO_EXTEND:
4253 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004254 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00004255 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004256 case Legal:
4257 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00004258 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00004259 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4260 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00004261 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004262 if (Tmp1.getNode()) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00004263 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004264 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004265 case Promote:
4266 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00004267 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004268 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004269 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00004270 break;
Chris Lattner1713e732005-01-16 00:38:00 +00004271 case ISD::ZERO_EXTEND:
4272 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004273 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4274 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004275 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00004276 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004277 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00004278 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004279 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4280 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004281 Result,
4282 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00004283 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004284 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004285 }
4286 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00004287 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00004288 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00004289 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004290 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00004291
4292 // If this operation is not supported, convert it to a shl/shr or load/store
4293 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004294 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
4295 default: assert(0 && "This action not supported for this op yet!");
4296 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004297 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004298 break;
4299 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00004300 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00004301 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00004302 // NOTE: we could fall back on load/store here too for targets without
4303 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004304 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
4305 ExtraVT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00004306 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Dale Johannesenca57b842009-02-02 23:46:53 +00004307 Result = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
Chris Lattner45b8caf2005-01-15 07:15:18 +00004308 Node->getOperand(0), ShiftCst);
Dale Johannesenca57b842009-02-02 23:46:53 +00004309 Result = DAG.getNode(ISD::SRA, dl, Node->getValueType(0),
Chris Lattner45b8caf2005-01-15 07:15:18 +00004310 Result, ShiftCst);
4311 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00004312 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00004313 // EXTLOAD pair, targetting a temporary location (a stack slot).
4314
4315 // NOTE: there is a choice here between constantly creating new stack
4316 // slots and always reusing the same one. We currently always create
4317 // new ones, as reuse may inhibit scheduling.
Scott Michelfdc40a02009-02-17 22:15:04 +00004318 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00004319 Node->getValueType(0), dl);
Chris Lattner45b8caf2005-01-15 07:15:18 +00004320 } else {
4321 assert(0 && "Unknown op");
4322 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004323 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00004324 }
Chris Lattner0f69b292005-01-15 06:18:18 +00004325 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004326 }
Duncan Sands36397f52007-07-27 12:58:54 +00004327 case ISD::TRAMPOLINE: {
Dan Gohman475871a2008-07-27 21:46:04 +00004328 SDValue Ops[6];
Duncan Sands36397f52007-07-27 12:58:54 +00004329 for (unsigned i = 0; i != 6; ++i)
4330 Ops[i] = LegalizeOp(Node->getOperand(i));
4331 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
4332 // The only option for this node is to custom lower it.
4333 Result = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004334 assert(Result.getNode() && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00004335
4336 // Since trampoline produces two values, make sure to remember that we
4337 // legalized both of them.
4338 Tmp1 = LegalizeOp(Result.getValue(1));
4339 Result = LegalizeOp(Result);
Dan Gohman475871a2008-07-27 21:46:04 +00004340 AddLegalizedOperand(SDValue(Node, 0), Result);
4341 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00004342 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00004343 }
Dan Gohman9c78a392008-05-14 00:43:10 +00004344 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004345 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004346 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4347 default: assert(0 && "This action not supported for this op yet!");
4348 case TargetLowering::Custom:
4349 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004350 if (Result.getNode()) break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004351 // Fall Thru
4352 case TargetLowering::Legal:
4353 // If this operation is not supported, lower it to constant 1
4354 Result = DAG.getConstant(1, VT);
4355 break;
4356 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00004357 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004358 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004359 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004360 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004361 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4362 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00004363 case TargetLowering::Legal:
4364 Tmp1 = LegalizeOp(Node->getOperand(0));
4365 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4366 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004367 case TargetLowering::Custom:
4368 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004369 if (Result.getNode()) break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004370 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00004371 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004372 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00004373 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004374 TargetLowering::ArgListTy Args;
Dan Gohman475871a2008-07-27 21:46:04 +00004375 std::pair<SDValue,SDValue> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00004376 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00004377 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00004378 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Dale Johannesen7d2ad622009-01-30 23:10:59 +00004379 Args, DAG, dl);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004380 Result = CallResult.second;
4381 break;
4382 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004383 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004384 }
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004385
Bill Wendling74c37652008-12-09 22:08:41 +00004386 case ISD::SADDO:
4387 case ISD::SSUBO: {
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004388 MVT VT = Node->getValueType(0);
4389 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4390 default: assert(0 && "This action not supported for this op yet!");
4391 case TargetLowering::Custom:
4392 Result = TLI.LowerOperation(Op, DAG);
4393 if (Result.getNode()) break;
4394 // FALLTHROUGH
4395 case TargetLowering::Legal: {
4396 SDValue LHS = LegalizeOp(Node->getOperand(0));
4397 SDValue RHS = LegalizeOp(Node->getOperand(1));
4398
Scott Michelfdc40a02009-02-17 22:15:04 +00004399 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
Dale Johannesenca57b842009-02-02 23:46:53 +00004400 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling74c37652008-12-09 22:08:41 +00004401 LHS, RHS);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004402 MVT OType = Node->getValueType(1);
4403
Bill Wendlinga6af91a2008-11-25 08:19:22 +00004404 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004405
Bill Wendling740464e2008-11-25 19:40:17 +00004406 // LHSSign -> LHS >= 0
4407 // RHSSign -> RHS >= 0
4408 // SumSign -> Sum >= 0
4409 //
Bill Wendling74c37652008-12-09 22:08:41 +00004410 // Add:
Bill Wendling740464e2008-11-25 19:40:17 +00004411 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
Bill Wendling74c37652008-12-09 22:08:41 +00004412 // Sub:
4413 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
Bill Wendling740464e2008-11-25 19:40:17 +00004414 //
Dale Johannesenca57b842009-02-02 23:46:53 +00004415 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
4416 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
Scott Michelfdc40a02009-02-17 22:15:04 +00004417 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
4418 Node->getOpcode() == ISD::SADDO ?
Bill Wendling74c37652008-12-09 22:08:41 +00004419 ISD::SETEQ : ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004420
Dale Johannesenca57b842009-02-02 23:46:53 +00004421 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
4422 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004423
Dale Johannesenca57b842009-02-02 23:46:53 +00004424 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004425
4426 MVT ValueVTs[] = { LHS.getValueType(), OType };
4427 SDValue Ops[] = { Sum, Cmp };
4428
Scott Michelfdc40a02009-02-17 22:15:04 +00004429 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00004430 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004431 &Ops[0], 2);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004432 SDNode *RNode = Result.getNode();
4433 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), SDValue(RNode, 0));
4434 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), SDValue(RNode, 1));
4435 break;
4436 }
4437 }
4438
4439 break;
4440 }
Bill Wendling74c37652008-12-09 22:08:41 +00004441 case ISD::UADDO:
4442 case ISD::USUBO: {
Bill Wendling41ea7e72008-11-24 19:21:46 +00004443 MVT VT = Node->getValueType(0);
4444 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4445 default: assert(0 && "This action not supported for this op yet!");
4446 case TargetLowering::Custom:
4447 Result = TLI.LowerOperation(Op, DAG);
4448 if (Result.getNode()) break;
4449 // FALLTHROUGH
4450 case TargetLowering::Legal: {
4451 SDValue LHS = LegalizeOp(Node->getOperand(0));
4452 SDValue RHS = LegalizeOp(Node->getOperand(1));
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004453
Bill Wendling74c37652008-12-09 22:08:41 +00004454 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
Dale Johannesenca57b842009-02-02 23:46:53 +00004455 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling74c37652008-12-09 22:08:41 +00004456 LHS, RHS);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004457 MVT OType = Node->getValueType(1);
Dale Johannesenca57b842009-02-02 23:46:53 +00004458 SDValue Cmp = DAG.getSetCC(dl, OType, Sum, LHS,
Scott Michelfdc40a02009-02-17 22:15:04 +00004459 Node->getOpcode () == ISD::UADDO ?
Bill Wendling74c37652008-12-09 22:08:41 +00004460 ISD::SETULT : ISD::SETUGT);
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004461
Bill Wendling41ea7e72008-11-24 19:21:46 +00004462 MVT ValueVTs[] = { LHS.getValueType(), OType };
4463 SDValue Ops[] = { Sum, Cmp };
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004464
Scott Michelfdc40a02009-02-17 22:15:04 +00004465 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00004466 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004467 &Ops[0], 2);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004468 SDNode *RNode = Result.getNode();
4469 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), SDValue(RNode, 0));
4470 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), SDValue(RNode, 1));
4471 break;
4472 }
4473 }
4474
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004475 break;
4476 }
Bill Wendling74c37652008-12-09 22:08:41 +00004477 case ISD::SMULO:
4478 case ISD::UMULO: {
4479 MVT VT = Node->getValueType(0);
4480 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4481 default: assert(0 && "This action is not supported at all!");
4482 case TargetLowering::Custom:
4483 Result = TLI.LowerOperation(Op, DAG);
4484 if (Result.getNode()) break;
4485 // Fall Thru
4486 case TargetLowering::Legal:
4487 // FIXME: According to Hacker's Delight, this can be implemented in
4488 // target independent lowering, but it would be inefficient, since it
Bill Wendlingbc5e15e2008-12-10 02:01:32 +00004489 // requires a division + a branch.
Scott Michelfdc40a02009-02-17 22:15:04 +00004490 assert(0 && "Target independent lowering is not supported for SMULO/UMULO!");
Bill Wendling74c37652008-12-09 22:08:41 +00004491 break;
4492 }
4493 break;
4494 }
4495
Chris Lattner45b8caf2005-01-15 07:15:18 +00004496 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004497
Chris Lattner4ddd2832006-04-08 04:13:17 +00004498 assert(Result.getValueType() == Op.getValueType() &&
4499 "Bad legalization!");
Scott Michelfdc40a02009-02-17 22:15:04 +00004500
Chris Lattner456a93a2006-01-28 07:39:30 +00004501 // Make sure that the generated code is itself legal.
4502 if (Result != Op)
4503 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004504
Chris Lattner45982da2005-05-12 16:53:42 +00004505 // Note that LegalizeOp may be reentered even from single-use nodes, which
4506 // means that we always must cache transformed nodes.
4507 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004508 return Result;
4509}
4510
Chris Lattner8b6fa222005-01-15 22:16:26 +00004511/// PromoteOp - Given an operation that produces a value in an invalid type,
4512/// promote it to compute the value into a larger type. The produced value will
4513/// have the correct bits for the low portion of the register, but no guarantee
4514/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman475871a2008-07-27 21:46:04 +00004515SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004516 MVT VT = Op.getValueType();
4517 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004518 assert(getTypeAction(VT) == Promote &&
4519 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004520 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004521 "Cannot promote to smaller type!");
4522
Dan Gohman475871a2008-07-27 21:46:04 +00004523 SDValue Tmp1, Tmp2, Tmp3;
4524 SDValue Result;
Gabor Greifba36cb52008-08-28 21:40:38 +00004525 SDNode *Node = Op.getNode();
Dale Johannesen8a782a22009-02-02 22:12:50 +00004526 DebugLoc dl = Node->getDebugLoc();
Chris Lattner03c85462005-01-15 05:21:40 +00004527
Dan Gohman475871a2008-07-27 21:46:04 +00004528 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004529 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004530
Chris Lattner03c85462005-01-15 05:21:40 +00004531 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004532 case ISD::CopyFromReg:
4533 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004534 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004535#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004536 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004537#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004538 assert(0 && "Do not know how to promote this operator!");
4539 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004540 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00004541 Result = DAG.getUNDEF(NVT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004542 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004543 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004544 if (VT != MVT::i1)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004545 Result = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Op);
Chris Lattnerec176e32005-08-30 16:56:19 +00004546 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00004547 Result = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004548 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4549 break;
4550 case ISD::ConstantFP:
Dale Johannesen8a782a22009-02-02 22:12:50 +00004551 Result = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004552 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4553 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004554
Duncan Sands5480c042009-01-01 15:52:00 +00004555 case ISD::SETCC: {
4556 MVT VT0 = Node->getOperand(0).getValueType();
4557 assert(isTypeLegal(TLI.getSetCCResultType(VT0))
Nate Begeman5922f562008-03-14 00:53:31 +00004558 && "SetCC type is not legal??");
Dale Johannesen8a782a22009-02-02 22:12:50 +00004559 Result = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(VT0),
Nate Begeman5922f562008-03-14 00:53:31 +00004560 Node->getOperand(0), Node->getOperand(1),
4561 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004562 break;
Duncan Sands5480c042009-01-01 15:52:00 +00004563 }
Chris Lattner03c85462005-01-15 05:21:40 +00004564 case ISD::TRUNCATE:
4565 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4566 case Legal:
4567 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004568 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004569 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004570 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Dale Johannesen8a782a22009-02-02 22:12:50 +00004571 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Result);
Chris Lattner03c85462005-01-15 05:21:40 +00004572 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004573 case Promote:
4574 // The truncation is not required, because we don't guarantee anything
4575 // about high bits anyway.
4576 Result = PromoteOp(Node->getOperand(0));
4577 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004578 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004579 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4580 // Truncate the low part of the expanded value to the result type
Dale Johannesen8a782a22009-02-02 22:12:50 +00004581 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004582 }
4583 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004584 case ISD::SIGN_EXTEND:
4585 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004586 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004587 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4588 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4589 case Legal:
4590 // Input is legal? Just do extend all the way to the larger type.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004591 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004592 break;
4593 case Promote:
4594 // Promote the reg if it's smaller.
4595 Result = PromoteOp(Node->getOperand(0));
4596 // The high bits are not guaranteed to be anything. Insert an extend.
4597 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004598 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004599 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004600 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004601 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004602 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004603 break;
4604 }
4605 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004606 case ISD::CONVERT_RNDSAT: {
4607 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4608 assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
4609 CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
4610 CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) &&
4611 "can only promote integers");
Dale Johannesenc460ae92009-02-04 00:13:36 +00004612 Result = DAG.getConvertRndSat(NVT, dl, Node->getOperand(0),
Mon P Wang77cdf302008-11-10 20:54:11 +00004613 Node->getOperand(1), Node->getOperand(2),
4614 Node->getOperand(3), Node->getOperand(4),
4615 CvtCode);
4616 break;
4617
4618 }
Chris Lattner35481892005-12-23 00:16:34 +00004619 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004620 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00004621 Node->getValueType(0), dl);
Chris Lattner35481892005-12-23 00:16:34 +00004622 Result = PromoteOp(Result);
4623 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00004624
Chris Lattner8b6fa222005-01-15 22:16:26 +00004625 case ISD::FP_EXTEND:
4626 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4627 case ISD::FP_ROUND:
4628 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4629 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4630 case Promote: assert(0 && "Unreachable with 2 FP types!");
4631 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004632 if (Node->getConstantOperandVal(1) == 0) {
4633 // Input is legal? Do an FP_ROUND_INREG.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004634 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Node->getOperand(0),
Chris Lattner0bd48932008-01-17 07:00:52 +00004635 DAG.getValueType(VT));
4636 } else {
4637 // Just remove the truncate, it isn't affecting the value.
Scott Michelfdc40a02009-02-17 22:15:04 +00004638 Result = DAG.getNode(ISD::FP_ROUND, dl, NVT, Node->getOperand(0),
Chris Lattner0bd48932008-01-17 07:00:52 +00004639 Node->getOperand(1));
4640 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004641 break;
4642 }
4643 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004644 case ISD::SINT_TO_FP:
4645 case ISD::UINT_TO_FP:
4646 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4647 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004648 // No extra round required here.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004649 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004650 break;
4651
4652 case Promote:
4653 Result = PromoteOp(Node->getOperand(0));
4654 if (Node->getOpcode() == ISD::SINT_TO_FP)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004655 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004656 Result,
4657 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004658 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00004659 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004660 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004661 // No extra round required here.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004662 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004663 break;
4664 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004665 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00004666 Node->getOperand(0), dl);
Chris Lattner77e77a62005-01-21 06:05:23 +00004667 // Round if we cannot tolerate excess precision.
4668 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004669 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004670 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004671 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004672 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004673 break;
4674
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004675 case ISD::SIGN_EXTEND_INREG:
4676 Result = PromoteOp(Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004677 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004678 Node->getOperand(1));
4679 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004680 case ISD::FP_TO_SINT:
4681 case ISD::FP_TO_UINT:
4682 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4683 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004684 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004685 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004686 break;
4687 case Promote:
4688 // The input result is prerounded, so we don't have to do anything
4689 // special.
4690 Tmp1 = PromoteOp(Node->getOperand(0));
4691 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004692 }
Nate Begemand2558e32005-08-14 01:20:53 +00004693 // If we're promoting a UINT to a larger size, check to see if the new node
4694 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4695 // we can use that instead. This allows us to generate better code for
4696 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4697 // legal, such as PowerPC.
Scott Michelfdc40a02009-02-17 22:15:04 +00004698 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00004699 !TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NVT) &&
4700 (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT) ||
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004701 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Dale Johannesen8a782a22009-02-02 22:12:50 +00004702 Result = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Tmp1);
Nate Begemand2558e32005-08-14 01:20:53 +00004703 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00004704 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Nate Begemand2558e32005-08-14 01:20:53 +00004705 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004706 break;
4707
Chris Lattner2c8086f2005-04-02 05:00:07 +00004708 case ISD::FABS:
4709 case ISD::FNEG:
4710 Tmp1 = PromoteOp(Node->getOperand(0));
4711 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004712 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner2c8086f2005-04-02 05:00:07 +00004713 // NOTE: we do not have to do any extra rounding here for
4714 // NoExcessFPPrecision, because we know the input will have the appropriate
4715 // precision, and these operations don't modify precision at all.
4716 break;
4717
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004718 case ISD::FLOG:
4719 case ISD::FLOG2:
4720 case ISD::FLOG10:
4721 case ISD::FEXP:
4722 case ISD::FEXP2:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004723 case ISD::FSQRT:
4724 case ISD::FSIN:
4725 case ISD::FCOS:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00004726 case ISD::FTRUNC:
4727 case ISD::FFLOOR:
4728 case ISD::FCEIL:
4729 case ISD::FRINT:
4730 case ISD::FNEARBYINT:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004731 Tmp1 = PromoteOp(Node->getOperand(0));
4732 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004733 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004734 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004735 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004736 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004737 break;
4738
Evan Cheng9d24ac52008-09-09 23:35:53 +00004739 case ISD::FPOW:
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004740 case ISD::FPOWI: {
Evan Cheng9d24ac52008-09-09 23:35:53 +00004741 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004742 // directly as well, which may be better.
4743 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng9d24ac52008-09-09 23:35:53 +00004744 Tmp2 = Node->getOperand(1);
4745 if (Node->getOpcode() == ISD::FPOW)
4746 Tmp2 = PromoteOp(Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004747 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004748 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004749 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004750 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004751 DAG.getValueType(VT));
4752 break;
4753 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004754
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004755 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004756 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004757 Tmp2 = PromoteOp(Node->getOperand(2));
4758 Tmp3 = PromoteOp(Node->getOperand(3));
Scott Michelfdc40a02009-02-17 22:15:04 +00004759 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
4760 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004761 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004762 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004763 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004764 // Remember that we legalized the chain.
4765 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4766 break;
4767 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004768 case ISD::ATOMIC_LOAD_ADD:
4769 case ISD::ATOMIC_LOAD_SUB:
4770 case ISD::ATOMIC_LOAD_AND:
4771 case ISD::ATOMIC_LOAD_OR:
4772 case ISD::ATOMIC_LOAD_XOR:
4773 case ISD::ATOMIC_LOAD_NAND:
4774 case ISD::ATOMIC_LOAD_MIN:
4775 case ISD::ATOMIC_LOAD_MAX:
4776 case ISD::ATOMIC_LOAD_UMIN:
4777 case ISD::ATOMIC_LOAD_UMAX:
4778 case ISD::ATOMIC_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004779 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004780 Tmp2 = PromoteOp(Node->getOperand(2));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004781 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00004782 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004783 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004784 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004785 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004786 // Remember that we legalized the chain.
4787 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4788 break;
4789 }
4790
Chris Lattner03c85462005-01-15 05:21:40 +00004791 case ISD::AND:
4792 case ISD::OR:
4793 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004794 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004795 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004796 case ISD::MUL:
4797 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004798 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004799 // that too is okay if they are integer operations.
4800 Tmp1 = PromoteOp(Node->getOperand(0));
4801 Tmp2 = PromoteOp(Node->getOperand(1));
4802 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004803 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004804 break;
4805 case ISD::FADD:
4806 case ISD::FSUB:
4807 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004808 Tmp1 = PromoteOp(Node->getOperand(0));
4809 Tmp2 = PromoteOp(Node->getOperand(1));
4810 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004811 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00004812
Chris Lattner01b3d732005-09-28 22:28:18 +00004813 // Floating point operations will give excess precision that we may not be
4814 // able to tolerate. If we DO allow excess precision, just leave it,
4815 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004816 // FIXME: Why would we need to round FP ops more than integer ones?
4817 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004818 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004819 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004820 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004821 break;
4822
Chris Lattner8b6fa222005-01-15 22:16:26 +00004823 case ISD::SDIV:
4824 case ISD::SREM:
4825 // These operators require that their input be sign extended.
4826 Tmp1 = PromoteOp(Node->getOperand(0));
4827 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004828 if (NVT.isInteger()) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00004829 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Chris Lattner15e4b012005-07-10 00:07:11 +00004830 DAG.getValueType(VT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004831 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Chris Lattner15e4b012005-07-10 00:07:11 +00004832 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004833 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00004834 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004835
4836 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004837 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004838 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004839 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004840 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004841 case ISD::FDIV:
4842 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004843 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004844 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004845 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004846 case Expand: assert(0 && "not implemented");
4847 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4848 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004849 }
4850 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004851 case Expand: assert(0 && "not implemented");
4852 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4853 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004854 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00004855 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00004856
Chris Lattner01b3d732005-09-28 22:28:18 +00004857 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004858 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004859 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner01b3d732005-09-28 22:28:18 +00004860 DAG.getValueType(VT));
4861 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004862
4863 case ISD::UDIV:
4864 case ISD::UREM:
4865 // These operators require that their input be zero extended.
4866 Tmp1 = PromoteOp(Node->getOperand(0));
4867 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004868 assert(NVT.isInteger() && "Operators don't apply to FP!");
Dale Johannesen8a782a22009-02-02 22:12:50 +00004869 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4870 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
4871 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004872 break;
4873
4874 case ISD::SHL:
4875 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004876 Result = DAG.getNode(ISD::SHL, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004877 break;
4878 case ISD::SRA:
4879 // The input value must be properly sign extended.
4880 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004881 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Chris Lattner15e4b012005-07-10 00:07:11 +00004882 DAG.getValueType(VT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004883 Result = DAG.getNode(ISD::SRA, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004884 break;
4885 case ISD::SRL:
4886 // The input value must be properly zero extended.
4887 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004888 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4889 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004890 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004891
4892 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004893 Tmp1 = Node->getOperand(0); // Get the chain.
4894 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004895 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00004896 Tmp3 = DAG.getVAArg(VT, dl, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004897 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004898 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004899 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenc460ae92009-02-04 00:13:36 +00004900 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004901 // Increment the pointer, VAList, to the next vaarg
Scott Michelfdc40a02009-02-17 22:15:04 +00004902 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004903 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004904 TLI.getPointerTy()));
4905 // Store the incremented VAList to the legalized pointer
Dale Johannesen8a782a22009-02-02 22:12:50 +00004906 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004907 // Load the actual argument out of the pointer VAList
Dale Johannesen8a782a22009-02-02 22:12:50 +00004908 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004909 }
4910 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004911 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004912 break;
4913
Evan Cheng466685d2006-10-09 20:57:25 +00004914 case ISD::LOAD: {
4915 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004916 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4917 ? ISD::EXTLOAD : LD->getExtensionType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00004918 Result = DAG.getExtLoad(ExtType, dl, NVT,
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004919 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004920 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004921 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004922 LD->isVolatile(),
4923 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004924 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004925 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004926 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004927 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004928 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004929 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4930 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004931
Duncan Sands83ec4b62008-06-06 12:08:01 +00004932 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004933 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004934 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4935 // Ensure that the resulting node is at least the same size as the operands'
4936 // value types, because we cannot assume that TLI.getSetCCValueType() is
4937 // constant.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004938 Result = DAG.getNode(ISD::SELECT, dl, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004939 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004940 }
Nate Begeman9373a812005-08-10 20:51:12 +00004941 case ISD::SELECT_CC:
4942 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4943 Tmp3 = PromoteOp(Node->getOperand(3)); // False
Dale Johannesen8a782a22009-02-02 22:12:50 +00004944 Result = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004945 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004946 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004947 case ISD::BSWAP:
4948 Tmp1 = Node->getOperand(0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004949 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
4950 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4951 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004952 DAG.getConstant(NVT.getSizeInBits() -
4953 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004954 TLI.getShiftAmountTy()));
4955 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004956 case ISD::CTPOP:
4957 case ISD::CTTZ:
4958 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004959 // Zero extend the argument
Dale Johannesen8a782a22009-02-02 22:12:50 +00004960 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004961 // Perform the larger operation, then subtract if needed.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004962 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004963 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004964 case ISD::CTPOP:
4965 Result = Tmp1;
4966 break;
4967 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004968 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004969 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004970 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004971 ISD::SETEQ);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004972 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004973 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004974 break;
4975 case ISD::CTLZ:
4976 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00004977 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004978 DAG.getConstant(NVT.getSizeInBits() -
4979 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004980 break;
4981 }
4982 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004983 case ISD::EXTRACT_SUBVECTOR:
4984 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004985 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004986 case ISD::EXTRACT_VECTOR_ELT:
4987 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4988 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004989 }
4990
Gabor Greifba36cb52008-08-28 21:40:38 +00004991 assert(Result.getNode() && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004992
4993 // Make sure the result is itself legal.
4994 Result = LegalizeOp(Result);
Scott Michelfdc40a02009-02-17 22:15:04 +00004995
Chris Lattner456a93a2006-01-28 07:39:30 +00004996 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004997 AddPromotedOperand(Op, Result);
4998 return Result;
4999}
Chris Lattner3e928bb2005-01-07 07:47:09 +00005000
Dan Gohman7f321562007-06-25 16:23:39 +00005001/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
5002/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
5003/// based on the vector type. The return type of this matches the element type
5004/// of the vector, which may not be legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00005005SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Chris Lattner15972212006-03-31 17:55:51 +00005006 // We know that operand #0 is the Vec vector. If the index is a constant
5007 // or if the invec is a supported hardware type, we can use it. Otherwise,
5008 // lower to a store then an indexed load.
Dan Gohman475871a2008-07-27 21:46:04 +00005009 SDValue Vec = Op.getOperand(0);
5010 SDValue Idx = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005011 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00005012
Duncan Sands83ec4b62008-06-06 12:08:01 +00005013 MVT TVT = Vec.getValueType();
5014 unsigned NumElems = TVT.getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00005015
Dan Gohman7f321562007-06-25 16:23:39 +00005016 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
5017 default: assert(0 && "This action is not supported yet!");
5018 case TargetLowering::Custom: {
5019 Vec = LegalizeOp(Vec);
5020 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005021 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005022 if (Tmp3.getNode())
Dan Gohman7f321562007-06-25 16:23:39 +00005023 return Tmp3;
5024 break;
5025 }
5026 case TargetLowering::Legal:
5027 if (isTypeLegal(TVT)) {
5028 Vec = LegalizeOp(Vec);
5029 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00005030 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00005031 }
5032 break;
Mon P Wang0c397192008-10-30 08:01:45 +00005033 case TargetLowering::Promote:
5034 assert(TVT.isVector() && "not vector type");
5035 // fall thru to expand since vectors are by default are promote
Dan Gohman7f321562007-06-25 16:23:39 +00005036 case TargetLowering::Expand:
5037 break;
5038 }
5039
5040 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00005041 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00005042 Op = ScalarizeVectorOp(Vec);
5043 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00005044 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00005045 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005046 SDValue Lo, Hi;
Chris Lattner15972212006-03-31 17:55:51 +00005047 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005048 if (CIdx->getZExtValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00005049 Vec = Lo;
5050 } else {
5051 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005052 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00005053 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00005054 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005055
Chris Lattner15972212006-03-31 17:55:51 +00005056 // It's now an extract from the appropriate high or low part. Recurse.
5057 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005058 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00005059 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00005060 // Store the value to a temporary stack slot, then LOAD the scalar
5061 // element back out.
Dan Gohman475871a2008-07-27 21:46:04 +00005062 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dale Johannesenbb5da912009-02-02 20:41:04 +00005063 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, NULL, 0);
Dan Gohman7f321562007-06-25 16:23:39 +00005064
5065 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005066 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +00005067 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Dan Gohman7f321562007-06-25 16:23:39 +00005068 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005069
Duncan Sands8e4eb092008-06-08 20:54:56 +00005070 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Dale Johannesenbb5da912009-02-02 20:41:04 +00005071 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005072 else
Dale Johannesenbb5da912009-02-02 20:41:04 +00005073 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005074
Dale Johannesenbb5da912009-02-02 20:41:04 +00005075 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
Dan Gohman7f321562007-06-25 16:23:39 +00005076
Dale Johannesenbb5da912009-02-02 20:41:04 +00005077 Op = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00005078 }
Dan Gohman7f321562007-06-25 16:23:39 +00005079 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00005080}
5081
Dan Gohman7f321562007-06-25 16:23:39 +00005082/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00005083/// we assume the operation can be split if it is not already legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005084SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohman65956352007-06-13 15:12:02 +00005085 // We know that operand #0 is the Vec vector. For now we assume the index
5086 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman475871a2008-07-27 21:46:04 +00005087 SDValue Vec = Op.getOperand(0);
5088 SDValue Idx = LegalizeOp(Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005089
Duncan Sands83ec4b62008-06-06 12:08:01 +00005090 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00005091
Duncan Sands83ec4b62008-06-06 12:08:01 +00005092 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00005093 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00005094 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00005095 }
5096
5097 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005098 SDValue Lo, Hi;
Dan Gohman65956352007-06-13 15:12:02 +00005099 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005100 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohman65956352007-06-13 15:12:02 +00005101 Vec = Lo;
5102 } else {
5103 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005104 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
5105 Idx.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00005106 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005107
Dan Gohman65956352007-06-13 15:12:02 +00005108 // It's now an extract from the appropriate high or low part. Recurse.
5109 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005110 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00005111}
5112
Nate Begeman750ac1b2006-02-01 07:19:44 +00005113/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
5114/// with condition CC on the current target. This usually involves legalizing
5115/// or promoting the arguments. In the case where LHS and RHS must be expanded,
5116/// there may be no choice but to create a new SetCC node to represent the
5117/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman475871a2008-07-27 21:46:04 +00005118/// LHS, and the SDValue returned in RHS has a nil SDNode value.
5119void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
5120 SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005121 SDValue &CC,
5122 DebugLoc dl) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005123 SDValue Tmp1, Tmp2, Tmp3, Result;
5124
Nate Begeman750ac1b2006-02-01 07:19:44 +00005125 switch (getTypeAction(LHS.getValueType())) {
5126 case Legal:
5127 Tmp1 = LegalizeOp(LHS); // LHS
5128 Tmp2 = LegalizeOp(RHS); // RHS
5129 break;
5130 case Promote:
5131 Tmp1 = PromoteOp(LHS); // LHS
5132 Tmp2 = PromoteOp(RHS); // RHS
5133
5134 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005135 if (LHS.getValueType().isInteger()) {
5136 MVT VT = LHS.getValueType();
5137 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005138
5139 // Otherwise, we have to insert explicit sign or zero extends. Note
5140 // that we could insert sign extends for ALL conditions, but zero extend
5141 // is cheaper on many machines (an AND instead of two shifts), so prefer
5142 // it.
5143 switch (cast<CondCodeSDNode>(CC)->get()) {
5144 default: assert(0 && "Unknown integer comparison!");
5145 case ISD::SETEQ:
5146 case ISD::SETNE:
5147 case ISD::SETUGE:
5148 case ISD::SETUGT:
5149 case ISD::SETULE:
5150 case ISD::SETULT:
5151 // ALL of these operations will work if we either sign or zero extend
5152 // the operands (including the unsigned comparisons!). Zero extend is
5153 // usually a simpler/cheaper operation, so prefer it.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005154 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
5155 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005156 break;
5157 case ISD::SETGE:
5158 case ISD::SETGT:
5159 case ISD::SETLT:
5160 case ISD::SETLE:
Dale Johannesenbb5da912009-02-02 20:41:04 +00005161 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005162 DAG.getValueType(VT));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005163 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005164 DAG.getValueType(VT));
Evan Chengefa53392008-10-13 18:46:18 +00005165 Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
5166 Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
Nate Begeman750ac1b2006-02-01 07:19:44 +00005167 break;
5168 }
5169 }
5170 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005171 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005172 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00005173 if (VT == MVT::f32 || VT == MVT::f64) {
5174 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00005175 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00005176 switch (cast<CondCodeSDNode>(CC)->get()) {
5177 case ISD::SETEQ:
5178 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00005179 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005180 break;
5181 case ISD::SETNE:
5182 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00005183 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005184 break;
5185 case ISD::SETGE:
5186 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00005187 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005188 break;
5189 case ISD::SETLT:
5190 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00005191 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005192 break;
5193 case ISD::SETLE:
5194 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00005195 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005196 break;
5197 case ISD::SETGT:
5198 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00005199 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005200 break;
5201 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00005202 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5203 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005204 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00005205 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005206 break;
5207 default:
Evan Cheng56966222007-01-12 02:11:51 +00005208 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005209 switch (cast<CondCodeSDNode>(CC)->get()) {
5210 case ISD::SETONE:
5211 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00005212 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005213 // Fallthrough
5214 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00005215 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005216 break;
5217 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00005218 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005219 break;
5220 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00005221 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005222 break;
5223 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00005224 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005225 break;
Evan Cheng56966222007-01-12 02:11:51 +00005226 case ISD::SETUEQ:
5227 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00005228 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005229 default: assert(0 && "Unsupported FP setcc!");
5230 }
5231 }
Duncan Sandsf9516202008-06-30 10:19:09 +00005232
Dan Gohman475871a2008-07-27 21:46:04 +00005233 SDValue Dummy;
5234 SDValue Ops[2] = { LHS, RHS };
Dale Johannesenbb5da912009-02-02 20:41:04 +00005235 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005236 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00005237 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00005238 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00005239 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Dale Johannesenbb5da912009-02-02 20:41:04 +00005240 Tmp1 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005241 TLI.getSetCCResultType(Tmp1.getValueType()),
5242 Tmp1, Tmp2, CC);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005243 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005244 false /*sign irrelevant*/, Dummy);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005245 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005246 TLI.getSetCCResultType(LHS.getValueType()), LHS,
5247 Tmp2, DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005248 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman475871a2008-07-27 21:46:04 +00005249 Tmp2 = SDValue();
Evan Cheng2b49c502006-12-15 02:59:56 +00005250 }
Evan Cheng21cacc42008-07-07 07:18:09 +00005251 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00005252 RHS = Tmp2;
5253 return;
5254 }
5255
Dan Gohman475871a2008-07-27 21:46:04 +00005256 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Nate Begeman750ac1b2006-02-01 07:19:44 +00005257 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00005258 ExpandOp(RHS, RHSLo, RHSHi);
5259 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5260
5261 if (VT==MVT::ppcf128) {
5262 // FIXME: This generated code sucks. We want to generate
Dale Johannesene2f20832008-09-12 00:30:56 +00005263 // FCMPU crN, hi1, hi2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005264 // BNE crN, L:
Dale Johannesene2f20832008-09-12 00:30:56 +00005265 // FCMPU crN, lo1, lo2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005266 // The following can be improved, but not that much.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005267 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005268 LHSHi, RHSHi, ISD::SETOEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005269 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005270 LHSLo, RHSLo, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005271 Tmp3 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5272 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005273 LHSHi, RHSHi, ISD::SETUNE);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005274 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005275 LHSHi, RHSHi, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005276 Tmp1 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5277 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman475871a2008-07-27 21:46:04 +00005278 Tmp2 = SDValue();
Dale Johannesen638ccd52007-10-06 01:24:11 +00005279 break;
5280 }
5281
5282 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005283 case ISD::SETEQ:
5284 case ISD::SETNE:
5285 if (RHSLo == RHSHi)
5286 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
5287 if (RHSCST->isAllOnesValue()) {
5288 // Comparison to -1.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005289 Tmp1 = DAG.getNode(ISD::AND, dl,LHSLo.getValueType(), LHSLo, LHSHi);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005290 Tmp2 = RHSLo;
5291 break;
5292 }
5293
Dale Johannesenbb5da912009-02-02 20:41:04 +00005294 Tmp1 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
5295 Tmp2 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
5296 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005297 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
5298 break;
5299 default:
5300 // If this is a comparison of the sign bit, just look at the top part.
5301 // X > -1, x < 0
5302 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
Scott Michelfdc40a02009-02-17 22:15:04 +00005303 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00005304 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00005305 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
5306 CST->isAllOnesValue())) { // X > -1
5307 Tmp1 = LHSHi;
5308 Tmp2 = RHSHi;
5309 break;
5310 }
5311
5312 // FIXME: This generated code sucks.
5313 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00005314 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005315 default: assert(0 && "Unknown integer setcc!");
5316 case ISD::SETLT:
5317 case ISD::SETULT: LowCC = ISD::SETULT; break;
5318 case ISD::SETGT:
5319 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
5320 case ISD::SETLE:
5321 case ISD::SETULE: LowCC = ISD::SETULE; break;
5322 case ISD::SETGE:
5323 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
5324 }
5325
5326 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
5327 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
5328 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
5329
5330 // NOTE: on targets without efficient SELECT of bools, we can always use
5331 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00005332 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Duncan Sands5480c042009-01-01 15:52:00 +00005333 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005334 LHSLo, RHSLo, LowCC, false, DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005335 if (!Tmp1.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005336 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005337 LHSLo, RHSLo, LowCC);
5338 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005339 LHSHi, RHSHi, CCCode, false, DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005340 if (!Tmp2.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005341 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005342 TLI.getSetCCResultType(LHSHi.getValueType()),
5343 LHSHi, RHSHi,CC);
Scott Michelfdc40a02009-02-17 22:15:04 +00005344
Gabor Greifba36cb52008-08-28 21:40:38 +00005345 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
5346 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman002e5d02008-03-13 22:13:53 +00005347 if ((Tmp1C && Tmp1C->isNullValue()) ||
5348 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00005349 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
5350 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00005351 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00005352 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
5353 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
5354 // low part is known false, returns high part.
5355 // For LE / GE, if high part is known false, ignore the low part.
5356 // For LT / GT, if high part is known true, ignore the low part.
5357 Tmp1 = Tmp2;
Dan Gohman475871a2008-07-27 21:46:04 +00005358 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005359 } else {
Duncan Sands5480c042009-01-01 15:52:00 +00005360 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
5361 LHSHi, RHSHi, ISD::SETEQ, false,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005362 DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005363 if (!Result.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005364 Result=DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005365 LHSHi, RHSHi, ISD::SETEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005366 Result = LegalizeOp(DAG.getNode(ISD::SELECT, dl, Tmp1.getValueType(),
Evan Cheng2e677812007-02-08 22:16:19 +00005367 Result, Tmp1, Tmp2));
5368 Tmp1 = Result;
Dan Gohman475871a2008-07-27 21:46:04 +00005369 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005370 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005371 }
5372 }
Evan Cheng2b49c502006-12-15 02:59:56 +00005373 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005374 LHS = Tmp1;
5375 RHS = Tmp2;
5376}
5377
Evan Cheng7f042682008-10-15 02:05:31 +00005378/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
5379/// condition code CC on the current target. This routine assumes LHS and rHS
5380/// have already been legalized by LegalizeSetCCOperands. It expands SETCC with
5381/// illegal condition code into AND / OR of multiple SETCC values.
5382void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT,
5383 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005384 SDValue &CC,
5385 DebugLoc dl) {
Evan Cheng7f042682008-10-15 02:05:31 +00005386 MVT OpVT = LHS.getValueType();
5387 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5388 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
5389 default: assert(0 && "Unknown condition code action!");
5390 case TargetLowering::Legal:
5391 // Nothing to do.
5392 break;
5393 case TargetLowering::Expand: {
5394 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
5395 unsigned Opc = 0;
5396 switch (CCCode) {
5397 default: assert(0 && "Don't know how to expand this condition!"); abort();
Dan Gohmane7d238e2008-10-21 03:12:54 +00005398 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
5399 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5400 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5401 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5402 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5403 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5404 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5405 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5406 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5407 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5408 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5409 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng7f042682008-10-15 02:05:31 +00005410 // FIXME: Implement more expansions.
5411 }
5412
Dale Johannesenbb5da912009-02-02 20:41:04 +00005413 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
5414 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
5415 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00005416 RHS = SDValue();
5417 CC = SDValue();
5418 break;
5419 }
5420 }
5421}
5422
Chris Lattner1401d152008-01-16 07:45:30 +00005423/// EmitStackConvert - Emit a store/load combination to the stack. This stores
5424/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
5425/// a load from the stack slot to DestVT, extending it if needed.
5426/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005427SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
5428 MVT SlotVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005429 MVT DestVT,
5430 DebugLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00005431 // Create the stack frame object.
Mon P Wang364d73d2008-07-05 20:40:31 +00005432 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
5433 SrcOp.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00005434 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00005435
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005436 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005437 int SPFI = StackPtrFI->getIndex();
Dan Gohman15b38302009-01-29 21:02:43 +00005438 const Value *SV = PseudoSourceValue::getFixedStack(SPFI);
5439
Duncan Sands83ec4b62008-06-06 12:08:01 +00005440 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
5441 unsigned SlotSize = SlotVT.getSizeInBits();
5442 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang364d73d2008-07-05 20:40:31 +00005443 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
5444 DestVT.getTypeForMVT());
Scott Michelfdc40a02009-02-17 22:15:04 +00005445
Chris Lattner1401d152008-01-16 07:45:30 +00005446 // Emit a store to the stack slot. Use a truncstore if the input value is
5447 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00005448 SDValue Store;
Scott Michelfdc40a02009-02-17 22:15:04 +00005449
Chris Lattner1401d152008-01-16 07:45:30 +00005450 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005451 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005452 SV, 0, SlotVT, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005453 else {
5454 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00005455 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005456 SV, 0, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005457 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005458
Chris Lattner35481892005-12-23 00:16:34 +00005459 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00005460 if (SlotSize == DestSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005461 return DAG.getLoad(DestVT, dl, Store, FIPtr, SV, 0, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00005462
Chris Lattner1401d152008-01-16 07:45:30 +00005463 assert(SlotSize < DestSize && "Unknown extension!");
Dale Johannesen8a782a22009-02-02 22:12:50 +00005464 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr, SV, 0, SlotVT,
Mon P Wang364d73d2008-07-05 20:40:31 +00005465 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00005466}
5467
Dan Gohman475871a2008-07-27 21:46:04 +00005468SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005469 DebugLoc dl = Node->getDebugLoc();
Chris Lattner4352cc92006-04-04 17:23:26 +00005470 // Create a vector sized/aligned stack slot, store the value to element #0,
5471 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00005472 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00005473
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005474 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005475 int SPFI = StackPtrFI->getIndex();
5476
Scott Michelfdc40a02009-02-17 22:15:04 +00005477 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00005478 StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00005479 PseudoSourceValue::getFixedStack(SPFI), 0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00005480 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00005481 PseudoSourceValue::getFixedStack(SPFI), 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00005482}
5483
5484
Chris Lattnerce872152006-03-19 06:31:19 +00005485/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00005486/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00005487SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005488
5489 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00005490 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00005491 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00005492 bool isOnlyLowElement = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005493 SDValue SplatValue = Node->getOperand(0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00005494 DebugLoc dl = Node->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00005495
Dan Gohman475871a2008-07-27 21:46:04 +00005496 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005497 // and use a bitmask instead of a list of elements.
Dan Gohman475871a2008-07-27 21:46:04 +00005498 std::map<SDValue, std::vector<unsigned> > Values;
Evan Cheng033e6812006-03-24 01:17:21 +00005499 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005500 bool isConstant = true;
5501 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
5502 SplatValue.getOpcode() != ISD::UNDEF)
5503 isConstant = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005504
Evan Cheng033e6812006-03-24 01:17:21 +00005505 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005506 SDValue V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00005507 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00005508 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00005509 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00005510 if (SplatValue != V)
Dan Gohman475871a2008-07-27 21:46:04 +00005511 SplatValue = SDValue(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005512
5513 // If this isn't a constant element or an undef, we can't use a constant
5514 // pool load.
5515 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
5516 V.getOpcode() != ISD::UNDEF)
5517 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00005518 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005519
Chris Lattnerce872152006-03-19 06:31:19 +00005520 if (isOnlyLowElement) {
5521 // If the low element is an undef too, then this whole things is an undef.
5522 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
Dale Johannesene8d72302009-02-06 23:05:02 +00005523 return DAG.getUNDEF(Node->getValueType(0));
Chris Lattnerce872152006-03-19 06:31:19 +00005524 // Otherwise, turn this into a scalar_to_vector node.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005525 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, Node->getValueType(0),
Chris Lattnerce872152006-03-19 06:31:19 +00005526 Node->getOperand(0));
5527 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005528
Chris Lattner2eb86532006-03-24 07:29:17 +00005529 // If all elements are constants, create a load from the constant pool.
5530 if (isConstant) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005531 MVT VT = Node->getValueType(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005532 std::vector<Constant*> CV;
5533 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005534 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00005535 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005536 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00005537 } else if (ConstantSDNode *V =
Chris Lattner02a260a2008-04-20 00:41:09 +00005538 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005539 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00005540 } else {
5541 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Scott Michelfdc40a02009-02-17 22:15:04 +00005542 const Type *OpNTy =
Duncan Sands83ec4b62008-06-06 12:08:01 +00005543 Node->getOperand(0).getValueType().getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00005544 CV.push_back(UndefValue::get(OpNTy));
5545 }
5546 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00005547 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00005548 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00005549 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00005550 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005551 PseudoSourceValue::getConstantPool(), 0,
5552 false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00005553 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005554
Gabor Greifba36cb52008-08-28 21:40:38 +00005555 if (SplatValue.getNode()) { // Splat of one value?
Chris Lattner87100e02006-03-20 01:52:29 +00005556 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005557 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman475871a2008-07-27 21:46:04 +00005558 SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
5559 std::vector<SDValue> ZeroVec(NumElems, Zero);
Evan Chenga87008d2009-02-25 22:49:59 +00005560 SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
5561 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00005562
5563 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005564 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00005565 // Get the splatted value into the low element of a vector register.
Scott Michelfdc40a02009-02-17 22:15:04 +00005566 SDValue LowValVec =
5567 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005568 Node->getValueType(0), SplatValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00005569
Chris Lattner87100e02006-03-20 01:52:29 +00005570 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Scott Michelfdc40a02009-02-17 22:15:04 +00005571 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005572 Node->getValueType(0), LowValVec,
Dale Johannesene8d72302009-02-06 23:05:02 +00005573 DAG.getUNDEF(Node->getValueType(0)),
Chris Lattner87100e02006-03-20 01:52:29 +00005574 SplatMask);
5575 }
5576 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005577
Evan Cheng033e6812006-03-24 01:17:21 +00005578 // If there are only two unique elements, we may be able to turn this into a
5579 // vector shuffle.
5580 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005581 // Get the two values in deterministic order.
Dan Gohman475871a2008-07-27 21:46:04 +00005582 SDValue Val1 = Node->getOperand(1);
5583 SDValue Val2;
5584 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005585 if (MI->first != Val1)
5586 Val2 = MI->first;
5587 else
5588 Val2 = (++MI)->first;
Scott Michelfdc40a02009-02-17 22:15:04 +00005589
5590 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005591 // vector shuffle has the undef vector on the RHS.
5592 if (Val1.getOpcode() == ISD::UNDEF)
5593 std::swap(Val1, Val2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005594
Evan Cheng033e6812006-03-24 01:17:21 +00005595 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005596 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5597 MVT MaskEltVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00005598 std::vector<SDValue> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005599
5600 // Set elements of the shuffle mask for Val1.
5601 std::vector<unsigned> &Val1Elts = Values[Val1];
5602 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5603 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5604
5605 // Set elements of the shuffle mask for Val2.
5606 std::vector<unsigned> &Val2Elts = Values[Val2];
5607 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5608 if (Val2.getOpcode() != ISD::UNDEF)
5609 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5610 else
Dale Johannesene8d72302009-02-06 23:05:02 +00005611 MaskVec[Val2Elts[i]] = DAG.getUNDEF(MaskEltVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00005612
Evan Chenga87008d2009-02-25 22:49:59 +00005613 SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVT,
5614 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00005615
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005616 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005617 if (TLI.isOperationLegalOrCustom(ISD::SCALAR_TO_VECTOR,
5618 Node->getValueType(0)) &&
Chris Lattner4352cc92006-04-04 17:23:26 +00005619 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005620 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,Node->getValueType(0), Val1);
5621 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,Node->getValueType(0), Val2);
Dan Gohman475871a2008-07-27 21:46:04 +00005622 SDValue Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00005623
5624 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005625 return DAG.getNode(ISD::VECTOR_SHUFFLE, dl,Node->getValueType(0), Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00005626 }
5627 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005628
Chris Lattnerce872152006-03-19 06:31:19 +00005629 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5630 // aligned object on the stack, store each element into it, then load
5631 // the result as a vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005632 MVT VT = Node->getValueType(0);
Chris Lattnerce872152006-03-19 06:31:19 +00005633 // Create the stack frame object.
Dan Gohman475871a2008-07-27 21:46:04 +00005634 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohman15b38302009-01-29 21:02:43 +00005635 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
5636 const Value *SV = PseudoSourceValue::getFixedStack(FI);
5637
Chris Lattnerce872152006-03-19 06:31:19 +00005638 // Emit a store of each element to the stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00005639 SmallVector<SDValue, 8> Stores;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005640 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Chris Lattnerce872152006-03-19 06:31:19 +00005641 // Store (in the right endianness) the elements to memory.
5642 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5643 // Ignore undef elements.
5644 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00005645
Chris Lattner841c8822006-03-22 01:46:54 +00005646 unsigned Offset = TypeByteSize*i;
Scott Michelfdc40a02009-02-17 22:15:04 +00005647
Dan Gohman475871a2008-07-27 21:46:04 +00005648 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Dale Johannesen8a782a22009-02-02 22:12:50 +00005649 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005650
Dale Johannesen8a782a22009-02-02 22:12:50 +00005651 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(i),
5652 Idx, SV, Offset));
Chris Lattnerce872152006-03-19 06:31:19 +00005653 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005654
Dan Gohman475871a2008-07-27 21:46:04 +00005655 SDValue StoreChain;
Chris Lattnerce872152006-03-19 06:31:19 +00005656 if (!Stores.empty()) // Not all undef elements?
Dale Johannesen8a782a22009-02-02 22:12:50 +00005657 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005658 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005659 else
5660 StoreChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005661
Chris Lattnerce872152006-03-19 06:31:19 +00005662 // Result is a load from the stack slot.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005663 return DAG.getLoad(VT, dl, StoreChain, FIPtr, SV, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005664}
5665
Chris Lattner5b359c62005-04-02 04:00:59 +00005666void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman475871a2008-07-27 21:46:04 +00005667 SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005668 SDValue &Lo, SDValue &Hi,
5669 DebugLoc dl) {
Chris Lattner5b359c62005-04-02 04:00:59 +00005670 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00005671 SDValue LHSL, LHSH;
Chris Lattner5b359c62005-04-02 04:00:59 +00005672 ExpandOp(Op, LHSL, LHSH);
5673
Dan Gohman475871a2008-07-27 21:46:04 +00005674 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005675 MVT VT = LHSL.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00005676 Lo = DAG.getNode(NodeOp, dl, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005677 Hi = Lo.getValue(1);
5678}
5679
5680
Chris Lattnere34b3962005-01-19 04:19:40 +00005681/// ExpandShift - Try to find a clever way to expand this shift operation out to
5682/// smaller elements. If we can't find a way that is more efficient than a
5683/// libcall on this target, return false. Otherwise, return true with the
5684/// low-parts expanded into Lo and Hi.
Dan Gohman475871a2008-07-27 21:46:04 +00005685bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op,SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005686 SDValue &Lo, SDValue &Hi,
5687 DebugLoc dl) {
Chris Lattnere34b3962005-01-19 04:19:40 +00005688 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5689 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005690
Duncan Sands83ec4b62008-06-06 12:08:01 +00005691 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman475871a2008-07-27 21:46:04 +00005692 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005693 MVT ShTy = ShAmt.getValueType();
5694 unsigned ShBits = ShTy.getSizeInBits();
5695 unsigned VTBits = Op.getValueType().getSizeInBits();
5696 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005697
Chris Lattner7a3c8552007-10-14 20:35:12 +00005698 // Handle the case when Amt is an immediate.
Gabor Greifba36cb52008-08-28 21:40:38 +00005699 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005700 unsigned Cst = CN->getZExtValue();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005701 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005702 SDValue InL, InH;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005703 ExpandOp(Op, InL, InH);
5704 switch(Opc) {
5705 case ISD::SHL:
5706 if (Cst > VTBits) {
5707 Lo = DAG.getConstant(0, NVT);
5708 Hi = DAG.getConstant(0, NVT);
5709 } else if (Cst > NVTBits) {
5710 Lo = DAG.getConstant(0, NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00005711 Hi = DAG.getNode(ISD::SHL, dl,
5712 NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005713 } else if (Cst == NVTBits) {
5714 Lo = DAG.getConstant(0, NVT);
5715 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005716 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005717 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, DAG.getConstant(Cst, ShTy));
5718 Hi = DAG.getNode(ISD::OR, dl, NVT,
5719 DAG.getNode(ISD::SHL, dl, NVT, InH, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005720 DAG.getNode(ISD::SRL, dl, NVT, InL,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005721 DAG.getConstant(NVTBits-Cst, ShTy)));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005722 }
5723 return true;
5724 case ISD::SRL:
5725 if (Cst > VTBits) {
5726 Lo = DAG.getConstant(0, NVT);
5727 Hi = DAG.getConstant(0, NVT);
5728 } else if (Cst > NVTBits) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005729 Lo = DAG.getNode(ISD::SRL, dl, NVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005730 InH, DAG.getConstant(Cst-NVTBits,ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005731 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005732 } else if (Cst == NVTBits) {
5733 Lo = InH;
5734 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005735 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005736 Lo = DAG.getNode(ISD::OR, dl, NVT,
5737 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005738 DAG.getNode(ISD::SHL, dl, NVT, InH,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005739 DAG.getConstant(NVTBits-Cst, ShTy)));
5740 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005741 }
5742 return true;
5743 case ISD::SRA:
5744 if (Cst > VTBits) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005745 Hi = Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005746 DAG.getConstant(NVTBits-1, ShTy));
5747 } else if (Cst > NVTBits) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005748 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005749 DAG.getConstant(Cst-NVTBits, ShTy));
Dale Johannesen8a782a22009-02-02 22:12:50 +00005750 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005751 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005752 } else if (Cst == NVTBits) {
5753 Lo = InH;
Dale Johannesen8a782a22009-02-02 22:12:50 +00005754 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005755 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005756 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005757 Lo = DAG.getNode(ISD::OR, dl, NVT,
5758 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005759 DAG.getNode(ISD::SHL, dl,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005760 NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5761 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005762 }
5763 return true;
5764 }
5765 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005766
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005767 // Okay, the shift amount isn't constant. However, if we can tell that it is
5768 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005769 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5770 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005771 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00005772
Dan Gohman9e255b72008-02-22 01:12:31 +00005773 // If we know that if any of the high bits of the shift amount are one, then
5774 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005775 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005776 // Mask out the high bit, which we know is set.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005777 Amt = DAG.getNode(ISD::AND, dl, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005778 DAG.getConstant(~Mask, Amt.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00005779
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005780 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005781 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005782 ExpandOp(Op, InL, InH);
5783 switch(Opc) {
5784 case ISD::SHL:
5785 Lo = DAG.getConstant(0, NVT); // Low part is zero.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005786 Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005787 return true;
5788 case ISD::SRL:
5789 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005790 Lo = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); // Lo part from Hi part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005791 return true;
5792 case ISD::SRA:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005793 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, // Sign extend high part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005794 DAG.getConstant(NVTBits-1, Amt.getValueType()));
Dale Johannesen8a782a22009-02-02 22:12:50 +00005795 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); // Lo part from Hi part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005796 return true;
5797 }
5798 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005799
Dan Gohman9e255b72008-02-22 01:12:31 +00005800 // If we know that the high bits of the shift amount are all zero, then we can
5801 // do this as a couple of simple shifts.
5802 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005803 // Compute 32-amt.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005804 SDValue Amt2 = DAG.getNode(ISD::SUB, dl, Amt.getValueType(),
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005805 DAG.getConstant(NVTBits, Amt.getValueType()),
5806 Amt);
Scott Michelfdc40a02009-02-17 22:15:04 +00005807
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005808 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005809 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005810 ExpandOp(Op, InL, InH);
5811 switch(Opc) {
5812 case ISD::SHL:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005813 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt);
5814 Hi = DAG.getNode(ISD::OR, dl, NVT,
5815 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt),
5816 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005817 return true;
5818 case ISD::SRL:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005819 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt);
5820 Lo = DAG.getNode(ISD::OR, dl, NVT,
5821 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5822 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005823 return true;
5824 case ISD::SRA:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005825 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt);
5826 Lo = DAG.getNode(ISD::OR, dl, NVT,
5827 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5828 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005829 return true;
5830 }
5831 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005832
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005833 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005834}
Chris Lattner77e77a62005-01-21 06:05:23 +00005835
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005836
Chris Lattner77e77a62005-01-21 06:05:23 +00005837// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5838// does not fit into a register, return the lo part and set the hi part to the
5839// by-reg argument. If it does fit into a single register, return the result
5840// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00005841SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5842 bool isSigned, SDValue &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005843 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
Scott Michelfdc40a02009-02-17 22:15:04 +00005844 // The input chain to this libcall is the entry node of the function.
Chris Lattner6831a812006-02-13 09:18:02 +00005845 // Legalizing the call will automatically add the previous call to the
5846 // dependence.
Dan Gohman475871a2008-07-27 21:46:04 +00005847 SDValue InChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005848
Chris Lattner77e77a62005-01-21 06:05:23 +00005849 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005850 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005851 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005852 MVT ArgVT = Node->getOperand(i).getValueType();
5853 const Type *ArgTy = ArgVT.getTypeForMVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00005854 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005855 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005856 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005857 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005858 }
Bill Wendling056292f2008-09-16 21:48:12 +00005859 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00005860 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005861
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005862 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005863 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Dan Gohman475871a2008-07-27 21:46:04 +00005864 std::pair<SDValue,SDValue> CallInfo =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005865 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005866 CallingConv::C, false, Callee, Args, DAG,
5867 Node->getDebugLoc());
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005868
Chris Lattner6831a812006-02-13 09:18:02 +00005869 // Legalize the call sequence, starting with the chain. This will advance
5870 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5871 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5872 LegalizeOp(CallInfo.second);
Dan Gohman475871a2008-07-27 21:46:04 +00005873 SDValue Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005874 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005875 default: assert(0 && "Unknown thing");
5876 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005877 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005878 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005879 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005880 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005881 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005882 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005883 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005884}
5885
Dan Gohman7f8613e2008-08-14 20:04:46 +00005886/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5887///
5888SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005889LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op,
5890 DebugLoc dl) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00005891 bool isCustom = false;
5892 SDValue Tmp1;
5893 switch (getTypeAction(Op.getValueType())) {
5894 case Legal:
5895 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5896 Op.getValueType())) {
5897 default: assert(0 && "Unknown operation action!");
5898 case TargetLowering::Custom:
5899 isCustom = true;
5900 // FALLTHROUGH
5901 case TargetLowering::Legal:
5902 Tmp1 = LegalizeOp(Op);
Gabor Greifba36cb52008-08-28 21:40:38 +00005903 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005904 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5905 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005906 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005907 DestTy, Tmp1);
5908 if (isCustom) {
5909 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005910 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005911 }
5912 break;
5913 case TargetLowering::Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005914 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005915 break;
5916 case TargetLowering::Promote:
Dale Johannesenaf435272009-02-02 19:03:57 +00005917 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005918 break;
5919 }
5920 break;
5921 case Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005922 Result = ExpandIntToFP(isSigned, DestTy, Op, dl) ;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005923 break;
5924 case Promote:
5925 Tmp1 = PromoteOp(Op);
5926 if (isSigned) {
Dale Johannesenaf435272009-02-02 19:03:57 +00005927 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp1.getValueType(),
Dan Gohman7f8613e2008-08-14 20:04:46 +00005928 Tmp1, DAG.getValueType(Op.getValueType()));
5929 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00005930 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005931 Op.getValueType());
5932 }
Gabor Greifba36cb52008-08-28 21:40:38 +00005933 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005934 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5935 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005936 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005937 DestTy, Tmp1);
5938 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5939 break;
5940 }
5941 return Result;
5942}
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005943
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005944/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5945///
Dan Gohman475871a2008-07-27 21:46:04 +00005946SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005947ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005948 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005949 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005950
Dan Gohman7f8613e2008-08-14 20:04:46 +00005951 // Expand unsupported int-to-fp vector casts by unrolling them.
5952 if (DestTy.isVector()) {
5953 if (!ExpandSource)
5954 return LegalizeOp(UnrollVectorOp(Source));
5955 MVT DestEltTy = DestTy.getVectorElementType();
5956 if (DestTy.getVectorNumElements() == 1) {
5957 SDValue Scalar = ScalarizeVectorOp(Source);
5958 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00005959 DestEltTy, Scalar, dl);
Evan Chenga87008d2009-02-25 22:49:59 +00005960 return DAG.getNode(ISD::BUILD_VECTOR, dl, DestTy, Result);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005961 }
5962 SDValue Lo, Hi;
5963 SplitVectorOp(Source, Lo, Hi);
5964 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5965 DestTy.getVectorNumElements() / 2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005966 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +00005967 Lo, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00005968 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +00005969 Hi, dl);
5970 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, DestTy, LoResult,
Evan Chengefa53392008-10-13 18:46:18 +00005971 HiResult));
Dan Gohman7f8613e2008-08-14 20:04:46 +00005972 }
5973
Evan Cheng9845eb52008-04-01 02:18:22 +00005974 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5975 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005976 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005977 // incoming integer is set. To handle this, we dynamically test to see if
5978 // it is set, and, if so, add a fudge factor.
Dan Gohman475871a2008-07-27 21:46:04 +00005979 SDValue Hi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005980 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005981 SDValue Lo;
Dan Gohman034f60e2008-03-11 01:59:03 +00005982 ExpandOp(Source, Lo, Hi);
Dale Johannesenaf435272009-02-02 19:03:57 +00005983 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, Lo, Hi);
Dan Gohman034f60e2008-03-11 01:59:03 +00005984 } else {
5985 // The comparison for the sign bit will use the entire operand.
5986 Hi = Source;
5987 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005988
Dale Johannesen53997b02008-11-04 20:52:49 +00005989 // Check to see if the target has a custom way to lower this. If so, use
5990 // it. (Note we've already expanded the operand in this case.)
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005991 switch (TLI.getOperationAction(ISD::UINT_TO_FP, SourceVT)) {
5992 default: assert(0 && "This action not implemented for this operation!");
5993 case TargetLowering::Legal:
5994 case TargetLowering::Expand:
5995 break; // This case is handled below.
5996 case TargetLowering::Custom: {
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005997 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::UINT_TO_FP, dl, DestTy,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005998 Source), DAG);
5999 if (NV.getNode())
6000 return LegalizeOp(NV);
6001 break; // The target decided this was legal after all
6002 }
6003 }
6004
Chris Lattner66de05b2005-05-13 04:45:13 +00006005 // If this is unsigned, and not supported, first perform the conversion to
6006 // signed, then adjust the result if the sign bit is set.
Dale Johannesenaf435272009-02-02 19:03:57 +00006007 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source, dl);
Chris Lattner66de05b2005-05-13 04:45:13 +00006008
Scott Michelfdc40a02009-02-17 22:15:04 +00006009 SDValue SignSet = DAG.getSetCC(dl,
Dale Johannesenaf435272009-02-02 19:03:57 +00006010 TLI.getSetCCResultType(Hi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00006011 Hi, DAG.getConstant(0, Hi.getValueType()),
6012 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00006013 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00006014 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattnere9c35e72005-04-13 05:09:42 +00006015 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00006016 uint64_t FF = 0x5f800000ULL;
6017 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattnerd2e936a2009-03-08 01:47:41 +00006018 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00006019
Dan Gohman475871a2008-07-27 21:46:04 +00006020 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00006021 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00006022 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00006023 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00006024 SDValue FudgeInReg;
Chris Lattnere9c35e72005-04-13 05:09:42 +00006025 if (DestTy == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00006026 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00006027 PseudoSourceValue::getConstantPool(), 0,
6028 false, Alignment);
Duncan Sands8e4eb092008-06-08 20:54:56 +00006029 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006030 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesenaf435272009-02-02 19:03:57 +00006031 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, dl, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00006032 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00006033 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00006034 MVT::f32, false, Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00006035 else
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006036 assert(0 && "Unexpected conversion");
6037
Duncan Sands83ec4b62008-06-06 12:08:01 +00006038 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006039 if (SCVT != DestTy) {
6040 // Destination type needs to be expanded as well. The FADD now we are
6041 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006042 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
6043 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dale Johannesenaf435272009-02-02 19:03:57 +00006044 SignedConv = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006045 SignedConv, SignedConv.getValue(1));
6046 }
Dale Johannesenaf435272009-02-02 19:03:57 +00006047 SignedConv = DAG.getNode(ISD::BIT_CONVERT, dl, DestTy, SignedConv);
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006048 }
Dale Johannesenaf435272009-02-02 19:03:57 +00006049 return DAG.getNode(ISD::FADD, dl, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00006050 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00006051
Chris Lattnera88a2602005-05-14 05:33:54 +00006052 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00006053 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00006054 default: assert(0 && "This action not implemented for this operation!");
6055 case TargetLowering::Legal:
6056 case TargetLowering::Expand:
6057 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00006058 case TargetLowering::Custom: {
Dale Johannesenaf435272009-02-02 19:03:57 +00006059 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, dl, DestTy,
Chris Lattner07dffd62005-08-26 00:14:16 +00006060 Source), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006061 if (NV.getNode())
Chris Lattner07dffd62005-08-26 00:14:16 +00006062 return LegalizeOp(NV);
6063 break; // The target decided this was legal after all
6064 }
Chris Lattnera88a2602005-05-14 05:33:54 +00006065 }
6066
Chris Lattner13689e22005-05-12 07:00:44 +00006067 // Expand the source, then glue it back together for the call. We must expand
6068 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00006069 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00006070 SDValue SrcLo, SrcHi;
Dan Gohman034f60e2008-03-11 01:59:03 +00006071 ExpandOp(Source, SrcLo, SrcHi);
Dale Johannesenaf435272009-02-02 19:03:57 +00006072 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, SrcLo, SrcHi);
Dan Gohman034f60e2008-03-11 01:59:03 +00006073 }
Chris Lattner13689e22005-05-12 07:00:44 +00006074
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006075 RTLIB::Libcall LC = isSigned ?
6076 RTLIB::getSINTTOFP(SourceVT, DestTy) :
6077 RTLIB::getUINTTOFP(SourceVT, DestTy);
6078 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
6079
Dale Johannesenaf435272009-02-02 19:03:57 +00006080 Source = DAG.getNode(ISD::SINT_TO_FP, dl, DestTy, Source);
Dan Gohman475871a2008-07-27 21:46:04 +00006081 SDValue HiPart;
Gabor Greifba36cb52008-08-28 21:40:38 +00006082 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
6083 if (Result.getValueType() != DestTy && HiPart.getNode())
Dale Johannesenaf435272009-02-02 19:03:57 +00006084 Result = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy, Result, HiPart);
Dan Gohmana2e94852008-03-10 23:03:31 +00006085 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00006086}
Misha Brukmanedf128a2005-04-21 22:36:52 +00006087
Chris Lattner22cde6a2006-01-28 08:25:58 +00006088/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
6089/// INT_TO_FP operation of the specified operand when the target requests that
6090/// we expand it. At this point, we know that the result and operand types are
6091/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00006092SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
6093 SDValue Op0,
Dale Johannesenaf435272009-02-02 19:03:57 +00006094 MVT DestVT,
6095 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006096 if (Op0.getValueType() == MVT::i32) {
6097 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00006098
Chris Lattner23594d42008-01-16 07:03:22 +00006099 // Get the stack frame index of a 8 byte buffer.
Dan Gohman475871a2008-07-27 21:46:04 +00006100 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00006101
Chris Lattner22cde6a2006-01-28 08:25:58 +00006102 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00006103 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00006104 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00006105 SDValue Hi = StackSlot;
Scott Michelfdc40a02009-02-17 22:15:04 +00006106 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Dale Johannesenaf435272009-02-02 19:03:57 +00006107 TLI.getPointerTy(), StackSlot,WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00006108 if (TLI.isLittleEndian())
6109 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00006110
Chris Lattner22cde6a2006-01-28 08:25:58 +00006111 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00006112 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006113 if (isSigned) {
6114 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman475871a2008-07-27 21:46:04 +00006115 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dale Johannesenaf435272009-02-02 19:03:57 +00006116 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006117 } else {
6118 Op0Mapped = Op0;
6119 }
6120 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00006121 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Evan Cheng8b2794a2006-10-13 21:14:26 +00006122 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006123 // initial hi portion of constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00006124 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006125 // store the hi of the constructed double - biased exponent
Dale Johannesenaf435272009-02-02 19:03:57 +00006126 SDValue Store2=DAG.getStore(Store1, dl, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006127 // load the constructed double
Dale Johannesenaf435272009-02-02 19:03:57 +00006128 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006129 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00006130 SDValue Bias = DAG.getConstantFP(isSigned ?
Chris Lattner22cde6a2006-01-28 08:25:58 +00006131 BitsToDouble(0x4330000080000000ULL)
6132 : BitsToDouble(0x4330000000000000ULL),
6133 MVT::f64);
6134 // subtract the bias
Dale Johannesenaf435272009-02-02 19:03:57 +00006135 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006136 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00006137 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006138 // handle final rounding
6139 if (DestVT == MVT::f64) {
6140 // do nothing
6141 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006142 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006143 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00006144 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00006145 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006146 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006147 }
6148 return Result;
6149 }
6150 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesenaf435272009-02-02 19:03:57 +00006151 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006152
Dale Johannesenaf435272009-02-02 19:03:57 +00006153 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00006154 Op0, DAG.getConstant(0, Op0.getValueType()),
6155 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00006156 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00006157 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattner22cde6a2006-01-28 08:25:58 +00006158 SignSet, Four, Zero);
6159
6160 // If the sign bit of the integer is set, the large number will be treated
6161 // as a negative number. To counteract this, the dynamic code adds an
6162 // offset depending on the data type.
6163 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006164 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006165 default: assert(0 && "Unsupported integer type!");
6166 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
6167 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
6168 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
6169 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
6170 }
6171 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattnerd2e936a2009-03-08 01:47:41 +00006172 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006173
Dan Gohman475871a2008-07-27 21:46:04 +00006174 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00006175 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00006176 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00006177 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00006178 SDValue FudgeInReg;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006179 if (DestVT == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00006180 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00006181 PseudoSourceValue::getConstantPool(), 0,
6182 false, Alignment);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006183 else {
Dan Gohman69de1932008-02-06 22:27:42 +00006184 FudgeInReg =
Dale Johannesenaf435272009-02-02 19:03:57 +00006185 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
Dan Gohman69de1932008-02-06 22:27:42 +00006186 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00006187 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00006188 MVT::f32, false, Alignment));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006189 }
6190
Dale Johannesenaf435272009-02-02 19:03:57 +00006191 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006192}
6193
6194/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
6195/// *INT_TO_FP operation of the specified operand when the target requests that
6196/// we promote it. At this point, we know that the result and operand types are
6197/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
6198/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00006199SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
6200 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006201 bool isSigned,
6202 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006203 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006204 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006205
6206 unsigned OpToUse = 0;
6207
6208 // Scan for the appropriate larger type to use.
6209 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006210 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
6211 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006212
6213 // If the target supports SINT_TO_FP of this type, use it.
6214 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
6215 default: break;
6216 case TargetLowering::Legal:
6217 if (!TLI.isTypeLegal(NewInTy))
6218 break; // Can't use this datatype.
6219 // FALL THROUGH.
6220 case TargetLowering::Custom:
6221 OpToUse = ISD::SINT_TO_FP;
6222 break;
6223 }
6224 if (OpToUse) break;
6225 if (isSigned) continue;
6226
6227 // If the target supports UINT_TO_FP of this type, use it.
6228 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
6229 default: break;
6230 case TargetLowering::Legal:
6231 if (!TLI.isTypeLegal(NewInTy))
6232 break; // Can't use this datatype.
6233 // FALL THROUGH.
6234 case TargetLowering::Custom:
6235 OpToUse = ISD::UINT_TO_FP;
6236 break;
6237 }
6238 if (OpToUse) break;
6239
6240 // Otherwise, try a larger type.
6241 }
6242
6243 // Okay, we found the operation and type to use. Zero extend our input to the
6244 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00006245 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00006246 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00006247 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006248}
6249
6250/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
6251/// FP_TO_*INT operation of the specified operand when the target requests that
6252/// we promote it. At this point, we know that the result and operand types are
6253/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
6254/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00006255SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
6256 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006257 bool isSigned,
6258 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006259 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006260 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006261
6262 unsigned OpToUse = 0;
6263
6264 // Scan for the appropriate larger type to use.
6265 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006266 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
6267 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006268
6269 // If the target supports FP_TO_SINT returning this type, use it.
6270 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
6271 default: break;
6272 case TargetLowering::Legal:
6273 if (!TLI.isTypeLegal(NewOutTy))
6274 break; // Can't use this datatype.
6275 // FALL THROUGH.
6276 case TargetLowering::Custom:
6277 OpToUse = ISD::FP_TO_SINT;
6278 break;
6279 }
6280 if (OpToUse) break;
6281
6282 // If the target supports FP_TO_UINT of this type, use it.
6283 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
6284 default: break;
6285 case TargetLowering::Legal:
6286 if (!TLI.isTypeLegal(NewOutTy))
6287 break; // Can't use this datatype.
6288 // FALL THROUGH.
6289 case TargetLowering::Custom:
6290 OpToUse = ISD::FP_TO_UINT;
6291 break;
6292 }
6293 if (OpToUse) break;
6294
6295 // Otherwise, try a larger type.
6296 }
6297
Scott Michelfdc40a02009-02-17 22:15:04 +00006298
Chris Lattner27a6c732007-11-24 07:07:01 +00006299 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00006300 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00006301
Chris Lattner27a6c732007-11-24 07:07:01 +00006302 // If the operation produces an invalid type, it must be custom lowered. Use
6303 // the target lowering hooks to expand it. Just keep the low part of the
6304 // expanded operation, we know that we're truncating anyway.
6305 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands1607f052008-12-01 11:39:25 +00006306 SmallVector<SDValue, 2> Results;
6307 TLI.ReplaceNodeResults(Operation.getNode(), Results, DAG);
6308 assert(Results.size() == 1 && "Incorrect FP_TO_XINT lowering!");
6309 Operation = Results[0];
Chris Lattner27a6c732007-11-24 07:07:01 +00006310 }
Duncan Sands126d9072008-07-04 11:47:58 +00006311
Chris Lattner27a6c732007-11-24 07:07:01 +00006312 // Truncate the result of the extended FP_TO_*INT operation to the desired
6313 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00006314 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006315}
6316
6317/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
6318///
Dale Johannesen8a782a22009-02-02 22:12:50 +00006319SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006320 MVT VT = Op.getValueType();
6321 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman475871a2008-07-27 21:46:04 +00006322 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006323 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006324 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
6325 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006326 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6327 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6328 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006329 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006330 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6331 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6332 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6333 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6334 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
6335 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
6336 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6337 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6338 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006339 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006340 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
6341 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
6342 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6343 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6344 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6345 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6346 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
6347 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
6348 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
6349 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
6350 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
6351 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
6352 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
6353 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
6354 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
6355 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
6356 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6357 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6358 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
6359 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
6360 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006361 }
6362}
6363
6364/// ExpandBitCount - Expand the specified bitcount instruction into operations.
6365///
Scott Michelfdc40a02009-02-17 22:15:04 +00006366SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen8a782a22009-02-02 22:12:50 +00006367 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006368 switch (Opc) {
6369 default: assert(0 && "Cannot expand this yet!");
6370 case ISD::CTPOP: {
6371 static const uint64_t mask[6] = {
6372 0x5555555555555555ULL, 0x3333333333333333ULL,
6373 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
6374 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
6375 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00006376 MVT VT = Op.getValueType();
6377 MVT ShVT = TLI.getShiftAmountTy();
6378 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006379 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
6380 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006381 unsigned EltSize = VT.isVector() ?
6382 VT.getVectorElementType().getSizeInBits() : len;
6383 SDValue Tmp2 = DAG.getConstant(APInt(EltSize, mask[i]), VT);
Dan Gohman475871a2008-07-27 21:46:04 +00006384 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00006385 Op = DAG.getNode(ISD::ADD, dl, VT,
Dale Johannesene72c5962009-02-06 21:55:48 +00006386 DAG.getNode(ISD::AND, dl, VT, Op, Tmp2),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006387 DAG.getNode(ISD::AND, dl, VT,
6388 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3),
6389 Tmp2));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006390 }
6391 return Op;
6392 }
6393 case ISD::CTLZ: {
6394 // for now, we do this:
6395 // x = x | (x >> 1);
6396 // x = x | (x >> 2);
6397 // ...
6398 // x = x | (x >>16);
6399 // x = x | (x >>32); // for 64-bit input
6400 // return popcount(~x);
6401 //
6402 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006403 MVT VT = Op.getValueType();
6404 MVT ShVT = TLI.getShiftAmountTy();
6405 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006406 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006407 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00006408 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00006409 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006410 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00006411 Op = DAG.getNOT(dl, Op, VT);
6412 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006413 }
6414 case ISD::CTTZ: {
6415 // for now, we use: { return popcount(~x & (x - 1)); }
6416 // unless the target has ctlz but not ctpop, in which case we use:
6417 // { return 32 - nlz(~x & (x-1)); }
6418 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006419 MVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006420 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
6421 DAG.getNOT(dl, Op, VT),
6422 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00006423 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006424 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006425 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
6426 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00006427 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006428 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006429 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
6430 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006431 }
6432 }
6433}
Chris Lattnere34b3962005-01-19 04:19:40 +00006434
Dan Gohman475871a2008-07-27 21:46:04 +00006435/// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattner3e928bb2005-01-07 07:47:09 +00006436/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman929d3eb2008-10-01 15:07:49 +00006437/// LegalizedNodes map is filled in for any results that are not expanded, the
Chris Lattner3e928bb2005-01-07 07:47:09 +00006438/// ExpandedNodes map is filled in for any results that are expanded, and the
6439/// Lo/Hi values are returned.
Dan Gohman475871a2008-07-27 21:46:04 +00006440void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00006441 MVT VT = Op.getValueType();
6442 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greifba36cb52008-08-28 21:40:38 +00006443 SDNode *Node = Op.getNode();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006444 DebugLoc dl = Node->getDebugLoc();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006445 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00006446 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00006447 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006448
Chris Lattner6fdcb252005-09-02 20:32:45 +00006449 // See if we already expanded it.
Dan Gohman475871a2008-07-27 21:46:04 +00006450 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00006451 = ExpandedNodes.find(Op);
6452 if (I != ExpandedNodes.end()) {
6453 Lo = I->second.first;
6454 Hi = I->second.second;
6455 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006456 }
6457
Chris Lattner3e928bb2005-01-07 07:47:09 +00006458 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006459 case ISD::CopyFromReg:
6460 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006461 case ISD::FP_ROUND_INREG:
Scott Michelfdc40a02009-02-17 22:15:04 +00006462 if (VT == MVT::ppcf128 &&
6463 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006464 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006465 SDValue SrcLo, SrcHi, Src;
Dale Johannesenfcf4d242007-10-11 23:32:15 +00006466 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006467 Src = DAG.getNode(ISD::BUILD_PAIR, dl, VT, SrcLo, SrcHi);
Dan Gohman475871a2008-07-27 21:46:04 +00006468 SDValue Result = TLI.LowerOperation(
Dale Johannesen8a782a22009-02-02 22:12:50 +00006469 DAG.getNode(ISD::FP_ROUND_INREG, dl, VT, Src, Op.getOperand(1)), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006470 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
6471 Lo = Result.getNode()->getOperand(0);
6472 Hi = Result.getNode()->getOperand(1);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006473 break;
6474 }
6475 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00006476 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006477#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006478 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006479#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00006480 assert(0 && "Do not know how to expand this operator!");
6481 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00006482 case ISD::EXTRACT_ELEMENT:
6483 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006484 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman1953ecb2008-02-27 01:52:30 +00006485 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00006486 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00006487 case ISD::EXTRACT_VECTOR_ELT:
Dale Johannesen25f1d082007-10-31 00:32:36 +00006488 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
6489 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
6490 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006491 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00006492 Lo = DAG.getUNDEF(NVT);
6493 Hi = DAG.getUNDEF(NVT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006494 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006495 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006496 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00006497 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
6498 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
6499 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006500 break;
6501 }
Evan Cheng00495212006-12-12 21:32:44 +00006502 case ISD::ConstantFP: {
6503 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00006504 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen7111b022008-10-09 18:53:47 +00006505 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesena471c2e2007-10-11 18:07:22 +00006506 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
6507 MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00006508 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
Dale Johannesena471c2e2007-10-11 18:07:22 +00006509 MVT::f64);
6510 break;
6511 }
Evan Cheng279101e2006-12-12 22:19:28 +00006512 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00006513 if (getTypeAction(Lo.getValueType()) == Expand)
6514 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006515 break;
6516 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006517 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006518 // Return the operands.
6519 Lo = Node->getOperand(0);
6520 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006521 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006522
Chris Lattner27a6c732007-11-24 07:07:01 +00006523 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00006524 if (Node->getNumValues() == 1) {
6525 ExpandOp(Op.getOperand(0), Lo, Hi);
6526 break;
6527 }
Chris Lattner27a6c732007-11-24 07:07:01 +00006528 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif99a6cb92008-08-26 22:36:50 +00006529 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattner27a6c732007-11-24 07:07:01 +00006530 Op.getValue(1).getValueType() == MVT::Other &&
6531 "unhandled MERGE_VALUES");
6532 ExpandOp(Op.getOperand(0), Lo, Hi);
6533 // Remember that we legalized the chain.
6534 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
6535 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006536
Chris Lattner58f79632005-12-12 22:27:43 +00006537 case ISD::SIGN_EXTEND_INREG:
6538 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00006539 // sext_inreg the low part if needed.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006540 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Lo, Node->getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006541
Chris Lattner4bdd2752006-10-06 17:34:12 +00006542 // The high part gets the sign extension from the lo-part. This handles
6543 // things like sextinreg V:i64 from i8.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006544 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006545 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00006546 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00006547 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006548
Nate Begemand88fc032006-01-14 03:14:10 +00006549 case ISD::BSWAP: {
6550 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006551 SDValue TempLo = DAG.getNode(ISD::BSWAP, dl, NVT, Hi);
6552 Hi = DAG.getNode(ISD::BSWAP, dl, NVT, Lo);
Nate Begemand88fc032006-01-14 03:14:10 +00006553 Lo = TempLo;
6554 break;
6555 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006556
Chris Lattneredb1add2005-05-11 04:51:16 +00006557 case ISD::CTPOP:
6558 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006559 Lo = DAG.getNode(ISD::ADD, dl, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
6560 DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
6561 DAG.getNode(ISD::CTPOP, dl, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00006562 Hi = DAG.getConstant(0, NVT);
6563 break;
6564
Chris Lattner39a8f332005-05-12 19:05:01 +00006565 case ISD::CTLZ: {
6566 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006567 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006568 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006569 SDValue HLZ = DAG.getNode(ISD::CTLZ, dl, NVT, Hi);
6570 SDValue TopNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), HLZ,
6571 BitsC, ISD::SETNE);
6572 SDValue LowPart = DAG.getNode(ISD::CTLZ, dl, NVT, Lo);
6573 LowPart = DAG.getNode(ISD::ADD, dl, NVT, LowPart, BitsC);
Chris Lattner39a8f332005-05-12 19:05:01 +00006574
Dale Johannesen8a782a22009-02-02 22:12:50 +00006575 Lo = DAG.getNode(ISD::SELECT, dl, NVT, TopNotZero, HLZ, LowPart);
Chris Lattner39a8f332005-05-12 19:05:01 +00006576 Hi = DAG.getConstant(0, NVT);
6577 break;
6578 }
6579
6580 case ISD::CTTZ: {
6581 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006582 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006583 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006584 SDValue LTZ = DAG.getNode(ISD::CTTZ, dl, NVT, Lo);
6585 SDValue BotNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), LTZ,
6586 BitsC, ISD::SETNE);
6587 SDValue HiPart = DAG.getNode(ISD::CTTZ, dl, NVT, Hi);
6588 HiPart = DAG.getNode(ISD::ADD, dl, NVT, HiPart, BitsC);
Chris Lattner39a8f332005-05-12 19:05:01 +00006589
Dale Johannesen8a782a22009-02-02 22:12:50 +00006590 Lo = DAG.getNode(ISD::SELECT, dl, NVT, BotNotZero, LTZ, HiPart);
Chris Lattner39a8f332005-05-12 19:05:01 +00006591 Hi = DAG.getConstant(0, NVT);
6592 break;
6593 }
Chris Lattneredb1add2005-05-11 04:51:16 +00006594
Nate Begemanacc398c2006-01-25 18:21:52 +00006595 case ISD::VAARG: {
Dan Gohman475871a2008-07-27 21:46:04 +00006596 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6597 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Dale Johannesenc460ae92009-02-04 00:13:36 +00006598 Lo = DAG.getVAArg(NVT, dl, Ch, Ptr, Node->getOperand(2));
6599 Hi = DAG.getVAArg(NVT, dl, Lo.getValue(1), Ptr, Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00006600
6601 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00006602 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00006603 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00006604 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00006605 std::swap(Lo, Hi);
6606 break;
6607 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006608
Chris Lattner3e928bb2005-01-07 07:47:09 +00006609 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00006610 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00006611 SDValue Ch = LD->getChain(); // Legalize the chain.
6612 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Evan Cheng466685d2006-10-09 20:57:25 +00006613 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f8613e2008-08-14 20:04:46 +00006614 const Value *SV = LD->getSrcValue();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006615 int SVOffset = LD->getSrcValueOffset();
6616 unsigned Alignment = LD->getAlignment();
6617 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006618
Evan Cheng466685d2006-10-09 20:57:25 +00006619 if (ExtType == ISD::NON_EXTLOAD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006620 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006621 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00006622 if (VT == MVT::f32 || VT == MVT::f64) {
6623 // f32->i32 or f64->i64 one to one expansion.
6624 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006625 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00006626 // Recursively expand the new load.
6627 if (getTypeAction(NVT) == Expand)
6628 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006629 break;
6630 }
Chris Lattnerec39a452005-01-19 18:02:17 +00006631
Evan Cheng466685d2006-10-09 20:57:25 +00006632 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006633 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Dale Johannesen8a782a22009-02-02 22:12:50 +00006634 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006635 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006636 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006637 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006638 Hi = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006639 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00006640
Evan Cheng466685d2006-10-09 20:57:25 +00006641 // Build a factor node to remember that this load is independent of the
6642 // other one.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006643 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Evan Cheng466685d2006-10-09 20:57:25 +00006644 Hi.getValue(1));
6645
6646 // Remember that we legalized the chain.
6647 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00006648 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00006649 std::swap(Lo, Hi);
6650 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006651 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00006652
Dale Johannesenb6210fc2007-10-19 20:29:00 +00006653 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6654 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00006655 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dale Johannesen8a782a22009-02-02 22:12:50 +00006656 SDValue Load = DAG.getLoad(EVT, dl, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006657 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00006658 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006659 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Dale Johannesen8a782a22009-02-02 22:12:50 +00006660 ExpandOp(DAG.getNode(ISD::FP_EXTEND, dl, VT, Load), Lo, Hi);
Evan Cheng548f6112006-12-13 03:19:57 +00006661 break;
6662 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006663
Evan Cheng466685d2006-10-09 20:57:25 +00006664 if (EVT == NVT)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006665 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006666 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006667 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00006668 Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006669 SVOffset, EVT, isVolatile,
6670 Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00006671
Evan Cheng466685d2006-10-09 20:57:25 +00006672 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006673 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng466685d2006-10-09 20:57:25 +00006674
6675 if (ExtType == ISD::SEXTLOAD) {
6676 // The high part is obtained by SRA'ing all but one of the bits of the
6677 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006678 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006679 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Evan Cheng466685d2006-10-09 20:57:25 +00006680 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6681 } else if (ExtType == ISD::ZEXTLOAD) {
6682 // The high part is just a zero.
6683 Hi = DAG.getConstant(0, NVT);
6684 } else /* if (ExtType == ISD::EXTLOAD) */ {
6685 // The high part is undefined.
Dale Johannesene8d72302009-02-06 23:05:02 +00006686 Hi = DAG.getUNDEF(NVT);
Evan Cheng466685d2006-10-09 20:57:25 +00006687 }
6688 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006689 break;
6690 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006691 case ISD::AND:
6692 case ISD::OR:
6693 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman475871a2008-07-27 21:46:04 +00006694 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006695 ExpandOp(Node->getOperand(0), LL, LH);
6696 ExpandOp(Node->getOperand(1), RL, RH);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006697 Lo = DAG.getNode(Node->getOpcode(), dl, NVT, LL, RL);
6698 Hi = DAG.getNode(Node->getOpcode(), dl, NVT, LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006699 break;
6700 }
6701 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006702 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006703 ExpandOp(Node->getOperand(1), LL, LH);
6704 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006705 if (getTypeAction(NVT) == Expand)
6706 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006707 Lo = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006708 if (VT != MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006709 Hi = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006710 break;
6711 }
Nate Begeman9373a812005-08-10 20:51:12 +00006712 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006713 SDValue TL, TH, FL, FH;
Nate Begeman9373a812005-08-10 20:51:12 +00006714 ExpandOp(Node->getOperand(2), TL, TH);
6715 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006716 if (getTypeAction(NVT) == Expand)
6717 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006718 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Nate Begeman9373a812005-08-10 20:51:12 +00006719 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006720 if (VT != MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006721 Hi = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Evan Cheng19103b12006-12-15 22:42:55 +00006722 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006723 break;
6724 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006725 case ISD::ANY_EXTEND:
6726 // The low part is any extension of the input (which degenerates to a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006727 Lo = DAG.getNode(ISD::ANY_EXTEND, dl, NVT, Node->getOperand(0));
Chris Lattner8137c9e2006-01-28 05:07:51 +00006728 // The high part is undefined.
Dale Johannesene8d72302009-02-06 23:05:02 +00006729 Hi = DAG.getUNDEF(NVT);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006730 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006731 case ISD::SIGN_EXTEND: {
6732 // The low part is just a sign extension of the input (which degenerates to
6733 // a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006734 Lo = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006735
Chris Lattner3e928bb2005-01-07 07:47:09 +00006736 // The high part is obtained by SRA'ing all but one of the bits of the lo
6737 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006738 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006739 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Chris Lattner8137c9e2006-01-28 05:07:51 +00006740 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006741 break;
6742 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006743 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006744 // The low part is just a zero extension of the input (which degenerates to
6745 // a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006746 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006747
Chris Lattner3e928bb2005-01-07 07:47:09 +00006748 // The high part is just a zero.
6749 Hi = DAG.getConstant(0, NVT);
6750 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006751
Chris Lattner4c948eb2007-02-13 23:55:16 +00006752 case ISD::TRUNCATE: {
6753 // The input value must be larger than this value. Expand *it*.
Dan Gohman475871a2008-07-27 21:46:04 +00006754 SDValue NewLo;
Chris Lattner4c948eb2007-02-13 23:55:16 +00006755 ExpandOp(Node->getOperand(0), NewLo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00006756
Chris Lattner4c948eb2007-02-13 23:55:16 +00006757 // The low part is now either the right size, or it is closer. If not the
6758 // right size, make an illegal truncate so we recursively expand it.
6759 if (NewLo.getValueType() != Node->getValueType(0))
Dale Johannesen8a782a22009-02-02 22:12:50 +00006760 NewLo = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), NewLo);
Chris Lattner4c948eb2007-02-13 23:55:16 +00006761 ExpandOp(NewLo, Lo, Hi);
6762 break;
6763 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006764
Chris Lattner35481892005-12-23 00:16:34 +00006765 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006766 SDValue Tmp;
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006767 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6768 // If the target wants to, allow it to lower this itself.
6769 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6770 case Expand: assert(0 && "cannot expand FP!");
6771 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6772 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6773 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00006774 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp), DAG);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006775 }
6776
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006777 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006778 if (VT == MVT::f32 || VT == MVT::f64) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006779 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006780 if (getTypeAction(NVT) == Expand)
6781 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006782 break;
6783 }
6784
6785 // If source operand will be expanded to the same type as VT, i.e.
6786 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006787 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006788 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6789 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006790 break;
6791 }
6792
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006793 // Turn this into a load/store pair by default.
Gabor Greifba36cb52008-08-28 21:40:38 +00006794 if (Tmp.getNode() == 0)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006795 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00006796
Chris Lattner35481892005-12-23 00:16:34 +00006797 ExpandOp(Tmp, Lo, Hi);
6798 break;
6799 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006800
Chris Lattner27a6c732007-11-24 07:07:01 +00006801 case ISD::READCYCLECOUNTER: {
Scott Michelfdc40a02009-02-17 22:15:04 +00006802 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
Chris Lattner308575b2005-11-20 22:56:56 +00006803 TargetLowering::Custom &&
6804 "Must custom expand ReadCycleCounter");
Dan Gohman475871a2008-07-27 21:46:04 +00006805 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006806 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattner27a6c732007-11-24 07:07:01 +00006807 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006808 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006809 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006810 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006811 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006812
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006813 case ISD::ATOMIC_CMP_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006814 // This operation does not need a loop.
6815 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6816 assert(Tmp.getNode() && "Node must be custom expanded!");
6817 ExpandOp(Tmp.getValue(0), Lo, Hi);
6818 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6819 LegalizeOp(Tmp.getValue(1)));
6820 break;
6821 }
6822
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006823 case ISD::ATOMIC_LOAD_ADD:
6824 case ISD::ATOMIC_LOAD_SUB:
6825 case ISD::ATOMIC_LOAD_AND:
6826 case ISD::ATOMIC_LOAD_OR:
6827 case ISD::ATOMIC_LOAD_XOR:
6828 case ISD::ATOMIC_LOAD_NAND:
6829 case ISD::ATOMIC_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006830 // These operations require a loop to be generated. We can't do that yet,
6831 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006832 SDValue In2Lo, In2Hi, In2;
6833 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006834 In2 = DAG.getNode(ISD::BUILD_PAIR, dl, VT, In2Lo, In2Hi);
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006835 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00006836 SDValue Replace =
Dale Johannesen8a782a22009-02-02 22:12:50 +00006837 DAG.getAtomic(Op.getOpcode(), dl, Anode->getMemoryVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006838 Op.getOperand(0), Op.getOperand(1), In2,
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006839 Anode->getSrcValue(), Anode->getAlignment());
6840 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006841 ExpandOp(Result.getValue(0), Lo, Hi);
6842 // Remember that we legalized the chain.
6843 AddLegalizedOperand(SDValue(Node,1), LegalizeOp(Result.getValue(1)));
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006844 break;
6845 }
6846
Chris Lattner4e6c7462005-01-08 19:27:05 +00006847 // These operators cannot be expanded directly, emit them as calls to
6848 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006849 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006850 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006851 SDValue Op;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006852 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6853 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006854 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6855 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006856 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006857
Dale Johannesen8a782a22009-02-02 22:12:50 +00006858 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op), DAG);
Chris Lattnerf20d1832005-07-30 01:40:57 +00006859
Chris Lattner80a3e942005-07-29 00:33:32 +00006860 // Now that the custom expander is done, expand the result, which is still
6861 // VT.
Gabor Greifba36cb52008-08-28 21:40:38 +00006862 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006863 ExpandOp(Op, Lo, Hi);
6864 break;
6865 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006866 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006867
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006868 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6869 VT);
6870 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6871 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006872 break;
Evan Cheng56966222007-01-12 02:11:51 +00006873 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006874
Evan Cheng56966222007-01-12 02:11:51 +00006875 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006876 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006877 SDValue Op;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006878 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6879 case Expand: assert(0 && "cannot expand FP!");
6880 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6881 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6882 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006883
Dale Johannesen8a782a22009-02-02 22:12:50 +00006884 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, dl, VT, Op), DAG);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006885
6886 // Now that the custom expander is done, expand the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00006887 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006888 ExpandOp(Op, Lo, Hi);
6889 break;
6890 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006891 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006892
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006893 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6894 VT);
6895 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6896 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006897 break;
Evan Cheng56966222007-01-12 02:11:51 +00006898 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006899
Evan Cheng05a2d562006-01-09 18:31:59 +00006900 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006901 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006902 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006903 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006904 SDValue Op = DAG.getNode(ISD::SHL, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006905 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006906 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006907 // Now that the custom expander is done, expand the result, which is
6908 // still VT.
6909 ExpandOp(Op, Lo, Hi);
6910 break;
6911 }
6912 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006913
6914 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
Chris Lattner79980b02006-09-13 03:50:39 +00006915 // this X << 1 as X+X.
6916 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006917 if (ShAmt->getAPIntValue() == 1 &&
Scott Michelfdc40a02009-02-17 22:15:04 +00006918 TLI.isOperationLegalOrCustom(ISD::ADDC, NVT) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006919 TLI.isOperationLegalOrCustom(ISD::ADDE, NVT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006920 SDValue LoOps[2], HiOps[3];
Chris Lattner79980b02006-09-13 03:50:39 +00006921 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6922 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6923 LoOps[1] = LoOps[0];
Dale Johannesen8a782a22009-02-02 22:12:50 +00006924 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Chris Lattner79980b02006-09-13 03:50:39 +00006925
6926 HiOps[1] = HiOps[0];
6927 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006928 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Chris Lattner79980b02006-09-13 03:50:39 +00006929 break;
6930 }
6931 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006932
Chris Lattnere34b3962005-01-19 04:19:40 +00006933 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006934 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006935 break;
Chris Lattner47599822005-04-02 03:38:53 +00006936
6937 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006938 TargetLowering::LegalizeAction Action =
6939 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6940 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6941 Action == TargetLowering::Custom) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006942 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006943 ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006944 break;
6945 }
6946
Chris Lattnere34b3962005-01-19 04:19:40 +00006947 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006948 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006949 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006950 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006951
Evan Cheng05a2d562006-01-09 18:31:59 +00006952 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006953 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006954 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006955 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dale Johannesene72c5962009-02-06 21:55:48 +00006956 SDValue Op = DAG.getNode(ISD::SRA, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006957 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006958 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006959 // Now that the custom expander is done, expand the result, which is
6960 // still VT.
6961 ExpandOp(Op, Lo, Hi);
6962 break;
6963 }
6964 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006965
Chris Lattnere34b3962005-01-19 04:19:40 +00006966 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006967 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006968 break;
Chris Lattner47599822005-04-02 03:38:53 +00006969
6970 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006971 TargetLowering::LegalizeAction Action =
6972 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6973 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6974 Action == TargetLowering::Custom) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006975 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006976 ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006977 break;
6978 }
6979
Chris Lattnere34b3962005-01-19 04:19:40 +00006980 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006981 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006982 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006983 }
6984
6985 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006986 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006987 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006988 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006989 SDValue Op = DAG.getNode(ISD::SRL, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006990 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006991 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006992 // Now that the custom expander is done, expand the result, which is
6993 // still VT.
6994 ExpandOp(Op, Lo, Hi);
6995 break;
6996 }
6997 }
6998
Chris Lattnere34b3962005-01-19 04:19:40 +00006999 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007000 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00007001 break;
Chris Lattner47599822005-04-02 03:38:53 +00007002
7003 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00007004 TargetLowering::LegalizeAction Action =
7005 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
7006 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
7007 Action == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007008 ExpandShiftParts(ISD::SRL_PARTS,
7009 Node->getOperand(0), ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00007010 break;
7011 }
7012
Chris Lattnere34b3962005-01-19 04:19:40 +00007013 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00007014 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00007015 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00007016 }
Chris Lattnere34b3962005-01-19 04:19:40 +00007017
Misha Brukmanedf128a2005-04-21 22:36:52 +00007018 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00007019 case ISD::SUB: {
7020 // If the target wants to custom expand this, let them.
7021 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
7022 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00007023 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007024 if (Result.getNode()) {
Duncan Sands69bfb152008-06-22 09:42:16 +00007025 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00007026 break;
7027 }
7028 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00007029 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007030 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattner8137c9e2006-01-28 05:07:51 +00007031 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7032 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Dan Gohman475871a2008-07-27 21:46:04 +00007033 SDValue LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00007034 LoOps[0] = LHSL;
7035 LoOps[1] = RHSL;
7036 HiOps[0] = LHSH;
7037 HiOps[1] = RHSH;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00007038
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007039 //cascaded check to see if any smaller size has a a carry flag.
7040 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
7041 bool hasCarry = false;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00007042 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
7043 MVT AVT = MVT::getIntegerVT(BitSize);
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007044 if (TLI.isOperationLegalOrCustom(OpV, AVT)) {
Andrew Lenharth2163ca12008-10-07 18:27:23 +00007045 hasCarry = true;
7046 break;
7047 }
7048 }
7049
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007050 if(hasCarry) {
Evan Cheng637ed032008-12-12 18:49:09 +00007051 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007052 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007053 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007054 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007055 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007056 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007057 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007058 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007059 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007060 }
7061 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007062 } else {
Andrew Lenharth40d51392008-10-07 14:15:42 +00007063 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007064 Lo = DAG.getNode(ISD::ADD, dl, NVT, LoOps, 2);
7065 Hi = DAG.getNode(ISD::ADD, dl, NVT, HiOps, 2);
7066 SDValue Cmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007067 Lo, LoOps[0], ISD::SETULT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007068 SDValue Carry1 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp1,
Scott Michelfdc40a02009-02-17 22:15:04 +00007069 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007070 DAG.getConstant(0, NVT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00007071 SDValue Cmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007072 Lo, LoOps[1], ISD::SETULT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007073 SDValue Carry2 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp2,
Scott Michelfdc40a02009-02-17 22:15:04 +00007074 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007075 Carry1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007076 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, Carry2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007077 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007078 Lo = DAG.getNode(ISD::SUB, dl, NVT, LoOps, 2);
7079 Hi = DAG.getNode(ISD::SUB, dl, NVT, HiOps, 2);
7080 SDValue Cmp = DAG.getSetCC(dl, NVT, LoOps[0], LoOps[1], ISD::SETULT);
7081 SDValue Borrow = DAG.getNode(ISD::SELECT, dl, NVT, Cmp,
Scott Michelfdc40a02009-02-17 22:15:04 +00007082 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007083 DAG.getConstant(0, NVT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00007084 Hi = DAG.getNode(ISD::SUB, dl, NVT, Hi, Borrow);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007085 }
7086 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007087 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00007088 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007089
Chris Lattnerb429f732007-05-17 18:15:41 +00007090 case ISD::ADDC:
7091 case ISD::SUBC: {
7092 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007093 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007094 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7095 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7096 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007097 SDValue LoOps[2] = { LHSL, RHSL };
7098 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michelfdc40a02009-02-17 22:15:04 +00007099
Chris Lattnerb429f732007-05-17 18:15:41 +00007100 if (Node->getOpcode() == ISD::ADDC) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007101 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Chris Lattnerb429f732007-05-17 18:15:41 +00007102 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007103 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007104 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007105 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Chris Lattnerb429f732007-05-17 18:15:41 +00007106 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007107 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007108 }
7109 // Remember that we legalized the flag.
7110 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7111 break;
7112 }
7113 case ISD::ADDE:
7114 case ISD::SUBE: {
7115 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007116 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007117 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7118 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7119 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007120 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
7121 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michelfdc40a02009-02-17 22:15:04 +00007122
Dale Johannesen8a782a22009-02-02 22:12:50 +00007123 Lo = DAG.getNode(Node->getOpcode(), dl, VTList, LoOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007124 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007125 Hi = DAG.getNode(Node->getOpcode(), dl, VTList, HiOps, 3);
Scott Michelfdc40a02009-02-17 22:15:04 +00007126
Chris Lattnerb429f732007-05-17 18:15:41 +00007127 // Remember that we legalized the flag.
7128 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7129 break;
7130 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007131 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007132 // If the target wants to custom expand this, let them.
7133 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00007134 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007135 if (New.getNode()) {
Chris Lattner8829dc82006-09-16 05:08:34 +00007136 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007137 break;
7138 }
7139 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007140
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007141 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, NVT);
7142 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, NVT);
7143 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, NVT);
7144 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00007145 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman475871a2008-07-27 21:46:04 +00007146 SDValue LL, LH, RL, RH;
Nate Begemanc7c16572005-04-11 03:01:51 +00007147 ExpandOp(Node->getOperand(0), LL, LH);
7148 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007149 unsigned OuterBitSize = Op.getValueSizeInBits();
7150 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00007151 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
7152 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00007153 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
7154 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
7155 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00007156 // The inputs are both zero-extended.
7157 if (HasUMUL_LOHI) {
7158 // We can emit a umul_lohi.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007159 Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007160 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007161 break;
7162 }
7163 if (HasMULHU) {
7164 // We can emit a mulhu+mul.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007165 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7166 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
Dan Gohman525178c2007-10-08 18:33:35 +00007167 break;
7168 }
Dan Gohman525178c2007-10-08 18:33:35 +00007169 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007170 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00007171 // The input values are both sign-extended.
7172 if (HasSMUL_LOHI) {
7173 // We can emit a smul_lohi.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007174 Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007175 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007176 break;
7177 }
7178 if (HasMULHS) {
7179 // We can emit a mulhs+mul.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007180 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7181 Hi = DAG.getNode(ISD::MULHS, dl, NVT, LL, RL);
Dan Gohman525178c2007-10-08 18:33:35 +00007182 break;
7183 }
7184 }
7185 if (HasUMUL_LOHI) {
7186 // Lo,Hi = umul LHS, RHS.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007187 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, dl,
Dan Gohman525178c2007-10-08 18:33:35 +00007188 DAG.getVTList(NVT, NVT), LL, RL);
7189 Lo = UMulLOHI;
7190 Hi = UMulLOHI.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007191 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7192 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7193 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7194 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00007195 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00007196 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007197 if (HasMULHU) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007198 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7199 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
7200 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7201 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7202 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7203 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007204 break;
7205 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007206 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00007207
Dan Gohman525178c2007-10-08 18:33:35 +00007208 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00007209 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00007210 break;
7211 }
Evan Cheng56966222007-01-12 02:11:51 +00007212 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007213 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007214 break;
7215 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007216 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007217 break;
7218 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007219 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007220 break;
7221 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007222 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007223 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00007224
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007225 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00007226 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
7227 RTLIB::ADD_F64,
7228 RTLIB::ADD_F80,
7229 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007230 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007231 break;
7232 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00007233 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
7234 RTLIB::SUB_F64,
7235 RTLIB::SUB_F80,
7236 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007237 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007238 break;
7239 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00007240 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
7241 RTLIB::MUL_F64,
7242 RTLIB::MUL_F80,
7243 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007244 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007245 break;
7246 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007247 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
7248 RTLIB::DIV_F64,
7249 RTLIB::DIV_F80,
7250 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007251 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007252 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007253 case ISD::FP_EXTEND: {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007254 if (VT == MVT::ppcf128) {
7255 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
7256 Node->getOperand(0).getValueType()==MVT::f64);
7257 const uint64_t zero = 0;
7258 if (Node->getOperand(0).getValueType()==MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00007259 Hi = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Node->getOperand(0));
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007260 else
7261 Hi = Node->getOperand(0);
7262 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7263 break;
7264 }
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007265 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
7266 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
7267 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007268 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007269 }
7270 case ISD::FP_ROUND: {
7271 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
7272 VT);
7273 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
7274 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007275 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007276 }
Evan Cheng4b887022008-09-09 23:02:14 +00007277 case ISD::FSQRT:
7278 case ISD::FSIN:
Scott Michelfdc40a02009-02-17 22:15:04 +00007279 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007280 case ISD::FLOG:
7281 case ISD::FLOG2:
7282 case ISD::FLOG10:
7283 case ISD::FEXP:
7284 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007285 case ISD::FTRUNC:
7286 case ISD::FFLOOR:
7287 case ISD::FCEIL:
7288 case ISD::FRINT:
7289 case ISD::FNEARBYINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00007290 case ISD::FPOW:
7291 case ISD::FPOWI: {
Evan Cheng56966222007-01-12 02:11:51 +00007292 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007293 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00007294 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00007295 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
7296 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007297 break;
7298 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00007299 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
7300 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007301 break;
7302 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00007303 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
7304 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007305 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007306 case ISD::FLOG:
7307 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
7308 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
7309 break;
7310 case ISD::FLOG2:
7311 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
7312 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
7313 break;
7314 case ISD::FLOG10:
7315 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
7316 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
7317 break;
7318 case ISD::FEXP:
7319 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
7320 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
7321 break;
7322 case ISD::FEXP2:
7323 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
7324 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
7325 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007326 case ISD::FTRUNC:
7327 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
7328 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
7329 break;
7330 case ISD::FFLOOR:
7331 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
7332 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
7333 break;
7334 case ISD::FCEIL:
7335 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
7336 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
7337 break;
7338 case ISD::FRINT:
7339 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
7340 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
7341 break;
7342 case ISD::FNEARBYINT:
7343 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
7344 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
7345 break;
Evan Cheng4b887022008-09-09 23:02:14 +00007346 case ISD::FPOW:
7347 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
7348 RTLIB::POW_PPCF128);
7349 break;
7350 case ISD::FPOWI:
7351 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
7352 RTLIB::POWI_PPCF128);
7353 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007354 default: assert(0 && "Unreachable!");
7355 }
Duncan Sands460a14e2008-04-12 17:14:18 +00007356 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00007357 break;
7358 }
Evan Cheng966bf242006-12-16 00:52:40 +00007359 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007360 if (VT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00007361 SDValue Tmp;
Dale Johannesenf6467742007-10-12 19:02:17 +00007362 ExpandOp(Node->getOperand(0), Lo, Tmp);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007363 Hi = DAG.getNode(ISD::FABS, dl, NVT, Tmp);
Dale Johannesenf6467742007-10-12 19:02:17 +00007364 // lo = hi==fabs(hi) ? lo : -lo;
Dale Johannesen8a782a22009-02-02 22:12:50 +00007365 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Hi, Tmp,
7366 Lo, DAG.getNode(ISD::FNEG, dl, NVT, Lo),
Dale Johannesenf6467742007-10-12 19:02:17 +00007367 DAG.getCondCode(ISD::SETEQ));
7368 break;
7369 }
Dan Gohman475871a2008-07-27 21:46:04 +00007370 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007371 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
7372 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007373 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7374 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7375 Lo = DAG.getNode(ISD::AND, dl, NVT, Lo, Mask);
Evan Cheng966bf242006-12-16 00:52:40 +00007376 if (getTypeAction(NVT) == Expand)
7377 ExpandOp(Lo, Lo, Hi);
7378 break;
7379 }
7380 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007381 if (VT == MVT::ppcf128) {
7382 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007383 Lo = DAG.getNode(ISD::FNEG, dl, MVT::f64, Lo);
7384 Hi = DAG.getNode(ISD::FNEG, dl, MVT::f64, Hi);
Dale Johannesenf6467742007-10-12 19:02:17 +00007385 break;
7386 }
Dan Gohman475871a2008-07-27 21:46:04 +00007387 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007388 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
7389 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007390 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7391 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7392 Lo = DAG.getNode(ISD::XOR, dl, NVT, Lo, Mask);
Evan Cheng966bf242006-12-16 00:52:40 +00007393 if (getTypeAction(NVT) == Expand)
7394 ExpandOp(Lo, Lo, Hi);
7395 break;
7396 }
Evan Cheng912095b2007-01-04 21:56:39 +00007397 case ISD::FCOPYSIGN: {
7398 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
7399 if (getTypeAction(NVT) == Expand)
7400 ExpandOp(Lo, Lo, Hi);
7401 break;
7402 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007403 case ISD::SINT_TO_FP:
7404 case ISD::UINT_TO_FP: {
7405 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007406 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00007407
7408 // Promote the operand if needed. Do this before checking for
7409 // ppcf128 so conversions of i16 and i8 work.
7410 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman475871a2008-07-27 21:46:04 +00007411 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesencf498192008-03-18 17:28:38 +00007412 Tmp = isSigned
Dale Johannesen8a782a22009-02-02 22:12:50 +00007413 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp.getValueType(), Tmp,
Dale Johannesencf498192008-03-18 17:28:38 +00007414 DAG.getValueType(SrcVT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00007415 : DAG.getZeroExtendInReg(Tmp, dl, SrcVT);
Gabor Greifba36cb52008-08-28 21:40:38 +00007416 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesencf498192008-03-18 17:28:38 +00007417 SrcVT = Node->getOperand(0).getValueType();
7418 }
7419
Dan Gohmana2e94852008-03-10 23:03:31 +00007420 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007421 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007422 if (isSigned) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007423 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007424 Node->getOperand(0)));
7425 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7426 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007427 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Scott Michelfdc40a02009-02-17 22:15:04 +00007428 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007429 Node->getOperand(0)));
7430 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007431 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007432 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen8a782a22009-02-02 22:12:50 +00007433 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl,
7434 MVT::ppcf128, Node->getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00007435 DAG.getConstant(0, MVT::i32),
Dale Johannesen8a782a22009-02-02 22:12:50 +00007436 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007437 DAG.getConstantFP(
7438 APFloat(APInt(128, 2, TwoE32)),
7439 MVT::ppcf128)),
7440 Hi,
7441 DAG.getCondCode(ISD::SETLT)),
7442 Lo, Hi);
7443 }
7444 break;
7445 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00007446 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
7447 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007448 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen8a782a22009-02-02 22:12:50 +00007449 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::ppcf128,
7450 Node->getOperand(0)), Lo, Hi);
7451 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007452 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
Dale Johannesen8a782a22009-02-02 22:12:50 +00007453 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl, MVT::ppcf128,
7454 Node->getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00007455 DAG.getConstant(0, MVT::i64),
Dale Johannesen8a782a22009-02-02 22:12:50 +00007456 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Dale Johannesen6e63e092007-10-12 17:52:03 +00007457 DAG.getConstantFP(
7458 APFloat(APInt(128, 2, TwoE64)),
7459 MVT::ppcf128)),
7460 Hi,
7461 DAG.getCondCode(ISD::SETLT)),
7462 Lo, Hi);
7463 break;
7464 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007465
Dan Gohmana2e94852008-03-10 23:03:31 +00007466 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00007467 Node->getOperand(0), dl);
Evan Cheng110cf482008-04-01 01:50:16 +00007468 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00007469 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00007470 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00007471 break;
7472 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00007473 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00007474
Chris Lattner83397362005-12-21 18:02:52 +00007475 // Make sure the resultant values have been legalized themselves, unless this
7476 // is a type that requires multi-step expansion.
7477 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
7478 Lo = LegalizeOp(Lo);
Gabor Greifba36cb52008-08-28 21:40:38 +00007479 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00007480 // Don't legalize the high part if it is expanded to a single node.
7481 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00007482 }
Evan Cheng05a2d562006-01-09 18:31:59 +00007483
7484 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00007485 bool isNew =
7486 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00007487 assert(isNew && "Value already expanded?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007488 isNew = isNew;
Chris Lattner3e928bb2005-01-07 07:47:09 +00007489}
7490
Dan Gohman7f321562007-06-25 16:23:39 +00007491/// SplitVectorOp - Given an operand of vector type, break it down into
7492/// two smaller values, still of vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00007493void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
7494 SDValue &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007495 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007496 SDNode *Node = Op.getNode();
Dale Johannesenbb5da912009-02-02 20:41:04 +00007497 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007498 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00007499 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00007500
Duncan Sands83ec4b62008-06-06 12:08:01 +00007501 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00007502
7503 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
7504 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
7505
Duncan Sands83ec4b62008-06-06 12:08:01 +00007506 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
7507 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007508
Chris Lattnerc7029802006-03-18 01:44:44 +00007509 // See if we already split it.
Dan Gohman475871a2008-07-27 21:46:04 +00007510 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattnerc7029802006-03-18 01:44:44 +00007511 = SplitNodes.find(Op);
7512 if (I != SplitNodes.end()) {
7513 Lo = I->second.first;
7514 Hi = I->second.second;
7515 return;
7516 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007517
Chris Lattnerc7029802006-03-18 01:44:44 +00007518 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007519 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007520#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007521 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007522#endif
7523 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007524 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00007525 Lo = DAG.getUNDEF(NewVT_Lo);
7526 Hi = DAG.getUNDEF(NewVT_Hi);
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007527 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007528 case ISD::BUILD_PAIR:
7529 Lo = Node->getOperand(0);
7530 Hi = Node->getOperand(1);
7531 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00007532 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00007533 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
7534 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007535 unsigned Index = Idx->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007536 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman68679912008-04-25 18:07:40 +00007537 if (Index < NewNumElts_Lo)
Dale Johannesenc6be1102009-02-02 22:49:46 +00007538 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Lo, Lo, ScalarOp,
Nate Begeman68679912008-04-25 18:07:40 +00007539 DAG.getIntPtrConstant(Index));
7540 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00007541 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Hi, Hi, ScalarOp,
Nate Begeman68679912008-04-25 18:07:40 +00007542 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
7543 break;
7544 }
Dan Gohman475871a2008-07-27 21:46:04 +00007545 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Nate Begeman68679912008-04-25 18:07:40 +00007546 Node->getOperand(1),
Dale Johannesenbb5da912009-02-02 20:41:04 +00007547 Node->getOperand(2), dl);
Nate Begeman68679912008-04-25 18:07:40 +00007548 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00007549 break;
7550 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00007551 case ISD::VECTOR_SHUFFLE: {
7552 // Build the low part.
Dan Gohman475871a2008-07-27 21:46:04 +00007553 SDValue Mask = Node->getOperand(2);
7554 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007555 MVT PtrVT = TLI.getPointerTy();
Scott Michelfdc40a02009-02-17 22:15:04 +00007556
7557 // Insert all of the elements from the input that are needed. We use
Chris Lattner6c9c6802007-11-19 21:16:54 +00007558 // buildvector of extractelement here because the input vectors will have
7559 // to be legalized, so this makes the code simpler.
7560 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007561 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007562 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007563 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman5922f562008-03-14 00:53:31 +00007564 continue;
7565 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007566 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007567 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007568 if (Idx >= NumElements) {
7569 InVec = Node->getOperand(1);
7570 Idx -= NumElements;
7571 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00007572 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner6c9c6802007-11-19 21:16:54 +00007573 DAG.getConstant(Idx, PtrVT)));
7574 }
Evan Chenga87008d2009-02-25 22:49:59 +00007575 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007576 Ops.clear();
Scott Michelfdc40a02009-02-17 22:15:04 +00007577
Chris Lattner6c9c6802007-11-19 21:16:54 +00007578 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007579 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007580 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007581 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman5922f562008-03-14 00:53:31 +00007582 continue;
7583 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007584 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007585 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007586 if (Idx >= NumElements) {
7587 InVec = Node->getOperand(1);
7588 Idx -= NumElements;
7589 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00007590 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner6c9c6802007-11-19 21:16:54 +00007591 DAG.getConstant(Idx, PtrVT)));
7592 }
Evan Chenga87008d2009-02-25 22:49:59 +00007593 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007594 break;
7595 }
Dan Gohman7f321562007-06-25 16:23:39 +00007596 case ISD::BUILD_VECTOR: {
Scott Michelfdc40a02009-02-17 22:15:04 +00007597 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00007598 Node->op_begin()+NewNumElts_Lo);
Evan Chenga87008d2009-02-25 22:49:59 +00007599 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007600
Scott Michelfdc40a02009-02-17 22:15:04 +00007601 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00007602 Node->op_end());
Evan Chenga87008d2009-02-25 22:49:59 +00007603 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007604 break;
7605 }
Dan Gohman7f321562007-06-25 16:23:39 +00007606 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00007607 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00007608 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7609 if (NewNumSubvectors == 1) {
7610 Lo = Node->getOperand(0);
7611 Hi = Node->getOperand(1);
7612 } else {
Mon P Wangaeb06d22008-11-10 04:46:22 +00007613 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
7614 Node->op_begin()+NewNumSubvectors);
Scott Michelfdc40a02009-02-17 22:15:04 +00007615 Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Lo,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007616 &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00007617
Mon P Wangaeb06d22008-11-10 04:46:22 +00007618 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Dan Gohman7f321562007-06-25 16:23:39 +00007619 Node->op_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00007620 Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Hi,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007621 &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00007622 }
Dan Gohman65956352007-06-13 15:12:02 +00007623 break;
7624 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00007625 case ISD::EXTRACT_SUBVECTOR: {
7626 SDValue Vec = Op.getOperand(0);
7627 SDValue Idx = Op.getOperand(1);
7628 MVT IdxVT = Idx.getValueType();
7629
Dale Johannesenc6be1102009-02-02 22:49:46 +00007630 Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Lo, Vec, Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007631 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
7632 if (CIdx) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007633 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec,
Mon P Wangaeb06d22008-11-10 04:46:22 +00007634 DAG.getConstant(CIdx->getZExtValue() + NewNumElts_Lo,
7635 IdxVT));
7636 } else {
Dale Johannesenc6be1102009-02-02 22:49:46 +00007637 Idx = DAG.getNode(ISD::ADD, dl, IdxVT, Idx,
Mon P Wangaeb06d22008-11-10 04:46:22 +00007638 DAG.getConstant(NewNumElts_Lo, IdxVT));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007639 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec, Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007640 }
7641 break;
7642 }
Dan Gohmanc6230962007-10-17 14:48:28 +00007643 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007644 SDValue Cond = Node->getOperand(0);
Dan Gohmanc6230962007-10-17 14:48:28 +00007645
Dan Gohman475871a2008-07-27 21:46:04 +00007646 SDValue LL, LH, RL, RH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007647 SplitVectorOp(Node->getOperand(1), LL, LH);
7648 SplitVectorOp(Node->getOperand(2), RL, RH);
7649
Duncan Sands83ec4b62008-06-06 12:08:01 +00007650 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00007651 // Handle a vector merge.
Dan Gohman475871a2008-07-27 21:46:04 +00007652 SDValue CL, CH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007653 SplitVectorOp(Cond, CL, CH);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007654 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, CL, LL, RL);
7655 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007656 } else {
7657 // Handle a simple select with vector operands.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007658 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, Cond, LL, RL);
7659 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007660 }
7661 break;
7662 }
Chris Lattner80c1a562008-06-30 02:43:01 +00007663 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007664 SDValue CondLHS = Node->getOperand(0);
7665 SDValue CondRHS = Node->getOperand(1);
7666 SDValue CondCode = Node->getOperand(4);
Scott Michelfdc40a02009-02-17 22:15:04 +00007667
Dan Gohman475871a2008-07-27 21:46:04 +00007668 SDValue LL, LH, RL, RH;
Chris Lattner80c1a562008-06-30 02:43:01 +00007669 SplitVectorOp(Node->getOperand(2), LL, LH);
7670 SplitVectorOp(Node->getOperand(3), RL, RH);
Scott Michelfdc40a02009-02-17 22:15:04 +00007671
Chris Lattner80c1a562008-06-30 02:43:01 +00007672 // Handle a simple select with vector operands.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007673 Lo = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Lo, CondLHS, CondRHS,
Chris Lattner80c1a562008-06-30 02:43:01 +00007674 LL, RL, CondCode);
Scott Michelfdc40a02009-02-17 22:15:04 +00007675 Hi = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Hi, CondLHS, CondRHS,
Chris Lattner80c1a562008-06-30 02:43:01 +00007676 LH, RH, CondCode);
7677 break;
7678 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00007679 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007680 SDValue LL, LH, RL, RH;
Nate Begemanb43e9c12008-05-12 19:40:03 +00007681 SplitVectorOp(Node->getOperand(0), LL, LH);
7682 SplitVectorOp(Node->getOperand(1), RL, RH);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007683 Lo = DAG.getNode(ISD::VSETCC, dl, NewVT_Lo, LL, RL, Node->getOperand(2));
7684 Hi = DAG.getNode(ISD::VSETCC, dl, NewVT_Hi, LH, RH, Node->getOperand(2));
Nate Begemanb43e9c12008-05-12 19:40:03 +00007685 break;
7686 }
Dan Gohman7f321562007-06-25 16:23:39 +00007687 case ISD::ADD:
7688 case ISD::SUB:
7689 case ISD::MUL:
7690 case ISD::FADD:
7691 case ISD::FSUB:
7692 case ISD::FMUL:
7693 case ISD::SDIV:
7694 case ISD::UDIV:
7695 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00007696 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007697 case ISD::AND:
7698 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00007699 case ISD::XOR:
7700 case ISD::UREM:
7701 case ISD::SREM:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00007702 case ISD::FREM:
7703 case ISD::SHL:
7704 case ISD::SRA:
7705 case ISD::SRL: {
Dan Gohman475871a2008-07-27 21:46:04 +00007706 SDValue LL, LH, RL, RH;
Chris Lattnerc7029802006-03-18 01:44:44 +00007707 SplitVectorOp(Node->getOperand(0), LL, LH);
7708 SplitVectorOp(Node->getOperand(1), RL, RH);
Scott Michelfdc40a02009-02-17 22:15:04 +00007709
Dale Johannesenc6be1102009-02-02 22:49:46 +00007710 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, LL, RL);
7711 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00007712 break;
7713 }
Dan Gohman7f8613e2008-08-14 20:04:46 +00007714 case ISD::FP_ROUND:
Dan Gohman82669522007-10-11 23:57:53 +00007715 case ISD::FPOWI: {
Dan Gohman475871a2008-07-27 21:46:04 +00007716 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007717 SplitVectorOp(Node->getOperand(0), L, H);
7718
Dale Johannesenc6be1102009-02-02 22:49:46 +00007719 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L, Node->getOperand(1));
7720 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00007721 break;
7722 }
7723 case ISD::CTTZ:
7724 case ISD::CTLZ:
7725 case ISD::CTPOP:
7726 case ISD::FNEG:
7727 case ISD::FABS:
7728 case ISD::FSQRT:
7729 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00007730 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007731 case ISD::FLOG:
7732 case ISD::FLOG2:
7733 case ISD::FLOG10:
7734 case ISD::FEXP:
7735 case ISD::FEXP2:
Nate Begemanb348d182007-11-17 03:58:34 +00007736 case ISD::FP_TO_SINT:
7737 case ISD::FP_TO_UINT:
7738 case ISD::SINT_TO_FP:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007739 case ISD::UINT_TO_FP:
7740 case ISD::TRUNCATE:
7741 case ISD::ANY_EXTEND:
7742 case ISD::SIGN_EXTEND:
7743 case ISD::ZERO_EXTEND:
7744 case ISD::FP_EXTEND: {
Dan Gohman475871a2008-07-27 21:46:04 +00007745 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007746 SplitVectorOp(Node->getOperand(0), L, H);
7747
Dale Johannesenc6be1102009-02-02 22:49:46 +00007748 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L);
7749 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00007750 break;
7751 }
Mon P Wang77cdf302008-11-10 20:54:11 +00007752 case ISD::CONVERT_RNDSAT: {
7753 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
7754 SDValue L, H;
7755 SplitVectorOp(Node->getOperand(0), L, H);
7756 SDValue DTyOpL = DAG.getValueType(NewVT_Lo);
7757 SDValue DTyOpH = DAG.getValueType(NewVT_Hi);
7758 SDValue STyOpL = DAG.getValueType(L.getValueType());
7759 SDValue STyOpH = DAG.getValueType(H.getValueType());
7760
7761 SDValue RndOp = Node->getOperand(3);
7762 SDValue SatOp = Node->getOperand(4);
7763
Dale Johannesenc460ae92009-02-04 00:13:36 +00007764 Lo = DAG.getConvertRndSat(NewVT_Lo, dl, L, DTyOpL, STyOpL,
Mon P Wang77cdf302008-11-10 20:54:11 +00007765 RndOp, SatOp, CvtCode);
Dale Johannesenc460ae92009-02-04 00:13:36 +00007766 Hi = DAG.getConvertRndSat(NewVT_Hi, dl, H, DTyOpH, STyOpH,
Mon P Wang77cdf302008-11-10 20:54:11 +00007767 RndOp, SatOp, CvtCode);
7768 break;
7769 }
Dan Gohman7f321562007-06-25 16:23:39 +00007770 case ISD::LOAD: {
7771 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007772 SDValue Ch = LD->getChain();
7773 SDValue Ptr = LD->getBasePtr();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007774 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007775 const Value *SV = LD->getSrcValue();
7776 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007777 MVT MemoryVT = LD->getMemoryVT();
Dan Gohman7f321562007-06-25 16:23:39 +00007778 unsigned Alignment = LD->getAlignment();
7779 bool isVolatile = LD->isVolatile();
7780
Dan Gohman7f8613e2008-08-14 20:04:46 +00007781 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesene8d72302009-02-06 23:05:02 +00007782 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Dan Gohman7f8613e2008-08-14 20:04:46 +00007783
7784 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7785 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7786 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7787
Dale Johannesenc6be1102009-02-02 22:49:46 +00007788 Lo = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007789 NewVT_Lo, Ch, Ptr, Offset,
7790 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7791 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Dale Johannesenc6be1102009-02-02 22:49:46 +00007792 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00007793 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00007794 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00007795 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007796 Hi = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007797 NewVT_Hi, Ch, Ptr, Offset,
7798 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00007799
Chris Lattnerc7029802006-03-18 01:44:44 +00007800 // Build a factor node to remember that this load is independent of the
7801 // other one.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007802 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Chris Lattnerc7029802006-03-18 01:44:44 +00007803 Hi.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00007804
Chris Lattnerc7029802006-03-18 01:44:44 +00007805 // Remember that we legalized the chain.
7806 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00007807 break;
7808 }
Dan Gohman7f321562007-06-25 16:23:39 +00007809 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00007810 // We know the result is a vector. The input may be either a vector or a
7811 // scalar value.
Dan Gohman475871a2008-07-27 21:46:04 +00007812 SDValue InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007813 if (!InOp.getValueType().isVector() ||
7814 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00007815 // The input is a scalar or single-element vector.
7816 // Lower to a store/load so that it can be split.
7817 // FIXME: this could be improved probably.
Mon P Wang2920d2b2008-07-15 05:28:34 +00007818 unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment(
7819 Op.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00007820 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greifba36cb52008-08-28 21:40:38 +00007821 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Chris Lattner7692eb42006-03-23 21:16:34 +00007822
Dale Johannesenc6be1102009-02-02 22:49:46 +00007823 SDValue St = DAG.getStore(DAG.getEntryNode(), dl,
Dan Gohman69de1932008-02-06 22:27:42 +00007824 InOp, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007825 PseudoSourceValue::getFixedStack(FI), 0);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007826 InOp = DAG.getLoad(Op.getValueType(), dl, St, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007827 PseudoSourceValue::getFixedStack(FI), 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00007828 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007829 // Split the vector and convert each of the pieces now.
7830 SplitVectorOp(InOp, Lo, Hi);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007831 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Lo, Lo);
7832 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007833 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007834 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007835 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007836
Chris Lattnerc7029802006-03-18 01:44:44 +00007837 // Remember in a map if the values will be reused later.
Scott Michelfdc40a02009-02-17 22:15:04 +00007838 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007839 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007840 assert(isNew && "Value already split?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007841 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00007842}
7843
7844
Dan Gohman89b20c02007-06-27 14:06:22 +00007845/// ScalarizeVectorOp - Given an operand of single-element vector type
7846/// (e.g. v1f32), convert it into the equivalent operation that returns a
7847/// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +00007848SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007849 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007850 SDNode *Node = Op.getNode();
Dale Johannesenc6be1102009-02-02 22:49:46 +00007851 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007852 MVT NewVT = Op.getValueType().getVectorElementType();
7853 assert(Op.getValueType().getVectorNumElements() == 1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007854
Dan Gohman7f321562007-06-25 16:23:39 +00007855 // See if we already scalarized it.
Dan Gohman475871a2008-07-27 21:46:04 +00007856 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohman7f321562007-06-25 16:23:39 +00007857 if (I != ScalarizedNodes.end()) return I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00007858
Dan Gohman475871a2008-07-27 21:46:04 +00007859 SDValue Result;
Chris Lattnerc7029802006-03-18 01:44:44 +00007860 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007861 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007862#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007863 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007864#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007865 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7866 case ISD::ADD:
7867 case ISD::FADD:
7868 case ISD::SUB:
7869 case ISD::FSUB:
7870 case ISD::MUL:
7871 case ISD::FMUL:
7872 case ISD::SDIV:
7873 case ISD::UDIV:
7874 case ISD::FDIV:
7875 case ISD::SREM:
7876 case ISD::UREM:
7877 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007878 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007879 case ISD::AND:
7880 case ISD::OR:
7881 case ISD::XOR:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007882 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007883 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007884 ScalarizeVectorOp(Node->getOperand(0)),
7885 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007886 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007887 case ISD::FNEG:
7888 case ISD::FABS:
7889 case ISD::FSQRT:
7890 case ISD::FSIN:
7891 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007892 case ISD::FLOG:
7893 case ISD::FLOG2:
7894 case ISD::FLOG10:
7895 case ISD::FEXP:
7896 case ISD::FEXP2:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007897 case ISD::FP_TO_SINT:
7898 case ISD::FP_TO_UINT:
7899 case ISD::SINT_TO_FP:
7900 case ISD::UINT_TO_FP:
7901 case ISD::SIGN_EXTEND:
7902 case ISD::ZERO_EXTEND:
7903 case ISD::ANY_EXTEND:
7904 case ISD::TRUNCATE:
7905 case ISD::FP_EXTEND:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007906 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007907 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007908 ScalarizeVectorOp(Node->getOperand(0)));
7909 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00007910 case ISD::CONVERT_RNDSAT: {
7911 SDValue Op0 = ScalarizeVectorOp(Node->getOperand(0));
Dale Johannesenc460ae92009-02-04 00:13:36 +00007912 Result = DAG.getConvertRndSat(NewVT, dl, Op0,
Mon P Wang77cdf302008-11-10 20:54:11 +00007913 DAG.getValueType(NewVT),
7914 DAG.getValueType(Op0.getValueType()),
7915 Node->getOperand(3),
7916 Node->getOperand(4),
7917 cast<CvtRndSatSDNode>(Node)->getCvtCode());
7918 break;
7919 }
Dan Gohman9e04c822007-10-12 14:13:46 +00007920 case ISD::FPOWI:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007921 case ISD::FP_ROUND:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007922 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007923 NewVT,
Dan Gohman9e04c822007-10-12 14:13:46 +00007924 ScalarizeVectorOp(Node->getOperand(0)),
7925 Node->getOperand(1));
7926 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007927 case ISD::LOAD: {
7928 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007929 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7930 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman7f8613e2008-08-14 20:04:46 +00007931 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007932 const Value *SV = LD->getSrcValue();
7933 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007934 MVT MemoryVT = LD->getMemoryVT();
7935 unsigned Alignment = LD->getAlignment();
7936 bool isVolatile = LD->isVolatile();
7937
7938 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesene8d72302009-02-06 23:05:02 +00007939 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Scott Michelfdc40a02009-02-17 22:15:04 +00007940
Dale Johannesenc6be1102009-02-02 22:49:46 +00007941 Result = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007942 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7943 MemoryVT.getVectorElementType(),
7944 isVolatile, Alignment);
Dan Gohman7f321562007-06-25 16:23:39 +00007945
Chris Lattnerc7029802006-03-18 01:44:44 +00007946 // Remember that we legalized the chain.
7947 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7948 break;
7949 }
Dan Gohman7f321562007-06-25 16:23:39 +00007950 case ISD::BUILD_VECTOR:
7951 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007952 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007953 case ISD::INSERT_VECTOR_ELT:
7954 // Returning the inserted scalar element.
7955 Result = Node->getOperand(1);
7956 break;
7957 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007958 assert(Node->getOperand(0).getValueType() == NewVT &&
7959 "Concat of non-legal vectors not yet supported!");
7960 Result = Node->getOperand(0);
7961 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007962 case ISD::VECTOR_SHUFFLE: {
7963 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman475871a2008-07-27 21:46:04 +00007964 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007965 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohman7f321562007-06-25 16:23:39 +00007966 Result = ScalarizeVectorOp(Node->getOperand(1));
7967 else
7968 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007969 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007970 }
7971 case ISD::EXTRACT_SUBVECTOR:
Scott Michelfdc40a02009-02-17 22:15:04 +00007972 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007973 Node->getOperand(0), Node->getOperand(1));
Dan Gohman65956352007-06-13 15:12:02 +00007974 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007975 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007976 SDValue Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007977 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007978 Op0 = ScalarizeVectorOp(Op0);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007979 Result = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007980 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007981 }
Dan Gohman7f321562007-06-25 16:23:39 +00007982 case ISD::SELECT:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007983 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007984 ScalarizeVectorOp(Op.getOperand(1)),
7985 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007986 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007987 case ISD::SELECT_CC:
Scott Michelfdc40a02009-02-17 22:15:04 +00007988 Result = DAG.getNode(ISD::SELECT_CC, dl, NewVT, Node->getOperand(0),
Chris Lattner80c1a562008-06-30 02:43:01 +00007989 Node->getOperand(1),
7990 ScalarizeVectorOp(Op.getOperand(2)),
7991 ScalarizeVectorOp(Op.getOperand(3)),
7992 Node->getOperand(4));
7993 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007994 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007995 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7996 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007997 Result = DAG.getNode(ISD::SETCC, dl,
7998 TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00007999 Op0, Op1, Op.getOperand(2));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008000 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Result,
Nate Begeman0d1704b2008-05-12 23:09:43 +00008001 DAG.getConstant(-1ULL, NewVT),
8002 DAG.getConstant(0ULL, NewVT));
8003 break;
8004 }
Chris Lattnerc7029802006-03-18 01:44:44 +00008005 }
8006
8007 if (TLI.isTypeLegal(NewVT))
8008 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00008009 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
8010 assert(isNew && "Value already scalarized?");
Evan Cheng24ac4082008-11-24 07:09:49 +00008011 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00008012 return Result;
8013}
8014
Chris Lattner3e928bb2005-01-07 07:47:09 +00008015
Mon P Wang0c397192008-10-30 08:01:45 +00008016SDValue SelectionDAGLegalize::WidenVectorOp(SDValue Op, MVT WidenVT) {
8017 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(Op);
8018 if (I != WidenNodes.end()) return I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00008019
Mon P Wang0c397192008-10-30 08:01:45 +00008020 MVT VT = Op.getValueType();
8021 assert(VT.isVector() && "Cannot widen non-vector type!");
8022
8023 SDValue Result;
8024 SDNode *Node = Op.getNode();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008025 DebugLoc dl = Node->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008026 MVT EVT = VT.getVectorElementType();
8027
8028 unsigned NumElts = VT.getVectorNumElements();
8029 unsigned NewNumElts = WidenVT.getVectorNumElements();
8030 assert(NewNumElts > NumElts && "Cannot widen to smaller type!");
8031 assert(NewNumElts < 17);
8032
8033 // When widen is called, it is assumed that it is more efficient to use a
8034 // wide type. The default action is to widen to operation to a wider legal
8035 // vector type and then do the operation if it is legal by calling LegalizeOp
8036 // again. If there is no vector equivalent, we will unroll the operation, do
8037 // it, and rebuild the vector. If most of the operations are vectorizible to
8038 // the legal type, the resulting code will be more efficient. If this is not
8039 // the case, the resulting code will preform badly as we end up generating
8040 // code to pack/unpack the results. It is the function that calls widen
Mon P Wangf007a8b2008-11-06 05:31:54 +00008041 // that is responsible for seeing this doesn't happen.
Mon P Wang0c397192008-10-30 08:01:45 +00008042 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008043 default:
Mon P Wang0c397192008-10-30 08:01:45 +00008044#ifndef NDEBUG
8045 Node->dump(&DAG);
8046#endif
8047 assert(0 && "Unexpected operation in WidenVectorOp!");
8048 break;
8049 case ISD::CopyFromReg:
Mon P Wang49292f12008-11-15 06:05:52 +00008050 assert(0 && "CopyFromReg doesn't need widening!");
Mon P Wang0c397192008-10-30 08:01:45 +00008051 case ISD::Constant:
8052 case ISD::ConstantFP:
8053 // To build a vector of these elements, clients should call BuildVector
8054 // and with each element instead of creating a node with a vector type
8055 assert(0 && "Unexpected operation in WidenVectorOp!");
8056 case ISD::VAARG:
8057 // Variable Arguments with vector types doesn't make any sense to me
8058 assert(0 && "Unexpected operation in WidenVectorOp!");
8059 break;
Mon P Wang49292f12008-11-15 06:05:52 +00008060 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00008061 Result = DAG.getUNDEF(WidenVT);
Mon P Wang49292f12008-11-15 06:05:52 +00008062 break;
Mon P Wang0c397192008-10-30 08:01:45 +00008063 case ISD::BUILD_VECTOR: {
8064 // Build a vector with undefined for the new nodes
8065 SDValueVector NewOps(Node->op_begin(), Node->op_end());
8066 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesene8d72302009-02-06 23:05:02 +00008067 NewOps.push_back(DAG.getUNDEF(EVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008068 }
Evan Chenga87008d2009-02-25 22:49:59 +00008069 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT,
8070 &NewOps[0], NewOps.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008071 break;
8072 }
8073 case ISD::INSERT_VECTOR_ELT: {
8074 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008075 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, WidenVT, Tmp1,
Mon P Wang0c397192008-10-30 08:01:45 +00008076 Node->getOperand(1), Node->getOperand(2));
8077 break;
8078 }
8079 case ISD::VECTOR_SHUFFLE: {
8080 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8081 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8082 // VECTOR_SHUFFLE 3rd operand must be a constant build vector that is
8083 // used as permutation array. We build the vector here instead of widening
8084 // because we don't want to legalize and have it turned to something else.
8085 SDValue PermOp = Node->getOperand(2);
8086 SDValueVector NewOps;
8087 MVT PVT = PermOp.getValueType().getVectorElementType();
8088 for (unsigned i = 0; i < NumElts; ++i) {
8089 if (PermOp.getOperand(i).getOpcode() == ISD::UNDEF) {
8090 NewOps.push_back(PermOp.getOperand(i));
8091 } else {
8092 unsigned Idx =
Mon P Wange1a0b2e2008-12-13 08:15:14 +00008093 cast<ConstantSDNode>(PermOp.getOperand(i))->getZExtValue();
Mon P Wang0c397192008-10-30 08:01:45 +00008094 if (Idx < NumElts) {
8095 NewOps.push_back(PermOp.getOperand(i));
8096 }
8097 else {
8098 NewOps.push_back(DAG.getConstant(Idx + NewNumElts - NumElts,
8099 PermOp.getOperand(i).getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00008100 }
Mon P Wang0c397192008-10-30 08:01:45 +00008101 }
8102 }
8103 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesene8d72302009-02-06 23:05:02 +00008104 NewOps.push_back(DAG.getUNDEF(PVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008105 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008106
Evan Chenga87008d2009-02-25 22:49:59 +00008107 SDValue Tmp3 = DAG.getNode(ISD::BUILD_VECTOR, dl,
8108 MVT::getVectorVT(PVT, NewOps.size()),
8109 &NewOps[0], NewOps.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00008110
Dale Johannesenc6be1102009-02-02 22:49:46 +00008111 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, dl, WidenVT, Tmp1, Tmp2, Tmp3);
Mon P Wang0c397192008-10-30 08:01:45 +00008112 break;
8113 }
8114 case ISD::LOAD: {
8115 // If the load widen returns true, we can use a single load for the
8116 // vector. Otherwise, it is returning a token factor for multiple
8117 // loads.
8118 SDValue TFOp;
8119 if (LoadWidenVectorOp(Result, TFOp, Op, WidenVT))
8120 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(1)));
8121 else
8122 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(0)));
8123 break;
8124 }
8125
8126 case ISD::BIT_CONVERT: {
8127 SDValue Tmp1 = Node->getOperand(0);
8128 // Converts between two different types so we need to determine
8129 // the correct widen type for the input operand.
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008130 MVT InVT = Tmp1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008131 unsigned WidenSize = WidenVT.getSizeInBits();
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008132 if (InVT.isVector()) {
8133 MVT InEltVT = InVT.getVectorElementType();
8134 unsigned InEltSize = InEltVT.getSizeInBits();
8135 assert(WidenSize % InEltSize == 0 &&
8136 "can not widen bit convert that are not multiple of element type");
8137 MVT NewInWidenVT = MVT::getVectorVT(InEltVT, WidenSize / InEltSize);
8138 Tmp1 = WidenVectorOp(Tmp1, NewInWidenVT);
8139 assert(Tmp1.getValueType().getSizeInBits() == WidenVT.getSizeInBits());
Dale Johannesenc6be1102009-02-02 22:49:46 +00008140 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Tmp1);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008141 } else {
8142 // If the result size is a multiple of the input size, widen the input
8143 // and then convert.
8144 unsigned InSize = InVT.getSizeInBits();
8145 assert(WidenSize % InSize == 0 &&
8146 "can not widen bit convert that are not multiple of element type");
8147 unsigned NewNumElts = WidenSize / InSize;
8148 SmallVector<SDValue, 16> Ops(NewNumElts);
Dale Johannesene8d72302009-02-06 23:05:02 +00008149 SDValue UndefVal = DAG.getUNDEF(InVT);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008150 Ops[0] = Tmp1;
8151 for (unsigned i = 1; i < NewNumElts; ++i)
8152 Ops[i] = UndefVal;
Mon P Wang0c397192008-10-30 08:01:45 +00008153
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008154 MVT NewInVT = MVT::getVectorVT(InVT, NewNumElts);
Evan Chenga87008d2009-02-25 22:49:59 +00008155 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, NewInVT, &Ops[0], NewNumElts);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008156 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008157 }
8158 break;
8159 }
8160
8161 case ISD::SINT_TO_FP:
8162 case ISD::UINT_TO_FP:
8163 case ISD::FP_TO_SINT:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008164 case ISD::FP_TO_UINT:
8165 case ISD::FP_ROUND: {
Mon P Wang0c397192008-10-30 08:01:45 +00008166 SDValue Tmp1 = Node->getOperand(0);
8167 // Converts between two different types so we need to determine
8168 // the correct widen type for the input operand.
8169 MVT TVT = Tmp1.getValueType();
8170 assert(TVT.isVector() && "can not widen non vector type");
8171 MVT TEVT = TVT.getVectorElementType();
8172 MVT TWidenVT = MVT::getVectorVT(TEVT, NewNumElts);
8173 Tmp1 = WidenVectorOp(Tmp1, TWidenVT);
8174 assert(Tmp1.getValueType().getVectorNumElements() == NewNumElts);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008175 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008176 break;
8177 }
8178
8179 case ISD::FP_EXTEND:
8180 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
8181 case ISD::TRUNCATE:
8182 case ISD::SIGN_EXTEND:
8183 case ISD::ZERO_EXTEND:
8184 case ISD::ANY_EXTEND:
Mon P Wang0c397192008-10-30 08:01:45 +00008185 case ISD::SIGN_EXTEND_INREG:
8186 case ISD::FABS:
8187 case ISD::FNEG:
8188 case ISD::FSQRT:
8189 case ISD::FSIN:
Mon P Wang49292f12008-11-15 06:05:52 +00008190 case ISD::FCOS:
8191 case ISD::CTPOP:
8192 case ISD::CTTZ:
8193 case ISD::CTLZ: {
Mon P Wang0c397192008-10-30 08:01:45 +00008194 // Unary op widening
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008195 SDValue Tmp1;
Mon P Wang0c397192008-10-30 08:01:45 +00008196 Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8197 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008198 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008199 break;
8200 }
Mon P Wang77cdf302008-11-10 20:54:11 +00008201 case ISD::CONVERT_RNDSAT: {
8202 SDValue RndOp = Node->getOperand(3);
8203 SDValue SatOp = Node->getOperand(4);
Mon P Wang77cdf302008-11-10 20:54:11 +00008204 SDValue SrcOp = Node->getOperand(0);
8205
8206 // Converts between two different types so we need to determine
8207 // the correct widen type for the input operand.
8208 MVT SVT = SrcOp.getValueType();
8209 assert(SVT.isVector() && "can not widen non vector type");
8210 MVT SEVT = SVT.getVectorElementType();
8211 MVT SWidenVT = MVT::getVectorVT(SEVT, NewNumElts);
8212
8213 SrcOp = WidenVectorOp(SrcOp, SWidenVT);
8214 assert(SrcOp.getValueType() == WidenVT);
8215 SDValue DTyOp = DAG.getValueType(WidenVT);
8216 SDValue STyOp = DAG.getValueType(SrcOp.getValueType());
8217 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
8218
Dale Johannesenc460ae92009-02-04 00:13:36 +00008219 Result = DAG.getConvertRndSat(WidenVT, dl, SrcOp, DTyOp, STyOp,
Mon P Wang77cdf302008-11-10 20:54:11 +00008220 RndOp, SatOp, CvtCode);
Mon P Wang77cdf302008-11-10 20:54:11 +00008221 break;
8222 }
Mon P Wang0c397192008-10-30 08:01:45 +00008223 case ISD::FPOW:
Scott Michelfdc40a02009-02-17 22:15:04 +00008224 case ISD::FPOWI:
Mon P Wang0c397192008-10-30 08:01:45 +00008225 case ISD::ADD:
8226 case ISD::SUB:
8227 case ISD::MUL:
8228 case ISD::MULHS:
8229 case ISD::MULHU:
8230 case ISD::AND:
8231 case ISD::OR:
8232 case ISD::XOR:
8233 case ISD::FADD:
8234 case ISD::FSUB:
8235 case ISD::FMUL:
8236 case ISD::SDIV:
8237 case ISD::SREM:
8238 case ISD::FDIV:
8239 case ISD::FREM:
8240 case ISD::FCOPYSIGN:
8241 case ISD::UDIV:
8242 case ISD::UREM:
8243 case ISD::BSWAP: {
8244 // Binary op widening
Mon P Wang0c397192008-10-30 08:01:45 +00008245 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8246 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8247 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008248 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008249 break;
8250 }
8251
8252 case ISD::SHL:
8253 case ISD::SRA:
8254 case ISD::SRL: {
Mon P Wang0c397192008-10-30 08:01:45 +00008255 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8256 assert(Tmp1.getValueType() == WidenVT);
Mon P Wangfb13f002008-12-02 07:35:08 +00008257 SDValue ShOp = Node->getOperand(1);
8258 MVT ShVT = ShOp.getValueType();
8259 MVT NewShVT = MVT::getVectorVT(ShVT.getVectorElementType(),
8260 WidenVT.getVectorNumElements());
8261 ShOp = WidenVectorOp(ShOp, NewShVT);
8262 assert(ShOp.getValueType() == NewShVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008263 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, ShOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008264 break;
8265 }
Mon P Wangfb13f002008-12-02 07:35:08 +00008266
Mon P Wang0c397192008-10-30 08:01:45 +00008267 case ISD::EXTRACT_VECTOR_ELT: {
8268 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8269 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008270 Result = DAG.getNode(Node->getOpcode(), dl, EVT, Tmp1, Node->getOperand(1));
Mon P Wang0c397192008-10-30 08:01:45 +00008271 break;
8272 }
8273 case ISD::CONCAT_VECTORS: {
8274 // We concurrently support only widen on a multiple of the incoming vector.
8275 // We could widen on a multiple of the incoming operand if necessary.
8276 unsigned NumConcat = NewNumElts / NumElts;
8277 assert(NewNumElts % NumElts == 0 && "Can widen only a multiple of vector");
Dale Johannesene8d72302009-02-06 23:05:02 +00008278 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang0c397192008-10-30 08:01:45 +00008279 SmallVector<SDValue, 8> MOps;
8280 MOps.push_back(Op);
8281 for (unsigned i = 1; i != NumConcat; ++i) {
8282 MOps.push_back(UndefVal);
8283 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00008284 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008285 &MOps[0], MOps.size()));
8286 break;
8287 }
8288 case ISD::EXTRACT_SUBVECTOR: {
Mon P Wang49292f12008-11-15 06:05:52 +00008289 SDValue Tmp1 = Node->getOperand(0);
8290 SDValue Idx = Node->getOperand(1);
8291 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
8292 if (CIdx && CIdx->getZExtValue() == 0) {
8293 // Since we are access the start of the vector, the incoming
8294 // vector type might be the proper.
8295 MVT Tmp1VT = Tmp1.getValueType();
8296 if (Tmp1VT == WidenVT)
8297 return Tmp1;
8298 else {
8299 unsigned Tmp1VTNumElts = Tmp1VT.getVectorNumElements();
8300 if (Tmp1VTNumElts < NewNumElts)
8301 Result = WidenVectorOp(Tmp1, WidenVT);
8302 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00008303 Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, WidenVT, Tmp1, Idx);
Mon P Wang49292f12008-11-15 06:05:52 +00008304 }
8305 } else if (NewNumElts % NumElts == 0) {
8306 // Widen the extracted subvector.
8307 unsigned NumConcat = NewNumElts / NumElts;
Dale Johannesene8d72302009-02-06 23:05:02 +00008308 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang49292f12008-11-15 06:05:52 +00008309 SmallVector<SDValue, 8> MOps;
8310 MOps.push_back(Op);
8311 for (unsigned i = 1; i != NumConcat; ++i) {
8312 MOps.push_back(UndefVal);
8313 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00008314 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang49292f12008-11-15 06:05:52 +00008315 &MOps[0], MOps.size()));
8316 } else {
8317 assert(0 && "can not widen extract subvector");
8318 // This could be implemented using insert and build vector but I would
8319 // like to see when this happens.
8320 }
Mon P Wang0c397192008-10-30 08:01:45 +00008321 break;
8322 }
8323
8324 case ISD::SELECT: {
Mon P Wang0c397192008-10-30 08:01:45 +00008325 // Determine new condition widen type and widen
8326 SDValue Cond1 = Node->getOperand(0);
8327 MVT CondVT = Cond1.getValueType();
8328 assert(CondVT.isVector() && "can not widen non vector type");
8329 MVT CondEVT = CondVT.getVectorElementType();
8330 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8331 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8332 assert(Cond1.getValueType() == CondWidenVT && "Condition not widen");
8333
8334 SDValue Tmp1 = WidenVectorOp(Node->getOperand(1), WidenVT);
8335 SDValue Tmp2 = WidenVectorOp(Node->getOperand(2), WidenVT);
8336 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008337 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008338 break;
8339 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008340
Mon P Wang0c397192008-10-30 08:01:45 +00008341 case ISD::SELECT_CC: {
Mon P Wang0c397192008-10-30 08:01:45 +00008342 // Determine new condition widen type and widen
8343 SDValue Cond1 = Node->getOperand(0);
8344 SDValue Cond2 = Node->getOperand(1);
8345 MVT CondVT = Cond1.getValueType();
8346 assert(CondVT.isVector() && "can not widen non vector type");
8347 assert(CondVT == Cond2.getValueType() && "mismatch lhs/rhs");
8348 MVT CondEVT = CondVT.getVectorElementType();
8349 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8350 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8351 Cond2 = WidenVectorOp(Cond2, CondWidenVT);
8352 assert(Cond1.getValueType() == CondWidenVT &&
8353 Cond2.getValueType() == CondWidenVT && "condition not widen");
8354
8355 SDValue Tmp1 = WidenVectorOp(Node->getOperand(2), WidenVT);
8356 SDValue Tmp2 = WidenVectorOp(Node->getOperand(3), WidenVT);
8357 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT &&
8358 "operands not widen");
Dale Johannesenc6be1102009-02-02 22:49:46 +00008359 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Cond2, Tmp1,
Mon P Wang0c397192008-10-30 08:01:45 +00008360 Tmp2, Node->getOperand(4));
Mon P Wang0c397192008-10-30 08:01:45 +00008361 break;
Mon P Wang2eb13c32008-10-30 18:21:52 +00008362 }
8363 case ISD::VSETCC: {
8364 // Determine widen for the operand
8365 SDValue Tmp1 = Node->getOperand(0);
8366 MVT TmpVT = Tmp1.getValueType();
8367 assert(TmpVT.isVector() && "can not widen non vector type");
8368 MVT TmpEVT = TmpVT.getVectorElementType();
8369 MVT TmpWidenVT = MVT::getVectorVT(TmpEVT, NewNumElts);
8370 Tmp1 = WidenVectorOp(Tmp1, TmpWidenVT);
8371 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), TmpWidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008372 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2,
Mon P Wang2eb13c32008-10-30 18:21:52 +00008373 Node->getOperand(2));
Mon P Wang0c397192008-10-30 08:01:45 +00008374 break;
8375 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008376 case ISD::ATOMIC_CMP_SWAP:
8377 case ISD::ATOMIC_LOAD_ADD:
8378 case ISD::ATOMIC_LOAD_SUB:
8379 case ISD::ATOMIC_LOAD_AND:
8380 case ISD::ATOMIC_LOAD_OR:
8381 case ISD::ATOMIC_LOAD_XOR:
8382 case ISD::ATOMIC_LOAD_NAND:
8383 case ISD::ATOMIC_LOAD_MIN:
8384 case ISD::ATOMIC_LOAD_MAX:
8385 case ISD::ATOMIC_LOAD_UMIN:
8386 case ISD::ATOMIC_LOAD_UMAX:
8387 case ISD::ATOMIC_SWAP: {
Mon P Wang0c397192008-10-30 08:01:45 +00008388 // For now, we assume that using vectors for these operations don't make
8389 // much sense so we just split it. We return an empty result
8390 SDValue X, Y;
8391 SplitVectorOp(Op, X, Y);
8392 return Result;
8393 break;
8394 }
8395
8396 } // end switch (Node->getOpcode())
8397
Scott Michelfdc40a02009-02-17 22:15:04 +00008398 assert(Result.getNode() && "Didn't set a result!");
Mon P Wang0c397192008-10-30 08:01:45 +00008399 if (Result != Op)
8400 Result = LegalizeOp(Result);
8401
Mon P Wangf007a8b2008-11-06 05:31:54 +00008402 AddWidenedOperand(Op, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008403 return Result;
8404}
8405
8406// Utility function to find a legal vector type and its associated element
8407// type from a preferred width and whose vector type must be the same size
8408// as the VVT.
8409// TLI: Target lowering used to determine legal types
8410// Width: Preferred width of element type
8411// VVT: Vector value type whose size we must match.
8412// Returns VecEVT and EVT - the vector type and its associated element type
Dan Gohman0d137d72009-01-15 16:43:02 +00008413static void FindWidenVecType(const TargetLowering &TLI, unsigned Width, MVT VVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008414 MVT& EVT, MVT& VecEVT) {
8415 // We start with the preferred width, make it a power of 2 and see if
8416 // we can find a vector type of that width. If not, we reduce it by
8417 // another power of 2. If we have widen the type, a vector of bytes should
8418 // always be legal.
8419 assert(TLI.isTypeLegal(VVT));
8420 unsigned EWidth = Width + 1;
8421 do {
8422 assert(EWidth > 0);
8423 EWidth = (1 << Log2_32(EWidth-1));
8424 EVT = MVT::getIntegerVT(EWidth);
8425 unsigned NumEVT = VVT.getSizeInBits()/EWidth;
8426 VecEVT = MVT::getVectorVT(EVT, NumEVT);
8427 } while (!TLI.isTypeLegal(VecEVT) ||
8428 VVT.getSizeInBits() != VecEVT.getSizeInBits());
8429}
8430
8431SDValue SelectionDAGLegalize::genWidenVectorLoads(SDValueVector& LdChain,
8432 SDValue Chain,
8433 SDValue BasePtr,
8434 const Value *SV,
8435 int SVOffset,
8436 unsigned Alignment,
8437 bool isVolatile,
8438 unsigned LdWidth,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008439 MVT ResType,
8440 DebugLoc dl) {
Mon P Wang0c397192008-10-30 08:01:45 +00008441 // We assume that we have good rules to handle loading power of two loads so
8442 // we break down the operations to power of 2 loads. The strategy is to
8443 // load the largest power of 2 that we can easily transform to a legal vector
8444 // and then insert into that vector, and the cast the result into the legal
8445 // vector that we want. This avoids unnecessary stack converts.
8446 // TODO: If the Ldwidth is legal, alignment is the same as the LdWidth, and
8447 // the load is nonvolatile, we an use a wider load for the value.
8448 // Find a vector length we can load a large chunk
8449 MVT EVT, VecEVT;
8450 unsigned EVTWidth;
8451 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8452 EVTWidth = EVT.getSizeInBits();
8453
Dale Johannesenc6be1102009-02-02 22:49:46 +00008454 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV, SVOffset,
Mon P Wang0c397192008-10-30 08:01:45 +00008455 isVolatile, Alignment);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008456 SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecEVT, LdOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008457 LdChain.push_back(LdOp.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00008458
Mon P Wang0c397192008-10-30 08:01:45 +00008459 // Check if we can load the element with one instruction
8460 if (LdWidth == EVTWidth) {
Dale Johannesenc6be1102009-02-02 22:49:46 +00008461 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008462 }
8463
8464 // The vector element order is endianness dependent.
8465 unsigned Idx = 1;
8466 LdWidth -= EVTWidth;
8467 unsigned Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008468
Mon P Wang0c397192008-10-30 08:01:45 +00008469 while (LdWidth > 0) {
8470 unsigned Increment = EVTWidth / 8;
8471 Offset += Increment;
Dale Johannesenc6be1102009-02-02 22:49:46 +00008472 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang0c397192008-10-30 08:01:45 +00008473 DAG.getIntPtrConstant(Increment));
8474
8475 if (LdWidth < EVTWidth) {
8476 // Our current type we are using is too large, use a smaller size by
8477 // using a smaller power of 2
8478 unsigned oEVTWidth = EVTWidth;
8479 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8480 EVTWidth = EVT.getSizeInBits();
8481 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008482 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008483 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008484 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008485
Dale Johannesenc6be1102009-02-02 22:49:46 +00008486 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV,
Mon P Wang0c397192008-10-30 08:01:45 +00008487 SVOffset+Offset, isVolatile,
8488 MinAlign(Alignment, Offset));
8489 LdChain.push_back(LdOp.getValue(1));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008490 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecEVT, VecOp, LdOp,
Mon P Wang0c397192008-10-30 08:01:45 +00008491 DAG.getIntPtrConstant(Idx++));
Scott Michelfdc40a02009-02-17 22:15:04 +00008492
Mon P Wang0c397192008-10-30 08:01:45 +00008493 LdWidth -= EVTWidth;
8494 }
8495
Dale Johannesenc6be1102009-02-02 22:49:46 +00008496 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008497}
8498
8499bool SelectionDAGLegalize::LoadWidenVectorOp(SDValue& Result,
8500 SDValue& TFOp,
8501 SDValue Op,
8502 MVT NVT) {
8503 // TODO: Add support for ConcatVec and the ability to load many vector
8504 // types (e.g., v4i8). This will not work when a vector register
8505 // to memory mapping is strange (e.g., vector elements are not
8506 // stored in some sequential order).
8507
Scott Michelfdc40a02009-02-17 22:15:04 +00008508 // It must be true that the widen vector type is bigger than where
Mon P Wang0c397192008-10-30 08:01:45 +00008509 // we need to load from.
8510 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
8511 MVT LdVT = LD->getMemoryVT();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008512 DebugLoc dl = LD->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008513 assert(LdVT.isVector() && NVT.isVector());
8514 assert(LdVT.getVectorElementType() == NVT.getVectorElementType());
Scott Michelfdc40a02009-02-17 22:15:04 +00008515
Mon P Wang0c397192008-10-30 08:01:45 +00008516 // Load information
8517 SDValue Chain = LD->getChain();
8518 SDValue BasePtr = LD->getBasePtr();
8519 int SVOffset = LD->getSrcValueOffset();
8520 unsigned Alignment = LD->getAlignment();
8521 bool isVolatile = LD->isVolatile();
8522 const Value *SV = LD->getSrcValue();
8523 unsigned int LdWidth = LdVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00008524
Mon P Wang0c397192008-10-30 08:01:45 +00008525 // Load value as a large register
8526 SDValueVector LdChain;
8527 Result = genWidenVectorLoads(LdChain, Chain, BasePtr, SV, SVOffset,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008528 Alignment, isVolatile, LdWidth, NVT, dl);
Mon P Wang0c397192008-10-30 08:01:45 +00008529
8530 if (LdChain.size() == 1) {
8531 TFOp = LdChain[0];
8532 return true;
8533 }
8534 else {
Scott Michelfdc40a02009-02-17 22:15:04 +00008535 TFOp=DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008536 &LdChain[0], LdChain.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008537 return false;
8538 }
8539}
8540
8541
8542void SelectionDAGLegalize::genWidenVectorStores(SDValueVector& StChain,
8543 SDValue Chain,
8544 SDValue BasePtr,
8545 const Value *SV,
8546 int SVOffset,
8547 unsigned Alignment,
8548 bool isVolatile,
Mon P Wang49292f12008-11-15 06:05:52 +00008549 SDValue ValOp,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008550 unsigned StWidth,
8551 DebugLoc dl) {
Mon P Wang0c397192008-10-30 08:01:45 +00008552 // Breaks the stores into a series of power of 2 width stores. For any
8553 // width, we convert the vector to the vector of element size that we
8554 // want to store. This avoids requiring a stack convert.
Scott Michelfdc40a02009-02-17 22:15:04 +00008555
Mon P Wang0c397192008-10-30 08:01:45 +00008556 // Find a width of the element type we can store with
8557 MVT VVT = ValOp.getValueType();
8558 MVT EVT, VecEVT;
8559 unsigned EVTWidth;
8560 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8561 EVTWidth = EVT.getSizeInBits();
8562
Dale Johannesenc6be1102009-02-02 22:49:46 +00008563 SDValue VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, ValOp);
8564 SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wange0b436a2008-11-06 22:52:21 +00008565 DAG.getIntPtrConstant(0));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008566 SDValue StOp = DAG.getStore(Chain, dl, EOp, BasePtr, SV, SVOffset,
Mon P Wang0c397192008-10-30 08:01:45 +00008567 isVolatile, Alignment);
8568 StChain.push_back(StOp);
8569
8570 // Check if we are done
8571 if (StWidth == EVTWidth) {
8572 return;
8573 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008574
Mon P Wang0c397192008-10-30 08:01:45 +00008575 unsigned Idx = 1;
8576 StWidth -= EVTWidth;
8577 unsigned Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008578
Mon P Wang0c397192008-10-30 08:01:45 +00008579 while (StWidth > 0) {
8580 unsigned Increment = EVTWidth / 8;
8581 Offset += Increment;
Dale Johannesenc6be1102009-02-02 22:49:46 +00008582 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang0c397192008-10-30 08:01:45 +00008583 DAG.getIntPtrConstant(Increment));
Scott Michelfdc40a02009-02-17 22:15:04 +00008584
Mon P Wang0c397192008-10-30 08:01:45 +00008585 if (StWidth < EVTWidth) {
8586 // Our current type we are using is too large, use a smaller size by
8587 // using a smaller power of 2
8588 unsigned oEVTWidth = EVTWidth;
8589 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8590 EVTWidth = EVT.getSizeInBits();
8591 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008592 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008593 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008594 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008595
Dale Johannesenc6be1102009-02-02 22:49:46 +00008596 EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang49292f12008-11-15 06:05:52 +00008597 DAG.getIntPtrConstant(Idx++));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008598 StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr, SV,
Mon P Wang0c397192008-10-30 08:01:45 +00008599 SVOffset + Offset, isVolatile,
8600 MinAlign(Alignment, Offset)));
8601 StWidth -= EVTWidth;
8602 }
8603}
8604
8605
8606SDValue SelectionDAGLegalize::StoreWidenVectorOp(StoreSDNode *ST,
8607 SDValue Chain,
8608 SDValue BasePtr) {
8609 // TODO: It might be cleaner if we can use SplitVector and have more legal
8610 // vector types that can be stored into memory (e.g., v4xi8 can
8611 // be stored as a word). This will not work when a vector register
8612 // to memory mapping is strange (e.g., vector elements are not
8613 // stored in some sequential order).
Scott Michelfdc40a02009-02-17 22:15:04 +00008614
Mon P Wang0c397192008-10-30 08:01:45 +00008615 MVT StVT = ST->getMemoryVT();
8616 SDValue ValOp = ST->getValue();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008617 DebugLoc dl = ST->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008618
8619 // Check if we have widen this node with another value
8620 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(ValOp);
8621 if (I != WidenNodes.end())
8622 ValOp = I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00008623
Mon P Wang0c397192008-10-30 08:01:45 +00008624 MVT VVT = ValOp.getValueType();
8625
8626 // It must be true that we the widen vector type is bigger than where
8627 // we need to store.
8628 assert(StVT.isVector() && VVT.isVector());
Dan Gohmanf83c81a2009-01-28 03:10:52 +00008629 assert(StVT.bitsLT(VVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008630 assert(StVT.getVectorElementType() == VVT.getVectorElementType());
8631
8632 // Store value
8633 SDValueVector StChain;
8634 genWidenVectorStores(StChain, Chain, BasePtr, ST->getSrcValue(),
8635 ST->getSrcValueOffset(), ST->getAlignment(),
Dale Johannesenc6be1102009-02-02 22:49:46 +00008636 ST->isVolatile(), ValOp, StVT.getSizeInBits(), dl);
Mon P Wang0c397192008-10-30 08:01:45 +00008637 if (StChain.size() == 1)
8638 return StChain[0];
Scott Michelfdc40a02009-02-17 22:15:04 +00008639 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00008640 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
8641 &StChain[0], StChain.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008642}
8643
8644
Chris Lattner3e928bb2005-01-07 07:47:09 +00008645// SelectionDAG::Legalize - This is the entry point for the file.
8646//
Bill Wendling5aa49772009-02-24 02:35:30 +00008647void SelectionDAG::Legalize(bool TypesNeedLegalizing, bool Fast) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00008648 /// run - This is the main entry point to this class.
8649 ///
Bill Wendling5aa49772009-02-24 02:35:30 +00008650 SelectionDAGLegalize(*this, TypesNeedLegalizing, Fast).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00008651}
8652