blob: 25e43d92eae43cedcf0399f9d547f22df5992ed3 [file] [log] [blame]
Chris Lattner3e928bb2005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3e928bb2005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner45b8caf2005-01-15 07:15:18 +000016#include "llvm/CodeGen/MachineFrameInfo.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000017#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000018#include "llvm/CodeGen/MachineModuleInfo.h"
Devang Patel83489bb2009-01-13 00:35:13 +000019#include "llvm/CodeGen/DwarfWriter.h"
20#include "llvm/Analysis/DebugInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000021#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Cheng61bbbab2007-08-16 23:50:06 +000022#include "llvm/Target/TargetFrameInfo.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000023#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000024#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000025#include "llvm/Target/TargetMachine.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000026#include "llvm/Target/TargetOptions.h"
Dan Gohman707e0182008-04-12 04:36:06 +000027#include "llvm/Target/TargetSubtarget.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000028#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000029#include "llvm/Constants.h"
Reid Spencerc1030572007-01-19 21:13:56 +000030#include "llvm/DerivedTypes.h"
Bill Wendling86e6cb92009-02-17 01:04:54 +000031#include "llvm/Function.h"
Devang Patel83489bb2009-01-13 00:35:13 +000032#include "llvm/GlobalVariable.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000033#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000034#include "llvm/Support/Compiler.h"
Duncan Sandsdc846502007-10-28 12:59:45 +000035#include "llvm/Support/MathExtras.h"
Chris Lattner79715142007-02-03 01:12:36 +000036#include "llvm/ADT/DenseMap.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000037#include "llvm/ADT/SmallVector.h"
Chris Lattner00755df2007-02-04 00:27:56 +000038#include "llvm/ADT/SmallPtrSet.h"
Evan Cheng033e6812006-03-24 01:17:21 +000039#include <map>
Chris Lattner3e928bb2005-01-07 07:47:09 +000040using namespace llvm;
41
42//===----------------------------------------------------------------------===//
43/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
44/// hacks on it until the target machine can handle it. This involves
45/// eliminating value sizes the machine cannot handle (promoting small sizes to
46/// large sizes or splitting up large values into small values) as well as
47/// eliminating operations the machine cannot handle.
48///
49/// This code also does a small amount of optimization and recognition of idioms
50/// as part of its processing. For example, if a target does not support a
51/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
52/// will attempt merge setcc and brc instructions into brcc's.
53///
54namespace {
Chris Lattner360e8202006-06-28 21:58:30 +000055class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000056 TargetLowering &TLI;
57 SelectionDAG &DAG;
Bill Wendling98a366d2009-04-29 23:29:43 +000058 CodeGenOpt::Level OptLevel;
Duncan Sandsb6862bb2008-12-14 09:43:15 +000059 bool TypesNeedLegalizing;
Chris Lattner3e928bb2005-01-07 07:47:09 +000060
Chris Lattner6831a812006-02-13 09:18:02 +000061 // Libcall insertion helpers.
Scott Michelfdc40a02009-02-17 22:15:04 +000062
Chris Lattner6831a812006-02-13 09:18:02 +000063 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
64 /// legalized. We use this to ensure that calls are properly serialized
65 /// against each other, including inserted libcalls.
Dan Gohman475871a2008-07-27 21:46:04 +000066 SDValue LastCALLSEQ_END;
Scott Michelfdc40a02009-02-17 22:15:04 +000067
Chris Lattner6831a812006-02-13 09:18:02 +000068 /// IsLegalizingCall - This member is used *only* for purposes of providing
Scott Michelfdc40a02009-02-17 22:15:04 +000069 /// helpful assertions that a libcall isn't created while another call is
Chris Lattner6831a812006-02-13 09:18:02 +000070 /// being legalized (which could lead to non-serialized call sequences).
71 bool IsLegalizingCall;
Scott Michelfdc40a02009-02-17 22:15:04 +000072
Mon P Wange5ab34e2009-02-04 19:38:14 +000073 /// IsLegalizingCallArguments - This member is used only for the purpose
74 /// of providing assert to check for LegalizeTypes because legalizing an
75 /// operation might introduce call nodes that might need type legalization.
76 bool IsLegalizingCallArgs;
77
Chris Lattner3e928bb2005-01-07 07:47:09 +000078 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000079 Legal, // The target natively supports this operation.
80 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000081 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000082 };
Scott Michelfdc40a02009-02-17 22:15:04 +000083
Chris Lattner3e928bb2005-01-07 07:47:09 +000084 /// ValueTypeActions - This is a bitvector that contains two bits for each
85 /// value type, where the two bits correspond to the LegalizeAction enum.
86 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000087 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000088
Chris Lattner3e928bb2005-01-07 07:47:09 +000089 /// LegalizedNodes - For nodes that are of legal width, and that have more
90 /// than one use, this map indicates what regularized operand to use. This
91 /// allows us to avoid legalizing the same thing more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000092 DenseMap<SDValue, SDValue> LegalizedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000093
Chris Lattner03c85462005-01-15 05:21:40 +000094 /// PromotedNodes - For nodes that are below legal width, and that have more
95 /// than one use, this map indicates what promoted value to use. This allows
96 /// us to avoid promoting the same thing more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000097 DenseMap<SDValue, SDValue> PromotedNodes;
Chris Lattner03c85462005-01-15 05:21:40 +000098
Chris Lattnerc7029802006-03-18 01:44:44 +000099 /// ExpandedNodes - For nodes that need to be expanded this map indicates
Mon P Wang0c397192008-10-30 08:01:45 +0000100 /// which operands are the expanded version of the input. This allows
Chris Lattnerc7029802006-03-18 01:44:44 +0000101 /// us to avoid expanding the same node more than once.
Dan Gohman475871a2008-07-27 21:46:04 +0000102 DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000103
Chris Lattnerc7029802006-03-18 01:44:44 +0000104 /// SplitNodes - For vector nodes that need to be split, this map indicates
Mon P Wang0c397192008-10-30 08:01:45 +0000105 /// which operands are the split version of the input. This allows us
Chris Lattnerc7029802006-03-18 01:44:44 +0000106 /// to avoid splitting the same node more than once.
Dan Gohman475871a2008-07-27 21:46:04 +0000107 std::map<SDValue, std::pair<SDValue, SDValue> > SplitNodes;
Scott Michelfdc40a02009-02-17 22:15:04 +0000108
Dan Gohman7f321562007-06-25 16:23:39 +0000109 /// ScalarizedNodes - For nodes that need to be converted from vector types to
110 /// scalar types, this contains the mapping of ones we have already
Chris Lattnerc7029802006-03-18 01:44:44 +0000111 /// processed to the result.
Dan Gohman475871a2008-07-27 21:46:04 +0000112 std::map<SDValue, SDValue> ScalarizedNodes;
Scott Michelfdc40a02009-02-17 22:15:04 +0000113
Mon P Wangf007a8b2008-11-06 05:31:54 +0000114 /// WidenNodes - For nodes that need to be widened from one vector type to
115 /// another, this contains the mapping of those that we have already widen.
116 /// This allows us to avoid widening more than once.
Mon P Wang0c397192008-10-30 08:01:45 +0000117 std::map<SDValue, SDValue> WidenNodes;
118
Dan Gohman475871a2008-07-27 21:46:04 +0000119 void AddLegalizedOperand(SDValue From, SDValue To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000120 LegalizedNodes.insert(std::make_pair(From, To));
121 // If someone requests legalization of the new node, return itself.
122 if (From != To)
123 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000124 }
Dan Gohman475871a2008-07-27 21:46:04 +0000125 void AddPromotedOperand(SDValue From, SDValue To) {
Dan Gohman6b345ee2008-07-07 17:46:23 +0000126 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
Chris Lattner03c85462005-01-15 05:21:40 +0000127 assert(isNew && "Got into the map somehow?");
Evan Cheng24ac4082008-11-24 07:09:49 +0000128 isNew = isNew;
Chris Lattner69a889e2005-12-20 00:53:54 +0000129 // If someone requests legalization of the new node, return itself.
130 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000131 }
Mon P Wangf007a8b2008-11-06 05:31:54 +0000132 void AddWidenedOperand(SDValue From, SDValue To) {
Mon P Wang0c397192008-10-30 08:01:45 +0000133 bool isNew = WidenNodes.insert(std::make_pair(From, To)).second;
134 assert(isNew && "Got into the map somehow?");
Evan Cheng24ac4082008-11-24 07:09:49 +0000135 isNew = isNew;
Mon P Wang0c397192008-10-30 08:01:45 +0000136 // If someone requests legalization of the new node, return itself.
137 LegalizedNodes.insert(std::make_pair(To, To));
138 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000139
Chris Lattner3e928bb2005-01-07 07:47:09 +0000140public:
Bill Wendling5aa49772009-02-24 02:35:30 +0000141 explicit SelectionDAGLegalize(SelectionDAG &DAG, bool TypesNeedLegalizing,
Bill Wendling98a366d2009-04-29 23:29:43 +0000142 CodeGenOpt::Level ol);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000143
Chris Lattner3e928bb2005-01-07 07:47:09 +0000144 /// getTypeAction - Return how we should legalize values of this type, either
145 /// it is already legal or we need to expand it into multiple registers of
146 /// smaller integer type, or we need to promote it to a larger type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000147 LegalizeAction getTypeAction(MVT VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000148 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000149 }
150
151 /// isTypeLegal - Return true if this type is legal on this target.
152 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000153 bool isTypeLegal(MVT VT) const {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000154 return getTypeAction(VT) == Legal;
155 }
156
Chris Lattner3e928bb2005-01-07 07:47:09 +0000157 void LegalizeDAG();
158
Chris Lattner456a93a2006-01-28 07:39:30 +0000159private:
Dan Gohman7f321562007-06-25 16:23:39 +0000160 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000161 /// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000162 void HandleOp(SDValue Op);
Scott Michelfdc40a02009-02-17 22:15:04 +0000163
Chris Lattnerc7029802006-03-18 01:44:44 +0000164 /// LegalizeOp - We know that the specified value has a legal type.
165 /// Recursively ensure that the operands have legal types, then return the
166 /// result.
Dan Gohman475871a2008-07-27 21:46:04 +0000167 SDValue LegalizeOp(SDValue O);
Scott Michelfdc40a02009-02-17 22:15:04 +0000168
Dan Gohman82669522007-10-11 23:57:53 +0000169 /// UnrollVectorOp - We know that the given vector has a legal type, however
170 /// the operation it performs is not legal and is an operation that we have
171 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
172 /// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000173 SDValue UnrollVectorOp(SDValue O);
Scott Michelfdc40a02009-02-17 22:15:04 +0000174
Nate Begeman68679912008-04-25 18:07:40 +0000175 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
176 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
177 /// is necessary to spill the vector being inserted into to memory, perform
178 /// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000179 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Dale Johannesenbb5da912009-02-02 20:41:04 +0000180 SDValue Idx, DebugLoc dl);
Dan Gohman82669522007-10-11 23:57:53 +0000181
Chris Lattnerc7029802006-03-18 01:44:44 +0000182 /// PromoteOp - Given an operation that produces a value in an invalid type,
183 /// promote it to compute the value into a larger type. The produced value
184 /// will have the correct bits for the low portion of the register, but no
185 /// guarantee is made about the top bits: it may be zero, sign-extended, or
186 /// garbage.
Dan Gohman475871a2008-07-27 21:46:04 +0000187 SDValue PromoteOp(SDValue O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000188
Dan Gohman475871a2008-07-27 21:46:04 +0000189 /// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattnerc7029802006-03-18 01:44:44 +0000190 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
Dan Gohman929d3eb2008-10-01 15:07:49 +0000191 /// the LegalizedNodes map is filled in for any results that are not expanded,
Chris Lattnerc7029802006-03-18 01:44:44 +0000192 /// the ExpandedNodes map is filled in for any results that are expanded, and
193 /// the Lo/Hi values are returned. This applies to integer types and Vector
194 /// types.
Dan Gohman475871a2008-07-27 21:46:04 +0000195 void ExpandOp(SDValue O, SDValue &Lo, SDValue &Hi);
Chris Lattnerc7029802006-03-18 01:44:44 +0000196
Scott Michelfdc40a02009-02-17 22:15:04 +0000197 /// WidenVectorOp - Widen a vector operation to a wider type given by WidenVT
Mon P Wangf007a8b2008-11-06 05:31:54 +0000198 /// (e.g., v3i32 to v4i32). The produced value will have the correct value
199 /// for the existing elements but no guarantee is made about the new elements
200 /// at the end of the vector: it may be zero, ones, or garbage. This is useful
201 /// when we have an instruction operating on an illegal vector type and we
202 /// want to widen it to do the computation on a legal wider vector type.
Mon P Wang0c397192008-10-30 08:01:45 +0000203 SDValue WidenVectorOp(SDValue Op, MVT WidenVT);
204
Dan Gohman7f321562007-06-25 16:23:39 +0000205 /// SplitVectorOp - Given an operand of vector type, break it down into
206 /// two smaller values.
Dan Gohman475871a2008-07-27 21:46:04 +0000207 void SplitVectorOp(SDValue O, SDValue &Lo, SDValue &Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +0000208
Dan Gohman89b20c02007-06-27 14:06:22 +0000209 /// ScalarizeVectorOp - Given an operand of single-element vector type
210 /// (e.g. v1f32), convert it into the equivalent operation that returns a
211 /// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +0000212 SDValue ScalarizeVectorOp(SDValue O);
Scott Michelfdc40a02009-02-17 22:15:04 +0000213
Mon P Wangf007a8b2008-11-06 05:31:54 +0000214 /// Useful 16 element vector type that is used to pass operands for widening.
Scott Michelfdc40a02009-02-17 22:15:04 +0000215 typedef SmallVector<SDValue, 16> SDValueVector;
216
Mon P Wang0c397192008-10-30 08:01:45 +0000217 /// LoadWidenVectorOp - Load a vector for a wider type. Returns true if
218 /// the LdChain contains a single load and false if it contains a token
219 /// factor for multiple loads. It takes
220 /// Result: location to return the result
221 /// LdChain: location to return the load chain
222 /// Op: load operation to widen
223 /// NVT: widen vector result type we want for the load
Scott Michelfdc40a02009-02-17 22:15:04 +0000224 bool LoadWidenVectorOp(SDValue& Result, SDValue& LdChain,
Mon P Wang0c397192008-10-30 08:01:45 +0000225 SDValue Op, MVT NVT);
Scott Michelfdc40a02009-02-17 22:15:04 +0000226
Mon P Wang0c397192008-10-30 08:01:45 +0000227 /// Helper genWidenVectorLoads - Helper function to generate a set of
228 /// loads to load a vector with a resulting wider type. It takes
229 /// LdChain: list of chains for the load we have generated
230 /// Chain: incoming chain for the ld vector
231 /// BasePtr: base pointer to load from
232 /// SV: memory disambiguation source value
233 /// SVOffset: memory disambiugation offset
234 /// Alignment: alignment of the memory
235 /// isVolatile: volatile load
Scott Michelfdc40a02009-02-17 22:15:04 +0000236 /// LdWidth: width of memory that we want to load
Mon P Wang0c397192008-10-30 08:01:45 +0000237 /// ResType: the wider result result type for the resulting loaded vector
238 SDValue genWidenVectorLoads(SDValueVector& LdChain, SDValue Chain,
239 SDValue BasePtr, const Value *SV,
240 int SVOffset, unsigned Alignment,
241 bool isVolatile, unsigned LdWidth,
Dale Johannesenc6be1102009-02-02 22:49:46 +0000242 MVT ResType, DebugLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +0000243
Mon P Wang0c397192008-10-30 08:01:45 +0000244 /// StoreWidenVectorOp - Stores a widen vector into non widen memory
245 /// location. It takes
246 /// ST: store node that we want to replace
247 /// Chain: incoming store chain
248 /// BasePtr: base address of where we want to store into
Scott Michelfdc40a02009-02-17 22:15:04 +0000249 SDValue StoreWidenVectorOp(StoreSDNode *ST, SDValue Chain,
Mon P Wang0c397192008-10-30 08:01:45 +0000250 SDValue BasePtr);
Scott Michelfdc40a02009-02-17 22:15:04 +0000251
Mon P Wang0c397192008-10-30 08:01:45 +0000252 /// Helper genWidenVectorStores - Helper function to generate a set of
253 /// stores to store a widen vector into non widen memory
254 // It takes
255 // StChain: list of chains for the stores we have generated
256 // Chain: incoming chain for the ld vector
257 // BasePtr: base pointer to load from
258 // SV: memory disambiguation source value
259 // SVOffset: memory disambiugation offset
260 // Alignment: alignment of the memory
261 // isVolatile: volatile lod
Scott Michelfdc40a02009-02-17 22:15:04 +0000262 // ValOp: value to store
263 // StWidth: width of memory that we want to store
Mon P Wang0c397192008-10-30 08:01:45 +0000264 void genWidenVectorStores(SDValueVector& StChain, SDValue Chain,
265 SDValue BasePtr, const Value *SV,
266 int SVOffset, unsigned Alignment,
267 bool isVolatile, SDValue ValOp,
Dale Johannesenc6be1102009-02-02 22:49:46 +0000268 unsigned StWidth, DebugLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +0000269
Nate Begeman5a5ca152009-04-29 05:20:52 +0000270 /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
271 /// performs the same shuffe in terms of order or result bytes, but on a type
272 /// whose vector element type is narrower than the original shuffle type.
273 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
274 SDValue ShuffleWithNarrowerEltType(MVT NVT, MVT VT, DebugLoc dl,
275 SDValue N1, SDValue N2,
276 SmallVectorImpl<int> &Mask) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000277
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000278 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000279 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000280
Dale Johannesenbb5da912009-02-02 20:41:04 +0000281 void LegalizeSetCCOperands(SDValue &LHS, SDValue &RHS, SDValue &CC,
282 DebugLoc dl);
283 void LegalizeSetCCCondCode(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
284 DebugLoc dl);
285 void LegalizeSetCC(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
286 DebugLoc dl) {
287 LegalizeSetCCOperands(LHS, RHS, CC, dl);
288 LegalizeSetCCCondCode(VT, LHS, RHS, CC, dl);
Evan Cheng7f042682008-10-15 02:05:31 +0000289 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000290
Dan Gohman475871a2008-07-27 21:46:04 +0000291 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
292 SDValue &Hi);
Dale Johannesenaf435272009-02-02 19:03:57 +0000293 SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl);
Chris Lattnercad063f2005-07-16 00:19:57 +0000294
Dale Johannesen8a782a22009-02-02 22:12:50 +0000295 SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000296 SDValue ExpandBUILD_VECTOR(SDNode *Node);
297 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Scott Michelfdc40a02009-02-17 22:15:04 +0000298 SDValue LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +0000299 SDValue Op, DebugLoc dl);
300 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT,
301 DebugLoc dl);
302 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned,
303 DebugLoc dl);
304 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned,
305 DebugLoc dl);
Jeff Cohen00b168892005-07-27 06:12:32 +0000306
Dale Johannesen8a782a22009-02-02 22:12:50 +0000307 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
308 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000309 bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +0000310 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000311 void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +0000312 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000313
Dan Gohman475871a2008-07-27 21:46:04 +0000314 SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op);
315 SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op);
Eli Friedman3d43b3f2009-05-23 22:37:25 +0000316 SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000317};
318}
319
Nate Begeman5a5ca152009-04-29 05:20:52 +0000320/// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
321/// performs the same shuffe in terms of order or result bytes, but on a type
322/// whose vector element type is narrower than the original shuffle type.
Nate Begeman9008ca62009-04-27 18:41:29 +0000323/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Nate Begeman5a5ca152009-04-29 05:20:52 +0000324SDValue
325SelectionDAGLegalize::ShuffleWithNarrowerEltType(MVT NVT, MVT VT, DebugLoc dl,
326 SDValue N1, SDValue N2,
Nate Begeman9008ca62009-04-27 18:41:29 +0000327 SmallVectorImpl<int> &Mask) const {
328 MVT EltVT = NVT.getVectorElementType();
Nate Begeman5a5ca152009-04-29 05:20:52 +0000329 unsigned NumMaskElts = VT.getVectorNumElements();
330 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +0000331 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner4352cc92006-04-04 17:23:26 +0000332
Nate Begeman9008ca62009-04-27 18:41:29 +0000333 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
334
335 if (NumEltsGrowth == 1)
336 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
337
338 SmallVector<int, 8> NewMask;
Nate Begeman5a5ca152009-04-29 05:20:52 +0000339 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000340 int Idx = Mask[i];
341 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
342 if (Idx < 0)
343 NewMask.push_back(-1);
344 else
345 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner4352cc92006-04-04 17:23:26 +0000346 }
Chris Lattner4352cc92006-04-04 17:23:26 +0000347 }
Nate Begeman5a5ca152009-04-29 05:20:52 +0000348 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman9008ca62009-04-27 18:41:29 +0000349 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
350 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner4352cc92006-04-04 17:23:26 +0000351}
352
Bill Wendling5aa49772009-02-24 02:35:30 +0000353SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag,
Bill Wendling98a366d2009-04-29 23:29:43 +0000354 bool types, CodeGenOpt::Level ol)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000355 : TLI(dag.getTargetLoweringInfo()), DAG(dag), OptLevel(ol),
356 TypesNeedLegalizing(types), ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000357 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000358 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000359}
360
Chris Lattner3e928bb2005-01-07 07:47:09 +0000361void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000362 LastCALLSEQ_END = DAG.getEntryNode();
363 IsLegalizingCall = false;
Mon P Wange5ab34e2009-02-04 19:38:14 +0000364 IsLegalizingCallArgs = false;
365
Chris Lattnerab510a72005-10-02 17:49:46 +0000366 // The legalize process is inherently a bottom-up recursive process (users
367 // legalize their uses before themselves). Given infinite stack space, we
368 // could just start legalizing on the root and traverse the whole graph. In
369 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000370 // blocks. To avoid this problem, compute an ordering of the nodes where each
371 // node is only legalized after all of its operands are legalized.
Dan Gohmanf06c8352008-09-30 18:30:35 +0000372 DAG.AssignTopologicalOrder();
373 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
374 E = prior(DAG.allnodes_end()); I != next(E); ++I)
375 HandleOp(SDValue(I, 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000376
377 // Finally, it's possible the root changed. Get the new root.
Dan Gohman475871a2008-07-27 21:46:04 +0000378 SDValue OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000379 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
380 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000381
382 ExpandedNodes.clear();
383 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000384 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000385 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000386 ScalarizedNodes.clear();
Mon P Wang0c397192008-10-30 08:01:45 +0000387 WidenNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000388
389 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000390 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000391}
392
Chris Lattner6831a812006-02-13 09:18:02 +0000393
394/// FindCallEndFromCallStart - Given a chained node that is part of a call
395/// sequence, find the CALLSEQ_END node that terminates the call sequence.
396static SDNode *FindCallEndFromCallStart(SDNode *Node) {
397 if (Node->getOpcode() == ISD::CALLSEQ_END)
398 return Node;
399 if (Node->use_empty())
400 return 0; // No CallSeqEnd
Scott Michelfdc40a02009-02-17 22:15:04 +0000401
Chris Lattner6831a812006-02-13 09:18:02 +0000402 // The chain is usually at the end.
Dan Gohman475871a2008-07-27 21:46:04 +0000403 SDValue TheChain(Node, Node->getNumValues()-1);
Chris Lattner6831a812006-02-13 09:18:02 +0000404 if (TheChain.getValueType() != MVT::Other) {
405 // Sometimes it's at the beginning.
Dan Gohman475871a2008-07-27 21:46:04 +0000406 TheChain = SDValue(Node, 0);
Chris Lattner6831a812006-02-13 09:18:02 +0000407 if (TheChain.getValueType() != MVT::Other) {
408 // Otherwise, hunt for it.
409 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
410 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman475871a2008-07-27 21:46:04 +0000411 TheChain = SDValue(Node, i);
Chris Lattner6831a812006-02-13 09:18:02 +0000412 break;
413 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000414
415 // Otherwise, we walked into a node without a chain.
Chris Lattner6831a812006-02-13 09:18:02 +0000416 if (TheChain.getValueType() != MVT::Other)
417 return 0;
418 }
419 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000420
Chris Lattner6831a812006-02-13 09:18:02 +0000421 for (SDNode::use_iterator UI = Node->use_begin(),
422 E = Node->use_end(); UI != E; ++UI) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000423
Chris Lattner6831a812006-02-13 09:18:02 +0000424 // Make sure to only follow users of our token chain.
Dan Gohman89684502008-07-27 20:43:25 +0000425 SDNode *User = *UI;
Chris Lattner6831a812006-02-13 09:18:02 +0000426 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
427 if (User->getOperand(i) == TheChain)
428 if (SDNode *Result = FindCallEndFromCallStart(User))
429 return Result;
430 }
431 return 0;
432}
433
Scott Michelfdc40a02009-02-17 22:15:04 +0000434/// FindCallStartFromCallEnd - Given a chained node that is part of a call
Chris Lattner6831a812006-02-13 09:18:02 +0000435/// sequence, find the CALLSEQ_START node that initiates the call sequence.
436static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
437 assert(Node && "Didn't find callseq_start for a call??");
438 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Scott Michelfdc40a02009-02-17 22:15:04 +0000439
Chris Lattner6831a812006-02-13 09:18:02 +0000440 assert(Node->getOperand(0).getValueType() == MVT::Other &&
441 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000442 return FindCallStartFromCallEnd(Node->getOperand(0).getNode());
Chris Lattner6831a812006-02-13 09:18:02 +0000443}
444
445/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
Scott Michelfdc40a02009-02-17 22:15:04 +0000446/// see if any uses can reach Dest. If no dest operands can get to dest,
Chris Lattner6831a812006-02-13 09:18:02 +0000447/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000448///
449/// Keep track of the nodes we fine that actually do lead to Dest in
450/// NodesLeadingTo. This avoids retraversing them exponential number of times.
451///
452bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000453 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000454 if (N == Dest) return true; // N certainly leads to Dest :)
Scott Michelfdc40a02009-02-17 22:15:04 +0000455
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000456 // If we've already processed this node and it does lead to Dest, there is no
457 // need to reprocess it.
458 if (NodesLeadingTo.count(N)) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +0000459
Chris Lattner6831a812006-02-13 09:18:02 +0000460 // If the first result of this node has been already legalized, then it cannot
461 // reach N.
462 switch (getTypeAction(N->getValueType(0))) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000463 case Legal:
Dan Gohman475871a2008-07-27 21:46:04 +0000464 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000465 break;
466 case Promote:
Dan Gohman475871a2008-07-27 21:46:04 +0000467 if (PromotedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000468 break;
469 case Expand:
Dan Gohman475871a2008-07-27 21:46:04 +0000470 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000471 break;
472 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000473
Chris Lattner6831a812006-02-13 09:18:02 +0000474 // Okay, this node has not already been legalized. Check and legalize all
475 // operands. If none lead to Dest, then we can legalize this node.
476 bool OperandsLeadToDest = false;
477 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
478 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Gabor Greifba36cb52008-08-28 21:40:38 +0000479 LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000480
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000481 if (OperandsLeadToDest) {
482 NodesLeadingTo.insert(N);
483 return true;
484 }
Chris Lattner6831a812006-02-13 09:18:02 +0000485
486 // Okay, this node looks safe, legalize it and return false.
Dan Gohman475871a2008-07-27 21:46:04 +0000487 HandleOp(SDValue(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000488 return false;
489}
490
Mon P Wang0c397192008-10-30 08:01:45 +0000491/// HandleOp - Legalize, Promote, Widen, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000492/// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000493void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000494 MVT VT = Op.getValueType();
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000495 // If the type legalizer was run then we should never see any illegal result
496 // types here except for target constants (the type legalizer does not touch
Mon P Wang87c8a8f2008-12-18 20:03:17 +0000497 // those) or for build vector used as a mask for a vector shuffle.
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000498 assert((TypesNeedLegalizing || getTypeAction(VT) == Legal ||
Duncan Sands9771b912009-04-27 19:33:03 +0000499 IsLegalizingCallArgs || Op.getOpcode() == ISD::TargetConstant) &&
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000500 "Illegal type introduced after type legalization?");
Dan Gohman7f321562007-06-25 16:23:39 +0000501 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000502 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000503 case Legal: (void)LegalizeOp(Op); break;
Mon P Wang0c397192008-10-30 08:01:45 +0000504 case Promote:
505 if (!VT.isVector()) {
506 (void)PromoteOp(Op);
507 break;
508 }
509 else {
510 // See if we can widen otherwise use Expand to either scalarize or split
511 MVT WidenVT = TLI.getWidenVectorType(VT);
512 if (WidenVT != MVT::Other) {
513 (void) WidenVectorOp(Op, WidenVT);
514 break;
515 }
516 // else fall thru to expand since we can't widen the vector
517 }
Chris Lattnerc7029802006-03-18 01:44:44 +0000518 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000519 if (!VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +0000520 // If this is an illegal scalar, expand it into its two component
521 // pieces.
Dan Gohman475871a2008-07-27 21:46:04 +0000522 SDValue X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000523 if (Op.getOpcode() == ISD::TargetConstant)
524 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000525 ExpandOp(Op, X, Y);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000526 } else if (VT.getVectorNumElements() == 1) {
Dan Gohman7f321562007-06-25 16:23:39 +0000527 // If this is an illegal single element vector, convert it to a
528 // scalar operation.
529 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000530 } else {
Mon P Wang0c397192008-10-30 08:01:45 +0000531 // This is an illegal multiple element vector.
Dan Gohman7f321562007-06-25 16:23:39 +0000532 // Split it in half and legalize both parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000533 SDValue X, Y;
Dan Gohman7f321562007-06-25 16:23:39 +0000534 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000535 }
536 break;
537 }
538}
Chris Lattner6831a812006-02-13 09:18:02 +0000539
Evan Cheng9f877882006-12-13 20:57:08 +0000540/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
541/// a load from the constant pool.
Dan Gohman475871a2008-07-27 21:46:04 +0000542static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Dan Gohman0d137d72009-01-15 16:43:02 +0000543 SelectionDAG &DAG, const TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000544 bool Extend = false;
Dale Johannesen33c960f2009-02-04 20:06:27 +0000545 DebugLoc dl = CFP->getDebugLoc();
Evan Cheng00495212006-12-12 21:32:44 +0000546
547 // If a FP immediate is precise when represented as a float and if the
548 // target can do an extending load from float to double, we put it into
549 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000550 // double. This shrinks FP constants and canonicalizes them for targets where
551 // an FP extending load is the same cost as a normal load (such as on the x87
552 // fp stack or PPC FP unit).
Duncan Sands83ec4b62008-06-06 12:08:01 +0000553 MVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000554 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000555 if (!UseCP) {
Chris Lattnerd2e936a2009-03-08 01:47:41 +0000556 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000557 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000558 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000559 }
560
Duncan Sands83ec4b62008-06-06 12:08:01 +0000561 MVT OrigVT = VT;
562 MVT SVT = VT;
Evan Chengef120572008-03-04 08:05:30 +0000563 while (SVT != MVT::f32) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000564 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Chengef120572008-03-04 08:05:30 +0000565 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
566 // Only do this if the target has a native EXTLOAD instruction from
567 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000568 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000569 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000570 const Type *SType = SVT.getTypeForMVT();
Evan Chengef120572008-03-04 08:05:30 +0000571 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
572 VT = SVT;
573 Extend = true;
574 }
Evan Cheng00495212006-12-12 21:32:44 +0000575 }
576
Dan Gohman475871a2008-07-27 21:46:04 +0000577 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +0000578 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Chengef120572008-03-04 08:05:30 +0000579 if (Extend)
Dale Johannesen33c960f2009-02-04 20:06:27 +0000580 return DAG.getExtLoad(ISD::EXTLOAD, dl,
Dale Johannesen39355f92009-02-04 02:34:38 +0000581 OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000582 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman50284d82008-09-16 22:05:41 +0000583 0, VT, false, Alignment);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000584 return DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +0000585 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +0000586}
587
Chris Lattner6831a812006-02-13 09:18:02 +0000588
Evan Cheng912095b2007-01-04 21:56:39 +0000589/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
590/// operations.
591static
Dan Gohman475871a2008-07-27 21:46:04 +0000592SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
Dan Gohman0d137d72009-01-15 16:43:02 +0000593 SelectionDAG &DAG,
594 const TargetLowering &TLI) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000595 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000596 MVT VT = Node->getValueType(0);
597 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000598 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
599 "fcopysign expansion only supported for f32 and f64");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000600 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000601
Evan Cheng912095b2007-01-04 21:56:39 +0000602 // First get the sign bit of second operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000603 SDValue Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000604 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
605 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000606 Mask1 = DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT, Mask1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000607 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT,
Dale Johannesenbb5da912009-02-02 20:41:04 +0000608 Node->getOperand(1));
609 SignBit = DAG.getNode(ISD::AND, dl, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000610 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000611 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng912095b2007-01-04 21:56:39 +0000612 if (SizeDiff > 0) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000613 SignBit = DAG.getNode(ISD::SRL, dl, SrcNVT, SignBit,
Evan Cheng912095b2007-01-04 21:56:39 +0000614 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000615 SignBit = DAG.getNode(ISD::TRUNCATE, dl, NVT, SignBit);
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000616 } else if (SizeDiff < 0) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000617 SignBit = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, SignBit);
618 SignBit = DAG.getNode(ISD::SHL, dl, NVT, SignBit,
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000619 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
620 }
Evan Cheng068c5f42007-01-05 21:31:51 +0000621
622 // Clear the sign bit of first operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000623 SDValue Mask2 = (VT == MVT::f64)
Evan Cheng068c5f42007-01-05 21:31:51 +0000624 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
625 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000626 Mask2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask2);
627 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
628 Result = DAG.getNode(ISD::AND, dl, NVT, Result, Mask2);
Evan Cheng068c5f42007-01-05 21:31:51 +0000629
630 // Or the value with the sign bit.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000631 Result = DAG.getNode(ISD::OR, dl, NVT, Result, SignBit);
Evan Cheng912095b2007-01-04 21:56:39 +0000632 return Result;
633}
634
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000635/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
636static
Dan Gohman475871a2008-07-27 21:46:04 +0000637SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
Dan Gohman0d137d72009-01-15 16:43:02 +0000638 const TargetLowering &TLI) {
Dan Gohman475871a2008-07-27 21:46:04 +0000639 SDValue Chain = ST->getChain();
640 SDValue Ptr = ST->getBasePtr();
641 SDValue Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000642 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000643 int Alignment = ST->getAlignment();
644 int SVOffset = ST->getSrcValueOffset();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000645 DebugLoc dl = ST->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000646 if (ST->getMemoryVT().isFloatingPoint() ||
647 ST->getMemoryVT().isVector()) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000648 MVT intVT = MVT::getIntegerVT(VT.getSizeInBits());
649 if (TLI.isTypeLegal(intVT)) {
650 // Expand to a bitconvert of the value to the integer type of the
651 // same size, then a (misaligned) int store.
652 // FIXME: Does not handle truncating floating point stores!
Dale Johannesenbb5da912009-02-02 20:41:04 +0000653 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, intVT, Val);
654 return DAG.getStore(Chain, dl, Result, Ptr, ST->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000655 SVOffset, ST->isVolatile(), Alignment);
656 } else {
657 // Do a (aligned) store to a stack slot, then copy from the stack slot
658 // to the final destination using (unaligned) integer loads and stores.
659 MVT StoredVT = ST->getMemoryVT();
660 MVT RegVT =
661 TLI.getRegisterType(MVT::getIntegerVT(StoredVT.getSizeInBits()));
662 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
663 unsigned RegBytes = RegVT.getSizeInBits() / 8;
664 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000665
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000666 // Make sure the stack slot is also aligned for the register type.
667 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
668
669 // Perform the original store, only redirected to the stack slot.
Scott Michelfdc40a02009-02-17 22:15:04 +0000670 SDValue Store = DAG.getTruncStore(Chain, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +0000671 Val, StackPtr, NULL, 0, StoredVT);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000672 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
673 SmallVector<SDValue, 8> Stores;
674 unsigned Offset = 0;
675
676 // Do all but one copies using the full register width.
677 for (unsigned i = 1; i < NumRegs; i++) {
678 // Load one integer register's worth from the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000679 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr, NULL, 0);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000680 // Store it to the final location. Remember the store.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000681 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000682 ST->getSrcValue(), SVOffset + Offset,
683 ST->isVolatile(),
684 MinAlign(ST->getAlignment(), Offset)));
685 // Increment the pointers.
686 Offset += RegBytes;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000687 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000688 Increment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000689 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000690 }
691
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000692 // The last store may be partial. Do a truncating store. On big-endian
693 // machines this requires an extending load from the stack slot to ensure
694 // that the bits are in the right place.
695 MVT MemVT = MVT::getIntegerVT(8 * (StoredBytes - Offset));
Duncan Sands05e11fa2008-12-12 21:47:02 +0000696
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000697 // Load from the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000698 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000699 NULL, 0, MemVT);
700
Dale Johannesenbb5da912009-02-02 20:41:04 +0000701 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000702 ST->getSrcValue(), SVOffset + Offset,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000703 MemVT, ST->isVolatile(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000704 MinAlign(ST->getAlignment(), Offset)));
705 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000706 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sands05e11fa2008-12-12 21:47:02 +0000707 Stores.size());
708 }
Dale Johannesen907f28c2007-09-08 19:29:23 +0000709 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000710 assert(ST->getMemoryVT().isInteger() &&
711 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000712 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000713 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000714 MVT NewStoredVT =
715 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
716 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000717 int IncrementSize = NumBits / 8;
718
719 // Divide the stored value in two parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000720 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
721 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000722 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000723
724 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000725 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000726 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000727 ST->getSrcValue(), SVOffset, NewStoredVT,
728 ST->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000729 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000730 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000731 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000732 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000733 ST->getSrcValue(), SVOffset + IncrementSize,
734 NewStoredVT, ST->isVolatile(), Alignment);
735
Dale Johannesenbb5da912009-02-02 20:41:04 +0000736 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000737}
738
739/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
740static
Dan Gohman475871a2008-07-27 21:46:04 +0000741SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
Dan Gohmane9530ec2009-01-15 16:58:17 +0000742 const TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000743 int SVOffset = LD->getSrcValueOffset();
Dan Gohman475871a2008-07-27 21:46:04 +0000744 SDValue Chain = LD->getChain();
745 SDValue Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000746 MVT VT = LD->getValueType(0);
747 MVT LoadedVT = LD->getMemoryVT();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000748 DebugLoc dl = LD->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000749 if (VT.isFloatingPoint() || VT.isVector()) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000750 MVT intVT = MVT::getIntegerVT(LoadedVT.getSizeInBits());
751 if (TLI.isTypeLegal(intVT)) {
752 // Expand to a (misaligned) integer load of the same size,
753 // then bitconvert to floating point or vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000754 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000755 SVOffset, LD->isVolatile(),
Dale Johannesen907f28c2007-09-08 19:29:23 +0000756 LD->getAlignment());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000757 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, LoadedVT, newLoad);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000758 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesenbb5da912009-02-02 20:41:04 +0000759 Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000760
Duncan Sands05e11fa2008-12-12 21:47:02 +0000761 SDValue Ops[] = { Result, Chain };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000762 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000763 } else {
764 // Copy the value to a (aligned) stack slot using (unaligned) integer
765 // loads and stores, then do a (aligned) load from the stack slot.
766 MVT RegVT = TLI.getRegisterType(intVT);
767 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
768 unsigned RegBytes = RegVT.getSizeInBits() / 8;
769 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
770
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000771 // Make sure the stack slot is also aligned for the register type.
772 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
773
Duncan Sands05e11fa2008-12-12 21:47:02 +0000774 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
775 SmallVector<SDValue, 8> Stores;
776 SDValue StackPtr = StackBase;
777 unsigned Offset = 0;
778
779 // Do all but one copies using the full register width.
780 for (unsigned i = 1; i < NumRegs; i++) {
781 // Load one integer register's worth from the original location.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000782 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000783 SVOffset + Offset, LD->isVolatile(),
784 MinAlign(LD->getAlignment(), Offset));
785 // Follow the load with a store to the stack slot. Remember the store.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000786 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000787 NULL, 0));
788 // Increment the pointers.
789 Offset += RegBytes;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000790 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
791 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000792 Increment);
793 }
794
795 // The last copy may be partial. Do an extending load.
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000796 MVT MemVT = MVT::getIntegerVT(8 * (LoadedBytes - Offset));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000797 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000798 LD->getSrcValue(), SVOffset + Offset,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000799 MemVT, LD->isVolatile(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000800 MinAlign(LD->getAlignment(), Offset));
801 // Follow the load with a store to the stack slot. Remember the store.
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000802 // On big-endian machines this requires a truncating store to ensure
803 // that the bits end up in the right place.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000804 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000805 NULL, 0, MemVT));
Duncan Sands05e11fa2008-12-12 21:47:02 +0000806
807 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000808 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sands05e11fa2008-12-12 21:47:02 +0000809 Stores.size());
810
811 // Finally, perform the original load only redirected to the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000812 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000813 NULL, 0, LoadedVT);
814
815 // Callers expect a MERGE_VALUES node.
816 SDValue Ops[] = { Load, TF };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000817 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000818 }
Dale Johannesen907f28c2007-09-08 19:29:23 +0000819 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000820 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000821 "Unaligned load of unsupported type.");
822
Dale Johannesen8155d642008-02-27 22:36:00 +0000823 // Compute the new VT that is half the size of the old one. This is an
824 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000825 unsigned NumBits = LoadedVT.getSizeInBits();
826 MVT NewLoadedVT;
827 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000828 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000829
Chris Lattnere400af82007-11-19 21:38:03 +0000830 unsigned Alignment = LD->getAlignment();
831 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000832 ISD::LoadExtType HiExtType = LD->getExtensionType();
833
834 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
835 if (HiExtType == ISD::NON_EXTLOAD)
836 HiExtType = ISD::ZEXTLOAD;
837
838 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000839 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000840 if (TLI.isLittleEndian()) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000841 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000842 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000843 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000844 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000845 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000846 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000847 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000848 } else {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000849 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +0000850 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000851 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000852 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000853 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000854 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000855 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000856 }
857
858 // aggregate the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000859 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000860 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
861 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000862
Dale Johannesenbb5da912009-02-02 20:41:04 +0000863 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000864 Hi.getValue(1));
865
Dan Gohman475871a2008-07-27 21:46:04 +0000866 SDValue Ops[] = { Result, TF };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000867 return DAG.getMergeValues(Ops, 2, dl);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000868}
Evan Cheng912095b2007-01-04 21:56:39 +0000869
Dan Gohman82669522007-10-11 23:57:53 +0000870/// UnrollVectorOp - We know that the given vector has a legal type, however
871/// the operation it performs is not legal and is an operation that we have
872/// no way of lowering. "Unroll" the vector, splitting out the scalars and
873/// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000874SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000875 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000876 assert(isTypeLegal(VT) &&
877 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000878 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman82669522007-10-11 23:57:53 +0000879 "Can't unroll a vector with multiple results!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000880 unsigned NE = VT.getVectorNumElements();
881 MVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000882 DebugLoc dl = Op.getDebugLoc();
Dan Gohman82669522007-10-11 23:57:53 +0000883
Dan Gohman475871a2008-07-27 21:46:04 +0000884 SmallVector<SDValue, 8> Scalars;
885 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman82669522007-10-11 23:57:53 +0000886 for (unsigned i = 0; i != NE; ++i) {
887 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +0000888 SDValue Operand = Op.getOperand(j);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000889 MVT OperandVT = Operand.getValueType();
890 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000891 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000892 MVT OperandEltVT = OperandVT.getVectorElementType();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000893 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dan Gohman82669522007-10-11 23:57:53 +0000894 OperandEltVT,
895 Operand,
896 DAG.getConstant(i, MVT::i32));
897 } else {
898 // A scalar operand; just use it as is.
899 Operands[j] = Operand;
900 }
901 }
Mon P Wange9f10152008-12-09 05:46:39 +0000902
903 switch (Op.getOpcode()) {
904 default:
Dale Johannesenbb5da912009-02-02 20:41:04 +0000905 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT,
Mon P Wange9f10152008-12-09 05:46:39 +0000906 &Operands[0], Operands.size()));
907 break;
908 case ISD::SHL:
909 case ISD::SRA:
910 case ISD::SRL:
Duncan Sands92abc622009-01-31 15:50:11 +0000911 case ISD::ROTL:
912 case ISD::ROTR:
Dale Johannesenbb5da912009-02-02 20:41:04 +0000913 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT, Operands[0],
Duncan Sands92abc622009-01-31 15:50:11 +0000914 DAG.getShiftAmountOperand(Operands[1])));
Mon P Wange9f10152008-12-09 05:46:39 +0000915 break;
916 }
Dan Gohman82669522007-10-11 23:57:53 +0000917 }
918
Evan Chenga87008d2009-02-25 22:49:59 +0000919 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Scalars[0], Scalars.size());
Dan Gohman82669522007-10-11 23:57:53 +0000920}
921
Duncan Sands007f9842008-01-10 10:28:30 +0000922/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000923static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000924 RTLIB::Libcall Call_F32,
925 RTLIB::Libcall Call_F64,
926 RTLIB::Libcall Call_F80,
927 RTLIB::Libcall Call_PPCF128) {
928 return
929 VT == MVT::f32 ? Call_F32 :
930 VT == MVT::f64 ? Call_F64 :
931 VT == MVT::f80 ? Call_F80 :
932 VT == MVT::ppcf128 ? Call_PPCF128 :
933 RTLIB::UNKNOWN_LIBCALL;
934}
935
Nate Begeman68679912008-04-25 18:07:40 +0000936/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
937/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
938/// is necessary to spill the vector being inserted into to memory, perform
939/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000940SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000941PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
942 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000943 SDValue Tmp1 = Vec;
944 SDValue Tmp2 = Val;
945 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000946
Nate Begeman68679912008-04-25 18:07:40 +0000947 // If the target doesn't support this, we have to spill the input vector
948 // to a temporary stack slot, update the element, then reload it. This is
949 // badness. We could also load the value into a vector register (either
950 // with a "move to register" or "extload into register" instruction, then
951 // permute it into place, if the idx is a constant and if the idx is
952 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000953 MVT VT = Tmp1.getValueType();
954 MVT EltVT = VT.getVectorElementType();
955 MVT IdxVT = Tmp3.getValueType();
956 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000957 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000958
Gabor Greifba36cb52008-08-28 21:40:38 +0000959 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman68679912008-04-25 18:07:40 +0000960
961 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000962 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Mon P Wang0c397192008-10-30 08:01:45 +0000963 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000964
965 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000966 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000967 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000968 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000969 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000970 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
971 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000972 // Store the scalar value.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000973 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2,
Dan Gohmana54cf172008-07-11 22:44:52 +0000974 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman68679912008-04-25 18:07:40 +0000975 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000976 return DAG.getLoad(VT, dl, Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +0000977 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000978}
979
Mon P Wange9f10152008-12-09 05:46:39 +0000980
Dan Gohmana3466152007-07-13 20:14:11 +0000981/// LegalizeOp - We know that the specified value has a legal type, and
982/// that its operands are legal. Now ensure that the operation itself
983/// is legal, recursively ensuring that the operands' operations remain
984/// legal.
Dan Gohman475871a2008-07-27 21:46:04 +0000985SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000986 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
987 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +0000988
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000989 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000990 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000991 SDNode *Node = Op.getNode();
Dale Johannesen7d2ad622009-01-30 23:10:59 +0000992 DebugLoc dl = Node->getDebugLoc();
Chris Lattnere3304a32005-01-08 20:35:13 +0000993
Chris Lattner3e928bb2005-01-07 07:47:09 +0000994 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000995 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000996 if (Node->getNumValues() > 1) {
997 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000998 if (getTypeAction(Node->getValueType(i)) != Legal) {
999 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001000 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +00001001 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +00001002 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +00001003 }
1004 }
1005
Chris Lattner45982da2005-05-12 16:53:42 +00001006 // Note that LegalizeOp may be reentered even from single-use nodes, which
1007 // means that we always must cache transformed nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00001008 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +00001009 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001010
Dan Gohman475871a2008-07-27 21:46:04 +00001011 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
1012 SDValue Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +00001013 bool isCustom = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001014
Chris Lattner3e928bb2005-01-07 07:47:09 +00001015 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +00001016 case ISD::FrameIndex:
1017 case ISD::EntryToken:
1018 case ISD::Register:
1019 case ISD::BasicBlock:
1020 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +00001021 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +00001022 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +00001023 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +00001024 case ISD::TargetConstantPool:
1025 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001026 case ISD::TargetGlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +00001027 case ISD::TargetExternalSymbol:
Chris Lattner948c1b12006-01-28 08:31:04 +00001028 case ISD::VALUETYPE:
1029 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +00001030 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +00001031 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +00001032 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +00001033 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00001034 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +00001035 "This must be legal!");
1036 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001037 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001038 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
1039 // If this is a target node, legalize it by legalizing the operands then
1040 // passing it through.
Dan Gohman475871a2008-07-27 21:46:04 +00001041 SmallVector<SDValue, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001042 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001043 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001044
Jay Foade3e51c02009-05-21 09:52:38 +00001045 Result = DAG.UpdateNodeOperands(Result.getValue(0), Ops.data(), Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001046
1047 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1048 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001049 return Result.getValue(Op.getResNo());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001050 }
1051 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001052#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00001053 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001054#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00001055 assert(0 && "Do not know how to legalize this operator!");
1056 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +00001057 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +00001058 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001059 case ISD::GlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +00001060 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +00001061 case ISD::ConstantPool:
1062 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001063 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1064 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +00001065 case TargetLowering::Custom:
1066 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001067 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner948c1b12006-01-28 08:31:04 +00001068 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001069 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001070 break;
1071 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001072 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +00001073 case ISD::FRAMEADDR:
1074 case ISD::RETURNADDR:
1075 // The only option for these nodes is to custom lower them. If the target
1076 // does not custom lower them, then return zero.
1077 Tmp1 = TLI.LowerOperation(Op, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00001078 if (Tmp1.getNode())
Nate Begemanbcc5f362007-01-29 22:58:52 +00001079 Result = Tmp1;
1080 else
1081 Result = DAG.getConstant(0, TLI.getPointerTy());
1082 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +00001083 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001084 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001085 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1086 default: assert(0 && "This action is not supported yet!");
1087 case TargetLowering::Custom:
1088 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001089 if (Result.getNode()) break;
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001090 // Fall Thru
1091 case TargetLowering::Legal:
1092 Result = DAG.getConstant(0, VT);
1093 break;
1094 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +00001095 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001096 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +00001097 case ISD::EXCEPTIONADDR: {
1098 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001099 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001100 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1101 default: assert(0 && "This action is not supported yet!");
1102 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +00001103 unsigned Reg = TLI.getExceptionAddressRegister();
Dale Johannesenc460ae92009-02-04 00:13:36 +00001104 Result = DAG.getCopyFromReg(Tmp1, dl, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001105 }
1106 break;
1107 case TargetLowering::Custom:
1108 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001109 if (Result.getNode()) break;
Jim Laskey2bc210d2007-02-22 15:37:19 +00001110 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001111 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001112 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Dale Johannesenca57b842009-02-02 23:46:53 +00001113 Result = DAG.getMergeValues(Ops, 2, dl);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001114 break;
1115 }
1116 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001117 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001118 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +00001119
Gabor Greifba36cb52008-08-28 21:40:38 +00001120 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +00001121 "Cannot return more than two values!");
1122
1123 // Since we produced two values, make sure to remember that we
1124 // legalized both of them.
1125 Tmp1 = LegalizeOp(Result);
1126 Tmp2 = LegalizeOp(Result.getValue(1));
1127 AddLegalizedOperand(Op.getValue(0), Tmp1);
1128 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001129 return Op.getResNo() ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +00001130 case ISD::EHSELECTION: {
1131 Tmp1 = LegalizeOp(Node->getOperand(0));
1132 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001133 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +00001134 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1135 default: assert(0 && "This action is not supported yet!");
1136 case TargetLowering::Expand: {
1137 unsigned Reg = TLI.getExceptionSelectorRegister();
Dale Johannesenc460ae92009-02-04 00:13:36 +00001138 Result = DAG.getCopyFromReg(Tmp2, dl, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +00001139 }
1140 break;
1141 case TargetLowering::Custom:
1142 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001143 if (Result.getNode()) break;
Jim Laskey8782d482007-02-28 20:43:58 +00001144 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001145 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001146 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Dale Johannesenca57b842009-02-02 23:46:53 +00001147 Result = DAG.getMergeValues(Ops, 2, dl);
Jim Laskey8782d482007-02-28 20:43:58 +00001148 break;
1149 }
1150 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001151 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001152 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +00001153
Gabor Greifba36cb52008-08-28 21:40:38 +00001154 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +00001155 "Cannot return more than two values!");
1156
1157 // Since we produced two values, make sure to remember that we
1158 // legalized both of them.
1159 Tmp1 = LegalizeOp(Result);
1160 Tmp2 = LegalizeOp(Result.getValue(1));
1161 AddLegalizedOperand(Op.getValue(0), Tmp1);
1162 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001163 return Op.getResNo() ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001164 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001165 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001166 // The only "good" option for this node is to custom lower it.
1167 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1168 default: assert(0 && "This action is not supported at all!");
1169 case TargetLowering::Custom:
1170 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001171 if (Result.getNode()) break;
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001172 // Fall Thru
1173 case TargetLowering::Legal:
1174 // Target does not know, how to lower this, lower to noop
1175 Result = LegalizeOp(Node->getOperand(0));
1176 break;
1177 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001178 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001179 break;
Chris Lattner08951a32005-09-02 01:15:01 +00001180 case ISD::AssertSext:
1181 case ISD::AssertZext:
1182 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001183 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +00001184 break;
Chris Lattner308575b2005-11-20 22:56:56 +00001185 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001186 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif99a6cb92008-08-26 22:36:50 +00001187 Result = Node->getOperand(Op.getResNo());
Chris Lattner456a93a2006-01-28 07:39:30 +00001188 break;
Chris Lattner69a52152005-01-14 22:38:01 +00001189 case ISD::CopyFromReg:
1190 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001191 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001192 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001193 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +00001194 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001195 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001196 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001197 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001198 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1199 } else {
1200 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1201 }
Chris Lattner7310fb12005-12-18 15:27:43 +00001202 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1203 }
Chris Lattner13c184d2005-01-28 06:27:38 +00001204 // Since CopyFromReg produces two values, make sure to remember that we
1205 // legalized both of them.
1206 AddLegalizedOperand(Op.getValue(0), Result);
1207 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001208 return Result.getValue(Op.getResNo());
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001209 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001210 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001211 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +00001212 default: assert(0 && "This action is not supported yet!");
1213 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001214 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001215 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001216 else if (VT.isFloatingPoint())
1217 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +00001218 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001219 else
1220 assert(0 && "Unknown value type!");
1221 break;
Nate Begemanea19cd52005-04-02 00:41:14 +00001222 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001223 break;
1224 }
1225 break;
1226 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001227
Chris Lattner48b61a72006-03-28 00:40:33 +00001228 case ISD::INTRINSIC_W_CHAIN:
1229 case ISD::INTRINSIC_WO_CHAIN:
1230 case ISD::INTRINSIC_VOID: {
Dan Gohman475871a2008-07-27 21:46:04 +00001231 SmallVector<SDValue, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001232 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1233 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001234 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001235
Chris Lattner10d7fa62006-03-26 09:12:51 +00001236 // Allow the target to custom lower its intrinsics if it wants to.
Scott Michelfdc40a02009-02-17 22:15:04 +00001237 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001238 TargetLowering::Custom) {
1239 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001240 if (Tmp3.getNode()) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001241 }
1242
Gabor Greifba36cb52008-08-28 21:40:38 +00001243 if (Result.getNode()->getNumValues() == 1) break;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001244
1245 // Must have return value and chain result.
Gabor Greifba36cb52008-08-28 21:40:38 +00001246 assert(Result.getNode()->getNumValues() == 2 &&
Chris Lattner13fc2f12006-03-27 20:28:29 +00001247 "Cannot return more than two values!");
1248
Scott Michelfdc40a02009-02-17 22:15:04 +00001249 // Since loads produce two values, make sure to remember that we
Chris Lattner13fc2f12006-03-27 20:28:29 +00001250 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001251 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1252 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001253 return Result.getValue(Op.getResNo());
Scott Michelfdc40a02009-02-17 22:15:04 +00001254 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001255
Dan Gohman7f460202008-06-30 20:59:49 +00001256 case ISD::DBG_STOPPOINT:
1257 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner36ce6912005-11-29 06:21:05 +00001258 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00001259
Dan Gohman7f460202008-06-30 20:59:49 +00001260 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner36ce6912005-11-29 06:21:05 +00001261 case TargetLowering::Promote:
1262 default: assert(0 && "This action is not supported yet!");
Bill Wendling92c1e122009-02-13 02:16:35 +00001263 case TargetLowering::Expand: {
1264 DwarfWriter *DW = DAG.getDwarfWriter();
1265 bool useDEBUG_LOC = TLI.isOperationLegalOrCustom(ISD::DEBUG_LOC,
1266 MVT::Other);
1267 bool useLABEL = TLI.isOperationLegalOrCustom(ISD::DBG_LABEL, MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00001268
Bill Wendling92c1e122009-02-13 02:16:35 +00001269 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
1270 GlobalVariable *CU_GV = cast<GlobalVariable>(DSP->getCompileUnit());
1271 if (DW && (useDEBUG_LOC || useLABEL) && !CU_GV->isDeclaration()) {
1272 DICompileUnit CU(cast<GlobalVariable>(DSP->getCompileUnit()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001273
Bill Wendling92c1e122009-02-13 02:16:35 +00001274 unsigned Line = DSP->getLine();
1275 unsigned Col = DSP->getColumn();
Bill Wendling86e6cb92009-02-17 01:04:54 +00001276
Bill Wendling98a366d2009-04-29 23:29:43 +00001277 if (OptLevel == CodeGenOpt::None) {
Bill Wendling86e6cb92009-02-17 01:04:54 +00001278 // A bit self-referential to have DebugLoc on Debug_Loc nodes, but it
1279 // won't hurt anything.
1280 if (useDEBUG_LOC) {
1281 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Bill Wendling92c1e122009-02-13 02:16:35 +00001282 DAG.getConstant(Col, MVT::i32),
Argyrios Kyrtzidisa26eae62009-04-30 23:22:31 +00001283 DAG.getSrcValue(CU.getGV()) };
Bill Wendling86e6cb92009-02-17 01:04:54 +00001284 Result = DAG.getNode(ISD::DEBUG_LOC, dl, MVT::Other, Ops, 4);
1285 } else {
Argyrios Kyrtzidisa26eae62009-04-30 23:22:31 +00001286 unsigned ID = DW->RecordSourceLine(Line, Col, CU);
Bill Wendling86e6cb92009-02-17 01:04:54 +00001287 Result = DAG.getLabel(ISD::DBG_LABEL, dl, Tmp1, ID);
1288 }
Bill Wendling92c1e122009-02-13 02:16:35 +00001289 } else {
Bill Wendling86e6cb92009-02-17 01:04:54 +00001290 Result = Tmp1; // chain
Bill Wendling92c1e122009-02-13 02:16:35 +00001291 }
1292 } else {
1293 Result = Tmp1; // chain
1294 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001295 break;
Bill Wendling92c1e122009-02-13 02:16:35 +00001296 }
Sanjiv Gupta5274a4a2009-04-02 18:03:10 +00001297 case TargetLowering::Custom:
1298 Result = TLI.LowerOperation(Op, DAG);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001299 if (Result.getNode())
Sanjiv Gupta5274a4a2009-04-02 18:03:10 +00001300 break;
Evan Cheng71e86852008-07-08 20:06:39 +00001301 case TargetLowering::Legal: {
1302 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1303 if (Action == Legal && Tmp1 == Node->getOperand(0))
1304 break;
1305
Dan Gohman475871a2008-07-27 21:46:04 +00001306 SmallVector<SDValue, 8> Ops;
Evan Cheng71e86852008-07-08 20:06:39 +00001307 Ops.push_back(Tmp1);
1308 if (Action == Legal) {
1309 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1310 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1311 } else {
1312 // Otherwise promote them.
1313 Ops.push_back(PromoteOp(Node->getOperand(1)));
1314 Ops.push_back(PromoteOp(Node->getOperand(2)));
Chris Lattner36ce6912005-11-29 06:21:05 +00001315 }
Evan Cheng71e86852008-07-08 20:06:39 +00001316 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1317 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1318 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001319 break;
1320 }
Evan Cheng71e86852008-07-08 20:06:39 +00001321 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001322 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001323
1324 case ISD::DECLARE:
1325 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1326 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1327 default: assert(0 && "This action is not supported yet!");
1328 case TargetLowering::Legal:
1329 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1330 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1331 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1332 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1333 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001334 case TargetLowering::Expand:
1335 Result = LegalizeOp(Node->getOperand(0));
1336 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001337 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001338 break;
1339
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001340 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001341 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001342 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001343 default: assert(0 && "This action is not supported yet!");
Evan Cheng71e86852008-07-08 20:06:39 +00001344 case TargetLowering::Legal: {
1345 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001346 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng71e86852008-07-08 20:06:39 +00001347 if (Action == Legal && Tmp1 == Node->getOperand(0))
1348 break;
1349 if (Action == Legal) {
1350 Tmp2 = Node->getOperand(1);
1351 Tmp3 = Node->getOperand(2);
1352 Tmp4 = Node->getOperand(3);
1353 } else {
1354 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1355 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1356 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1357 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001358 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001359 break;
1360 }
Evan Cheng71e86852008-07-08 20:06:39 +00001361 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001362 break;
Jim Laskeyabf6d172006-01-05 01:25:28 +00001363
Dan Gohman44066042008-07-01 00:05:16 +00001364 case ISD::DBG_LABEL:
1365 case ISD::EH_LABEL:
1366 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1367 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001368 default: assert(0 && "This action is not supported yet!");
1369 case TargetLowering::Legal:
1370 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001371 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001372 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001373 case TargetLowering::Expand:
1374 Result = LegalizeOp(Node->getOperand(0));
1375 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001376 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001377 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001378
Evan Cheng27b7db52008-03-08 00:58:38 +00001379 case ISD::PREFETCH:
1380 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1381 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1382 default: assert(0 && "This action is not supported yet!");
1383 case TargetLowering::Legal:
1384 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1385 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1386 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1387 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1388 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1389 break;
1390 case TargetLowering::Expand:
1391 // It's a noop.
1392 Result = LegalizeOp(Node->getOperand(0));
1393 break;
1394 }
1395 break;
1396
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001397 case ISD::MEMBARRIER: {
1398 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001399 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1400 default: assert(0 && "This action is not supported yet!");
1401 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001402 SDValue Ops[6];
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001403 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001404 for (int x = 1; x < 6; ++x) {
1405 Ops[x] = Node->getOperand(x);
1406 if (!isTypeLegal(Ops[x].getValueType()))
1407 Ops[x] = PromoteOp(Ops[x]);
1408 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001409 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1410 break;
1411 }
1412 case TargetLowering::Expand:
1413 //There is no libgcc call for this op
1414 Result = Node->getOperand(0); // Noop
1415 break;
1416 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001417 break;
1418 }
1419
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001420 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001421 unsigned int num_operands = 4;
1422 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001423 SDValue Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001424 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001425 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001426 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Scott Michelfdc40a02009-02-17 22:15:04 +00001427
Mon P Wang63307c32008-05-05 19:05:59 +00001428 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1429 default: assert(0 && "This action is not supported yet!");
1430 case TargetLowering::Custom:
1431 Result = TLI.LowerOperation(Result, DAG);
1432 break;
1433 case TargetLowering::Legal:
1434 break;
1435 }
Dan Gohman475871a2008-07-27 21:46:04 +00001436 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1437 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001438 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001439 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001440 case ISD::ATOMIC_LOAD_ADD:
1441 case ISD::ATOMIC_LOAD_SUB:
1442 case ISD::ATOMIC_LOAD_AND:
1443 case ISD::ATOMIC_LOAD_OR:
1444 case ISD::ATOMIC_LOAD_XOR:
1445 case ISD::ATOMIC_LOAD_NAND:
1446 case ISD::ATOMIC_LOAD_MIN:
1447 case ISD::ATOMIC_LOAD_MAX:
1448 case ISD::ATOMIC_LOAD_UMIN:
1449 case ISD::ATOMIC_LOAD_UMAX:
1450 case ISD::ATOMIC_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001451 unsigned int num_operands = 3;
1452 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001453 SDValue Ops[3];
Mon P Wang63307c32008-05-05 19:05:59 +00001454 for (unsigned int x = 0; x < num_operands; ++x)
1455 Ops[x] = LegalizeOp(Node->getOperand(x));
1456 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001457
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001458 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001459 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001460 case TargetLowering::Custom:
1461 Result = TLI.LowerOperation(Result, DAG);
1462 break;
1463 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001464 break;
1465 }
Dan Gohman475871a2008-07-27 21:46:04 +00001466 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1467 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001468 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001469 }
Scott Michelc1513d22007-08-08 23:23:31 +00001470 case ISD::Constant: {
1471 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1472 unsigned opAction =
1473 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1474
Chris Lattner3e928bb2005-01-07 07:47:09 +00001475 // We know we don't need to expand constants here, constants only have one
1476 // value and we check that it is fine above.
1477
Scott Michelc1513d22007-08-08 23:23:31 +00001478 if (opAction == TargetLowering::Custom) {
1479 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001480 if (Tmp1.getNode())
Scott Michelc1513d22007-08-08 23:23:31 +00001481 Result = Tmp1;
1482 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001483 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001484 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001485 case ISD::ConstantFP: {
1486 // Spill FP immediates to the constant pool if the target cannot directly
1487 // codegen them. Targets often have some immediate values that can be
1488 // efficiently generated into an FP register without a load. We explicitly
1489 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001490 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1491
Chris Lattner3181a772006-01-29 06:26:56 +00001492 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1493 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001494 case TargetLowering::Legal:
1495 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001496 case TargetLowering::Custom:
1497 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001498 if (Tmp3.getNode()) {
Chris Lattner3181a772006-01-29 06:26:56 +00001499 Result = Tmp3;
1500 break;
1501 }
1502 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001503 case TargetLowering::Expand: {
1504 // Check to see if this FP immediate is already legal.
1505 bool isLegal = false;
1506 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1507 E = TLI.legal_fpimm_end(); I != E; ++I) {
1508 if (CFP->isExactlyValue(*I)) {
1509 isLegal = true;
1510 break;
1511 }
1512 }
1513 // If this is a legal constant, turn it into a TargetConstantFP node.
1514 if (isLegal)
1515 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001516 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001517 }
Nate Begemane1795842008-02-14 08:57:00 +00001518 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001519 break;
1520 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001521 case ISD::TokenFactor:
1522 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001523 Tmp1 = LegalizeOp(Node->getOperand(0));
1524 Tmp2 = LegalizeOp(Node->getOperand(1));
1525 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1526 } else if (Node->getNumOperands() == 3) {
1527 Tmp1 = LegalizeOp(Node->getOperand(0));
1528 Tmp2 = LegalizeOp(Node->getOperand(1));
1529 Tmp3 = LegalizeOp(Node->getOperand(2));
1530 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001531 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001532 SmallVector<SDValue, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001533 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001534 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1535 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001536 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001537 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001538 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001539
Chris Lattnerfdfded52006-04-12 16:20:43 +00001540 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001541 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001542 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001543 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001544 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001545 // A call within a calling sequence must be legalized to something
1546 // other than the normal CALLSEQ_END. Violating this gets Legalize
1547 // into an infinite loop.
1548 assert ((!IsLegalizingCall ||
1549 Node->getOpcode() != ISD::CALL ||
Gabor Greifba36cb52008-08-28 21:40:38 +00001550 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesen0ea03562008-03-05 19:14:03 +00001551 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001552
1553 // The number of incoming and outgoing values should match; unless the final
1554 // outgoing value is a flag.
Gabor Greifba36cb52008-08-28 21:40:38 +00001555 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1556 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1557 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001558 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001559 "Lowering call/formal_arguments produced unexpected # results!");
Scott Michelfdc40a02009-02-17 22:15:04 +00001560
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001561 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001562 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greifba36cb52008-08-28 21:40:38 +00001563 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1564 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001565 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001566 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001567 if (Op.getResNo() == i)
Chris Lattnere2e41732006-05-16 05:49:56 +00001568 Tmp2 = Tmp1;
Dan Gohman475871a2008-07-27 21:46:04 +00001569 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Chris Lattnere2e41732006-05-16 05:49:56 +00001570 }
1571 return Tmp2;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001572 case ISD::BUILD_VECTOR:
1573 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001574 default: assert(0 && "This action is not supported yet!");
1575 case TargetLowering::Custom:
1576 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001577 if (Tmp3.getNode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001578 Result = Tmp3;
1579 break;
1580 }
1581 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001582 case TargetLowering::Expand:
Gabor Greifba36cb52008-08-28 21:40:38 +00001583 Result = ExpandBUILD_VECTOR(Result.getNode());
Chris Lattnerb2827b02006-03-19 00:52:58 +00001584 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001585 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001586 break;
1587 case ISD::INSERT_VECTOR_ELT:
1588 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001589 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001590
1591 // The type of the value to insert may not be legal, even though the vector
1592 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1593 // here.
1594 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1595 default: assert(0 && "Cannot expand insert element operand");
1596 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1597 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Mon P Wang0c397192008-10-30 08:01:45 +00001598 case Expand:
1599 // FIXME: An alternative would be to check to see if the target is not
Scott Michelfdc40a02009-02-17 22:15:04 +00001600 // going to custom lower this operation, we could bitcast to half elt
Mon P Wang0c397192008-10-30 08:01:45 +00001601 // width and perform two inserts at that width, if that is legal.
1602 Tmp2 = Node->getOperand(1);
1603 break;
Nate Begeman0325d902008-02-13 06:43:04 +00001604 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001605 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00001606
Chris Lattner2332b9f2006-03-19 01:17:20 +00001607 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1608 Node->getValueType(0))) {
1609 default: assert(0 && "This action is not supported yet!");
1610 case TargetLowering::Legal:
1611 break;
1612 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001613 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001614 if (Tmp4.getNode()) {
Nate Begeman2281a992008-01-05 20:47:37 +00001615 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001616 break;
1617 }
1618 // FALLTHROUGH
Mon P Wang0c397192008-10-30 08:01:45 +00001619 case TargetLowering::Promote:
1620 // Fall thru for vector case
Chris Lattner2332b9f2006-03-19 01:17:20 +00001621 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001622 // If the insert index is a constant, codegen this as a scalar_to_vector,
1623 // then a shuffle that inserts it into the right position in the vector.
1624 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001625 // SCALAR_TO_VECTOR requires that the type of the value being inserted
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00001626 // match the element type of the vector being created, except for
1627 // integers in which case the inserted value can be over width.
1628 MVT EltVT = Op.getValueType().getVectorElementType();
1629 if (Tmp2.getValueType() == EltVT ||
1630 (EltVT.isInteger() && Tmp2.getValueType().bitsGE(EltVT))) {
Dale Johannesenca57b842009-02-02 23:46:53 +00001631 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001632 Tmp1.getValueType(), Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00001633
Duncan Sands83ec4b62008-06-06 12:08:01 +00001634 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
Nate Begeman0325d902008-02-13 06:43:04 +00001635 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1636 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1637 // elt 0 of the RHS.
Nate Begeman9008ca62009-04-27 18:41:29 +00001638 SmallVector<int, 8> ShufOps;
1639 for (unsigned i = 0; i != NumElts; ++i)
1640 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
1641
1642 Result = DAG.getVectorShuffle(Tmp1.getValueType(), dl, Tmp1, ScVec,
1643 &ShufOps[0]);
Nate Begeman0325d902008-02-13 06:43:04 +00001644 Result = LegalizeOp(Result);
1645 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001646 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001647 }
Dale Johannesenbb5da912009-02-02 20:41:04 +00001648 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3, dl);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001649 break;
1650 }
1651 }
1652 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001653 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001654 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1655 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1656 break;
1657 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001658
Chris Lattnerce872152006-03-19 06:31:19 +00001659 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1660 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1661 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1662 Node->getValueType(0))) {
1663 default: assert(0 && "This action is not supported yet!");
1664 case TargetLowering::Legal:
1665 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001666 case TargetLowering::Custom:
1667 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001668 if (Tmp3.getNode()) {
Chris Lattner4d3abee2006-03-19 06:47:21 +00001669 Result = Tmp3;
1670 break;
1671 }
1672 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001673 case TargetLowering::Expand:
1674 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001675 break;
1676 }
Chris Lattnerce872152006-03-19 06:31:19 +00001677 break;
Nate Begeman9008ca62009-04-27 18:41:29 +00001678 case ISD::VECTOR_SHUFFLE: {
Chris Lattner87100e02006-03-20 01:52:29 +00001679 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1680 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00001681 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1682 MVT VT = Result.getValueType();
1683
Nate Begeman5a5ca152009-04-29 05:20:52 +00001684 // Copy the Mask to a local SmallVector for use with isShuffleMaskLegal.
Nate Begeman9008ca62009-04-27 18:41:29 +00001685 SmallVector<int, 8> Mask;
1686 cast<ShuffleVectorSDNode>(Result)->getMask(Mask);
Chris Lattner87100e02006-03-20 01:52:29 +00001687
1688 // Allow targets to custom lower the SHUFFLEs they support.
Nate Begeman9008ca62009-04-27 18:41:29 +00001689 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
Chris Lattner4352cc92006-04-04 17:23:26 +00001690 default: assert(0 && "Unknown operation action!");
1691 case TargetLowering::Legal:
Nate Begeman9008ca62009-04-27 18:41:29 +00001692 assert(TLI.isShuffleMaskLegal(Mask, VT) &&
Chris Lattner4352cc92006-04-04 17:23:26 +00001693 "vector shuffle should not be created if not legal!");
1694 break;
1695 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001696 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001697 if (Tmp3.getNode()) {
Evan Cheng18dd6d02006-04-05 06:07:11 +00001698 Result = Tmp3;
1699 break;
1700 }
1701 // FALLTHROUGH
1702 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001703 MVT EltVT = VT.getVectorElementType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00001704 unsigned NumElems = VT.getVectorNumElements();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001705 SmallVector<SDValue, 8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00001706 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00001707 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00001708 Ops.push_back(DAG.getUNDEF(EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00001709 continue;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001710 }
Nate Begeman5a5ca152009-04-29 05:20:52 +00001711 unsigned Idx = Mask[i];
Nate Begeman9008ca62009-04-27 18:41:29 +00001712 if (Idx < NumElems)
1713 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp1,
1714 DAG.getIntPtrConstant(Idx)));
1715 else
1716 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp2,
1717 DAG.getIntPtrConstant(Idx - NumElems)));
Evan Cheng18dd6d02006-04-05 06:07:11 +00001718 }
Evan Chenga87008d2009-02-25 22:49:59 +00001719 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001720 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001721 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001722 case TargetLowering::Promote: {
1723 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001724 MVT OVT = Node->getValueType(0);
1725 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001726
1727 // Cast the two input vectors.
Dale Johannesenca57b842009-02-02 23:46:53 +00001728 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
1729 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00001730
Chris Lattner4352cc92006-04-04 17:23:26 +00001731 // Convert the shuffle mask to the right # elements.
Nate Begeman5a5ca152009-04-29 05:20:52 +00001732 Result = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Dale Johannesenca57b842009-02-02 23:46:53 +00001733 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Chris Lattner4352cc92006-04-04 17:23:26 +00001734 break;
1735 }
Chris Lattner87100e02006-03-20 01:52:29 +00001736 }
1737 break;
Nate Begeman9008ca62009-04-27 18:41:29 +00001738 }
Chris Lattner384504c2006-03-21 20:44:12 +00001739 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001740 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001741 Tmp2 = LegalizeOp(Node->getOperand(1));
1742 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001743 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001744 break;
1745
Scott Michelfdc40a02009-02-17 22:15:04 +00001746 case ISD::EXTRACT_SUBVECTOR:
Dan Gohman7f321562007-06-25 16:23:39 +00001747 Tmp1 = Node->getOperand(0);
1748 Tmp2 = LegalizeOp(Node->getOperand(1));
1749 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001750 switch (TLI.getOperationAction(ISD::EXTRACT_SUBVECTOR,
1751 Node->getValueType(0))) {
1752 default: assert(0 && "Unknown operation action!");
1753 case TargetLowering::Legal:
1754 break;
1755 case TargetLowering::Custom:
1756 Tmp3 = TLI.LowerOperation(Result, DAG);
1757 if (Tmp3.getNode()) {
1758 Result = Tmp3;
1759 break;
1760 }
1761 // FALLTHROUGH
1762 case TargetLowering::Expand: {
1763 Result = ExpandExtractFromVectorThroughStack(Result);
1764 break;
1765 }
1766 }
Dan Gohman65956352007-06-13 15:12:02 +00001767 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001768
Mon P Wang0c397192008-10-30 08:01:45 +00001769 case ISD::CONCAT_VECTORS: {
Bob Wilson5ee24e52009-05-01 17:55:32 +00001770 // Legalize the operands.
Mon P Wang0c397192008-10-30 08:01:45 +00001771 SmallVector<SDValue, 8> Ops;
Bob Wilson5ee24e52009-05-01 17:55:32 +00001772 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1773 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1774 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1775
1776 switch (TLI.getOperationAction(ISD::CONCAT_VECTORS,
1777 Node->getValueType(0))) {
1778 default: assert(0 && "Unknown operation action!");
1779 case TargetLowering::Legal:
1780 break;
1781 case TargetLowering::Custom:
1782 Tmp3 = TLI.LowerOperation(Result, DAG);
1783 if (Tmp3.getNode()) {
1784 Result = Tmp3;
1785 break;
Mon P Wang0c397192008-10-30 08:01:45 +00001786 }
Bob Wilson5ee24e52009-05-01 17:55:32 +00001787 // FALLTHROUGH
1788 case TargetLowering::Expand: {
1789 // Use extract/insert/build vector for now. We might try to be
1790 // more clever later.
1791 MVT PtrVT = TLI.getPointerTy();
1792 SmallVector<SDValue, 8> Ops;
1793 unsigned NumOperands = Node->getNumOperands();
1794 for (unsigned i=0; i < NumOperands; ++i) {
1795 SDValue SubOp = Node->getOperand(i);
1796 MVT VVT = SubOp.getNode()->getValueType(0);
1797 MVT EltVT = VVT.getVectorElementType();
1798 unsigned NumSubElem = VVT.getVectorNumElements();
1799 for (unsigned j=0; j < NumSubElem; ++j) {
1800 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, SubOp,
1801 DAG.getConstant(j, PtrVT)));
1802 }
1803 }
1804 return LegalizeOp(DAG.getNode(ISD::BUILD_VECTOR, dl,
1805 Node->getValueType(0),
1806 &Ops[0], Ops.size()));
Mon P Wang0c397192008-10-30 08:01:45 +00001807 }
Bob Wilson5ee24e52009-05-01 17:55:32 +00001808 }
1809 break;
Mon P Wang0c397192008-10-30 08:01:45 +00001810 }
1811
Chris Lattner6831a812006-02-13 09:18:02 +00001812 case ISD::CALLSEQ_START: {
1813 SDNode *CallEnd = FindCallEndFromCallStart(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00001814
Chris Lattner6831a812006-02-13 09:18:02 +00001815 // Recursively Legalize all of the inputs of the call end that do not lead
1816 // to this call start. This ensures that any libcalls that need be inserted
1817 // are inserted *before* the CALLSEQ_START.
Mon P Wange5ab34e2009-02-04 19:38:14 +00001818 IsLegalizingCallArgs = true;
Chris Lattner00755df2007-02-04 00:27:56 +00001819 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001820 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00001821 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001822 NodesLeadingTo);
1823 }
Mon P Wange5ab34e2009-02-04 19:38:14 +00001824 IsLegalizingCallArgs = false;
Chris Lattner6831a812006-02-13 09:18:02 +00001825
1826 // Now that we legalized all of the inputs (which may have inserted
1827 // libcalls) create the new CALLSEQ_START node.
1828 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1829
1830 // Merge in the last call, to ensure that this call start after the last
1831 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001832 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001833 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00001834 Tmp1, LastCALLSEQ_END);
Chris Lattnerb248e162006-05-17 17:55:45 +00001835 Tmp1 = LegalizeOp(Tmp1);
1836 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001837
Chris Lattner6831a812006-02-13 09:18:02 +00001838 // Do not try to legalize the target-specific arguments (#1+).
1839 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001840 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001841 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001842 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001843 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001844
Chris Lattner6831a812006-02-13 09:18:02 +00001845 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001846 AddLegalizedOperand(Op.getValue(0), Result);
1847 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1848 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001849
Chris Lattner6831a812006-02-13 09:18:02 +00001850 // Now that the callseq_start and all of the non-call nodes above this call
Scott Michelfdc40a02009-02-17 22:15:04 +00001851 // sequence have been legalized, legalize the call itself. During this
Chris Lattner6831a812006-02-13 09:18:02 +00001852 // process, no libcalls can/will be inserted, guaranteeing that no calls
1853 // can overlap.
1854 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001855 // Note that we are selecting this call!
Dan Gohman475871a2008-07-27 21:46:04 +00001856 LastCALLSEQ_END = SDValue(CallEnd, 0);
Chris Lattner6831a812006-02-13 09:18:02 +00001857 IsLegalizingCall = true;
Scott Michelfdc40a02009-02-17 22:15:04 +00001858
Chris Lattner6831a812006-02-13 09:18:02 +00001859 // Legalize the call, starting from the CALLSEQ_END.
1860 LegalizeOp(LastCALLSEQ_END);
1861 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1862 return Result;
1863 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001864 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001865 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1866 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greifba36cb52008-08-28 21:40:38 +00001867 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman475871a2008-07-27 21:46:04 +00001868 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1869 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001870 assert(I != LegalizedNodes.end() &&
1871 "Legalizing the call start should have legalized this node!");
1872 return I->second;
1873 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001874
1875 // Otherwise, the call start has been legalized and everything is going
Chris Lattner6831a812006-02-13 09:18:02 +00001876 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001877 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001878 // Do not try to legalize the target-specific arguments (#1+), except for
1879 // an optional flag input.
1880 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1881 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001882 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001883 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001884 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001885 }
1886 } else {
1887 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1888 if (Tmp1 != Node->getOperand(0) ||
1889 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001890 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001891 Ops[0] = Tmp1;
1892 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001893 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001894 }
Chris Lattner6a542892006-01-24 05:48:21 +00001895 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001896 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001897 // This finishes up call legalization.
1898 IsLegalizingCall = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001899
Chris Lattner4b653a02006-02-14 00:55:02 +00001900 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman475871a2008-07-27 21:46:04 +00001901 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Chris Lattner4b653a02006-02-14 00:55:02 +00001902 if (Node->getNumValues() == 2)
Dan Gohman475871a2008-07-27 21:46:04 +00001903 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001904 return Result.getValue(Op.getResNo());
Evan Chenga7dce3c2006-01-11 22:14:47 +00001905 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001906 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001907 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1908 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1909 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001910 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001911
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001912 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001913 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001914 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001915 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001916 case TargetLowering::Expand: {
1917 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1918 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1919 " not tell us which reg is the stack pointer!");
Dan Gohman475871a2008-07-27 21:46:04 +00001920 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001921
1922 // Chain the dynamic stack allocation so that it doesn't modify the stack
1923 // pointer when other instructions are using the stack.
Chris Lattnere563bbc2008-10-11 22:08:30 +00001924 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001925
Dan Gohman475871a2008-07-27 21:46:04 +00001926 SDValue Size = Tmp2.getOperand(1);
Dale Johannesenc460ae92009-02-04 00:13:36 +00001927 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001928 Chain = SP.getValue(1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001929 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Cheng61bbbab2007-08-16 23:50:06 +00001930 unsigned StackAlign =
1931 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1932 if (Align > StackAlign)
Dale Johannesenca57b842009-02-02 23:46:53 +00001933 SP = DAG.getNode(ISD::AND, dl, VT, SP,
Evan Cheng3e20bba2007-08-17 18:02:22 +00001934 DAG.getConstant(-(uint64_t)Align, VT));
Dale Johannesenca57b842009-02-02 23:46:53 +00001935 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Dale Johannesenc460ae92009-02-04 00:13:36 +00001936 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001937
Dale Johannesenca57b842009-02-02 23:46:53 +00001938 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Chris Lattnere563bbc2008-10-11 22:08:30 +00001939 DAG.getIntPtrConstant(0, true), SDValue());
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001940
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001941 Tmp1 = LegalizeOp(Tmp1);
1942 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001943 break;
1944 }
1945 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001946 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001947 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001948 Tmp1 = LegalizeOp(Tmp3);
1949 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001950 }
Chris Lattner903d2782006-01-15 08:54:32 +00001951 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001952 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001953 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001954 }
Chris Lattner903d2782006-01-15 08:54:32 +00001955 // Since this op produce two values, make sure to remember that we
1956 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001957 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1958 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001959 return Op.getResNo() ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001960 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001961 case ISD::INLINEASM: {
Dan Gohman475871a2008-07-27 21:46:04 +00001962 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001963 bool Changed = false;
1964 // Legalize all of the operands of the inline asm, in case they are nodes
1965 // that need to be expanded or something. Note we skip the asm string and
1966 // all of the TargetConstant flags.
Dan Gohman475871a2008-07-27 21:46:04 +00001967 SDValue Op = LegalizeOp(Ops[0]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001968 Changed = Op != Ops[0];
1969 Ops[0] = Op;
1970
1971 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1972 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Evan Cheng697cbbf2009-03-20 18:03:34 +00001973 unsigned NumVals = InlineAsm::
1974 getNumOperandRegisters(cast<ConstantSDNode>(Ops[i])->getZExtValue());
Chris Lattner25a022c2006-07-11 01:40:09 +00001975 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman475871a2008-07-27 21:46:04 +00001976 SDValue Op = LegalizeOp(Ops[i]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001977 if (Op != Ops[i]) {
1978 Changed = true;
1979 Ops[i] = Op;
1980 }
1981 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001982 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001983
1984 if (HasInFlag) {
1985 Op = LegalizeOp(Ops.back());
1986 Changed |= Op != Ops.back();
1987 Ops.back() = Op;
1988 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001989
Chris Lattner25a022c2006-07-11 01:40:09 +00001990 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001991 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001992
Chris Lattnerce7518c2006-01-26 22:24:51 +00001993 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman475871a2008-07-27 21:46:04 +00001994 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1995 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001996 return Result.getValue(Op.getResNo());
Chris Lattner25a022c2006-07-11 01:40:09 +00001997 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001998 case ISD::BR:
1999 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002000 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002001 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002002 Tmp1 = LegalizeOp(Tmp1);
2003 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00002004
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002005 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00002006 break;
Nate Begeman37efe672006-04-22 18:53:45 +00002007 case ISD::BRIND:
2008 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2009 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002010 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Nate Begeman37efe672006-04-22 18:53:45 +00002011 Tmp1 = LegalizeOp(Tmp1);
2012 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00002013
Nate Begeman37efe672006-04-22 18:53:45 +00002014 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2015 default: assert(0 && "Indirect target must be legal type (pointer)!");
2016 case Legal:
2017 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2018 break;
2019 }
2020 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2021 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00002022 case ISD::BR_JT:
2023 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2024 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002025 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002026 Tmp1 = LegalizeOp(Tmp1);
2027 LastCALLSEQ_END = DAG.getEntryNode();
2028
2029 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
2030 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2031
Scott Michelfdc40a02009-02-17 22:15:04 +00002032 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00002033 default: assert(0 && "This action is not supported yet!");
2034 case TargetLowering::Legal: break;
2035 case TargetLowering::Custom:
2036 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002037 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng3d4ce112006-10-30 08:00:44 +00002038 break;
2039 case TargetLowering::Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002040 SDValue Chain = Result.getOperand(0);
2041 SDValue Table = Result.getOperand(1);
2042 SDValue Index = Result.getOperand(2);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002043
Duncan Sands83ec4b62008-06-06 12:08:01 +00002044 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002045 MachineFunction &MF = DAG.getMachineFunction();
2046 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Scott Michelfdc40a02009-02-17 22:15:04 +00002047 Index= DAG.getNode(ISD::MUL, dl, PTy,
Dale Johannesenca57b842009-02-02 23:46:53 +00002048 Index, DAG.getConstant(EntrySize, PTy));
2049 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002050
Duncan Sands712f7b32008-12-12 08:13:38 +00002051 MVT MemVT = MVT::getIntegerVT(EntrySize * 8);
Dale Johannesenca57b842009-02-02 23:46:53 +00002052 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Duncan Sands712f7b32008-12-12 08:13:38 +00002053 PseudoSourceValue::getJumpTable(), 0, MemVT);
Evan Chengcc415862007-11-09 01:32:10 +00002054 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002055 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00002056 // For PIC, the sequence is:
2057 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00002058 // RelocBase can be JumpTable, GOT or some sort of global base.
Dale Johannesenca57b842009-02-02 23:46:53 +00002059 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
Evan Chengcc415862007-11-09 01:32:10 +00002060 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00002061 }
Dale Johannesenca57b842009-02-02 23:46:53 +00002062 Result = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002063 }
2064 }
2065 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002066 case ISD::BRCOND:
2067 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002068 // Ensure that libcalls are emitted before a return.
Dale Johannesenca57b842009-02-02 23:46:53 +00002069 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002070 Tmp1 = LegalizeOp(Tmp1);
2071 LastCALLSEQ_END = DAG.getEntryNode();
2072
Chris Lattner47e92232005-01-18 19:27:06 +00002073 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2074 case Expand: assert(0 && "It's impossible to expand bools");
2075 case Legal:
2076 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2077 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002078 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002079 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Scott Michelfdc40a02009-02-17 22:15:04 +00002080
Chris Lattnerf9908172006-11-27 04:39:56 +00002081 // The top bits of the promoted condition are not necessarily zero, ensure
2082 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002083 unsigned BitWidth = Tmp2.getValueSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002084 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002085 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenca57b842009-02-02 23:46:53 +00002086 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002087 break;
2088 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002089 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002090
2091 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002092 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00002093
2094 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
Nate Begeman7cbd5252005-08-16 19:49:35 +00002095 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002096 case TargetLowering::Legal: break;
2097 case TargetLowering::Custom:
2098 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002099 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002100 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002101 case TargetLowering::Expand:
2102 // Expand brcond's setcc into its constituent parts and create a BR_CC
2103 // Node.
2104 if (Tmp2.getOpcode() == ISD::SETCC) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002105 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00002106 Tmp1, Tmp2.getOperand(2),
Nate Begeman7cbd5252005-08-16 19:49:35 +00002107 Tmp2.getOperand(0), Tmp2.getOperand(1),
2108 Node->getOperand(2));
2109 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00002110 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Nate Begeman7cbd5252005-08-16 19:49:35 +00002111 DAG.getCondCode(ISD::SETNE), Tmp2,
2112 DAG.getConstant(0, Tmp2.getValueType()),
2113 Node->getOperand(2));
2114 }
2115 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002116 }
2117 break;
2118 case ISD::BR_CC:
2119 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002120 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002121 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002122 Tmp1 = LegalizeOp(Tmp1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002123 Tmp2 = Node->getOperand(2); // LHS
Nate Begeman750ac1b2006-02-01 07:19:44 +00002124 Tmp3 = Node->getOperand(3); // RHS
2125 Tmp4 = Node->getOperand(1); // CC
2126
Scott Michelfdc40a02009-02-17 22:15:04 +00002127 LegalizeSetCC(TLI.getSetCCResultType(Tmp2.getValueType()),
Dale Johannesenbb5da912009-02-02 20:41:04 +00002128 Tmp2, Tmp3, Tmp4, dl);
Evan Cheng722cb362006-12-18 22:55:34 +00002129 LastCALLSEQ_END = DAG.getEntryNode();
2130
Evan Cheng7f042682008-10-15 02:05:31 +00002131 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002132 // the LHS is a legal SETCC itself. In this case, we need to compare
2133 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00002134 if (Tmp3.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002135 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
2136 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00002137 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002138
2139 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002140 Node->getOperand(4));
Scott Michelfdc40a02009-02-17 22:15:04 +00002141
Chris Lattner181b7a32005-12-17 23:46:46 +00002142 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
2143 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002144 case TargetLowering::Legal: break;
2145 case TargetLowering::Custom:
2146 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002147 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00002148 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002149 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002150 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002151 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00002152 LoadSDNode *LD = cast<LoadSDNode>(Node);
2153 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
2154 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002155
Evan Cheng466685d2006-10-09 20:57:25 +00002156 ISD::LoadExtType ExtType = LD->getExtensionType();
2157 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002158 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00002159 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2160 Tmp3 = Result.getValue(0);
2161 Tmp4 = Result.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002162
Evan Cheng466685d2006-10-09 20:57:25 +00002163 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
2164 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002165 case TargetLowering::Legal:
2166 // If this is an unaligned load and the target doesn't support it,
2167 // expand it.
2168 if (!TLI.allowsUnalignedMemoryAccesses()) {
2169 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002170 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002171 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002172 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002173 TLI);
2174 Tmp3 = Result.getOperand(0);
2175 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00002176 Tmp3 = LegalizeOp(Tmp3);
2177 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002178 }
2179 }
2180 break;
Evan Cheng466685d2006-10-09 20:57:25 +00002181 case TargetLowering::Custom:
2182 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002183 if (Tmp1.getNode()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002184 Tmp3 = LegalizeOp(Tmp1);
2185 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00002186 }
Evan Cheng466685d2006-10-09 20:57:25 +00002187 break;
2188 case TargetLowering::Promote: {
2189 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002190 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00002191 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002192 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00002193
Dale Johannesenca57b842009-02-02 23:46:53 +00002194 Tmp1 = DAG.getLoad(NVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002195 LD->getSrcValueOffset(),
2196 LD->isVolatile(), LD->getAlignment());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00002197 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp1));
Evan Cheng466685d2006-10-09 20:57:25 +00002198 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002199 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00002200 }
Evan Cheng466685d2006-10-09 20:57:25 +00002201 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002202 // Since loads produce two values, make sure to remember that we
Evan Cheng466685d2006-10-09 20:57:25 +00002203 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002204 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
2205 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002206 return Op.getResNo() ? Tmp4 : Tmp3;
Evan Cheng466685d2006-10-09 20:57:25 +00002207 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002208 MVT SrcVT = LD->getMemoryVT();
2209 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002210 int SVOffset = LD->getSrcValueOffset();
2211 unsigned Alignment = LD->getAlignment();
2212 bool isVolatile = LD->isVolatile();
2213
Duncan Sands83ec4b62008-06-06 12:08:01 +00002214 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002215 // Some targets pretend to have an i1 loading operation, and actually
2216 // load an i8. This trick is correct for ZEXTLOAD because the top 7
2217 // bits are guaranteed to be zero; it helps the optimizers understand
2218 // that these bits are zero. It is also useful for EXTLOAD, since it
2219 // tells the optimizers that those bits are undefined. It would be
2220 // nice to have an effective generic way of getting these benefits...
2221 // Until such a way is found, don't insist on promoting i1 here.
2222 (SrcVT != MVT::i1 ||
Evan Cheng03294662008-10-14 21:26:46 +00002223 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002224 // Promote to a byte-sized load if not loading an integral number of
2225 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002226 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2227 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002228 SDValue Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002229
2230 // The extra bits are guaranteed to be zero, since we stored them that
2231 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2232
2233 ISD::LoadExtType NewExtType =
2234 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2235
Dale Johannesenca57b842009-02-02 23:46:53 +00002236 Result = DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002237 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2238 NVT, isVolatile, Alignment);
2239
2240 Ch = Result.getValue(1); // The chain.
2241
2242 if (ExtType == ISD::SEXTLOAD)
2243 // Having the top bits zero doesn't help when sign extending.
Scott Michelfdc40a02009-02-17 22:15:04 +00002244 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002245 Result.getValueType(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002246 Result, DAG.getValueType(SrcVT));
2247 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2248 // All the top bits are guaranteed to be zero - inform the optimizers.
Scott Michelfdc40a02009-02-17 22:15:04 +00002249 Result = DAG.getNode(ISD::AssertZext, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002250 Result.getValueType(), Result,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002251 DAG.getValueType(SrcVT));
2252
2253 Tmp1 = LegalizeOp(Result);
2254 Tmp2 = LegalizeOp(Ch);
2255 } else if (SrcWidth & (SrcWidth - 1)) {
2256 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002257 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002258 "Unsupported extload!");
2259 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2260 assert(RoundWidth < SrcWidth);
2261 unsigned ExtraWidth = SrcWidth - RoundWidth;
2262 assert(ExtraWidth < RoundWidth);
2263 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2264 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002265 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2266 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002267 SDValue Lo, Hi, Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002268 unsigned IncrementSize;
2269
2270 if (TLI.isLittleEndian()) {
2271 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2272 // Load the bottom RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002273 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
2274 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002275 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2276 Alignment);
2277
2278 // Load the remaining ExtraWidth bits.
2279 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002280 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002281 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002282 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002283 LD->getSrcValue(), SVOffset + IncrementSize,
2284 ExtraVT, isVolatile,
2285 MinAlign(Alignment, IncrementSize));
2286
2287 // Build a factor node to remember that this load is independent of the
2288 // other one.
Dale Johannesenca57b842009-02-02 23:46:53 +00002289 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002290 Hi.getValue(1));
2291
2292 // Move the top bits to the right place.
Dale Johannesenca57b842009-02-02 23:46:53 +00002293 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002294 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2295
2296 // Join the hi and lo parts.
Dale Johannesenca57b842009-02-02 23:46:53 +00002297 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002298 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002299 // Big endian - avoid unaligned loads.
2300 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2301 // Load the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002302 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002303 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2304 Alignment);
2305
2306 // Load the remaining ExtraWidth bits.
2307 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002308 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002309 DAG.getIntPtrConstant(IncrementSize));
Scott Michelfdc40a02009-02-17 22:15:04 +00002310 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002311 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002312 LD->getSrcValue(), SVOffset + IncrementSize,
2313 ExtraVT, isVolatile,
2314 MinAlign(Alignment, IncrementSize));
2315
2316 // Build a factor node to remember that this load is independent of the
2317 // other one.
Dale Johannesenca57b842009-02-02 23:46:53 +00002318 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002319 Hi.getValue(1));
2320
2321 // Move the top bits to the right place.
Dale Johannesenca57b842009-02-02 23:46:53 +00002322 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002323 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2324
2325 // Join the hi and lo parts.
Dale Johannesenca57b842009-02-02 23:46:53 +00002326 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002327 }
2328
2329 Tmp1 = LegalizeOp(Result);
2330 Tmp2 = LegalizeOp(Ch);
2331 } else {
Evan Cheng03294662008-10-14 21:26:46 +00002332 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002333 default: assert(0 && "This action is not supported yet!");
2334 case TargetLowering::Custom:
2335 isCustom = true;
2336 // FALLTHROUGH
2337 case TargetLowering::Legal:
2338 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2339 Tmp1 = Result.getValue(0);
2340 Tmp2 = Result.getValue(1);
2341
2342 if (isCustom) {
2343 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002344 if (Tmp3.getNode()) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002345 Tmp1 = LegalizeOp(Tmp3);
2346 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2347 }
2348 } else {
2349 // If this is an unaligned load and the target doesn't support it,
2350 // expand it.
2351 if (!TLI.allowsUnalignedMemoryAccesses()) {
2352 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002353 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002354 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002355 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002356 TLI);
2357 Tmp1 = Result.getOperand(0);
2358 Tmp2 = Result.getOperand(1);
2359 Tmp1 = LegalizeOp(Tmp1);
2360 Tmp2 = LegalizeOp(Tmp2);
2361 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002362 }
2363 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002364 break;
2365 case TargetLowering::Expand:
2366 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2367 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dale Johannesenca57b842009-02-02 23:46:53 +00002368 SDValue Load = DAG.getLoad(SrcVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002369 LD->getSrcValueOffset(),
2370 LD->isVolatile(), LD->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00002371 Result = DAG.getNode(ISD::FP_EXTEND, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002372 Node->getValueType(0), Load);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002373 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2374 Tmp2 = LegalizeOp(Load.getValue(1));
2375 break;
2376 }
2377 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2378 // Turn the unsupported load into an EXTLOAD followed by an explicit
2379 // zero/sign extend inreg.
Dale Johannesenca57b842009-02-02 23:46:53 +00002380 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002381 Tmp1, Tmp2, LD->getSrcValue(),
2382 LD->getSrcValueOffset(), SrcVT,
2383 LD->isVolatile(), LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00002384 SDValue ValRes;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002385 if (ExtType == ISD::SEXTLOAD)
Dale Johannesenca57b842009-02-02 23:46:53 +00002386 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
2387 Result.getValueType(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002388 Result, DAG.getValueType(SrcVT));
2389 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002390 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002391 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2392 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002393 break;
2394 }
Evan Cheng466685d2006-10-09 20:57:25 +00002395 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002396
Evan Cheng466685d2006-10-09 20:57:25 +00002397 // Since loads produce two values, make sure to remember that we legalized
2398 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002399 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2400 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002401 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002402 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002403 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002404 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002405 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002406 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002407 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002408 case Legal:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002409 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Nate Begeman5dc897b2005-10-19 00:06:56 +00002410 // 1 -> Hi
Dale Johannesenca57b842009-02-02 23:46:53 +00002411 Result = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002412 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002413 TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002414 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Result);
Nate Begeman5dc897b2005-10-19 00:06:56 +00002415 } else {
2416 // 0 -> Lo
Scott Michelfdc40a02009-02-17 22:15:04 +00002417 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
Nate Begeman5dc897b2005-10-19 00:06:56 +00002418 Node->getOperand(0));
2419 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002420 break;
2421 case Expand:
2422 // Get both the low and high parts.
2423 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002424 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Nate Begeman5dc897b2005-10-19 00:06:56 +00002425 Result = Tmp2; // 1 -> Hi
2426 else
2427 Result = Tmp1; // 0 -> Lo
2428 break;
2429 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002430 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002431 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002432
2433 case ISD::CopyToReg:
2434 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002435
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002436 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002437 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002438 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002439 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002440 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002441 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002442 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002443 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002444 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002445 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002446 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2447 Tmp3);
2448 } else {
2449 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002450 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002451
Chris Lattner7310fb12005-12-18 15:27:43 +00002452 // Since this produces two values, make sure to remember that we legalized
2453 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002454 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2455 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002456 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002457 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002458 break;
2459
2460 case ISD::RET:
2461 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002462
2463 // Ensure that libcalls are emitted before a return.
Dale Johannesenca57b842009-02-02 23:46:53 +00002464 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002465 Tmp1 = LegalizeOp(Tmp1);
2466 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00002467
Chris Lattner3e928bb2005-01-07 07:47:09 +00002468 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002469 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002470 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002471 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002472 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002473 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002474 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002475 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002476 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002477 if (!Tmp2.getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002478 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002479 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002480
2481 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002482 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002483 std::swap(Lo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00002484
Gabor Greifba36cb52008-08-28 21:40:38 +00002485 if (Hi.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00002486 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002487 Tmp1, Lo, Tmp3, Hi, Tmp3);
Evan Cheng13acce32006-12-11 19:27:14 +00002488 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002489 Result = DAG.getNode(ISD::RET, dl, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002490 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002491 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00002492 SDNode *InVal = Tmp2.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002493 int InIx = Tmp2.getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002494 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2495 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00002496
Dan Gohman7f321562007-06-25 16:23:39 +00002497 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002498 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002499 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002500 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002501 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002502 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002503 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002504 } else if (NumElems == 1) {
2505 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002506 Tmp2 = ScalarizeVectorOp(Tmp2);
2507 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002508 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00002509
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002510 // FIXME: Returns of gcc generic vectors smaller than a legal type
2511 // should be returned in integer registers!
Scott Michelfdc40a02009-02-17 22:15:04 +00002512
Chris Lattnerf87324e2006-04-11 01:31:51 +00002513 // The scalarized value type may not be legal, e.g. it might require
2514 // promotion or expansion. Relegalize the return.
2515 Result = LegalizeOp(Result);
2516 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002517 // FIXME: Returns of gcc generic vectors larger than a legal vector
2518 // type should be returned by reference!
Dan Gohman475871a2008-07-27 21:46:04 +00002519 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002520 SplitVectorOp(Tmp2, Lo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00002521 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002522 Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002523 Result = LegalizeOp(Result);
2524 }
2525 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002526 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002527 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002528 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002529 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002530 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002531 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002532 }
2533 break;
2534 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002535 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002536 break;
2537 default: { // ret <values>
Dan Gohman475871a2008-07-27 21:46:04 +00002538 SmallVector<SDValue, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002539 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002540 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002541 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2542 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002543 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002544 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002545 break;
2546 case Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002547 SDValue Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002548 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002549 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002550 ExpandOp(Node->getOperand(i), Lo, Hi);
2551 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002552 NewValues.push_back(Node->getOperand(i+1));
Gabor Greifba36cb52008-08-28 21:40:38 +00002553 if (Hi.getNode()) {
Evan Cheng13acce32006-12-11 19:27:14 +00002554 NewValues.push_back(Hi);
2555 NewValues.push_back(Node->getOperand(i+1));
2556 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002557 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002558 }
2559 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002560 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002561 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002562
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002563 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002564 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002565 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002566 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002567 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002568 break;
2569 }
2570 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002571
Chris Lattner6862dbc2006-01-29 21:02:23 +00002572 if (Result.getOpcode() == ISD::RET) {
2573 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2574 default: assert(0 && "This action is not supported yet!");
2575 case TargetLowering::Legal: break;
2576 case TargetLowering::Custom:
2577 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002578 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner6862dbc2006-01-29 21:02:23 +00002579 break;
2580 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002581 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002582 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002583 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002584 StoreSDNode *ST = cast<StoreSDNode>(Node);
2585 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2586 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002587 int SVOffset = ST->getSrcValueOffset();
2588 unsigned Alignment = ST->getAlignment();
2589 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002590
Evan Cheng8b2794a2006-10-13 21:14:26 +00002591 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002592 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2593 // FIXME: We shouldn't do this for TargetConstantFP's.
2594 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2595 // to phase ordering between legalized code and the dag combiner. This
2596 // probably means that we need to integrate dag combiner and legalizer
2597 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002598 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002599 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002600 if (CFP->getValueType(0) == MVT::f32 &&
Chris Lattner3cb93512007-10-15 05:46:06 +00002601 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002602 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen7111b022008-10-09 18:53:47 +00002603 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002604 MVT::i32);
Dale Johannesenca57b842009-02-02 23:46:53 +00002605 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002606 SVOffset, isVolatile, Alignment);
2607 break;
2608 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002609 // If this target supports 64-bit registers, do a single 64-bit store.
2610 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen7111b022008-10-09 18:53:47 +00002611 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002612 zextOrTrunc(64), MVT::i64);
Dale Johannesenca57b842009-02-02 23:46:53 +00002613 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner3cb93512007-10-15 05:46:06 +00002614 SVOffset, isVolatile, Alignment);
2615 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002616 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002617 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2618 // stores. If the target supports neither 32- nor 64-bits, this
2619 // xform is certainly not worth it.
Dale Johannesen7111b022008-10-09 18:53:47 +00002620 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman475871a2008-07-27 21:46:04 +00002621 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2622 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002623 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002624
Dale Johannesenca57b842009-02-02 23:46:53 +00002625 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Chris Lattner3cb93512007-10-15 05:46:06 +00002626 SVOffset, isVolatile, Alignment);
Dale Johannesenca57b842009-02-02 23:46:53 +00002627 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002628 DAG.getIntPtrConstant(4));
Dale Johannesenca57b842009-02-02 23:46:53 +00002629 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002630 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002631
Dale Johannesenca57b842009-02-02 23:46:53 +00002632 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002633 break;
2634 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002635 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002636 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002637
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002638 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002639 case Legal: {
2640 Tmp3 = LegalizeOp(ST->getValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00002641 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002642 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002643
Duncan Sands83ec4b62008-06-06 12:08:01 +00002644 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002645 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2646 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002647 case TargetLowering::Legal:
2648 // If this is an unaligned store and the target doesn't support it,
2649 // expand it.
2650 if (!TLI.allowsUnalignedMemoryAccesses()) {
2651 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002652 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002653 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002654 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002655 TLI);
2656 }
2657 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002658 case TargetLowering::Custom:
2659 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002660 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002661 break;
2662 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002663 assert(VT.isVector() && "Unknown legal promote case!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002664 Tmp3 = DAG.getNode(ISD::BIT_CONVERT, dl,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002665 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
Dale Johannesenca57b842009-02-02 23:46:53 +00002666 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002667 ST->getSrcValue(), SVOffset, isVolatile,
2668 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002669 break;
2670 }
2671 break;
2672 }
2673 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002674 if (!ST->getMemoryVT().isVector()) {
2675 // Truncate the value and store the result.
2676 Tmp3 = PromoteOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002677 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Mon P Wang0c397192008-10-30 08:01:45 +00002678 SVOffset, ST->getMemoryVT(),
2679 isVolatile, Alignment);
2680 break;
2681 }
2682 // Fall thru to expand for vector
2683 case Expand: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002684 unsigned IncrementSize = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002685 SDValue Lo, Hi;
Scott Michelfdc40a02009-02-17 22:15:04 +00002686
Evan Cheng8b2794a2006-10-13 21:14:26 +00002687 // If this is a vector type, then we have to calculate the increment as
2688 // the product of the element size in bytes, and the number of elements
2689 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002690 if (ST->getValue().getValueType().isVector()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002691 SDNode *InVal = ST->getValue().getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002692 int InIx = ST->getValue().getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002693 MVT InVT = InVal->getValueType(InIx);
2694 unsigned NumElems = InVT.getVectorNumElements();
2695 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002696
Dan Gohman7f321562007-06-25 16:23:39 +00002697 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002698 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002699 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002700 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002701 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002702 Tmp3 = LegalizeOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002703 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002704 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002705 Result = LegalizeOp(Result);
2706 break;
2707 } else if (NumElems == 1) {
2708 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002709 Tmp3 = ScalarizeVectorOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002710 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002711 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002712 // The scalarized value type may not be legal, e.g. it might require
2713 // promotion or expansion. Relegalize the scalar store.
2714 Result = LegalizeOp(Result);
2715 break;
2716 } else {
Mon P Wang0c397192008-10-30 08:01:45 +00002717 // Check if we have widen this node with another value
2718 std::map<SDValue, SDValue>::iterator I =
2719 WidenNodes.find(ST->getValue());
2720 if (I != WidenNodes.end()) {
2721 Result = StoreWidenVectorOp(ST, Tmp1, Tmp2);
2722 break;
2723 }
2724 else {
2725 SplitVectorOp(ST->getValue(), Lo, Hi);
2726 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
2727 EVT.getSizeInBits()/8;
2728 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002729 }
2730 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002731 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002732 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002733
Richard Pennington4b052dc2008-09-25 16:15:10 +00002734 if (Hi.getNode() && TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002735 std::swap(Lo, Hi);
2736 }
2737
Dale Johannesenca57b842009-02-02 23:46:53 +00002738 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002739 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002740
Gabor Greifba36cb52008-08-28 21:40:38 +00002741 if (Hi.getNode() == NULL) {
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002742 // Must be int <-> float one-to-one expansion.
2743 Result = Lo;
2744 break;
2745 }
2746
Dale Johannesenca57b842009-02-02 23:46:53 +00002747 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002748 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002749 assert(isTypeLegal(Tmp2.getValueType()) &&
2750 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002751 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002752 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenca57b842009-02-02 23:46:53 +00002753 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002754 SVOffset, isVolatile, Alignment);
Dale Johannesenca57b842009-02-02 23:46:53 +00002755 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002756 break;
Mon P Wang0c397192008-10-30 08:01:45 +00002757 } // case Expand
Evan Cheng8b2794a2006-10-13 21:14:26 +00002758 }
2759 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002760 switch (getTypeAction(ST->getValue().getValueType())) {
2761 case Legal:
2762 Tmp3 = LegalizeOp(ST->getValue());
2763 break;
2764 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002765 if (!ST->getValue().getValueType().isVector()) {
2766 // We can promote the value, the truncstore will still take care of it.
2767 Tmp3 = PromoteOp(ST->getValue());
2768 break;
2769 }
2770 // Vector case falls through to expand
Chris Lattnerddf89562008-01-17 19:59:44 +00002771 case Expand:
2772 // Just store the low part. This may become a non-trunc store, so make
2773 // sure to use getTruncStore, not UpdateNodeOperands below.
2774 ExpandOp(ST->getValue(), Tmp3, Tmp4);
Dale Johannesenca57b842009-02-02 23:46:53 +00002775 return DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattnerddf89562008-01-17 19:59:44 +00002776 SVOffset, MVT::i8, isVolatile, Alignment);
2777 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002778
Duncan Sands83ec4b62008-06-06 12:08:01 +00002779 MVT StVT = ST->getMemoryVT();
2780 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002781
Duncan Sands83ec4b62008-06-06 12:08:01 +00002782 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002783 // Promote to a byte-sized store with upper bits zero if not
2784 // storing an integral number of bytes. For example, promote
2785 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002786 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Dale Johannesenca57b842009-02-02 23:46:53 +00002787 Tmp3 = DAG.getZeroExtendInReg(Tmp3, dl, StVT);
2788 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002789 SVOffset, NVT, isVolatile, Alignment);
2790 } else if (StWidth & (StWidth - 1)) {
2791 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002792 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002793 "Unsupported truncstore!");
2794 unsigned RoundWidth = 1 << Log2_32(StWidth);
2795 assert(RoundWidth < StWidth);
2796 unsigned ExtraWidth = StWidth - RoundWidth;
2797 assert(ExtraWidth < RoundWidth);
2798 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2799 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002800 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2801 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002802 SDValue Lo, Hi;
Duncan Sands7e857202008-01-22 07:17:34 +00002803 unsigned IncrementSize;
2804
2805 if (TLI.isLittleEndian()) {
2806 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2807 // Store the bottom RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002808 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002809 SVOffset, RoundVT,
2810 isVolatile, Alignment);
2811
2812 // Store the remaining ExtraWidth bits.
2813 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002814 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00002815 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002816 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands7e857202008-01-22 07:17:34 +00002817 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002818 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002819 SVOffset + IncrementSize, ExtraVT, isVolatile,
2820 MinAlign(Alignment, IncrementSize));
2821 } else {
2822 // Big endian - avoid unaligned stores.
2823 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2824 // Store the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002825 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands7e857202008-01-22 07:17:34 +00002826 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002827 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
2828 SVOffset, RoundVT, isVolatile, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00002829
2830 // Store the remaining ExtraWidth bits.
2831 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002832 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00002833 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002834 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002835 SVOffset + IncrementSize, ExtraVT, isVolatile,
2836 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002837 }
Duncan Sands7e857202008-01-22 07:17:34 +00002838
2839 // The order of the stores doesn't matter.
Dale Johannesenca57b842009-02-02 23:46:53 +00002840 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Duncan Sands7e857202008-01-22 07:17:34 +00002841 } else {
2842 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2843 Tmp2 != ST->getBasePtr())
2844 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2845 ST->getOffset());
2846
2847 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2848 default: assert(0 && "This action is not supported yet!");
2849 case TargetLowering::Legal:
2850 // If this is an unaligned store and the target doesn't support it,
2851 // expand it.
2852 if (!TLI.allowsUnalignedMemoryAccesses()) {
2853 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002854 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002855 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002856 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands7e857202008-01-22 07:17:34 +00002857 TLI);
2858 }
2859 break;
2860 case TargetLowering::Custom:
2861 Result = TLI.LowerOperation(Result, DAG);
2862 break;
2863 case Expand:
2864 // TRUNCSTORE:i16 i32 -> STORE i16
2865 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
Dale Johannesenca57b842009-02-02 23:46:53 +00002866 Tmp3 = DAG.getNode(ISD::TRUNCATE, dl, StVT, Tmp3);
2867 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
2868 SVOffset, isVolatile, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00002869 break;
2870 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002871 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002872 }
2873 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002874 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002875 case ISD::PCMARKER:
2876 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002877 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002878 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002879 case ISD::STACKSAVE:
2880 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002881 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2882 Tmp1 = Result.getValue(0);
2883 Tmp2 = Result.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002884
Chris Lattner140d53c2006-01-13 02:50:02 +00002885 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2886 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002887 case TargetLowering::Legal: break;
2888 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002889 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002890 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002891 Tmp1 = LegalizeOp(Tmp3);
2892 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002893 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002894 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002895 case TargetLowering::Expand:
Scott Michelfdc40a02009-02-17 22:15:04 +00002896 // Expand to CopyFromReg if the target set
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002897 // StackPointerRegisterToSaveRestore.
2898 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00002899 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), dl, SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002900 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002901 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002902 } else {
Dale Johannesene8d72302009-02-06 23:05:02 +00002903 Tmp1 = DAG.getUNDEF(Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002904 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002905 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002906 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002907 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002908
2909 // Since stacksave produce two values, make sure to remember that we
2910 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002911 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2912 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002913 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002914
Chris Lattner140d53c2006-01-13 02:50:02 +00002915 case ISD::STACKRESTORE:
2916 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2917 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002918 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00002919
Chris Lattner140d53c2006-01-13 02:50:02 +00002920 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2921 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002922 case TargetLowering::Legal: break;
2923 case TargetLowering::Custom:
2924 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002925 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002926 break;
2927 case TargetLowering::Expand:
Scott Michelfdc40a02009-02-17 22:15:04 +00002928 // Expand to CopyToReg if the target set
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002929 // StackPointerRegisterToSaveRestore.
2930 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00002931 Result = DAG.getCopyToReg(Tmp1, dl, SP, Tmp2);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002932 } else {
2933 Result = Tmp1;
2934 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002935 break;
2936 }
2937 break;
2938
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002939 case ISD::READCYCLECOUNTER:
2940 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002941 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002942 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2943 Node->getValueType(0))) {
2944 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002945 case TargetLowering::Legal:
2946 Tmp1 = Result.getValue(0);
2947 Tmp2 = Result.getValue(1);
2948 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002949 case TargetLowering::Custom:
2950 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002951 Tmp1 = LegalizeOp(Result.getValue(0));
2952 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002953 break;
2954 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002955
2956 // Since rdcc produce two values, make sure to remember that we legalized
2957 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002958 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2959 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002960 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002961
Chris Lattner2ee743f2005-01-14 22:08:15 +00002962 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002963 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2964 case Expand: assert(0 && "It's impossible to expand bools");
2965 case Legal:
2966 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2967 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002968 case Promote: {
Mon P Wang0c397192008-10-30 08:01:45 +00002969 assert(!Node->getOperand(0).getValueType().isVector() && "not possible");
Chris Lattner47e92232005-01-18 19:27:06 +00002970 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002971 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002972 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002973 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002974 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenca57b842009-02-02 23:46:53 +00002975 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002976 break;
2977 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002978 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002979 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002980 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002981
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002982 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00002983
Nate Begemanb942a3d2005-08-23 04:29:48 +00002984 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002985 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002986 case TargetLowering::Legal: break;
2987 case TargetLowering::Custom: {
2988 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002989 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002990 break;
2991 }
Nate Begeman9373a812005-08-10 20:51:12 +00002992 case TargetLowering::Expand:
2993 if (Tmp1.getOpcode() == ISD::SETCC) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002994 Result = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
Nate Begeman9373a812005-08-10 20:51:12 +00002995 Tmp2, Tmp3,
2996 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2997 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00002998 Result = DAG.getSelectCC(dl, Tmp1,
Nate Begeman9373a812005-08-10 20:51:12 +00002999 DAG.getConstant(0, Tmp1.getValueType()),
3000 Tmp2, Tmp3, ISD::SETNE);
3001 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003002 break;
3003 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003004 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003005 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
3006 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003007 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00003008 ExtOp = ISD::BIT_CONVERT;
3009 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003010 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003011 ExtOp = ISD::ANY_EXTEND;
3012 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003013 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00003014 ExtOp = ISD::FP_EXTEND;
3015 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003016 }
3017 // Promote each of the values to the new type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003018 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Tmp2);
3019 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Tmp3);
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003020 // Perform the larger operation, then round down.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00003021 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2, Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00003022 if (TruncOp != ISD::FP_ROUND)
Dale Johannesenca57b842009-02-02 23:46:53 +00003023 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003024 else
Dale Johannesenca57b842009-02-02 23:46:53 +00003025 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00003026 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003027 break;
3028 }
3029 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003030 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00003031 case ISD::SELECT_CC: {
3032 Tmp1 = Node->getOperand(0); // LHS
3033 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00003034 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
3035 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman475871a2008-07-27 21:46:04 +00003036 SDValue CC = Node->getOperand(4);
Scott Michelfdc40a02009-02-17 22:15:04 +00003037
3038 LegalizeSetCC(TLI.getSetCCResultType(Tmp1.getValueType()),
Dale Johannesenbb5da912009-02-02 20:41:04 +00003039 Tmp1, Tmp2, CC, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003040
Evan Cheng7f042682008-10-15 02:05:31 +00003041 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00003042 // the LHS is a legal SETCC itself. In this case, we need to compare
3043 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00003044 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003045 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3046 CC = DAG.getCondCode(ISD::SETNE);
3047 }
3048 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
3049
3050 // Everything is legal, see if we should expand this op or something.
3051 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
3052 default: assert(0 && "This action is not supported yet!");
3053 case TargetLowering::Legal: break;
3054 case TargetLowering::Custom:
3055 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003056 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00003057 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003058 }
3059 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00003060 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003061 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00003062 Tmp1 = Node->getOperand(0);
3063 Tmp2 = Node->getOperand(1);
3064 Tmp3 = Node->getOperand(2);
Dale Johannesenbb5da912009-02-02 20:41:04 +00003065 LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003066
3067 // If we had to Expand the SetCC operands into a SELECT node, then it may
3068 // not always be possible to return a true LHS & RHS. In this case, just
Nate Begeman750ac1b2006-02-01 07:19:44 +00003069 // return the value we legalized, returned in the LHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003070 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003071 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003072 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003073 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003074
Chris Lattner73e142f2006-01-30 22:43:50 +00003075 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003076 default: assert(0 && "Cannot handle this action for SETCC yet!");
3077 case TargetLowering::Custom:
3078 isCustom = true;
3079 // FALLTHROUGH.
3080 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00003081 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00003082 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00003083 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003084 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00003085 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003086 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003087 case TargetLowering::Promote: {
3088 // First step, figure out the appropriate operation to use.
3089 // Allow SETCC to not be supported for all legal data types
3090 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00003091 MVT NewInTy = Node->getOperand(0).getValueType();
3092 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00003093
3094 // Scan for the appropriate larger type to use.
3095 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003096 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00003097
Duncan Sands83ec4b62008-06-06 12:08:01 +00003098 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003099 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003100 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003101 "Fell off of the edge of the floating point world");
Scott Michelfdc40a02009-02-17 22:15:04 +00003102
Andrew Lenharthae355752005-11-30 17:12:26 +00003103 // If the target supports SETCC of this type, use it.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003104 if (TLI.isOperationLegalOrCustom(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00003105 break;
3106 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00003107 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00003108 assert(0 && "Cannot promote Legal Integer SETCC yet");
3109 else {
Dale Johannesenca57b842009-02-02 23:46:53 +00003110 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp1);
3111 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp2);
Andrew Lenharthae355752005-11-30 17:12:26 +00003112 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003113 Tmp1 = LegalizeOp(Tmp1);
3114 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00003115 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00003116 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00003117 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003118 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003119 case TargetLowering::Expand:
3120 // Expand a setcc node into a select_cc of the same condition, lhs, and
3121 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003122 MVT VT = Node->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003123 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Nate Begemanb942a3d2005-08-23 04:29:48 +00003124 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00003125 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00003126 break;
3127 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003128 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003129 case ISD::VSETCC: {
3130 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3131 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman475871a2008-07-27 21:46:04 +00003132 SDValue CC = Node->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00003133
Nate Begemanb43e9c12008-05-12 19:40:03 +00003134 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
3135
3136 // Everything is legal, see if we should expand this op or something.
3137 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
3138 default: assert(0 && "This action is not supported yet!");
3139 case TargetLowering::Legal: break;
3140 case TargetLowering::Custom:
3141 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003142 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003143 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003144 case TargetLowering::Expand: {
3145 // Unroll into a nasty set of scalar code for now.
3146 MVT VT = Node->getValueType(0);
3147 unsigned NumElems = VT.getVectorNumElements();
3148 MVT EltVT = VT.getVectorElementType();
3149 MVT TmpEltVT = Tmp1.getValueType().getVectorElementType();
3150 SmallVector<SDValue, 8> Ops(NumElems);
3151 for (unsigned i = 0; i < NumElems; ++i) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003152 SDValue In1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT,
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003153 Tmp1, DAG.getIntPtrConstant(i));
Dale Johannesenca57b842009-02-02 23:46:53 +00003154 Ops[i] = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(TmpEltVT),
3155 In1, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3156 TmpEltVT, Tmp2,
3157 DAG.getIntPtrConstant(i)),
Mon P Wang84aff842008-12-17 08:49:47 +00003158 CC);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00003159 Ops[i] = DAG.getNode(ISD::SELECT, dl, EltVT, Ops[i],
3160 DAG.getConstant(APInt::getAllOnesValue
3161 (EltVT.getSizeInBits()), EltVT),
3162 DAG.getConstant(0, EltVT));
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003163 }
Evan Chenga87008d2009-02-25 22:49:59 +00003164 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElems);
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003165 break;
3166 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00003167 }
3168 break;
3169 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00003170
Chris Lattner5b359c62005-04-02 04:00:59 +00003171 case ISD::SHL_PARTS:
3172 case ISD::SRA_PARTS:
3173 case ISD::SRL_PARTS: {
Dan Gohman475871a2008-07-27 21:46:04 +00003174 SmallVector<SDValue, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00003175 bool Changed = false;
Duncan Sands92abc622009-01-31 15:50:11 +00003176 unsigned N = Node->getNumOperands();
3177 for (unsigned i = 0; i + 1 < N; ++i) {
Chris Lattner84f67882005-01-20 18:52:28 +00003178 Ops.push_back(LegalizeOp(Node->getOperand(i)));
3179 Changed |= Ops.back() != Node->getOperand(i);
3180 }
Duncan Sands92abc622009-01-31 15:50:11 +00003181 Ops.push_back(LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(N-1))));
3182 Changed |= Ops.back() != Node->getOperand(N-1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003183 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003184 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00003185
Evan Cheng05a2d562006-01-09 18:31:59 +00003186 switch (TLI.getOperationAction(Node->getOpcode(),
3187 Node->getValueType(0))) {
3188 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003189 case TargetLowering::Legal: break;
3190 case TargetLowering::Custom:
3191 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003192 if (Tmp1.getNode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003193 SDValue Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00003194 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003195 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman475871a2008-07-27 21:46:04 +00003196 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003197 if (i == Op.getResNo())
Evan Cheng12f22742006-01-19 04:54:52 +00003198 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00003199 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003200 assert(RetVal.getNode() && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00003201 return RetVal;
3202 }
Evan Cheng05a2d562006-01-09 18:31:59 +00003203 break;
3204 }
3205
Chris Lattner2c8086f2005-04-02 05:00:07 +00003206 // Since these produce multiple values, make sure to remember that we
3207 // legalized all of them.
3208 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00003209 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00003210 return Result.getValue(Op.getResNo());
Chris Lattner84f67882005-01-20 18:52:28 +00003211 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003212
3213 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00003214 case ISD::ADD:
3215 case ISD::SUB:
3216 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00003217 case ISD::MULHS:
3218 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003219 case ISD::UDIV:
3220 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003221 case ISD::AND:
3222 case ISD::OR:
3223 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00003224 case ISD::SHL:
3225 case ISD::SRL:
3226 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00003227 case ISD::FADD:
3228 case ISD::FSUB:
3229 case ISD::FMUL:
3230 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00003231 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003232 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003233 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003234
3235 if ((Node->getOpcode() == ISD::SHL ||
3236 Node->getOpcode() == ISD::SRL ||
3237 Node->getOpcode() == ISD::SRA) &&
Duncan Sands92abc622009-01-31 15:50:11 +00003238 !Node->getValueType(0).isVector())
3239 Tmp2 = DAG.getShiftAmountOperand(Tmp2);
3240
3241 switch (getTypeAction(Tmp2.getValueType())) {
3242 case Expand: assert(0 && "Not possible");
3243 case Legal:
3244 Tmp2 = LegalizeOp(Tmp2); // Legalize the RHS.
3245 break;
3246 case Promote:
3247 Tmp2 = PromoteOp(Tmp2); // Promote the RHS.
3248 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003249 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003250
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003251 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Mon P Wangaeb06d22008-11-10 04:46:22 +00003252
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003253 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003254 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00003255 case TargetLowering::Legal: break;
3256 case TargetLowering::Custom:
3257 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003258 if (Tmp1.getNode()) {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003259 Result = Tmp1;
3260 break;
Nate Begeman24dc3462008-07-29 19:07:27 +00003261 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003262 // Fall through if the custom lower can't deal with the operation
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003263 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003264 MVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003265
Dan Gohman525178c2007-10-08 18:33:35 +00003266 // See if multiply or divide can be lowered using two-result operations.
3267 SDVTList VTs = DAG.getVTList(VT, VT);
3268 if (Node->getOpcode() == ISD::MUL) {
3269 // We just need the low half of the multiply; try both the signed
3270 // and unsigned forms. If the target supports both SMUL_LOHI and
3271 // UMUL_LOHI, form a preference by checking which forms of plain
3272 // MULH it supports.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003273 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3274 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3275 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3276 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
Dan Gohman525178c2007-10-08 18:33:35 +00003277 unsigned OpToUse = 0;
3278 if (HasSMUL_LOHI && !HasMULHS) {
3279 OpToUse = ISD::SMUL_LOHI;
3280 } else if (HasUMUL_LOHI && !HasMULHU) {
3281 OpToUse = ISD::UMUL_LOHI;
3282 } else if (HasSMUL_LOHI) {
3283 OpToUse = ISD::SMUL_LOHI;
3284 } else if (HasUMUL_LOHI) {
3285 OpToUse = ISD::UMUL_LOHI;
3286 }
3287 if (OpToUse) {
Duncan Sandsa9cad0e2009-05-06 11:29:50 +00003288 Result = DAG.getNode(OpToUse, dl, VTs, Tmp1, Tmp2);
Dan Gohman525178c2007-10-08 18:33:35 +00003289 break;
3290 }
3291 }
3292 if (Node->getOpcode() == ISD::MULHS &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003293 TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003294 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003295 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003296 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003297 break;
3298 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003299 if (Node->getOpcode() == ISD::MULHU &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003300 TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003301 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, dl,
3302 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003303 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003304 break;
3305 }
3306 if (Node->getOpcode() == ISD::SDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003307 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Duncan Sandsa9cad0e2009-05-06 11:29:50 +00003308 Result = DAG.getNode(ISD::SDIVREM, dl, VTs, Tmp1, Tmp2);
Dan Gohman525178c2007-10-08 18:33:35 +00003309 break;
3310 }
3311 if (Node->getOpcode() == ISD::UDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003312 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Duncan Sandsa9cad0e2009-05-06 11:29:50 +00003313 Result = DAG.getNode(ISD::UDIVREM, dl, VTs, Tmp1, Tmp2);
3314 break;
3315 }
3316 if (Node->getOpcode() == ISD::SUB &&
3317 TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3318 TLI.isOperationLegalOrCustom(ISD::XOR, VT)) {
3319 Tmp2 = DAG.getNode(ISD::XOR, dl, VT, Tmp2,
3320 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
3321 Tmp2 = DAG.getNode(ISD::ADD, dl, VT, Tmp2, DAG.getConstant(1, VT));
3322 Result = DAG.getNode(ISD::ADD, dl, VT, Tmp1, Tmp2);
Dan Gohman525178c2007-10-08 18:33:35 +00003323 break;
3324 }
Mon P Wang87c8a8f2008-12-18 20:03:17 +00003325
Dan Gohman82669522007-10-11 23:57:53 +00003326 // Check to see if we have a libcall for this operator.
3327 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3328 bool isSigned = false;
3329 switch (Node->getOpcode()) {
3330 case ISD::UDIV:
3331 case ISD::SDIV:
Anton Korobeynikov813090c2009-05-03 13:18:16 +00003332 isSigned = Node->getOpcode() == ISD::SDIV;
3333 if (VT == MVT::i16)
3334 LC = (isSigned ? RTLIB::SDIV_I16 : RTLIB::UDIV_I16);
3335 else if (VT == MVT::i32)
3336 LC = (isSigned ? RTLIB::SDIV_I32 : RTLIB::UDIV_I32);
3337 else if (VT == MVT::i64)
3338 LC = (isSigned ? RTLIB::SDIV_I64 : RTLIB::UDIV_I64);
3339 else if (VT == MVT::i128)
3340 LC = (isSigned ? RTLIB::SDIV_I128 : RTLIB::UDIV_I128);
3341 break;
Chris Lattner31d71612008-10-04 21:27:46 +00003342 case ISD::MUL:
Anton Korobeynikov2f25c2c2009-05-03 13:13:51 +00003343 if (VT == MVT::i16)
3344 LC = RTLIB::MUL_I16;
Anton Korobeynikov813090c2009-05-03 13:18:16 +00003345 else if (VT == MVT::i32)
Chris Lattner31d71612008-10-04 21:27:46 +00003346 LC = RTLIB::MUL_I32;
Nate Begeman9b994852009-01-24 22:12:48 +00003347 else if (VT == MVT::i64)
Scott Michel845145f2008-12-29 03:21:37 +00003348 LC = RTLIB::MUL_I64;
Anton Korobeynikov2f25c2c2009-05-03 13:13:51 +00003349 else if (VT == MVT::i128)
3350 LC = RTLIB::MUL_I128;
Chris Lattner31d71612008-10-04 21:27:46 +00003351 break;
Dan Gohman82669522007-10-11 23:57:53 +00003352 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003353 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3354 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003355 break;
Scott Micheld1e8d9c2009-01-21 04:58:48 +00003356 case ISD::FDIV:
3357 LC = GetFPLibCall(VT, RTLIB::DIV_F32, RTLIB::DIV_F64, RTLIB::DIV_F80,
3358 RTLIB::DIV_PPCF128);
3359 break;
Dan Gohman82669522007-10-11 23:57:53 +00003360 default: break;
3361 }
3362 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +00003363 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003364 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003365 break;
3366 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003367
Duncan Sands83ec4b62008-06-06 12:08:01 +00003368 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003369 "Cannot expand this binary operator!");
3370 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003371 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003372 break;
3373 }
Evan Chengcc987612006-04-12 21:20:24 +00003374 case TargetLowering::Promote: {
3375 switch (Node->getOpcode()) {
3376 default: assert(0 && "Do not know how to promote this BinOp!");
3377 case ISD::AND:
3378 case ISD::OR:
3379 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003380 MVT OVT = Node->getValueType(0);
3381 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3382 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003383 // Bit convert each of the values to the new type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003384 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
3385 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
3386 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Evan Chengcc987612006-04-12 21:20:24 +00003387 // Bit convert the result back the original type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003388 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Evan Chengcc987612006-04-12 21:20:24 +00003389 break;
3390 }
3391 }
3392 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003393 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003394 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003395
Dan Gohmane14ea862007-10-05 14:17:22 +00003396 case ISD::SMUL_LOHI:
3397 case ISD::UMUL_LOHI:
3398 case ISD::SDIVREM:
3399 case ISD::UDIVREM:
3400 // These nodes will only be produced by target-specific lowering, so
3401 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003402 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003403 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003404
3405 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3406 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3407 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003408 break;
3409
Chris Lattnera09f8482006-03-05 05:09:38 +00003410 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3411 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3412 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3413 case Expand: assert(0 && "Not possible");
3414 case Legal:
3415 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3416 break;
3417 case Promote:
3418 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3419 break;
3420 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003421
Chris Lattnera09f8482006-03-05 05:09:38 +00003422 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00003423
Chris Lattnera09f8482006-03-05 05:09:38 +00003424 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3425 default: assert(0 && "Operation not supported");
3426 case TargetLowering::Custom:
3427 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003428 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003429 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003430 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003431 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003432 // If this target supports fabs/fneg natively and select is cheap,
3433 // do this efficiently.
3434 if (!TLI.isSelectExpensive() &&
3435 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3436 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003437 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003438 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003439 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003440 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003441 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dale Johannesenca57b842009-02-02 23:46:53 +00003442 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, IVT, Tmp2);
3443 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(IVT),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003444 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3445 // Get the absolute value of the result.
Dale Johannesenca57b842009-02-02 23:46:53 +00003446 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
Chris Lattner8f4191d2006-03-13 06:08:38 +00003447 // Select between the nabs and abs value based on the sign bit of
3448 // the input.
Dale Johannesenca57b842009-02-02 23:46:53 +00003449 Result = DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
Scott Michelfdc40a02009-02-17 22:15:04 +00003450 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003451 AbsVal),
3452 AbsVal);
3453 Result = LegalizeOp(Result);
3454 break;
3455 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003456
Chris Lattner8f4191d2006-03-13 06:08:38 +00003457 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003458 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003459 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3460 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
Dale Johannesenca57b842009-02-02 23:46:53 +00003461 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0), Result);
Evan Cheng912095b2007-01-04 21:56:39 +00003462 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003463 break;
3464 }
Evan Cheng912095b2007-01-04 21:56:39 +00003465 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003466 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003467
Nate Begeman551bf3f2006-02-17 05:43:56 +00003468 case ISD::ADDC:
3469 case ISD::SUBC:
3470 Tmp1 = LegalizeOp(Node->getOperand(0));
3471 Tmp2 = LegalizeOp(Node->getOperand(1));
3472 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003473 Tmp3 = Result.getValue(0);
3474 Tmp4 = Result.getValue(1);
3475
3476 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3477 default: assert(0 && "This action is not supported yet!");
3478 case TargetLowering::Legal:
3479 break;
3480 case TargetLowering::Custom:
3481 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3482 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003483 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003484 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3485 }
3486 break;
3487 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003488 // Since this produces two values, make sure to remember that we legalized
3489 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003490 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3491 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3492 return Op.getResNo() ? Tmp4 : Tmp3;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003493
Nate Begeman551bf3f2006-02-17 05:43:56 +00003494 case ISD::ADDE:
3495 case ISD::SUBE:
3496 Tmp1 = LegalizeOp(Node->getOperand(0));
3497 Tmp2 = LegalizeOp(Node->getOperand(1));
3498 Tmp3 = LegalizeOp(Node->getOperand(2));
3499 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003500 Tmp3 = Result.getValue(0);
3501 Tmp4 = Result.getValue(1);
3502
3503 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3504 default: assert(0 && "This action is not supported yet!");
3505 case TargetLowering::Legal:
3506 break;
3507 case TargetLowering::Custom:
3508 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3509 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003510 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003511 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3512 }
3513 break;
3514 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003515 // Since this produces two values, make sure to remember that we legalized
3516 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003517 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3518 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3519 return Op.getResNo() ? Tmp4 : Tmp3;
Scott Michelfdc40a02009-02-17 22:15:04 +00003520
Nate Begeman419f8b62005-10-18 00:27:41 +00003521 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003522 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003523 // TODO: handle the case where the Lo and Hi operands are not of legal type
3524 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3525 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3526 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003527 case TargetLowering::Promote:
3528 case TargetLowering::Custom:
3529 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003530 case TargetLowering::Legal:
3531 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
Dale Johannesenca57b842009-02-02 23:46:53 +00003532 Result = DAG.getNode(ISD::BUILD_PAIR, dl, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003533 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003534 case TargetLowering::Expand:
Dale Johannesenca57b842009-02-02 23:46:53 +00003535 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Tmp1);
3536 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Tmp2);
3537 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003538 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003539 TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00003540 Result = DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003541 break;
3542 }
3543 break;
3544 }
3545
Nate Begemanc105e192005-04-06 00:23:54 +00003546 case ISD::UREM:
3547 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003548 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003549 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3550 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003551
Nate Begemanc105e192005-04-06 00:23:54 +00003552 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003553 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3554 case TargetLowering::Custom:
3555 isCustom = true;
3556 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003557 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003558 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003559 if (isCustom) {
3560 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003561 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003562 }
Nate Begemanc105e192005-04-06 00:23:54 +00003563 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003564 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003565 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003566 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003567 MVT VT = Node->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003568
Dan Gohman525178c2007-10-08 18:33:35 +00003569 // See if remainder can be lowered using two-result operations.
3570 SDVTList VTs = DAG.getVTList(VT, VT);
3571 if (Node->getOpcode() == ISD::SREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003572 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003573 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003574 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003575 break;
3576 }
3577 if (Node->getOpcode() == ISD::UREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003578 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003579 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3580 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003581 break;
3582 }
3583
Anton Korobeynikov58c04e12009-05-08 18:51:08 +00003584 if (VT.isInteger() &&
3585 TLI.getOperationAction(DivOpc, VT) == TargetLowering::Legal) {
3586 // X % Y -> X-X/Y*Y
3587 Result = DAG.getNode(DivOpc, dl, VT, Tmp1, Tmp2);
3588 Result = DAG.getNode(ISD::MUL, dl, VT, Result, Tmp2);
3589 Result = DAG.getNode(ISD::SUB, dl, VT, Tmp1, Result);
3590 break;
Nate Begemanc105e192005-04-06 00:23:54 +00003591 }
Anton Korobeynikov58c04e12009-05-08 18:51:08 +00003592
3593 // Check to see if we have a libcall for this operator.
3594 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3595 switch (Node->getOpcode()) {
3596 default: break;
3597 case ISD::UREM:
3598 case ISD::SREM:
3599 if (VT == MVT::i16)
3600 LC = (isSigned ? RTLIB::SREM_I16 : RTLIB::UREM_I16);
3601 else if (VT == MVT::i32)
3602 LC = (isSigned ? RTLIB::SREM_I32 : RTLIB::UREM_I32);
3603 else if (VT == MVT::i64)
3604 LC = (isSigned ? RTLIB::SREM_I64 : RTLIB::UREM_I64);
3605 else if (VT == MVT::i128)
3606 LC = (isSigned ? RTLIB::SREM_I128 : RTLIB::UREM_I128);
3607 break;
3608 case ISD::FREM:
3609 // Floating point mod -> fmod libcall.
3610 LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3611 RTLIB::REM_F80, RTLIB::REM_PPCF128);
3612 break;
3613 }
3614
3615 if (LC != RTLIB::UNKNOWN_LIBCALL) {
3616 SDValue Dummy;
3617 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
3618 break;
3619 }
3620
3621 assert(VT.isVector() &&
3622 "Cannot expand this binary operator!");
3623 // Expand the operation into a bunch of nasty scalar code.
3624 Result = LegalizeOp(UnrollVectorOp(Op));
Nate Begemanc105e192005-04-06 00:23:54 +00003625 break;
3626 }
Dan Gohman525178c2007-10-08 18:33:35 +00003627 }
Nate Begemanc105e192005-04-06 00:23:54 +00003628 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003629 case ISD::VAARG: {
3630 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3631 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3632
Duncan Sands83ec4b62008-06-06 12:08:01 +00003633 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003634 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3635 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003636 case TargetLowering::Custom:
3637 isCustom = true;
3638 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003639 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003640 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3641 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003642 Tmp1 = Result.getValue(1);
3643
3644 if (isCustom) {
3645 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003646 if (Tmp2.getNode()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003647 Result = LegalizeOp(Tmp2);
3648 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3649 }
3650 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003651 break;
3652 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003653 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenca57b842009-02-02 23:46:53 +00003654 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003655 // Increment the pointer, VAList, to the next vaarg
Dale Johannesenca57b842009-02-02 23:46:53 +00003656 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00003657 DAG.getConstant(TLI.getTargetData()->
Duncan Sands777d2302009-05-09 07:06:46 +00003658 getTypeAllocSize(VT.getTypeForMVT()),
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00003659 TLI.getPointerTy()));
Nate Begemanacc398c2006-01-25 18:21:52 +00003660 // Store the incremented VAList to the legalized pointer
Dale Johannesenca57b842009-02-02 23:46:53 +00003661 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003662 // Load the actual argument out of the pointer VAList
Dale Johannesenca57b842009-02-02 23:46:53 +00003663 Result = DAG.getLoad(VT, dl, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003664 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003665 Result = LegalizeOp(Result);
3666 break;
3667 }
3668 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003669 // Since VAARG produces two values, make sure to remember that we
Nate Begemanacc398c2006-01-25 18:21:52 +00003670 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003671 AddLegalizedOperand(SDValue(Node, 0), Result);
3672 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003673 return Op.getResNo() ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003674 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003675
3676 case ISD::VACOPY:
Nate Begemanacc398c2006-01-25 18:21:52 +00003677 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3678 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3679 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3680
3681 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3682 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003683 case TargetLowering::Custom:
3684 isCustom = true;
3685 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003686 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003687 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3688 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003689 if (isCustom) {
3690 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003691 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003692 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003693 break;
3694 case TargetLowering::Expand:
3695 // This defaults to loading a pointer from the input and storing it to the
3696 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003697 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3698 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dale Johannesenca57b842009-02-02 23:46:53 +00003699 Tmp4 = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp3, VS, 0);
3700 Result = DAG.getStore(Tmp4.getValue(1), dl, Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003701 break;
3702 }
3703 break;
3704
Scott Michelfdc40a02009-02-17 22:15:04 +00003705 case ISD::VAEND:
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
3709 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3710 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003711 case TargetLowering::Custom:
3712 isCustom = true;
3713 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003714 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003715 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003716 if (isCustom) {
3717 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003718 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003719 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003720 break;
3721 case TargetLowering::Expand:
3722 Result = Tmp1; // Default to a no-op, return the chain
3723 break;
3724 }
3725 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003726
3727 case ISD::VASTART:
Nate Begemanacc398c2006-01-25 18:21:52 +00003728 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3729 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3730
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003731 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00003732
Nate Begemanacc398c2006-01-25 18:21:52 +00003733 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3734 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003735 case TargetLowering::Legal: break;
3736 case TargetLowering::Custom:
3737 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003738 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003739 break;
3740 }
3741 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003742
Nate Begeman35ef9132006-01-11 21:21:00 +00003743 case ISD::ROTL:
3744 case ISD::ROTR:
3745 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003746 Tmp2 = LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(1))); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003747 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003748 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3749 default:
3750 assert(0 && "ROTL/ROTR legalize operation not supported");
3751 break;
3752 case TargetLowering::Legal:
3753 break;
3754 case TargetLowering::Custom:
3755 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003756 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelc9dc1142007-04-02 21:36:32 +00003757 break;
3758 case TargetLowering::Promote:
3759 assert(0 && "Do not know how to promote ROTL/ROTR");
3760 break;
3761 case TargetLowering::Expand:
3762 assert(0 && "Do not know how to expand ROTL/ROTR");
3763 break;
3764 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003765 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003766
Nate Begemand88fc032006-01-14 03:14:10 +00003767 case ISD::BSWAP:
3768 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3769 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003770 case TargetLowering::Custom:
3771 assert(0 && "Cannot custom legalize this yet!");
3772 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003773 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003774 break;
3775 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003776 MVT OVT = Tmp1.getValueType();
3777 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3778 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003779
Dale Johannesenca57b842009-02-02 23:46:53 +00003780 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
3781 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3782 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Chris Lattner456a93a2006-01-28 07:39:30 +00003783 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3784 break;
3785 }
3786 case TargetLowering::Expand:
Dale Johannesen8a782a22009-02-02 22:12:50 +00003787 Result = ExpandBSWAP(Tmp1, dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00003788 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003789 }
3790 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003791
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003792 case ISD::CTPOP:
3793 case ISD::CTTZ:
3794 case ISD::CTLZ:
3795 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3796 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003797 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003798 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003799 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003800 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003801 TargetLowering::Custom) {
3802 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003803 if (Tmp1.getNode()) {
Scott Michel335f4f72007-08-02 02:22:46 +00003804 Result = Tmp1;
3805 }
Scott Michel910b66d2007-07-30 21:00:31 +00003806 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003807 break;
3808 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003809 MVT OVT = Tmp1.getValueType();
3810 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003811
3812 // Zero extend the argument.
Dale Johannesenca57b842009-02-02 23:46:53 +00003813 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003814 // Perform the larger operation, then subtract if needed.
Dale Johannesenca57b842009-02-02 23:46:53 +00003815 Tmp1 = DAG.getNode(Node->getOpcode(), dl, Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003816 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003817 case ISD::CTPOP:
3818 Result = Tmp1;
3819 break;
3820 case ISD::CTTZ:
3821 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesenca57b842009-02-02 23:46:53 +00003822 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
3823 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003824 ISD::SETEQ);
Dale Johannesenca57b842009-02-02 23:46:53 +00003825 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003826 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003827 break;
3828 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003829 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesenca57b842009-02-02 23:46:53 +00003830 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003831 DAG.getConstant(NVT.getSizeInBits() -
3832 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003833 break;
3834 }
3835 break;
3836 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003837 case TargetLowering::Expand:
Dale Johannesen8a782a22009-02-02 22:12:50 +00003838 Result = ExpandBitCount(Node->getOpcode(), Tmp1, dl);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003839 break;
3840 }
3841 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003842
Chris Lattner2c8086f2005-04-02 05:00:07 +00003843 // Unary operators
3844 case ISD::FABS:
3845 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003846 case ISD::FSQRT:
3847 case ISD::FSIN:
3848 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003849 case ISD::FLOG:
3850 case ISD::FLOG2:
3851 case ISD::FLOG10:
3852 case ISD::FEXP:
3853 case ISD::FEXP2:
Dan Gohman509e84f2008-08-21 17:55:02 +00003854 case ISD::FTRUNC:
3855 case ISD::FFLOOR:
3856 case ISD::FCEIL:
3857 case ISD::FRINT:
3858 case ISD::FNEARBYINT:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003859 Tmp1 = LegalizeOp(Node->getOperand(0));
3860 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003861 case TargetLowering::Promote:
3862 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003863 isCustom = true;
3864 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003865 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003866 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003867 if (isCustom) {
3868 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003869 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng59ad7812006-01-31 18:14:25 +00003870 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003871 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003872 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003873 switch (Node->getOpcode()) {
3874 default: assert(0 && "Unreachable!");
3875 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003876 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3877 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00003878 Result = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003879 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003880 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003881 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003882 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003883 Tmp2 = DAG.getConstantFP(0.0, VT);
Dale Johannesenca57b842009-02-02 23:46:53 +00003884 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00003885 Tmp1, Tmp2, ISD::SETUGT);
Dale Johannesenca57b842009-02-02 23:46:53 +00003886 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3887 Result = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003888 break;
3889 }
Evan Cheng9d24ac52008-09-09 23:35:53 +00003890 case ISD::FSQRT:
3891 case ISD::FSIN:
Scott Michelfdc40a02009-02-17 22:15:04 +00003892 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003893 case ISD::FLOG:
3894 case ISD::FLOG2:
3895 case ISD::FLOG10:
3896 case ISD::FEXP:
3897 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003898 case ISD::FTRUNC:
3899 case ISD::FFLOOR:
3900 case ISD::FCEIL:
3901 case ISD::FRINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00003902 case ISD::FNEARBYINT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003903 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003904
3905 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003906 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003907 Result = LegalizeOp(UnrollVectorOp(Op));
3908 break;
3909 }
3910
Evan Cheng56966222007-01-12 02:11:51 +00003911 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003912 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003913 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003914 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3915 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003916 break;
3917 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003918 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3919 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003920 break;
3921 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003922 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3923 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003924 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003925 case ISD::FLOG:
3926 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3927 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3928 break;
3929 case ISD::FLOG2:
3930 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3931 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3932 break;
3933 case ISD::FLOG10:
3934 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3935 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3936 break;
3937 case ISD::FEXP:
3938 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3939 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3940 break;
3941 case ISD::FEXP2:
3942 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3943 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3944 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003945 case ISD::FTRUNC:
3946 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3947 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3948 break;
3949 case ISD::FFLOOR:
3950 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3951 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3952 break;
3953 case ISD::FCEIL:
3954 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3955 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3956 break;
3957 case ISD::FRINT:
3958 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3959 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3960 break;
3961 case ISD::FNEARBYINT:
3962 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3963 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3964 break;
Evan Cheng9d24ac52008-09-09 23:35:53 +00003965 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003966 default: assert(0 && "Unreachable!");
3967 }
Dan Gohman475871a2008-07-27 21:46:04 +00003968 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003969 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003970 break;
3971 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003972 }
3973 break;
3974 }
3975 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003976 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003977 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003978
3979 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003980 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003981 Result = LegalizeOp(UnrollVectorOp(Op));
3982 break;
3983 }
3984
3985 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003986 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3987 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003988 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003989 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003990 break;
3991 }
Chris Lattner35481892005-12-23 00:16:34 +00003992 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003993 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003994 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00003995 Node->getValueType(0), dl);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003996 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003997 // The input has to be a vector type, we have to either scalarize it, pack
3998 // it, or convert it based on whether the input vector type is legal.
Gabor Greifba36cb52008-08-28 21:40:38 +00003999 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00004000 int InIx = Node->getOperand(0).getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00004001 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
4002 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00004003
Dan Gohman7f321562007-06-25 16:23:39 +00004004 // Figure out if there is a simple type corresponding to this Vector
4005 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004006 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00004007 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00004008 // Turn this into a bit convert of the vector input.
Nate Begemanec8eee22009-04-29 22:47:44 +00004009 Tmp1 = LegalizeOp(Node->getOperand(0));
4010 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0), Tmp1);
Dan Gohman7f321562007-06-25 16:23:39 +00004011 break;
4012 } else if (NumElems == 1) {
4013 // Turn this into a bit convert of the scalar input.
Scott Michelfdc40a02009-02-17 22:15:04 +00004014 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohman7f321562007-06-25 16:23:39 +00004015 ScalarizeVectorOp(Node->getOperand(0)));
4016 break;
4017 } else {
4018 // FIXME: UNIMP! Store then reload
4019 assert(0 && "Cast from unsupported vector type not implemented yet!");
4020 }
Chris Lattner67993f72006-01-23 07:30:46 +00004021 } else {
Chris Lattner35481892005-12-23 00:16:34 +00004022 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
4023 Node->getOperand(0).getValueType())) {
4024 default: assert(0 && "Unknown operation action!");
4025 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00004026 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00004027 Node->getValueType(0), dl);
Chris Lattner35481892005-12-23 00:16:34 +00004028 break;
4029 case TargetLowering::Legal:
4030 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004031 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00004032 break;
4033 }
4034 }
4035 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004036 case ISD::CONVERT_RNDSAT: {
4037 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4038 switch (CvtCode) {
4039 default: assert(0 && "Unknown cvt code!");
4040 case ISD::CVT_SF:
4041 case ISD::CVT_UF:
Mon P Wang77cdf302008-11-10 20:54:11 +00004042 case ISD::CVT_FF:
Mon P Wang1cd46bb2008-12-09 07:27:39 +00004043 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004044 case ISD::CVT_FS:
4045 case ISD::CVT_FU:
4046 case ISD::CVT_SS:
4047 case ISD::CVT_SU:
4048 case ISD::CVT_US:
4049 case ISD::CVT_UU: {
4050 SDValue DTyOp = Node->getOperand(1);
4051 SDValue STyOp = Node->getOperand(2);
4052 SDValue RndOp = Node->getOperand(3);
4053 SDValue SatOp = Node->getOperand(4);
4054 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4055 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4056 case Legal:
4057 Tmp1 = LegalizeOp(Node->getOperand(0));
4058 Result = DAG.UpdateNodeOperands(Result, Tmp1, DTyOp, STyOp,
4059 RndOp, SatOp);
4060 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4061 TargetLowering::Custom) {
4062 Tmp1 = TLI.LowerOperation(Result, DAG);
4063 if (Tmp1.getNode()) Result = Tmp1;
4064 }
4065 break;
4066 case Promote:
4067 Result = PromoteOp(Node->getOperand(0));
4068 // For FP, make Op1 a i32
Scott Michelfdc40a02009-02-17 22:15:04 +00004069
Dale Johannesenc460ae92009-02-04 00:13:36 +00004070 Result = DAG.getConvertRndSat(Op.getValueType(), dl, Result,
Mon P Wang77cdf302008-11-10 20:54:11 +00004071 DTyOp, STyOp, RndOp, SatOp, CvtCode);
4072 break;
4073 }
4074 break;
4075 }
4076 } // end switch CvtCode
4077 break;
4078 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00004079 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00004080 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004081 case ISD::UINT_TO_FP: {
4082 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman7f8613e2008-08-14 20:04:46 +00004083 Result = LegalizeINT_TO_FP(Result, isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00004084 Node->getValueType(0), Node->getOperand(0), dl);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004085 break;
4086 }
4087 case ISD::TRUNCATE:
4088 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4089 case Legal:
4090 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel546d7b52008-12-02 19:55:08 +00004091 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
4092 default: assert(0 && "Unknown TRUNCATE legalization operation action!");
4093 case TargetLowering::Custom:
Mon P Wangf67303d2008-12-11 00:44:22 +00004094 isCustom = true;
4095 // FALLTHROUGH
Scott Michel546d7b52008-12-02 19:55:08 +00004096 case TargetLowering::Legal:
Mon P Wangf67303d2008-12-11 00:44:22 +00004097 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4098 if (isCustom) {
4099 Tmp1 = TLI.LowerOperation(Result, DAG);
4100 if (Tmp1.getNode()) Result = Tmp1;
4101 }
4102 break;
Mon P Wang9e5ecb82008-12-12 01:25:51 +00004103 case TargetLowering::Expand:
4104 assert(Result.getValueType().isVector() && "must be vector type");
4105 // Unroll the truncate. We should do better.
4106 Result = LegalizeOp(UnrollVectorOp(Result));
Tilmann Schellerb0a5cdd2008-12-02 12:12:25 +00004107 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004108 break;
4109 case Expand:
4110 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4111
4112 // Since the result is legal, we should just be able to truncate the low
4113 // part of the source.
Dale Johannesenca57b842009-02-02 23:46:53 +00004114 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004115 break;
4116 case Promote:
4117 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004118 Result = DAG.getNode(ISD::TRUNCATE, dl, Op.getValueType(), Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004119 break;
4120 }
4121 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004122
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004123 case ISD::FP_TO_SINT:
4124 case ISD::FP_TO_UINT:
4125 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4126 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00004127 Tmp1 = LegalizeOp(Node->getOperand(0));
4128
Chris Lattner1618beb2005-07-29 00:11:56 +00004129 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
4130 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004131 case TargetLowering::Custom:
4132 isCustom = true;
4133 // FALLTHROUGH
4134 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004135 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004136 if (isCustom) {
4137 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004138 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00004139 }
4140 break;
4141 case TargetLowering::Promote:
4142 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00004143 Node->getOpcode() == ISD::FP_TO_SINT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004144 dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00004145 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00004146 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00004147 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman475871a2008-07-27 21:46:04 +00004148 SDValue True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004149 MVT VT = Node->getOperand(0).getValueType();
4150 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00004151 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00004152 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
4153 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004154 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00004155 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004156 Tmp3 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
Dale Johannesenaf435272009-02-02 19:03:57 +00004157 Node->getOperand(0),
Duncan Sands5480c042009-01-01 15:52:00 +00004158 Tmp2, ISD::SETLT);
Dale Johannesenaf435272009-02-02 19:03:57 +00004159 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
4160 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004161 DAG.getNode(ISD::FSUB, dl, VT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004162 Node->getOperand(0), Tmp2));
4163 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004164 DAG.getConstant(x, NVT));
Dale Johannesenaf435272009-02-02 19:03:57 +00004165 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp3, True, False);
Chris Lattner456a93a2006-01-28 07:39:30 +00004166 break;
Nate Begemand2558e32005-08-14 01:20:53 +00004167 } else {
4168 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
4169 }
4170 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00004171 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004172 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00004173 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004174 MVT VT = Op.getValueType();
4175 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004176 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004177 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004178 if (Node->getOpcode() == ISD::FP_TO_SINT) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004179 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, MVT::ppcf128,
Chris Lattner0bd48932008-01-17 07:00:52 +00004180 Node->getOperand(0), DAG.getValueType(MVT::f64));
Scott Michelfdc40a02009-02-17 22:15:04 +00004181 Result = DAG.getNode(ISD::FP_ROUND, dl, MVT::f64, Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00004182 DAG.getIntPtrConstant(1));
Dale Johannesenaf435272009-02-02 19:03:57 +00004183 Result = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004184 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004185 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
4186 APFloat apf = APFloat(APInt(128, 2, TwoE31));
4187 Tmp2 = DAG.getConstantFP(apf, OVT);
4188 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
4189 // FIXME: generated code sucks.
Scott Michelfdc40a02009-02-17 22:15:04 +00004190 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Node->getOperand(0),
Dale Johannesenaf435272009-02-02 19:03:57 +00004191 Tmp2,
4192 DAG.getNode(ISD::ADD, dl, MVT::i32,
4193 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
4194 DAG.getNode(ISD::FSUB, dl, OVT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004195 Node->getOperand(0), Tmp2)),
4196 DAG.getConstant(0x80000000, MVT::i32)),
Scott Michelfdc40a02009-02-17 22:15:04 +00004197 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004198 Node->getOperand(0)),
4199 DAG.getCondCode(ISD::SETGE));
4200 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004201 break;
4202 }
Dan Gohmana2e94852008-03-10 23:03:31 +00004203 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsb2ff8852008-07-17 02:36:29 +00004204 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
4205 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
4206 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman475871a2008-07-27 21:46:04 +00004207 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00004208 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00004209 break;
4210 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004211 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004212 Tmp1 = PromoteOp(Node->getOperand(0));
4213 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
4214 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004215 break;
4216 }
4217 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004218
Chris Lattnerf2670a82008-01-16 06:57:07 +00004219 case ISD::FP_EXTEND: {
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 // The only other way we can lower this is to turn it into a STORE,
4224 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen8a782a22009-02-02 22:12:50 +00004225 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT, dl);
Chris Lattner0bd48932008-01-17 07:00:52 +00004226 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00004227 }
4228 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4229 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4230 case Legal:
4231 Tmp1 = LegalizeOp(Node->getOperand(0));
4232 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4233 break;
4234 case Promote:
4235 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004236 Result = DAG.getNode(ISD::FP_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattnerf2670a82008-01-16 06:57:07 +00004237 break;
4238 }
4239 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004240 }
Dale Johannesen5411a392007-08-09 01:04:01 +00004241 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004242 MVT DstVT = Op.getValueType();
4243 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004244 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4245 if (SrcVT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00004246 SDValue Lo;
Dale Johannesen713ed3f2008-01-20 01:18:38 +00004247 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004248 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00004249 if (DstVT!=MVT::f64)
Dale Johannesenca57b842009-02-02 23:46:53 +00004250 Result = DAG.getNode(ISD::FP_ROUND, dl,
4251 DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00004252 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00004253 }
Chris Lattner0bd48932008-01-17 07:00:52 +00004254 // The only other way we can lower this is to turn it into a STORE,
4255 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen8a782a22009-02-02 22:12:50 +00004256 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT, dl);
Chris Lattner0bd48932008-01-17 07:00:52 +00004257 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00004258 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00004259 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4260 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4261 case Legal:
4262 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00004263 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004264 break;
4265 case Promote:
4266 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004267 Result = DAG.getNode(ISD::FP_ROUND, dl, Op.getValueType(), Tmp1,
Chris Lattner0bd48932008-01-17 07:00:52 +00004268 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004269 break;
4270 }
4271 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004272 }
Chris Lattner13c78e22005-09-02 00:18:10 +00004273 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004274 case ISD::ZERO_EXTEND:
4275 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004276 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00004277 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004278 case Legal:
4279 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00004280 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00004281 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4282 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00004283 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004284 if (Tmp1.getNode()) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00004285 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004286 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004287 case Promote:
4288 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00004289 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004290 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004291 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00004292 break;
Chris Lattner1713e732005-01-16 00:38:00 +00004293 case ISD::ZERO_EXTEND:
4294 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004295 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4296 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004297 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00004298 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004299 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00004300 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004301 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4302 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004303 Result,
4304 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00004305 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004306 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004307 }
4308 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00004309 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00004310 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00004311 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004312 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00004313
4314 // If this operation is not supported, convert it to a shl/shr or load/store
4315 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004316 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
4317 default: assert(0 && "This action not supported for this op yet!");
4318 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004319 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004320 break;
4321 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00004322 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00004323 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00004324 // NOTE: we could fall back on load/store here too for targets without
4325 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004326 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
4327 ExtraVT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00004328 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Dale Johannesenca57b842009-02-02 23:46:53 +00004329 Result = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
Chris Lattner45b8caf2005-01-15 07:15:18 +00004330 Node->getOperand(0), ShiftCst);
Dale Johannesenca57b842009-02-02 23:46:53 +00004331 Result = DAG.getNode(ISD::SRA, dl, Node->getValueType(0),
Chris Lattner45b8caf2005-01-15 07:15:18 +00004332 Result, ShiftCst);
4333 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00004334 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00004335 // EXTLOAD pair, targetting a temporary location (a stack slot).
4336
4337 // NOTE: there is a choice here between constantly creating new stack
4338 // slots and always reusing the same one. We currently always create
4339 // new ones, as reuse may inhibit scheduling.
Scott Michelfdc40a02009-02-17 22:15:04 +00004340 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00004341 Node->getValueType(0), dl);
Chris Lattner45b8caf2005-01-15 07:15:18 +00004342 } else {
4343 assert(0 && "Unknown op");
4344 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004345 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00004346 }
Chris Lattner0f69b292005-01-15 06:18:18 +00004347 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004348 }
Duncan Sands36397f52007-07-27 12:58:54 +00004349 case ISD::TRAMPOLINE: {
Dan Gohman475871a2008-07-27 21:46:04 +00004350 SDValue Ops[6];
Duncan Sands36397f52007-07-27 12:58:54 +00004351 for (unsigned i = 0; i != 6; ++i)
4352 Ops[i] = LegalizeOp(Node->getOperand(i));
4353 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
4354 // The only option for this node is to custom lower it.
4355 Result = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004356 assert(Result.getNode() && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00004357
4358 // Since trampoline produces two values, make sure to remember that we
4359 // legalized both of them.
4360 Tmp1 = LegalizeOp(Result.getValue(1));
4361 Result = LegalizeOp(Result);
Dan Gohman475871a2008-07-27 21:46:04 +00004362 AddLegalizedOperand(SDValue(Node, 0), Result);
4363 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00004364 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00004365 }
Dan Gohman9c78a392008-05-14 00:43:10 +00004366 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004367 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004368 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4369 default: assert(0 && "This action not supported for this op yet!");
4370 case TargetLowering::Custom:
4371 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004372 if (Result.getNode()) break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004373 // Fall Thru
4374 case TargetLowering::Legal:
4375 // If this operation is not supported, lower it to constant 1
4376 Result = DAG.getConstant(1, VT);
4377 break;
4378 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00004379 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004380 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004381 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004382 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004383 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4384 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00004385 case TargetLowering::Legal:
4386 Tmp1 = LegalizeOp(Node->getOperand(0));
4387 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4388 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004389 case TargetLowering::Custom:
4390 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004391 if (Result.getNode()) break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004392 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00004393 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004394 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00004395 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004396 TargetLowering::ArgListTy Args;
Bob Wilsonec15bbf2009-04-10 18:48:47 +00004397 std::pair<SDValue, SDValue> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00004398 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00004399 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00004400 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Dale Johannesen7d2ad622009-01-30 23:10:59 +00004401 Args, DAG, dl);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004402 Result = CallResult.second;
4403 break;
4404 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004405 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004406 }
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004407
Bill Wendling74c37652008-12-09 22:08:41 +00004408 case ISD::SADDO:
4409 case ISD::SSUBO: {
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004410 MVT VT = Node->getValueType(0);
4411 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4412 default: assert(0 && "This action not supported for this op yet!");
4413 case TargetLowering::Custom:
4414 Result = TLI.LowerOperation(Op, DAG);
4415 if (Result.getNode()) break;
4416 // FALLTHROUGH
4417 case TargetLowering::Legal: {
4418 SDValue LHS = LegalizeOp(Node->getOperand(0));
4419 SDValue RHS = LegalizeOp(Node->getOperand(1));
4420
Scott Michelfdc40a02009-02-17 22:15:04 +00004421 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
Dale Johannesenca57b842009-02-02 23:46:53 +00004422 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling74c37652008-12-09 22:08:41 +00004423 LHS, RHS);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004424 MVT OType = Node->getValueType(1);
4425
Bill Wendlinga6af91a2008-11-25 08:19:22 +00004426 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004427
Bill Wendling740464e2008-11-25 19:40:17 +00004428 // LHSSign -> LHS >= 0
4429 // RHSSign -> RHS >= 0
4430 // SumSign -> Sum >= 0
4431 //
Bill Wendling74c37652008-12-09 22:08:41 +00004432 // Add:
Bill Wendling740464e2008-11-25 19:40:17 +00004433 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
Bill Wendling74c37652008-12-09 22:08:41 +00004434 // Sub:
4435 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
Bill Wendling740464e2008-11-25 19:40:17 +00004436 //
Dale Johannesenca57b842009-02-02 23:46:53 +00004437 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
4438 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
Scott Michelfdc40a02009-02-17 22:15:04 +00004439 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
4440 Node->getOpcode() == ISD::SADDO ?
Bill Wendling74c37652008-12-09 22:08:41 +00004441 ISD::SETEQ : ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004442
Dale Johannesenca57b842009-02-02 23:46:53 +00004443 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
4444 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004445
Dale Johannesenca57b842009-02-02 23:46:53 +00004446 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004447
4448 MVT ValueVTs[] = { LHS.getValueType(), OType };
4449 SDValue Ops[] = { Sum, Cmp };
4450
Scott Michelfdc40a02009-02-17 22:15:04 +00004451 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00004452 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004453 &Ops[0], 2);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004454 SDNode *RNode = Result.getNode();
Dan Gohmanc23e4962009-04-15 20:06:30 +00004455 DAG.ReplaceAllUsesWith(Node, RNode);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004456 break;
4457 }
4458 }
4459
4460 break;
4461 }
Bill Wendling74c37652008-12-09 22:08:41 +00004462 case ISD::UADDO:
4463 case ISD::USUBO: {
Bill Wendling41ea7e72008-11-24 19:21:46 +00004464 MVT VT = Node->getValueType(0);
4465 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4466 default: assert(0 && "This action not supported for this op yet!");
4467 case TargetLowering::Custom:
4468 Result = TLI.LowerOperation(Op, DAG);
4469 if (Result.getNode()) break;
4470 // FALLTHROUGH
4471 case TargetLowering::Legal: {
4472 SDValue LHS = LegalizeOp(Node->getOperand(0));
4473 SDValue RHS = LegalizeOp(Node->getOperand(1));
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004474
Bill Wendling74c37652008-12-09 22:08:41 +00004475 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
Dale Johannesenca57b842009-02-02 23:46:53 +00004476 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling74c37652008-12-09 22:08:41 +00004477 LHS, RHS);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004478 MVT OType = Node->getValueType(1);
Dale Johannesenca57b842009-02-02 23:46:53 +00004479 SDValue Cmp = DAG.getSetCC(dl, OType, Sum, LHS,
Scott Michelfdc40a02009-02-17 22:15:04 +00004480 Node->getOpcode () == ISD::UADDO ?
Bill Wendling74c37652008-12-09 22:08:41 +00004481 ISD::SETULT : ISD::SETUGT);
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004482
Bill Wendling41ea7e72008-11-24 19:21:46 +00004483 MVT ValueVTs[] = { LHS.getValueType(), OType };
4484 SDValue Ops[] = { Sum, Cmp };
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004485
Scott Michelfdc40a02009-02-17 22:15:04 +00004486 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00004487 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004488 &Ops[0], 2);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004489 SDNode *RNode = Result.getNode();
Dan Gohmanc23e4962009-04-15 20:06:30 +00004490 DAG.ReplaceAllUsesWith(Node, RNode);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004491 break;
4492 }
4493 }
4494
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004495 break;
4496 }
Bill Wendling74c37652008-12-09 22:08:41 +00004497 case ISD::SMULO:
4498 case ISD::UMULO: {
4499 MVT VT = Node->getValueType(0);
4500 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4501 default: assert(0 && "This action is not supported at all!");
4502 case TargetLowering::Custom:
4503 Result = TLI.LowerOperation(Op, DAG);
4504 if (Result.getNode()) break;
4505 // Fall Thru
4506 case TargetLowering::Legal:
4507 // FIXME: According to Hacker's Delight, this can be implemented in
4508 // target independent lowering, but it would be inefficient, since it
Bill Wendlingbc5e15e2008-12-10 02:01:32 +00004509 // requires a division + a branch.
Scott Michelfdc40a02009-02-17 22:15:04 +00004510 assert(0 && "Target independent lowering is not supported for SMULO/UMULO!");
Bill Wendling74c37652008-12-09 22:08:41 +00004511 break;
4512 }
4513 break;
4514 }
4515
Chris Lattner45b8caf2005-01-15 07:15:18 +00004516 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004517
Chris Lattner4ddd2832006-04-08 04:13:17 +00004518 assert(Result.getValueType() == Op.getValueType() &&
4519 "Bad legalization!");
Scott Michelfdc40a02009-02-17 22:15:04 +00004520
Chris Lattner456a93a2006-01-28 07:39:30 +00004521 // Make sure that the generated code is itself legal.
4522 if (Result != Op)
4523 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004524
Chris Lattner45982da2005-05-12 16:53:42 +00004525 // Note that LegalizeOp may be reentered even from single-use nodes, which
4526 // means that we always must cache transformed nodes.
4527 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004528 return Result;
4529}
4530
Chris Lattner8b6fa222005-01-15 22:16:26 +00004531/// PromoteOp - Given an operation that produces a value in an invalid type,
4532/// promote it to compute the value into a larger type. The produced value will
4533/// have the correct bits for the low portion of the register, but no guarantee
4534/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman475871a2008-07-27 21:46:04 +00004535SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004536 MVT VT = Op.getValueType();
4537 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004538 assert(getTypeAction(VT) == Promote &&
4539 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004540 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004541 "Cannot promote to smaller type!");
4542
Dan Gohman475871a2008-07-27 21:46:04 +00004543 SDValue Tmp1, Tmp2, Tmp3;
4544 SDValue Result;
Gabor Greifba36cb52008-08-28 21:40:38 +00004545 SDNode *Node = Op.getNode();
Dale Johannesen8a782a22009-02-02 22:12:50 +00004546 DebugLoc dl = Node->getDebugLoc();
Chris Lattner03c85462005-01-15 05:21:40 +00004547
Dan Gohman475871a2008-07-27 21:46:04 +00004548 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004549 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004550
Chris Lattner03c85462005-01-15 05:21:40 +00004551 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004552 case ISD::CopyFromReg:
4553 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004554 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004555#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004556 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004557#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004558 assert(0 && "Do not know how to promote this operator!");
4559 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004560 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00004561 Result = DAG.getUNDEF(NVT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004562 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004563 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004564 if (VT != MVT::i1)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004565 Result = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Op);
Chris Lattnerec176e32005-08-30 16:56:19 +00004566 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00004567 Result = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004568 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4569 break;
4570 case ISD::ConstantFP:
Dale Johannesen8a782a22009-02-02 22:12:50 +00004571 Result = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004572 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4573 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004574
Duncan Sands5480c042009-01-01 15:52:00 +00004575 case ISD::SETCC: {
4576 MVT VT0 = Node->getOperand(0).getValueType();
4577 assert(isTypeLegal(TLI.getSetCCResultType(VT0))
Nate Begeman5922f562008-03-14 00:53:31 +00004578 && "SetCC type is not legal??");
Dale Johannesen8a782a22009-02-02 22:12:50 +00004579 Result = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(VT0),
Nate Begeman5922f562008-03-14 00:53:31 +00004580 Node->getOperand(0), Node->getOperand(1),
4581 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004582 break;
Duncan Sands5480c042009-01-01 15:52:00 +00004583 }
Chris Lattner03c85462005-01-15 05:21:40 +00004584 case ISD::TRUNCATE:
4585 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4586 case Legal:
4587 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004588 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004589 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004590 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Dale Johannesen8a782a22009-02-02 22:12:50 +00004591 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Result);
Chris Lattner03c85462005-01-15 05:21:40 +00004592 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004593 case Promote:
4594 // The truncation is not required, because we don't guarantee anything
4595 // about high bits anyway.
4596 Result = PromoteOp(Node->getOperand(0));
4597 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004598 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004599 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4600 // Truncate the low part of the expanded value to the result type
Dale Johannesen8a782a22009-02-02 22:12:50 +00004601 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004602 }
4603 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004604 case ISD::SIGN_EXTEND:
4605 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004606 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004607 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4608 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4609 case Legal:
4610 // Input is legal? Just do extend all the way to the larger type.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004611 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004612 break;
4613 case Promote:
4614 // Promote the reg if it's smaller.
4615 Result = PromoteOp(Node->getOperand(0));
4616 // The high bits are not guaranteed to be anything. Insert an extend.
4617 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004618 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004619 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004620 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004621 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004622 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004623 break;
4624 }
4625 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004626 case ISD::CONVERT_RNDSAT: {
4627 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4628 assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
4629 CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
4630 CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) &&
4631 "can only promote integers");
Dale Johannesenc460ae92009-02-04 00:13:36 +00004632 Result = DAG.getConvertRndSat(NVT, dl, Node->getOperand(0),
Mon P Wang77cdf302008-11-10 20:54:11 +00004633 Node->getOperand(1), Node->getOperand(2),
4634 Node->getOperand(3), Node->getOperand(4),
4635 CvtCode);
4636 break;
4637
4638 }
Chris Lattner35481892005-12-23 00:16:34 +00004639 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004640 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00004641 Node->getValueType(0), dl);
Chris Lattner35481892005-12-23 00:16:34 +00004642 Result = PromoteOp(Result);
4643 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00004644
Chris Lattner8b6fa222005-01-15 22:16:26 +00004645 case ISD::FP_EXTEND:
4646 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4647 case ISD::FP_ROUND:
4648 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4649 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4650 case Promote: assert(0 && "Unreachable with 2 FP types!");
4651 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004652 if (Node->getConstantOperandVal(1) == 0) {
4653 // Input is legal? Do an FP_ROUND_INREG.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004654 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Node->getOperand(0),
Chris Lattner0bd48932008-01-17 07:00:52 +00004655 DAG.getValueType(VT));
4656 } else {
4657 // Just remove the truncate, it isn't affecting the value.
Scott Michelfdc40a02009-02-17 22:15:04 +00004658 Result = DAG.getNode(ISD::FP_ROUND, dl, NVT, Node->getOperand(0),
Chris Lattner0bd48932008-01-17 07:00:52 +00004659 Node->getOperand(1));
4660 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004661 break;
4662 }
4663 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004664 case ISD::SINT_TO_FP:
4665 case ISD::UINT_TO_FP:
4666 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4667 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004668 // No extra round required here.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004669 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004670 break;
4671
4672 case Promote:
4673 Result = PromoteOp(Node->getOperand(0));
4674 if (Node->getOpcode() == ISD::SINT_TO_FP)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004675 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004676 Result,
4677 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004678 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00004679 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004680 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004681 // No extra round required here.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004682 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004683 break;
4684 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004685 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00004686 Node->getOperand(0), dl);
Chris Lattner77e77a62005-01-21 06:05:23 +00004687 // Round if we cannot tolerate excess precision.
4688 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004689 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004690 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004691 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004692 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004693 break;
4694
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004695 case ISD::SIGN_EXTEND_INREG:
4696 Result = PromoteOp(Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004697 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004698 Node->getOperand(1));
4699 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004700 case ISD::FP_TO_SINT:
4701 case ISD::FP_TO_UINT:
4702 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4703 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004704 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004705 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004706 break;
4707 case Promote:
4708 // The input result is prerounded, so we don't have to do anything
4709 // special.
4710 Tmp1 = PromoteOp(Node->getOperand(0));
4711 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004712 }
Nate Begemand2558e32005-08-14 01:20:53 +00004713 // If we're promoting a UINT to a larger size, check to see if the new node
4714 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4715 // we can use that instead. This allows us to generate better code for
4716 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4717 // legal, such as PowerPC.
Scott Michelfdc40a02009-02-17 22:15:04 +00004718 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00004719 !TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NVT) &&
4720 (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT) ||
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004721 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Dale Johannesen8a782a22009-02-02 22:12:50 +00004722 Result = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Tmp1);
Nate Begemand2558e32005-08-14 01:20:53 +00004723 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00004724 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Nate Begemand2558e32005-08-14 01:20:53 +00004725 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004726 break;
4727
Chris Lattner2c8086f2005-04-02 05:00:07 +00004728 case ISD::FABS:
4729 case ISD::FNEG:
4730 Tmp1 = PromoteOp(Node->getOperand(0));
4731 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004732 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner2c8086f2005-04-02 05:00:07 +00004733 // NOTE: we do not have to do any extra rounding here for
4734 // NoExcessFPPrecision, because we know the input will have the appropriate
4735 // precision, and these operations don't modify precision at all.
4736 break;
4737
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004738 case ISD::FLOG:
4739 case ISD::FLOG2:
4740 case ISD::FLOG10:
4741 case ISD::FEXP:
4742 case ISD::FEXP2:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004743 case ISD::FSQRT:
4744 case ISD::FSIN:
4745 case ISD::FCOS:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00004746 case ISD::FTRUNC:
4747 case ISD::FFLOOR:
4748 case ISD::FCEIL:
4749 case ISD::FRINT:
4750 case ISD::FNEARBYINT:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004751 Tmp1 = PromoteOp(Node->getOperand(0));
4752 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004753 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004754 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004755 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004756 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004757 break;
4758
Evan Cheng9d24ac52008-09-09 23:35:53 +00004759 case ISD::FPOW:
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004760 case ISD::FPOWI: {
Evan Cheng9d24ac52008-09-09 23:35:53 +00004761 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004762 // directly as well, which may be better.
4763 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng9d24ac52008-09-09 23:35:53 +00004764 Tmp2 = Node->getOperand(1);
4765 if (Node->getOpcode() == ISD::FPOW)
4766 Tmp2 = PromoteOp(Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004767 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004768 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004769 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004770 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004771 DAG.getValueType(VT));
4772 break;
4773 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004774
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004775 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004776 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004777 Tmp2 = PromoteOp(Node->getOperand(2));
4778 Tmp3 = PromoteOp(Node->getOperand(3));
Scott Michelfdc40a02009-02-17 22:15:04 +00004779 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
4780 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004781 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004782 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004783 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004784 // Remember that we legalized the chain.
4785 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4786 break;
4787 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004788 case ISD::ATOMIC_LOAD_ADD:
4789 case ISD::ATOMIC_LOAD_SUB:
4790 case ISD::ATOMIC_LOAD_AND:
4791 case ISD::ATOMIC_LOAD_OR:
4792 case ISD::ATOMIC_LOAD_XOR:
4793 case ISD::ATOMIC_LOAD_NAND:
4794 case ISD::ATOMIC_LOAD_MIN:
4795 case ISD::ATOMIC_LOAD_MAX:
4796 case ISD::ATOMIC_LOAD_UMIN:
4797 case ISD::ATOMIC_LOAD_UMAX:
4798 case ISD::ATOMIC_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004799 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004800 Tmp2 = PromoteOp(Node->getOperand(2));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004801 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00004802 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004803 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004804 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004805 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004806 // Remember that we legalized the chain.
4807 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4808 break;
4809 }
4810
Chris Lattner03c85462005-01-15 05:21:40 +00004811 case ISD::AND:
4812 case ISD::OR:
4813 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004814 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004815 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004816 case ISD::MUL:
4817 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004818 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004819 // that too is okay if they are integer operations.
4820 Tmp1 = PromoteOp(Node->getOperand(0));
4821 Tmp2 = PromoteOp(Node->getOperand(1));
4822 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004823 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004824 break;
4825 case ISD::FADD:
4826 case ISD::FSUB:
4827 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004828 Tmp1 = PromoteOp(Node->getOperand(0));
4829 Tmp2 = PromoteOp(Node->getOperand(1));
4830 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004831 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00004832
Chris Lattner01b3d732005-09-28 22:28:18 +00004833 // Floating point operations will give excess precision that we may not be
4834 // able to tolerate. If we DO allow excess precision, just leave it,
4835 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004836 // FIXME: Why would we need to round FP ops more than integer ones?
4837 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004838 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004839 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004840 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004841 break;
4842
Chris Lattner8b6fa222005-01-15 22:16:26 +00004843 case ISD::SDIV:
4844 case ISD::SREM:
4845 // These operators require that their input be sign extended.
4846 Tmp1 = PromoteOp(Node->getOperand(0));
4847 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004848 if (NVT.isInteger()) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00004849 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Chris Lattner15e4b012005-07-10 00:07:11 +00004850 DAG.getValueType(VT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004851 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Chris Lattner15e4b012005-07-10 00:07:11 +00004852 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004853 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00004854 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004855
4856 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004857 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004858 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004859 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004860 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004861 case ISD::FDIV:
4862 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004863 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004864 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004865 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004866 case Expand: assert(0 && "not implemented");
4867 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4868 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004869 }
4870 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004871 case Expand: assert(0 && "not implemented");
4872 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4873 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004874 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00004875 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00004876
Chris Lattner01b3d732005-09-28 22:28:18 +00004877 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004878 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004879 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner01b3d732005-09-28 22:28:18 +00004880 DAG.getValueType(VT));
4881 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004882
4883 case ISD::UDIV:
4884 case ISD::UREM:
4885 // These operators require that their input be zero extended.
4886 Tmp1 = PromoteOp(Node->getOperand(0));
4887 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004888 assert(NVT.isInteger() && "Operators don't apply to FP!");
Dale Johannesen8a782a22009-02-02 22:12:50 +00004889 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4890 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
4891 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004892 break;
4893
4894 case ISD::SHL:
4895 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004896 Result = DAG.getNode(ISD::SHL, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004897 break;
4898 case ISD::SRA:
4899 // The input value must be properly sign extended.
4900 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004901 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Chris Lattner15e4b012005-07-10 00:07:11 +00004902 DAG.getValueType(VT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004903 Result = DAG.getNode(ISD::SRA, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004904 break;
4905 case ISD::SRL:
4906 // The input value must be properly zero extended.
4907 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004908 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4909 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004910 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004911
4912 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004913 Tmp1 = Node->getOperand(0); // Get the chain.
4914 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004915 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00004916 Tmp3 = DAG.getVAArg(VT, dl, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004917 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004918 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004919 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenc460ae92009-02-04 00:13:36 +00004920 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004921 // Increment the pointer, VAList, to the next vaarg
Scott Michelfdc40a02009-02-17 22:15:04 +00004922 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004923 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004924 TLI.getPointerTy()));
4925 // Store the incremented VAList to the legalized pointer
Dale Johannesen8a782a22009-02-02 22:12:50 +00004926 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004927 // Load the actual argument out of the pointer VAList
Dale Johannesen8a782a22009-02-02 22:12:50 +00004928 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004929 }
4930 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004931 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004932 break;
4933
Evan Cheng466685d2006-10-09 20:57:25 +00004934 case ISD::LOAD: {
4935 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004936 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4937 ? ISD::EXTLOAD : LD->getExtensionType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00004938 Result = DAG.getExtLoad(ExtType, dl, NVT,
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004939 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004940 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004941 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004942 LD->isVolatile(),
4943 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004944 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004945 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004946 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004947 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004948 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004949 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4950 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004951
Duncan Sands83ec4b62008-06-06 12:08:01 +00004952 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004953 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004954 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4955 // Ensure that the resulting node is at least the same size as the operands'
4956 // value types, because we cannot assume that TLI.getSetCCValueType() is
4957 // constant.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004958 Result = DAG.getNode(ISD::SELECT, dl, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004959 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004960 }
Nate Begeman9373a812005-08-10 20:51:12 +00004961 case ISD::SELECT_CC:
4962 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4963 Tmp3 = PromoteOp(Node->getOperand(3)); // False
Dale Johannesen8a782a22009-02-02 22:12:50 +00004964 Result = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004965 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004966 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004967 case ISD::BSWAP:
4968 Tmp1 = Node->getOperand(0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004969 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
4970 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4971 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004972 DAG.getConstant(NVT.getSizeInBits() -
4973 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004974 TLI.getShiftAmountTy()));
4975 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004976 case ISD::CTPOP:
4977 case ISD::CTTZ:
4978 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004979 // Zero extend the argument
Dale Johannesen8a782a22009-02-02 22:12:50 +00004980 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004981 // Perform the larger operation, then subtract if needed.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004982 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004983 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004984 case ISD::CTPOP:
4985 Result = Tmp1;
4986 break;
4987 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004988 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004989 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004990 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004991 ISD::SETEQ);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004992 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004993 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004994 break;
4995 case ISD::CTLZ:
4996 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00004997 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004998 DAG.getConstant(NVT.getSizeInBits() -
4999 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00005000 break;
5001 }
5002 break;
Dan Gohman7f321562007-06-25 16:23:39 +00005003 case ISD::EXTRACT_SUBVECTOR:
5004 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00005005 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00005006 case ISD::EXTRACT_VECTOR_ELT:
5007 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
5008 break;
Chris Lattner03c85462005-01-15 05:21:40 +00005009 }
5010
Gabor Greifba36cb52008-08-28 21:40:38 +00005011 assert(Result.getNode() && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00005012
5013 // Make sure the result is itself legal.
5014 Result = LegalizeOp(Result);
Scott Michelfdc40a02009-02-17 22:15:04 +00005015
Chris Lattner456a93a2006-01-28 07:39:30 +00005016 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00005017 AddPromotedOperand(Op, Result);
5018 return Result;
5019}
Chris Lattner3e928bb2005-01-07 07:47:09 +00005020
Dan Gohman7f321562007-06-25 16:23:39 +00005021/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
5022/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
5023/// based on the vector type. The return type of this matches the element type
5024/// of the vector, which may not be legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00005025SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Chris Lattner15972212006-03-31 17:55:51 +00005026 // We know that operand #0 is the Vec vector. If the index is a constant
5027 // or if the invec is a supported hardware type, we can use it. Otherwise,
5028 // lower to a store then an indexed load.
Dan Gohman475871a2008-07-27 21:46:04 +00005029 SDValue Vec = Op.getOperand(0);
5030 SDValue Idx = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005031 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00005032
Duncan Sands83ec4b62008-06-06 12:08:01 +00005033 MVT TVT = Vec.getValueType();
5034 unsigned NumElems = TVT.getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00005035
Dan Gohman7f321562007-06-25 16:23:39 +00005036 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
5037 default: assert(0 && "This action is not supported yet!");
5038 case TargetLowering::Custom: {
5039 Vec = LegalizeOp(Vec);
5040 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005041 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005042 if (Tmp3.getNode())
Dan Gohman7f321562007-06-25 16:23:39 +00005043 return Tmp3;
5044 break;
5045 }
5046 case TargetLowering::Legal:
5047 if (isTypeLegal(TVT)) {
5048 Vec = LegalizeOp(Vec);
5049 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00005050 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00005051 }
5052 break;
Mon P Wang0c397192008-10-30 08:01:45 +00005053 case TargetLowering::Promote:
5054 assert(TVT.isVector() && "not vector type");
5055 // fall thru to expand since vectors are by default are promote
Dan Gohman7f321562007-06-25 16:23:39 +00005056 case TargetLowering::Expand:
5057 break;
5058 }
5059
5060 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00005061 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00005062 Op = ScalarizeVectorOp(Vec);
5063 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00005064 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00005065 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005066 SDValue Lo, Hi;
Chris Lattner15972212006-03-31 17:55:51 +00005067 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005068 if (CIdx->getZExtValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00005069 Vec = Lo;
5070 } else {
5071 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005072 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00005073 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00005074 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005075
Chris Lattner15972212006-03-31 17:55:51 +00005076 // It's now an extract from the appropriate high or low part. Recurse.
5077 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005078 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00005079 } else {
Eli Friedman3d43b3f2009-05-23 22:37:25 +00005080 Op = ExpandExtractFromVectorThroughStack(Op);
Chris Lattner15972212006-03-31 17:55:51 +00005081 }
Dan Gohman7f321562007-06-25 16:23:39 +00005082 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00005083}
5084
Eli Friedman3d43b3f2009-05-23 22:37:25 +00005085SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
5086 SDValue Vec = Op.getOperand(0);
5087 SDValue Idx = Op.getOperand(1);
5088 DebugLoc dl = Op.getDebugLoc();
5089 // Store the value to a temporary stack slot, then LOAD the returned part.
5090 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
5091 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, NULL, 0);
5092
5093 // Add the offset to the index.
Eli Friedman2a35b1c2009-05-23 23:03:28 +00005094 unsigned EltSize =
5095 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman3d43b3f2009-05-23 22:37:25 +00005096 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
5097 DAG.getConstant(EltSize, Idx.getValueType()));
5098
5099 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
5100 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
5101 else
5102 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
5103
5104 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
5105
5106 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, NULL, 0);
5107}
5108
Dan Gohman7f321562007-06-25 16:23:39 +00005109/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00005110/// we assume the operation can be split if it is not already legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005111SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohman65956352007-06-13 15:12:02 +00005112 // We know that operand #0 is the Vec vector. For now we assume the index
5113 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman475871a2008-07-27 21:46:04 +00005114 SDValue Vec = Op.getOperand(0);
5115 SDValue Idx = LegalizeOp(Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005116
Duncan Sands83ec4b62008-06-06 12:08:01 +00005117 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00005118
Duncan Sands83ec4b62008-06-06 12:08:01 +00005119 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00005120 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00005121 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00005122 }
5123
5124 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005125 SDValue Lo, Hi;
Dan Gohman65956352007-06-13 15:12:02 +00005126 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005127 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohman65956352007-06-13 15:12:02 +00005128 Vec = Lo;
5129 } else {
5130 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005131 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
5132 Idx.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00005133 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005134
Dan Gohman65956352007-06-13 15:12:02 +00005135 // It's now an extract from the appropriate high or low part. Recurse.
5136 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005137 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00005138}
5139
Nate Begeman750ac1b2006-02-01 07:19:44 +00005140/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
5141/// with condition CC on the current target. This usually involves legalizing
5142/// or promoting the arguments. In the case where LHS and RHS must be expanded,
5143/// there may be no choice but to create a new SetCC node to represent the
5144/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman475871a2008-07-27 21:46:04 +00005145/// LHS, and the SDValue returned in RHS has a nil SDNode value.
5146void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
5147 SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005148 SDValue &CC,
5149 DebugLoc dl) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005150 SDValue Tmp1, Tmp2, Tmp3, Result;
5151
Nate Begeman750ac1b2006-02-01 07:19:44 +00005152 switch (getTypeAction(LHS.getValueType())) {
5153 case Legal:
5154 Tmp1 = LegalizeOp(LHS); // LHS
5155 Tmp2 = LegalizeOp(RHS); // RHS
5156 break;
5157 case Promote:
5158 Tmp1 = PromoteOp(LHS); // LHS
5159 Tmp2 = PromoteOp(RHS); // RHS
5160
5161 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005162 if (LHS.getValueType().isInteger()) {
5163 MVT VT = LHS.getValueType();
5164 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005165
5166 // Otherwise, we have to insert explicit sign or zero extends. Note
5167 // that we could insert sign extends for ALL conditions, but zero extend
5168 // is cheaper on many machines (an AND instead of two shifts), so prefer
5169 // it.
5170 switch (cast<CondCodeSDNode>(CC)->get()) {
5171 default: assert(0 && "Unknown integer comparison!");
5172 case ISD::SETEQ:
5173 case ISD::SETNE:
5174 case ISD::SETUGE:
5175 case ISD::SETUGT:
5176 case ISD::SETULE:
5177 case ISD::SETULT:
5178 // ALL of these operations will work if we either sign or zero extend
5179 // the operands (including the unsigned comparisons!). Zero extend is
5180 // usually a simpler/cheaper operation, so prefer it.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005181 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
5182 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005183 break;
5184 case ISD::SETGE:
5185 case ISD::SETGT:
5186 case ISD::SETLT:
5187 case ISD::SETLE:
Dale Johannesenbb5da912009-02-02 20:41:04 +00005188 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005189 DAG.getValueType(VT));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005190 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005191 DAG.getValueType(VT));
Evan Chengefa53392008-10-13 18:46:18 +00005192 Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
5193 Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
Nate Begeman750ac1b2006-02-01 07:19:44 +00005194 break;
5195 }
5196 }
5197 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005198 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005199 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00005200 if (VT == MVT::f32 || VT == MVT::f64) {
5201 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00005202 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00005203 switch (cast<CondCodeSDNode>(CC)->get()) {
5204 case ISD::SETEQ:
5205 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00005206 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005207 break;
5208 case ISD::SETNE:
5209 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00005210 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005211 break;
5212 case ISD::SETGE:
5213 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00005214 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005215 break;
5216 case ISD::SETLT:
5217 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00005218 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005219 break;
5220 case ISD::SETLE:
5221 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00005222 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005223 break;
5224 case ISD::SETGT:
5225 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00005226 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005227 break;
5228 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00005229 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5230 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005231 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00005232 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005233 break;
5234 default:
Evan Cheng56966222007-01-12 02:11:51 +00005235 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005236 switch (cast<CondCodeSDNode>(CC)->get()) {
5237 case ISD::SETONE:
5238 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00005239 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005240 // Fallthrough
5241 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00005242 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005243 break;
5244 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00005245 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005246 break;
5247 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00005248 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005249 break;
5250 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00005251 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005252 break;
Evan Cheng56966222007-01-12 02:11:51 +00005253 case ISD::SETUEQ:
5254 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00005255 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005256 default: assert(0 && "Unsupported FP setcc!");
5257 }
5258 }
Duncan Sandsf9516202008-06-30 10:19:09 +00005259
Dan Gohman475871a2008-07-27 21:46:04 +00005260 SDValue Dummy;
5261 SDValue Ops[2] = { LHS, RHS };
Dale Johannesenbb5da912009-02-02 20:41:04 +00005262 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005263 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00005264 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00005265 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00005266 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Dale Johannesenbb5da912009-02-02 20:41:04 +00005267 Tmp1 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005268 TLI.getSetCCResultType(Tmp1.getValueType()),
5269 Tmp1, Tmp2, CC);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005270 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005271 false /*sign irrelevant*/, Dummy);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005272 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005273 TLI.getSetCCResultType(LHS.getValueType()), LHS,
5274 Tmp2, DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005275 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman475871a2008-07-27 21:46:04 +00005276 Tmp2 = SDValue();
Evan Cheng2b49c502006-12-15 02:59:56 +00005277 }
Evan Cheng21cacc42008-07-07 07:18:09 +00005278 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00005279 RHS = Tmp2;
5280 return;
5281 }
5282
Dan Gohman475871a2008-07-27 21:46:04 +00005283 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Nate Begeman750ac1b2006-02-01 07:19:44 +00005284 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00005285 ExpandOp(RHS, RHSLo, RHSHi);
5286 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5287
5288 if (VT==MVT::ppcf128) {
5289 // FIXME: This generated code sucks. We want to generate
Dale Johannesene2f20832008-09-12 00:30:56 +00005290 // FCMPU crN, hi1, hi2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005291 // BNE crN, L:
Dale Johannesene2f20832008-09-12 00:30:56 +00005292 // FCMPU crN, lo1, lo2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005293 // The following can be improved, but not that much.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005294 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005295 LHSHi, RHSHi, ISD::SETOEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005296 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005297 LHSLo, RHSLo, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005298 Tmp3 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5299 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005300 LHSHi, RHSHi, ISD::SETUNE);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005301 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005302 LHSHi, RHSHi, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005303 Tmp1 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5304 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman475871a2008-07-27 21:46:04 +00005305 Tmp2 = SDValue();
Dale Johannesen638ccd52007-10-06 01:24:11 +00005306 break;
5307 }
5308
5309 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005310 case ISD::SETEQ:
5311 case ISD::SETNE:
5312 if (RHSLo == RHSHi)
5313 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
5314 if (RHSCST->isAllOnesValue()) {
5315 // Comparison to -1.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005316 Tmp1 = DAG.getNode(ISD::AND, dl,LHSLo.getValueType(), LHSLo, LHSHi);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005317 Tmp2 = RHSLo;
5318 break;
5319 }
5320
Dale Johannesenbb5da912009-02-02 20:41:04 +00005321 Tmp1 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
5322 Tmp2 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
5323 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005324 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
5325 break;
5326 default:
5327 // If this is a comparison of the sign bit, just look at the top part.
5328 // X > -1, x < 0
5329 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
Scott Michelfdc40a02009-02-17 22:15:04 +00005330 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00005331 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00005332 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
5333 CST->isAllOnesValue())) { // X > -1
5334 Tmp1 = LHSHi;
5335 Tmp2 = RHSHi;
5336 break;
5337 }
5338
5339 // FIXME: This generated code sucks.
5340 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00005341 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005342 default: assert(0 && "Unknown integer setcc!");
5343 case ISD::SETLT:
5344 case ISD::SETULT: LowCC = ISD::SETULT; break;
5345 case ISD::SETGT:
5346 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
5347 case ISD::SETLE:
5348 case ISD::SETULE: LowCC = ISD::SETULE; break;
5349 case ISD::SETGE:
5350 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
5351 }
5352
5353 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
5354 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
5355 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
5356
5357 // NOTE: on targets without efficient SELECT of bools, we can always use
5358 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00005359 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Duncan Sands5480c042009-01-01 15:52:00 +00005360 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005361 LHSLo, RHSLo, LowCC, false, DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005362 if (!Tmp1.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005363 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005364 LHSLo, RHSLo, LowCC);
5365 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005366 LHSHi, RHSHi, CCCode, false, DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005367 if (!Tmp2.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005368 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005369 TLI.getSetCCResultType(LHSHi.getValueType()),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005370 LHSHi, RHSHi, CC);
Scott Michelfdc40a02009-02-17 22:15:04 +00005371
Gabor Greifba36cb52008-08-28 21:40:38 +00005372 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
5373 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman002e5d02008-03-13 22:13:53 +00005374 if ((Tmp1C && Tmp1C->isNullValue()) ||
5375 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00005376 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
5377 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00005378 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00005379 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
5380 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
5381 // low part is known false, returns high part.
5382 // For LE / GE, if high part is known false, ignore the low part.
5383 // For LT / GT, if high part is known true, ignore the low part.
5384 Tmp1 = Tmp2;
Dan Gohman475871a2008-07-27 21:46:04 +00005385 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005386 } else {
Duncan Sands5480c042009-01-01 15:52:00 +00005387 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
5388 LHSHi, RHSHi, ISD::SETEQ, false,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005389 DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005390 if (!Result.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005391 Result=DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005392 LHSHi, RHSHi, ISD::SETEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005393 Result = LegalizeOp(DAG.getNode(ISD::SELECT, dl, Tmp1.getValueType(),
Evan Cheng2e677812007-02-08 22:16:19 +00005394 Result, Tmp1, Tmp2));
5395 Tmp1 = Result;
Dan Gohman475871a2008-07-27 21:46:04 +00005396 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005397 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005398 }
5399 }
Evan Cheng2b49c502006-12-15 02:59:56 +00005400 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005401 LHS = Tmp1;
5402 RHS = Tmp2;
5403}
5404
Evan Cheng7f042682008-10-15 02:05:31 +00005405/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
5406/// condition code CC on the current target. This routine assumes LHS and rHS
5407/// have already been legalized by LegalizeSetCCOperands. It expands SETCC with
5408/// illegal condition code into AND / OR of multiple SETCC values.
5409void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT,
5410 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005411 SDValue &CC,
5412 DebugLoc dl) {
Evan Cheng7f042682008-10-15 02:05:31 +00005413 MVT OpVT = LHS.getValueType();
5414 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5415 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
5416 default: assert(0 && "Unknown condition code action!");
5417 case TargetLowering::Legal:
5418 // Nothing to do.
5419 break;
5420 case TargetLowering::Expand: {
5421 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
5422 unsigned Opc = 0;
5423 switch (CCCode) {
5424 default: assert(0 && "Don't know how to expand this condition!"); abort();
Dan Gohmane7d238e2008-10-21 03:12:54 +00005425 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
5426 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5427 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5428 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5429 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5430 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5431 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5432 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5433 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5434 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5435 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5436 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng7f042682008-10-15 02:05:31 +00005437 // FIXME: Implement more expansions.
5438 }
5439
Dale Johannesenbb5da912009-02-02 20:41:04 +00005440 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
5441 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
5442 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00005443 RHS = SDValue();
5444 CC = SDValue();
5445 break;
5446 }
5447 }
5448}
5449
Chris Lattner1401d152008-01-16 07:45:30 +00005450/// EmitStackConvert - Emit a store/load combination to the stack. This stores
5451/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
5452/// a load from the stack slot to DestVT, extending it if needed.
5453/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005454SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
5455 MVT SlotVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005456 MVT DestVT,
5457 DebugLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00005458 // Create the stack frame object.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005459 unsigned SrcAlign =
5460 TLI.getTargetData()->getPrefTypeAlignment(SrcOp.getValueType().
5461 getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00005462 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00005463
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005464 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005465 int SPFI = StackPtrFI->getIndex();
Dan Gohman15b38302009-01-29 21:02:43 +00005466 const Value *SV = PseudoSourceValue::getFixedStack(SPFI);
5467
Duncan Sands83ec4b62008-06-06 12:08:01 +00005468 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
5469 unsigned SlotSize = SlotVT.getSizeInBits();
5470 unsigned DestSize = DestVT.getSizeInBits();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005471 unsigned DestAlign =
5472 TLI.getTargetData()->getPrefTypeAlignment(DestVT.getTypeForMVT());
Scott Michelfdc40a02009-02-17 22:15:04 +00005473
Chris Lattner1401d152008-01-16 07:45:30 +00005474 // Emit a store to the stack slot. Use a truncstore if the input value is
5475 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00005476 SDValue Store;
Scott Michelfdc40a02009-02-17 22:15:04 +00005477
Chris Lattner1401d152008-01-16 07:45:30 +00005478 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005479 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005480 SV, 0, SlotVT, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005481 else {
5482 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00005483 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005484 SV, 0, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005485 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005486
Chris Lattner35481892005-12-23 00:16:34 +00005487 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00005488 if (SlotSize == DestSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005489 return DAG.getLoad(DestVT, dl, Store, FIPtr, SV, 0, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00005490
Chris Lattner1401d152008-01-16 07:45:30 +00005491 assert(SlotSize < DestSize && "Unknown extension!");
Dale Johannesen8a782a22009-02-02 22:12:50 +00005492 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr, SV, 0, SlotVT,
Mon P Wang364d73d2008-07-05 20:40:31 +00005493 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00005494}
5495
Dan Gohman475871a2008-07-27 21:46:04 +00005496SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005497 DebugLoc dl = Node->getDebugLoc();
Chris Lattner4352cc92006-04-04 17:23:26 +00005498 // Create a vector sized/aligned stack slot, store the value to element #0,
5499 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00005500 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00005501
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005502 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005503 int SPFI = StackPtrFI->getIndex();
5504
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00005505 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
5506 StackPtr,
5507 PseudoSourceValue::getFixedStack(SPFI), 0,
5508 Node->getValueType(0).getVectorElementType());
Dale Johannesen8a782a22009-02-02 22:12:50 +00005509 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00005510 PseudoSourceValue::getFixedStack(SPFI), 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00005511}
5512
5513
Chris Lattnerce872152006-03-19 06:31:19 +00005514/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00005515/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00005516SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005517 unsigned NumElems = Node->getNumOperands();
5518 SDValue SplatValue = Node->getOperand(0);
5519 DebugLoc dl = Node->getDebugLoc();
5520 MVT VT = Node->getValueType(0);
5521 MVT OpVT = SplatValue.getValueType();
5522 MVT EltVT = VT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005523
5524 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00005525 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattnerce872152006-03-19 06:31:19 +00005526 bool isOnlyLowElement = true;
Scott Michelfdc40a02009-02-17 22:15:04 +00005527
Dan Gohman475871a2008-07-27 21:46:04 +00005528 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005529 // and use a bitmask instead of a list of elements.
Nate Begeman9008ca62009-04-27 18:41:29 +00005530 // FIXME: this doesn't treat <0, u, 0, u> for example, as a splat.
Dan Gohman475871a2008-07-27 21:46:04 +00005531 std::map<SDValue, std::vector<unsigned> > Values;
Evan Cheng033e6812006-03-24 01:17:21 +00005532 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005533 bool isConstant = true;
5534 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
5535 SplatValue.getOpcode() != ISD::UNDEF)
5536 isConstant = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005537
Evan Cheng033e6812006-03-24 01:17:21 +00005538 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005539 SDValue V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00005540 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00005541 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00005542 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00005543 if (SplatValue != V)
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005544 SplatValue = SDValue(0, 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005545
5546 // If this isn't a constant element or an undef, we can't use a constant
5547 // pool load.
5548 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
5549 V.getOpcode() != ISD::UNDEF)
5550 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00005551 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005552
Chris Lattnerce872152006-03-19 06:31:19 +00005553 if (isOnlyLowElement) {
5554 // If the low element is an undef too, then this whole things is an undef.
5555 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005556 return DAG.getUNDEF(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005557 // Otherwise, turn this into a scalar_to_vector node.
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005558 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Chris Lattnerce872152006-03-19 06:31:19 +00005559 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005560
Chris Lattner2eb86532006-03-24 07:29:17 +00005561 // If all elements are constants, create a load from the constant pool.
5562 if (isConstant) {
Chris Lattner2eb86532006-03-24 07:29:17 +00005563 std::vector<Constant*> CV;
5564 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005565 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00005566 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005567 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00005568 } else if (ConstantSDNode *V =
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005569 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005570 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00005571 } else {
5572 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005573 const Type *OpNTy = OpVT.getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00005574 CV.push_back(UndefValue::get(OpNTy));
5575 }
5576 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00005577 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00005578 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00005579 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00005580 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005581 PseudoSourceValue::getConstantPool(), 0,
5582 false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00005583 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005584
Gabor Greifba36cb52008-08-28 21:40:38 +00005585 if (SplatValue.getNode()) { // Splat of one value?
Chris Lattner87100e02006-03-20 01:52:29 +00005586 // Build the shuffle constant vector: <0, 0, 0, 0>
Nate Begeman9008ca62009-04-27 18:41:29 +00005587 SmallVector<int, 8> ZeroVec(NumElems, 0);
Chris Lattner87100e02006-03-20 01:52:29 +00005588
5589 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Nate Begeman9008ca62009-04-27 18:41:29 +00005590 if (TLI.isShuffleMaskLegal(ZeroVec, Node->getValueType(0))) {
Chris Lattner87100e02006-03-20 01:52:29 +00005591 // Get the splatted value into the low element of a vector register.
Scott Michelfdc40a02009-02-17 22:15:04 +00005592 SDValue LowValVec =
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005593 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, SplatValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00005594
Chris Lattner87100e02006-03-20 01:52:29 +00005595 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Nate Begeman9008ca62009-04-27 18:41:29 +00005596 return DAG.getVectorShuffle(VT, dl, LowValVec, DAG.getUNDEF(VT),
5597 &ZeroVec[0]);
Chris Lattner87100e02006-03-20 01:52:29 +00005598 }
5599 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005600
Evan Cheng033e6812006-03-24 01:17:21 +00005601 // If there are only two unique elements, we may be able to turn this into a
5602 // vector shuffle.
5603 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005604 // Get the two values in deterministic order.
Dan Gohman475871a2008-07-27 21:46:04 +00005605 SDValue Val1 = Node->getOperand(1);
5606 SDValue Val2;
5607 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005608 if (MI->first != Val1)
5609 Val2 = MI->first;
5610 else
5611 Val2 = (++MI)->first;
Scott Michelfdc40a02009-02-17 22:15:04 +00005612
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005613 // If Val1 is an undef, make sure it ends up as Val2, to ensure that our
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005614 // vector shuffle has the undef vector on the RHS.
5615 if (Val1.getOpcode() == ISD::UNDEF)
5616 std::swap(Val1, Val2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005617
Evan Cheng033e6812006-03-24 01:17:21 +00005618 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Nate Begeman9008ca62009-04-27 18:41:29 +00005619 SmallVector<int, 8> ShuffleMask(NumElems, -1);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005620
5621 // Set elements of the shuffle mask for Val1.
5622 std::vector<unsigned> &Val1Elts = Values[Val1];
5623 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005624 ShuffleMask[Val1Elts[i]] = 0;
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005625
5626 // Set elements of the shuffle mask for Val2.
5627 std::vector<unsigned> &Val2Elts = Values[Val2];
5628 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5629 if (Val2.getOpcode() != ISD::UNDEF)
Nate Begeman9008ca62009-04-27 18:41:29 +00005630 ShuffleMask[Val2Elts[i]] = NumElems;
Evan Cheng033e6812006-03-24 01:17:21 +00005631
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005632 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005633 if (TLI.isOperationLegalOrCustom(ISD::SCALAR_TO_VECTOR, VT) &&
Nate Begeman9008ca62009-04-27 18:41:29 +00005634 TLI.isShuffleMaskLegal(ShuffleMask, VT)) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005635 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Val1);
5636 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Val2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005637 return DAG.getVectorShuffle(VT, dl, Val1, Val2, &ShuffleMask[0]);
Evan Cheng033e6812006-03-24 01:17:21 +00005638 }
5639 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005640
Chris Lattnerce872152006-03-19 06:31:19 +00005641 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5642 // aligned object on the stack, store each element into it, then load
5643 // the result as a vector.
Chris Lattnerce872152006-03-19 06:31:19 +00005644 // Create the stack frame object.
Dan Gohman475871a2008-07-27 21:46:04 +00005645 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohman15b38302009-01-29 21:02:43 +00005646 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
5647 const Value *SV = PseudoSourceValue::getFixedStack(FI);
5648
Chris Lattnerce872152006-03-19 06:31:19 +00005649 // Emit a store of each element to the stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00005650 SmallVector<SDValue, 8> Stores;
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005651 unsigned TypeByteSize = OpVT.getSizeInBits() / 8;
Chris Lattnerce872152006-03-19 06:31:19 +00005652 // Store (in the right endianness) the elements to memory.
5653 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5654 // Ignore undef elements.
5655 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00005656
Chris Lattner841c8822006-03-22 01:46:54 +00005657 unsigned Offset = TypeByteSize*i;
Scott Michelfdc40a02009-02-17 22:15:04 +00005658
Dan Gohman475871a2008-07-27 21:46:04 +00005659 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Dale Johannesen8a782a22009-02-02 22:12:50 +00005660 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005661
Dale Johannesen8a782a22009-02-02 22:12:50 +00005662 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(i),
5663 Idx, SV, Offset));
Chris Lattnerce872152006-03-19 06:31:19 +00005664 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005665
Dan Gohman475871a2008-07-27 21:46:04 +00005666 SDValue StoreChain;
Chris Lattnerce872152006-03-19 06:31:19 +00005667 if (!Stores.empty()) // Not all undef elements?
Dale Johannesen8a782a22009-02-02 22:12:50 +00005668 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005669 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005670 else
5671 StoreChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005672
Chris Lattnerce872152006-03-19 06:31:19 +00005673 // Result is a load from the stack slot.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005674 return DAG.getLoad(VT, dl, StoreChain, FIPtr, SV, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005675}
5676
Chris Lattner5b359c62005-04-02 04:00:59 +00005677void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman475871a2008-07-27 21:46:04 +00005678 SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005679 SDValue &Lo, SDValue &Hi,
5680 DebugLoc dl) {
Chris Lattner5b359c62005-04-02 04:00:59 +00005681 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00005682 SDValue LHSL, LHSH;
Chris Lattner5b359c62005-04-02 04:00:59 +00005683 ExpandOp(Op, LHSL, LHSH);
5684
Dan Gohman475871a2008-07-27 21:46:04 +00005685 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005686 MVT VT = LHSL.getValueType();
Dan Gohmanfc166572009-04-09 23:54:40 +00005687 Lo = DAG.getNode(NodeOp, dl, DAG.getVTList(VT, VT), Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005688 Hi = Lo.getValue(1);
5689}
5690
5691
Chris Lattnere34b3962005-01-19 04:19:40 +00005692/// ExpandShift - Try to find a clever way to expand this shift operation out to
5693/// smaller elements. If we can't find a way that is more efficient than a
5694/// libcall on this target, return false. Otherwise, return true with the
5695/// low-parts expanded into Lo and Hi.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005696bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005697 SDValue &Lo, SDValue &Hi,
5698 DebugLoc dl) {
Chris Lattnere34b3962005-01-19 04:19:40 +00005699 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5700 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005701
Duncan Sands83ec4b62008-06-06 12:08:01 +00005702 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman475871a2008-07-27 21:46:04 +00005703 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005704 MVT ShTy = ShAmt.getValueType();
5705 unsigned ShBits = ShTy.getSizeInBits();
5706 unsigned VTBits = Op.getValueType().getSizeInBits();
5707 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005708
Chris Lattner7a3c8552007-10-14 20:35:12 +00005709 // Handle the case when Amt is an immediate.
Gabor Greifba36cb52008-08-28 21:40:38 +00005710 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005711 unsigned Cst = CN->getZExtValue();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005712 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005713 SDValue InL, InH;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005714 ExpandOp(Op, InL, InH);
5715 switch(Opc) {
5716 case ISD::SHL:
5717 if (Cst > VTBits) {
5718 Lo = DAG.getConstant(0, NVT);
5719 Hi = DAG.getConstant(0, NVT);
5720 } else if (Cst > NVTBits) {
5721 Lo = DAG.getConstant(0, NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00005722 Hi = DAG.getNode(ISD::SHL, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005723 NVT, InL, DAG.getConstant(Cst-NVTBits, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005724 } else if (Cst == NVTBits) {
5725 Lo = DAG.getConstant(0, NVT);
5726 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005727 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005728 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, DAG.getConstant(Cst, ShTy));
5729 Hi = DAG.getNode(ISD::OR, dl, NVT,
5730 DAG.getNode(ISD::SHL, dl, NVT, InH, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005731 DAG.getNode(ISD::SRL, dl, NVT, InL,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005732 DAG.getConstant(NVTBits-Cst, ShTy)));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005733 }
5734 return true;
5735 case ISD::SRL:
5736 if (Cst > VTBits) {
5737 Lo = DAG.getConstant(0, NVT);
5738 Hi = DAG.getConstant(0, NVT);
5739 } else if (Cst > NVTBits) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005740 Lo = DAG.getNode(ISD::SRL, dl, NVT,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005741 InH, DAG.getConstant(Cst-NVTBits, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005742 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005743 } else if (Cst == NVTBits) {
5744 Lo = InH;
5745 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005746 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005747 Lo = DAG.getNode(ISD::OR, dl, NVT,
5748 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005749 DAG.getNode(ISD::SHL, dl, NVT, InH,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005750 DAG.getConstant(NVTBits-Cst, ShTy)));
5751 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005752 }
5753 return true;
5754 case ISD::SRA:
5755 if (Cst > VTBits) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005756 Hi = Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005757 DAG.getConstant(NVTBits-1, ShTy));
5758 } else if (Cst > NVTBits) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005759 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005760 DAG.getConstant(Cst-NVTBits, ShTy));
Dale Johannesen8a782a22009-02-02 22:12:50 +00005761 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005762 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005763 } else if (Cst == NVTBits) {
5764 Lo = InH;
Dale Johannesen8a782a22009-02-02 22:12:50 +00005765 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005766 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005767 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005768 Lo = DAG.getNode(ISD::OR, dl, NVT,
5769 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005770 DAG.getNode(ISD::SHL, dl,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005771 NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5772 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005773 }
5774 return true;
5775 }
5776 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005777
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005778 // Okay, the shift amount isn't constant. However, if we can tell that it is
5779 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005780 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5781 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005782 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00005783
Dan Gohman9e255b72008-02-22 01:12:31 +00005784 // If we know that if any of the high bits of the shift amount are one, then
5785 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005786 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005787 // Mask out the high bit, which we know is set.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005788 Amt = DAG.getNode(ISD::AND, dl, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005789 DAG.getConstant(~Mask, Amt.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00005790
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005791 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005792 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005793 ExpandOp(Op, InL, InH);
5794 switch(Opc) {
5795 case ISD::SHL:
5796 Lo = DAG.getConstant(0, NVT); // Low part is zero.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005797 Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005798 return true;
5799 case ISD::SRL:
5800 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005801 Lo = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); // Lo part from Hi part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005802 return true;
5803 case ISD::SRA:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005804 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, // Sign extend high part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005805 DAG.getConstant(NVTBits-1, Amt.getValueType()));
Dale Johannesen8a782a22009-02-02 22:12:50 +00005806 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); // Lo part from Hi part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005807 return true;
5808 }
5809 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005810
Dan Gohman9e255b72008-02-22 01:12:31 +00005811 // If we know that the high bits of the shift amount are all zero, then we can
5812 // do this as a couple of simple shifts.
5813 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005814 // Compute 32-amt.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005815 SDValue Amt2 = DAG.getNode(ISD::SUB, dl, Amt.getValueType(),
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005816 DAG.getConstant(NVTBits, Amt.getValueType()),
5817 Amt);
Scott Michelfdc40a02009-02-17 22:15:04 +00005818
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005819 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005820 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005821 ExpandOp(Op, InL, InH);
5822 switch(Opc) {
5823 case ISD::SHL:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005824 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt);
5825 Hi = DAG.getNode(ISD::OR, dl, NVT,
5826 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt),
5827 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005828 return true;
5829 case ISD::SRL:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005830 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt);
5831 Lo = DAG.getNode(ISD::OR, dl, NVT,
5832 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5833 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005834 return true;
5835 case ISD::SRA:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005836 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt);
5837 Lo = DAG.getNode(ISD::OR, dl, NVT,
5838 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5839 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005840 return true;
5841 }
5842 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005843
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005844 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005845}
Chris Lattner77e77a62005-01-21 06:05:23 +00005846
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005847
Chris Lattner77e77a62005-01-21 06:05:23 +00005848// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5849// does not fit into a register, return the lo part and set the hi part to the
5850// by-reg argument. If it does fit into a single register, return the result
5851// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00005852SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5853 bool isSigned, SDValue &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005854 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
Scott Michelfdc40a02009-02-17 22:15:04 +00005855 // The input chain to this libcall is the entry node of the function.
Chris Lattner6831a812006-02-13 09:18:02 +00005856 // Legalizing the call will automatically add the previous call to the
5857 // dependence.
Dan Gohman475871a2008-07-27 21:46:04 +00005858 SDValue InChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005859
Chris Lattner77e77a62005-01-21 06:05:23 +00005860 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005861 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005862 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005863 MVT ArgVT = Node->getOperand(i).getValueType();
5864 const Type *ArgTy = ArgVT.getTypeForMVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00005865 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005866 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005867 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005868 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005869 }
Bill Wendling056292f2008-09-16 21:48:12 +00005870 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00005871 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005872
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005873 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005874 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005875 std::pair<SDValue, SDValue> CallInfo =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005876 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005877 CallingConv::C, false, Callee, Args, DAG,
5878 Node->getDebugLoc());
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005879
Chris Lattner6831a812006-02-13 09:18:02 +00005880 // Legalize the call sequence, starting with the chain. This will advance
5881 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5882 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5883 LegalizeOp(CallInfo.second);
Dan Gohman475871a2008-07-27 21:46:04 +00005884 SDValue Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005885 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005886 default: assert(0 && "Unknown thing");
5887 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005888 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005889 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005890 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005891 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005892 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005893 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005894 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005895}
5896
Dan Gohman7f8613e2008-08-14 20:04:46 +00005897/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5898///
5899SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005900LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op,
5901 DebugLoc dl) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00005902 bool isCustom = false;
5903 SDValue Tmp1;
5904 switch (getTypeAction(Op.getValueType())) {
5905 case Legal:
5906 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5907 Op.getValueType())) {
5908 default: assert(0 && "Unknown operation action!");
5909 case TargetLowering::Custom:
5910 isCustom = true;
5911 // FALLTHROUGH
5912 case TargetLowering::Legal:
5913 Tmp1 = LegalizeOp(Op);
Gabor Greifba36cb52008-08-28 21:40:38 +00005914 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005915 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5916 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005917 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005918 DestTy, Tmp1);
5919 if (isCustom) {
5920 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005921 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005922 }
5923 break;
5924 case TargetLowering::Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005925 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005926 break;
5927 case TargetLowering::Promote:
Dale Johannesenaf435272009-02-02 19:03:57 +00005928 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005929 break;
5930 }
5931 break;
5932 case Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005933 Result = ExpandIntToFP(isSigned, DestTy, Op, dl) ;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005934 break;
5935 case Promote:
5936 Tmp1 = PromoteOp(Op);
5937 if (isSigned) {
Dale Johannesenaf435272009-02-02 19:03:57 +00005938 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp1.getValueType(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005939 Tmp1, DAG.getValueType(Op.getValueType()));
Dan Gohman7f8613e2008-08-14 20:04:46 +00005940 } else {
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005941 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, Op.getValueType());
Dan Gohman7f8613e2008-08-14 20:04:46 +00005942 }
Gabor Greifba36cb52008-08-28 21:40:38 +00005943 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005944 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5945 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005946 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005947 DestTy, Tmp1);
5948 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5949 break;
5950 }
5951 return Result;
5952}
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005953
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005954/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5955///
Dan Gohman475871a2008-07-27 21:46:04 +00005956SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005957ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005958 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005959 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005960
Dan Gohman7f8613e2008-08-14 20:04:46 +00005961 // Expand unsupported int-to-fp vector casts by unrolling them.
5962 if (DestTy.isVector()) {
5963 if (!ExpandSource)
5964 return LegalizeOp(UnrollVectorOp(Source));
5965 MVT DestEltTy = DestTy.getVectorElementType();
5966 if (DestTy.getVectorNumElements() == 1) {
5967 SDValue Scalar = ScalarizeVectorOp(Source);
5968 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00005969 DestEltTy, Scalar, dl);
Evan Chenga87008d2009-02-25 22:49:59 +00005970 return DAG.getNode(ISD::BUILD_VECTOR, dl, DestTy, Result);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005971 }
5972 SDValue Lo, Hi;
5973 SplitVectorOp(Source, Lo, Hi);
5974 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5975 DestTy.getVectorNumElements() / 2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005976 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +00005977 Lo, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00005978 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +00005979 Hi, dl);
5980 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, DestTy, LoResult,
Evan Chengefa53392008-10-13 18:46:18 +00005981 HiResult));
Dan Gohman7f8613e2008-08-14 20:04:46 +00005982 }
5983
Evan Cheng9845eb52008-04-01 02:18:22 +00005984 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5985 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005986 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005987 // incoming integer is set. To handle this, we dynamically test to see if
5988 // it is set, and, if so, add a fudge factor.
Dan Gohman475871a2008-07-27 21:46:04 +00005989 SDValue Hi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005990 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005991 SDValue Lo;
Dan Gohman034f60e2008-03-11 01:59:03 +00005992 ExpandOp(Source, Lo, Hi);
Dale Johannesenaf435272009-02-02 19:03:57 +00005993 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, Lo, Hi);
Dan Gohman034f60e2008-03-11 01:59:03 +00005994 } else {
5995 // The comparison for the sign bit will use the entire operand.
5996 Hi = Source;
5997 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005998
Dale Johannesen53997b02008-11-04 20:52:49 +00005999 // Check to see if the target has a custom way to lower this. If so, use
6000 // it. (Note we've already expanded the operand in this case.)
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006001 switch (TLI.getOperationAction(ISD::UINT_TO_FP, SourceVT)) {
6002 default: assert(0 && "This action not implemented for this operation!");
6003 case TargetLowering::Legal:
6004 case TargetLowering::Expand:
6005 break; // This case is handled below.
6006 case TargetLowering::Custom: {
Dale Johannesenb300d2a2009-02-07 00:55:49 +00006007 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::UINT_TO_FP, dl, DestTy,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006008 Source), DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006009 if (NV.getNode())
6010 return LegalizeOp(NV);
6011 break; // The target decided this was legal after all
6012 }
6013 }
6014
Chris Lattner66de05b2005-05-13 04:45:13 +00006015 // If this is unsigned, and not supported, first perform the conversion to
6016 // signed, then adjust the result if the sign bit is set.
Dale Johannesenaf435272009-02-02 19:03:57 +00006017 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source, dl);
Chris Lattner66de05b2005-05-13 04:45:13 +00006018
Scott Michelfdc40a02009-02-17 22:15:04 +00006019 SDValue SignSet = DAG.getSetCC(dl,
Dale Johannesenaf435272009-02-02 19:03:57 +00006020 TLI.getSetCCResultType(Hi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00006021 Hi, DAG.getConstant(0, Hi.getValueType()),
6022 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00006023 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00006024 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattnere9c35e72005-04-13 05:09:42 +00006025 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00006026 uint64_t FF = 0x5f800000ULL;
6027 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattnerd2e936a2009-03-08 01:47:41 +00006028 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00006029
Dan Gohman475871a2008-07-27 21:46:04 +00006030 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00006031 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00006032 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00006033 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00006034 SDValue FudgeInReg;
Chris Lattnere9c35e72005-04-13 05:09:42 +00006035 if (DestTy == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00006036 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00006037 PseudoSourceValue::getConstantPool(), 0,
6038 false, Alignment);
Duncan Sands8e4eb092008-06-08 20:54:56 +00006039 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006040 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesenaf435272009-02-02 19:03:57 +00006041 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, dl, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00006042 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00006043 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00006044 MVT::f32, false, Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00006045 else
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006046 assert(0 && "Unexpected conversion");
6047
Duncan Sands83ec4b62008-06-06 12:08:01 +00006048 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006049 if (SCVT != DestTy) {
6050 // Destination type needs to be expanded as well. The FADD now we are
6051 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006052 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
6053 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dale Johannesenaf435272009-02-02 19:03:57 +00006054 SignedConv = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006055 SignedConv, SignedConv.getValue(1));
6056 }
Dale Johannesenaf435272009-02-02 19:03:57 +00006057 SignedConv = DAG.getNode(ISD::BIT_CONVERT, dl, DestTy, SignedConv);
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006058 }
Dale Johannesenaf435272009-02-02 19:03:57 +00006059 return DAG.getNode(ISD::FADD, dl, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00006060 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00006061
Chris Lattnera88a2602005-05-14 05:33:54 +00006062 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00006063 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00006064 default: assert(0 && "This action not implemented for this operation!");
6065 case TargetLowering::Legal:
6066 case TargetLowering::Expand:
6067 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00006068 case TargetLowering::Custom: {
Dale Johannesenaf435272009-02-02 19:03:57 +00006069 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, dl, DestTy,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006070 Source), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006071 if (NV.getNode())
Chris Lattner07dffd62005-08-26 00:14:16 +00006072 return LegalizeOp(NV);
6073 break; // The target decided this was legal after all
6074 }
Chris Lattnera88a2602005-05-14 05:33:54 +00006075 }
6076
Chris Lattner13689e22005-05-12 07:00:44 +00006077 // Expand the source, then glue it back together for the call. We must expand
6078 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00006079 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00006080 SDValue SrcLo, SrcHi;
Dan Gohman034f60e2008-03-11 01:59:03 +00006081 ExpandOp(Source, SrcLo, SrcHi);
Dale Johannesenaf435272009-02-02 19:03:57 +00006082 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, SrcLo, SrcHi);
Dan Gohman034f60e2008-03-11 01:59:03 +00006083 }
Chris Lattner13689e22005-05-12 07:00:44 +00006084
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006085 RTLIB::Libcall LC = isSigned ?
6086 RTLIB::getSINTTOFP(SourceVT, DestTy) :
6087 RTLIB::getUINTTOFP(SourceVT, DestTy);
6088 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
6089
Dale Johannesenaf435272009-02-02 19:03:57 +00006090 Source = DAG.getNode(ISD::SINT_TO_FP, dl, DestTy, Source);
Dan Gohman475871a2008-07-27 21:46:04 +00006091 SDValue HiPart;
Gabor Greifba36cb52008-08-28 21:40:38 +00006092 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
6093 if (Result.getValueType() != DestTy && HiPart.getNode())
Dale Johannesenaf435272009-02-02 19:03:57 +00006094 Result = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy, Result, HiPart);
Dan Gohmana2e94852008-03-10 23:03:31 +00006095 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00006096}
Misha Brukmanedf128a2005-04-21 22:36:52 +00006097
Chris Lattner22cde6a2006-01-28 08:25:58 +00006098/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
6099/// INT_TO_FP operation of the specified operand when the target requests that
6100/// we expand it. At this point, we know that the result and operand types are
6101/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00006102SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
6103 SDValue Op0,
Dale Johannesenaf435272009-02-02 19:03:57 +00006104 MVT DestVT,
6105 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006106 if (Op0.getValueType() == MVT::i32) {
6107 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00006108
Chris Lattner23594d42008-01-16 07:03:22 +00006109 // Get the stack frame index of a 8 byte buffer.
Dan Gohman475871a2008-07-27 21:46:04 +00006110 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00006111
Chris Lattner22cde6a2006-01-28 08:25:58 +00006112 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00006113 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00006114 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00006115 SDValue Hi = StackSlot;
Scott Michelfdc40a02009-02-17 22:15:04 +00006116 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006117 TLI.getPointerTy(), StackSlot, WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00006118 if (TLI.isLittleEndian())
6119 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00006120
Chris Lattner22cde6a2006-01-28 08:25:58 +00006121 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00006122 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006123 if (isSigned) {
6124 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman475871a2008-07-27 21:46:04 +00006125 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dale Johannesenaf435272009-02-02 19:03:57 +00006126 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006127 } else {
6128 Op0Mapped = Op0;
6129 }
6130 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00006131 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006132 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006133 // initial hi portion of constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00006134 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006135 // store the hi of the constructed double - biased exponent
Dale Johannesenaf435272009-02-02 19:03:57 +00006136 SDValue Store2=DAG.getStore(Store1, dl, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006137 // load the constructed double
Dale Johannesenaf435272009-02-02 19:03:57 +00006138 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006139 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00006140 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006141 BitsToDouble(0x4330000080000000ULL) :
6142 BitsToDouble(0x4330000000000000ULL),
Chris Lattner22cde6a2006-01-28 08:25:58 +00006143 MVT::f64);
6144 // subtract the bias
Dale Johannesenaf435272009-02-02 19:03:57 +00006145 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006146 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00006147 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006148 // handle final rounding
6149 if (DestVT == MVT::f64) {
6150 // do nothing
6151 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006152 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006153 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00006154 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00006155 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006156 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006157 }
6158 return Result;
6159 }
6160 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesenaf435272009-02-02 19:03:57 +00006161 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006162
Dale Johannesenaf435272009-02-02 19:03:57 +00006163 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00006164 Op0, DAG.getConstant(0, Op0.getValueType()),
6165 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00006166 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00006167 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattner22cde6a2006-01-28 08:25:58 +00006168 SignSet, Four, Zero);
6169
6170 // If the sign bit of the integer is set, the large number will be treated
6171 // as a negative number. To counteract this, the dynamic code adds an
6172 // offset depending on the data type.
6173 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006174 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006175 default: assert(0 && "Unsupported integer type!");
6176 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
6177 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
6178 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
6179 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
6180 }
6181 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattnerd2e936a2009-03-08 01:47:41 +00006182 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006183
Dan Gohman475871a2008-07-27 21:46:04 +00006184 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00006185 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00006186 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00006187 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00006188 SDValue FudgeInReg;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006189 if (DestVT == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00006190 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00006191 PseudoSourceValue::getConstantPool(), 0,
6192 false, Alignment);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006193 else {
Dan Gohman69de1932008-02-06 22:27:42 +00006194 FudgeInReg =
Dale Johannesenaf435272009-02-02 19:03:57 +00006195 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
Dan Gohman69de1932008-02-06 22:27:42 +00006196 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00006197 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00006198 MVT::f32, false, Alignment));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006199 }
6200
Dale Johannesenaf435272009-02-02 19:03:57 +00006201 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006202}
6203
6204/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
6205/// *INT_TO_FP operation of the specified operand when the target requests that
6206/// we promote it. At this point, we know that the result and operand types are
6207/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
6208/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00006209SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
6210 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006211 bool isSigned,
6212 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006213 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006214 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006215
6216 unsigned OpToUse = 0;
6217
6218 // Scan for the appropriate larger type to use.
6219 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006220 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
6221 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006222
6223 // If the target supports SINT_TO_FP of this type, use it.
6224 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
6225 default: break;
6226 case TargetLowering::Legal:
6227 if (!TLI.isTypeLegal(NewInTy))
6228 break; // Can't use this datatype.
6229 // FALL THROUGH.
6230 case TargetLowering::Custom:
6231 OpToUse = ISD::SINT_TO_FP;
6232 break;
6233 }
6234 if (OpToUse) break;
6235 if (isSigned) continue;
6236
6237 // If the target supports UINT_TO_FP of this type, use it.
6238 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
6239 default: break;
6240 case TargetLowering::Legal:
6241 if (!TLI.isTypeLegal(NewInTy))
6242 break; // Can't use this datatype.
6243 // FALL THROUGH.
6244 case TargetLowering::Custom:
6245 OpToUse = ISD::UINT_TO_FP;
6246 break;
6247 }
6248 if (OpToUse) break;
6249
6250 // Otherwise, try a larger type.
6251 }
6252
6253 // Okay, we found the operation and type to use. Zero extend our input to the
6254 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00006255 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00006256 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00006257 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006258}
6259
6260/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
6261/// FP_TO_*INT operation of the specified operand when the target requests that
6262/// we promote it. At this point, we know that the result and operand types are
6263/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
6264/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00006265SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
6266 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006267 bool isSigned,
6268 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006269 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006270 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006271
6272 unsigned OpToUse = 0;
6273
6274 // Scan for the appropriate larger type to use.
6275 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006276 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
6277 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006278
6279 // If the target supports FP_TO_SINT returning this type, use it.
6280 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
6281 default: break;
6282 case TargetLowering::Legal:
6283 if (!TLI.isTypeLegal(NewOutTy))
6284 break; // Can't use this datatype.
6285 // FALL THROUGH.
6286 case TargetLowering::Custom:
6287 OpToUse = ISD::FP_TO_SINT;
6288 break;
6289 }
6290 if (OpToUse) break;
6291
6292 // If the target supports FP_TO_UINT of this type, use it.
6293 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
6294 default: break;
6295 case TargetLowering::Legal:
6296 if (!TLI.isTypeLegal(NewOutTy))
6297 break; // Can't use this datatype.
6298 // FALL THROUGH.
6299 case TargetLowering::Custom:
6300 OpToUse = ISD::FP_TO_UINT;
6301 break;
6302 }
6303 if (OpToUse) break;
6304
6305 // Otherwise, try a larger type.
6306 }
6307
Scott Michelfdc40a02009-02-17 22:15:04 +00006308
Chris Lattner27a6c732007-11-24 07:07:01 +00006309 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00006310 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00006311
Chris Lattner27a6c732007-11-24 07:07:01 +00006312 // If the operation produces an invalid type, it must be custom lowered. Use
6313 // the target lowering hooks to expand it. Just keep the low part of the
6314 // expanded operation, we know that we're truncating anyway.
6315 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands1607f052008-12-01 11:39:25 +00006316 SmallVector<SDValue, 2> Results;
6317 TLI.ReplaceNodeResults(Operation.getNode(), Results, DAG);
6318 assert(Results.size() == 1 && "Incorrect FP_TO_XINT lowering!");
6319 Operation = Results[0];
Chris Lattner27a6c732007-11-24 07:07:01 +00006320 }
Duncan Sands126d9072008-07-04 11:47:58 +00006321
Chris Lattner27a6c732007-11-24 07:07:01 +00006322 // Truncate the result of the extended FP_TO_*INT operation to the desired
6323 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00006324 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006325}
6326
6327/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
6328///
Dale Johannesen8a782a22009-02-02 22:12:50 +00006329SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006330 MVT VT = Op.getValueType();
6331 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman475871a2008-07-27 21:46:04 +00006332 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006333 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006334 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
6335 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006336 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6337 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6338 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006339 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006340 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6341 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6342 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6343 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6344 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
6345 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
6346 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6347 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6348 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006349 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006350 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
6351 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
6352 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6353 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6354 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6355 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6356 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
6357 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
6358 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
6359 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
6360 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
6361 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
6362 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
6363 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
6364 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
6365 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
6366 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6367 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6368 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
6369 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
6370 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006371 }
6372}
6373
6374/// ExpandBitCount - Expand the specified bitcount instruction into operations.
6375///
Scott Michelfdc40a02009-02-17 22:15:04 +00006376SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen8a782a22009-02-02 22:12:50 +00006377 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006378 switch (Opc) {
6379 default: assert(0 && "Cannot expand this yet!");
6380 case ISD::CTPOP: {
6381 static const uint64_t mask[6] = {
6382 0x5555555555555555ULL, 0x3333333333333333ULL,
6383 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
6384 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
6385 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00006386 MVT VT = Op.getValueType();
6387 MVT ShVT = TLI.getShiftAmountTy();
6388 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006389 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
6390 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006391 unsigned EltSize = VT.isVector() ?
6392 VT.getVectorElementType().getSizeInBits() : len;
6393 SDValue Tmp2 = DAG.getConstant(APInt(EltSize, mask[i]), VT);
Dan Gohman475871a2008-07-27 21:46:04 +00006394 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00006395 Op = DAG.getNode(ISD::ADD, dl, VT,
Dale Johannesene72c5962009-02-06 21:55:48 +00006396 DAG.getNode(ISD::AND, dl, VT, Op, Tmp2),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006397 DAG.getNode(ISD::AND, dl, VT,
6398 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3),
6399 Tmp2));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006400 }
6401 return Op;
6402 }
6403 case ISD::CTLZ: {
6404 // for now, we do this:
6405 // x = x | (x >> 1);
6406 // x = x | (x >> 2);
6407 // ...
6408 // x = x | (x >>16);
6409 // x = x | (x >>32); // for 64-bit input
6410 // return popcount(~x);
6411 //
6412 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006413 MVT VT = Op.getValueType();
6414 MVT ShVT = TLI.getShiftAmountTy();
6415 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006416 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006417 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00006418 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00006419 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006420 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00006421 Op = DAG.getNOT(dl, Op, VT);
6422 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006423 }
6424 case ISD::CTTZ: {
6425 // for now, we use: { return popcount(~x & (x - 1)); }
6426 // unless the target has ctlz but not ctpop, in which case we use:
6427 // { return 32 - nlz(~x & (x-1)); }
6428 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006429 MVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006430 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
6431 DAG.getNOT(dl, Op, VT),
6432 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00006433 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006434 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006435 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
6436 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00006437 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006438 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006439 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
6440 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006441 }
6442 }
6443}
Chris Lattnere34b3962005-01-19 04:19:40 +00006444
Dan Gohman475871a2008-07-27 21:46:04 +00006445/// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattner3e928bb2005-01-07 07:47:09 +00006446/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman929d3eb2008-10-01 15:07:49 +00006447/// LegalizedNodes map is filled in for any results that are not expanded, the
Chris Lattner3e928bb2005-01-07 07:47:09 +00006448/// ExpandedNodes map is filled in for any results that are expanded, and the
6449/// Lo/Hi values are returned.
Dan Gohman475871a2008-07-27 21:46:04 +00006450void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00006451 MVT VT = Op.getValueType();
6452 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greifba36cb52008-08-28 21:40:38 +00006453 SDNode *Node = Op.getNode();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006454 DebugLoc dl = Node->getDebugLoc();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006455 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00006456 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00006457 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006458
Chris Lattner6fdcb252005-09-02 20:32:45 +00006459 // See if we already expanded it.
Dan Gohman475871a2008-07-27 21:46:04 +00006460 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00006461 = ExpandedNodes.find(Op);
6462 if (I != ExpandedNodes.end()) {
6463 Lo = I->second.first;
6464 Hi = I->second.second;
6465 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006466 }
6467
Chris Lattner3e928bb2005-01-07 07:47:09 +00006468 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006469 case ISD::CopyFromReg:
6470 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006471 case ISD::FP_ROUND_INREG:
Scott Michelfdc40a02009-02-17 22:15:04 +00006472 if (VT == MVT::ppcf128 &&
6473 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006474 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006475 SDValue SrcLo, SrcHi, Src;
Dale Johannesenfcf4d242007-10-11 23:32:15 +00006476 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006477 Src = DAG.getNode(ISD::BUILD_PAIR, dl, VT, SrcLo, SrcHi);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006478 SDValue Result =
6479 TLI.LowerOperation(DAG.getNode(ISD::FP_ROUND_INREG, dl, VT, Src,
6480 Op.getOperand(1)), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006481 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
6482 Lo = Result.getNode()->getOperand(0);
6483 Hi = Result.getNode()->getOperand(1);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006484 break;
6485 }
6486 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00006487 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006488#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006489 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006490#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00006491 assert(0 && "Do not know how to expand this operator!");
6492 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00006493 case ISD::EXTRACT_ELEMENT:
6494 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006495 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman1953ecb2008-02-27 01:52:30 +00006496 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00006497 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00006498 case ISD::EXTRACT_VECTOR_ELT:
Dale Johannesen25f1d082007-10-31 00:32:36 +00006499 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
6500 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
6501 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006502 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00006503 Lo = DAG.getUNDEF(NVT);
6504 Hi = DAG.getUNDEF(NVT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006505 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006506 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006507 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00006508 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
6509 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
6510 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006511 break;
6512 }
Evan Cheng00495212006-12-12 21:32:44 +00006513 case ISD::ConstantFP: {
6514 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00006515 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen7111b022008-10-09 18:53:47 +00006516 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesena471c2e2007-10-11 18:07:22 +00006517 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
6518 MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00006519 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
Dale Johannesena471c2e2007-10-11 18:07:22 +00006520 MVT::f64);
6521 break;
6522 }
Evan Cheng279101e2006-12-12 22:19:28 +00006523 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00006524 if (getTypeAction(Lo.getValueType()) == Expand)
6525 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006526 break;
6527 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006528 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006529 // Return the operands.
6530 Lo = Node->getOperand(0);
6531 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006532 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006533
Chris Lattner27a6c732007-11-24 07:07:01 +00006534 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00006535 if (Node->getNumValues() == 1) {
6536 ExpandOp(Op.getOperand(0), Lo, Hi);
6537 break;
6538 }
Chris Lattner27a6c732007-11-24 07:07:01 +00006539 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif99a6cb92008-08-26 22:36:50 +00006540 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattner27a6c732007-11-24 07:07:01 +00006541 Op.getValue(1).getValueType() == MVT::Other &&
6542 "unhandled MERGE_VALUES");
6543 ExpandOp(Op.getOperand(0), Lo, Hi);
6544 // Remember that we legalized the chain.
6545 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
6546 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006547
Chris Lattner58f79632005-12-12 22:27:43 +00006548 case ISD::SIGN_EXTEND_INREG:
6549 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00006550 // sext_inreg the low part if needed.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006551 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Lo, Node->getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006552
Chris Lattner4bdd2752006-10-06 17:34:12 +00006553 // The high part gets the sign extension from the lo-part. This handles
6554 // things like sextinreg V:i64 from i8.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006555 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006556 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00006557 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00006558 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006559
Nate Begemand88fc032006-01-14 03:14:10 +00006560 case ISD::BSWAP: {
6561 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006562 SDValue TempLo = DAG.getNode(ISD::BSWAP, dl, NVT, Hi);
6563 Hi = DAG.getNode(ISD::BSWAP, dl, NVT, Lo);
Nate Begemand88fc032006-01-14 03:14:10 +00006564 Lo = TempLo;
6565 break;
6566 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006567
Chris Lattneredb1add2005-05-11 04:51:16 +00006568 case ISD::CTPOP:
6569 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006570 Lo = DAG.getNode(ISD::ADD, dl, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
6571 DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
6572 DAG.getNode(ISD::CTPOP, dl, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00006573 Hi = DAG.getConstant(0, NVT);
6574 break;
6575
Chris Lattner39a8f332005-05-12 19:05:01 +00006576 case ISD::CTLZ: {
6577 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006578 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006579 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006580 SDValue HLZ = DAG.getNode(ISD::CTLZ, dl, NVT, Hi);
6581 SDValue TopNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), HLZ,
6582 BitsC, ISD::SETNE);
6583 SDValue LowPart = DAG.getNode(ISD::CTLZ, dl, NVT, Lo);
6584 LowPart = DAG.getNode(ISD::ADD, dl, NVT, LowPart, BitsC);
Chris Lattner39a8f332005-05-12 19:05:01 +00006585
Dale Johannesen8a782a22009-02-02 22:12:50 +00006586 Lo = DAG.getNode(ISD::SELECT, dl, NVT, TopNotZero, HLZ, LowPart);
Chris Lattner39a8f332005-05-12 19:05:01 +00006587 Hi = DAG.getConstant(0, NVT);
6588 break;
6589 }
6590
6591 case ISD::CTTZ: {
6592 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006593 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006594 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006595 SDValue LTZ = DAG.getNode(ISD::CTTZ, dl, NVT, Lo);
6596 SDValue BotNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), LTZ,
6597 BitsC, ISD::SETNE);
6598 SDValue HiPart = DAG.getNode(ISD::CTTZ, dl, NVT, Hi);
6599 HiPart = DAG.getNode(ISD::ADD, dl, NVT, HiPart, BitsC);
Chris Lattner39a8f332005-05-12 19:05:01 +00006600
Dale Johannesen8a782a22009-02-02 22:12:50 +00006601 Lo = DAG.getNode(ISD::SELECT, dl, NVT, BotNotZero, LTZ, HiPart);
Chris Lattner39a8f332005-05-12 19:05:01 +00006602 Hi = DAG.getConstant(0, NVT);
6603 break;
6604 }
Chris Lattneredb1add2005-05-11 04:51:16 +00006605
Nate Begemanacc398c2006-01-25 18:21:52 +00006606 case ISD::VAARG: {
Dan Gohman475871a2008-07-27 21:46:04 +00006607 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6608 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Dale Johannesenc460ae92009-02-04 00:13:36 +00006609 Lo = DAG.getVAArg(NVT, dl, Ch, Ptr, Node->getOperand(2));
6610 Hi = DAG.getVAArg(NVT, dl, Lo.getValue(1), Ptr, Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00006611
6612 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00006613 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00006614 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00006615 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00006616 std::swap(Lo, Hi);
6617 break;
6618 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006619
Chris Lattner3e928bb2005-01-07 07:47:09 +00006620 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00006621 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00006622 SDValue Ch = LD->getChain(); // Legalize the chain.
6623 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Evan Cheng466685d2006-10-09 20:57:25 +00006624 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f8613e2008-08-14 20:04:46 +00006625 const Value *SV = LD->getSrcValue();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006626 int SVOffset = LD->getSrcValueOffset();
6627 unsigned Alignment = LD->getAlignment();
6628 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006629
Evan Cheng466685d2006-10-09 20:57:25 +00006630 if (ExtType == ISD::NON_EXTLOAD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006631 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006632 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00006633 if (VT == MVT::f32 || VT == MVT::f64) {
6634 // f32->i32 or f64->i64 one to one expansion.
6635 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006636 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00006637 // Recursively expand the new load.
6638 if (getTypeAction(NVT) == Expand)
6639 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006640 break;
6641 }
Chris Lattnerec39a452005-01-19 18:02:17 +00006642
Evan Cheng466685d2006-10-09 20:57:25 +00006643 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006644 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Dale Johannesen8a782a22009-02-02 22:12:50 +00006645 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006646 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006647 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006648 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006649 Hi = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006650 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00006651
Evan Cheng466685d2006-10-09 20:57:25 +00006652 // Build a factor node to remember that this load is independent of the
6653 // other one.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006654 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006655 Hi.getValue(1));
Evan Cheng466685d2006-10-09 20:57:25 +00006656
6657 // Remember that we legalized the chain.
6658 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00006659 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00006660 std::swap(Lo, Hi);
6661 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006662 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00006663
Dale Johannesenb6210fc2007-10-19 20:29:00 +00006664 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6665 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00006666 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dale Johannesen8a782a22009-02-02 22:12:50 +00006667 SDValue Load = DAG.getLoad(EVT, dl, Ch, Ptr, SV,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006668 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00006669 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006670 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Dale Johannesen8a782a22009-02-02 22:12:50 +00006671 ExpandOp(DAG.getNode(ISD::FP_EXTEND, dl, VT, Load), Lo, Hi);
Evan Cheng548f6112006-12-13 03:19:57 +00006672 break;
6673 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006674
Evan Cheng466685d2006-10-09 20:57:25 +00006675 if (EVT == NVT)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006676 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006677 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006678 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00006679 Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006680 SVOffset, EVT, isVolatile,
6681 Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00006682
Evan Cheng466685d2006-10-09 20:57:25 +00006683 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006684 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng466685d2006-10-09 20:57:25 +00006685
6686 if (ExtType == ISD::SEXTLOAD) {
6687 // The high part is obtained by SRA'ing all but one of the bits of the
6688 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006689 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006690 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Evan Cheng466685d2006-10-09 20:57:25 +00006691 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6692 } else if (ExtType == ISD::ZEXTLOAD) {
6693 // The high part is just a zero.
6694 Hi = DAG.getConstant(0, NVT);
6695 } else /* if (ExtType == ISD::EXTLOAD) */ {
6696 // The high part is undefined.
Dale Johannesene8d72302009-02-06 23:05:02 +00006697 Hi = DAG.getUNDEF(NVT);
Evan Cheng466685d2006-10-09 20:57:25 +00006698 }
6699 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006700 break;
6701 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006702 case ISD::AND:
6703 case ISD::OR:
6704 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman475871a2008-07-27 21:46:04 +00006705 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006706 ExpandOp(Node->getOperand(0), LL, LH);
6707 ExpandOp(Node->getOperand(1), RL, RH);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006708 Lo = DAG.getNode(Node->getOpcode(), dl, NVT, LL, RL);
6709 Hi = DAG.getNode(Node->getOpcode(), dl, NVT, LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006710 break;
6711 }
6712 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006713 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006714 ExpandOp(Node->getOperand(1), LL, LH);
6715 ExpandOp(Node->getOperand(2), RL, RH);
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, dl, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006719 if (VT != MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006720 Hi = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006721 break;
6722 }
Nate Begeman9373a812005-08-10 20:51:12 +00006723 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006724 SDValue TL, TH, FL, FH;
Nate Begeman9373a812005-08-10 20:51:12 +00006725 ExpandOp(Node->getOperand(2), TL, TH);
6726 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006727 if (getTypeAction(NVT) == Expand)
6728 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006729 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Nate Begeman9373a812005-08-10 20:51:12 +00006730 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006731 if (VT != MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006732 Hi = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Evan Cheng19103b12006-12-15 22:42:55 +00006733 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006734 break;
6735 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006736 case ISD::ANY_EXTEND:
6737 // The low part is any extension of the input (which degenerates to a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006738 Lo = DAG.getNode(ISD::ANY_EXTEND, dl, NVT, Node->getOperand(0));
Chris Lattner8137c9e2006-01-28 05:07:51 +00006739 // The high part is undefined.
Dale Johannesene8d72302009-02-06 23:05:02 +00006740 Hi = DAG.getUNDEF(NVT);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006741 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006742 case ISD::SIGN_EXTEND: {
6743 // The low part is just a sign extension of the input (which degenerates to
6744 // a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006745 Lo = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006746
Chris Lattner3e928bb2005-01-07 07:47:09 +00006747 // The high part is obtained by SRA'ing all but one of the bits of the lo
6748 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006749 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006750 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Chris Lattner8137c9e2006-01-28 05:07:51 +00006751 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006752 break;
6753 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006754 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006755 // The low part is just a zero extension of the input (which degenerates to
6756 // a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006757 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006758
Chris Lattner3e928bb2005-01-07 07:47:09 +00006759 // The high part is just a zero.
6760 Hi = DAG.getConstant(0, NVT);
6761 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006762
Chris Lattner4c948eb2007-02-13 23:55:16 +00006763 case ISD::TRUNCATE: {
6764 // The input value must be larger than this value. Expand *it*.
Dan Gohman475871a2008-07-27 21:46:04 +00006765 SDValue NewLo;
Chris Lattner4c948eb2007-02-13 23:55:16 +00006766 ExpandOp(Node->getOperand(0), NewLo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00006767
Chris Lattner4c948eb2007-02-13 23:55:16 +00006768 // The low part is now either the right size, or it is closer. If not the
6769 // right size, make an illegal truncate so we recursively expand it.
6770 if (NewLo.getValueType() != Node->getValueType(0))
Dale Johannesen8a782a22009-02-02 22:12:50 +00006771 NewLo = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), NewLo);
Chris Lattner4c948eb2007-02-13 23:55:16 +00006772 ExpandOp(NewLo, Lo, Hi);
6773 break;
6774 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006775
Chris Lattner35481892005-12-23 00:16:34 +00006776 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006777 SDValue Tmp;
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006778 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6779 // If the target wants to, allow it to lower this itself.
6780 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6781 case Expand: assert(0 && "cannot expand FP!");
6782 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6783 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6784 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00006785 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp), DAG);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006786 }
6787
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006788 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006789 if (VT == MVT::f32 || VT == MVT::f64) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006790 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006791 if (getTypeAction(NVT) == Expand)
6792 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006793 break;
6794 }
6795
6796 // If source operand will be expanded to the same type as VT, i.e.
6797 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006798 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006799 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6800 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006801 break;
6802 }
6803
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006804 // Turn this into a load/store pair by default.
Gabor Greifba36cb52008-08-28 21:40:38 +00006805 if (Tmp.getNode() == 0)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006806 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00006807
Chris Lattner35481892005-12-23 00:16:34 +00006808 ExpandOp(Tmp, Lo, Hi);
6809 break;
6810 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006811
Chris Lattner27a6c732007-11-24 07:07:01 +00006812 case ISD::READCYCLECOUNTER: {
Scott Michelfdc40a02009-02-17 22:15:04 +00006813 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
Chris Lattner308575b2005-11-20 22:56:56 +00006814 TargetLowering::Custom &&
6815 "Must custom expand ReadCycleCounter");
Dan Gohman475871a2008-07-27 21:46:04 +00006816 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006817 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattner27a6c732007-11-24 07:07:01 +00006818 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006819 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006820 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006821 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006822 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006823
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006824 case ISD::ATOMIC_CMP_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006825 // This operation does not need a loop.
6826 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6827 assert(Tmp.getNode() && "Node must be custom expanded!");
6828 ExpandOp(Tmp.getValue(0), Lo, Hi);
6829 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6830 LegalizeOp(Tmp.getValue(1)));
6831 break;
6832 }
6833
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006834 case ISD::ATOMIC_LOAD_ADD:
6835 case ISD::ATOMIC_LOAD_SUB:
6836 case ISD::ATOMIC_LOAD_AND:
6837 case ISD::ATOMIC_LOAD_OR:
6838 case ISD::ATOMIC_LOAD_XOR:
6839 case ISD::ATOMIC_LOAD_NAND:
6840 case ISD::ATOMIC_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006841 // These operations require a loop to be generated. We can't do that yet,
6842 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006843 SDValue In2Lo, In2Hi, In2;
6844 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006845 In2 = DAG.getNode(ISD::BUILD_PAIR, dl, VT, In2Lo, In2Hi);
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006846 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00006847 SDValue Replace =
Dale Johannesen8a782a22009-02-02 22:12:50 +00006848 DAG.getAtomic(Op.getOpcode(), dl, Anode->getMemoryVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006849 Op.getOperand(0), Op.getOperand(1), In2,
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006850 Anode->getSrcValue(), Anode->getAlignment());
6851 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006852 ExpandOp(Result.getValue(0), Lo, Hi);
6853 // Remember that we legalized the chain.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006854 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Result.getValue(1)));
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006855 break;
6856 }
6857
Chris Lattner4e6c7462005-01-08 19:27:05 +00006858 // These operators cannot be expanded directly, emit them as calls to
6859 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006860 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006861 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006862 SDValue Op;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006863 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6864 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006865 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6866 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006867 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006868
Dale Johannesen8a782a22009-02-02 22:12:50 +00006869 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op), DAG);
Chris Lattnerf20d1832005-07-30 01:40:57 +00006870
Chris Lattner80a3e942005-07-29 00:33:32 +00006871 // Now that the custom expander is done, expand the result, which is still
6872 // VT.
Gabor Greifba36cb52008-08-28 21:40:38 +00006873 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006874 ExpandOp(Op, Lo, Hi);
6875 break;
6876 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006877 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006878
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006879 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6880 VT);
6881 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6882 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006883 break;
Evan Cheng56966222007-01-12 02:11:51 +00006884 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006885
Evan Cheng56966222007-01-12 02:11:51 +00006886 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006887 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006888 SDValue Op;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006889 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6890 case Expand: assert(0 && "cannot expand FP!");
6891 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6892 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6893 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006894
Dale Johannesen8a782a22009-02-02 22:12:50 +00006895 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, dl, VT, Op), DAG);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006896
6897 // Now that the custom expander is done, expand the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00006898 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006899 ExpandOp(Op, Lo, Hi);
6900 break;
6901 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006902 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006903
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006904 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6905 VT);
6906 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6907 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006908 break;
Evan Cheng56966222007-01-12 02:11:51 +00006909 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006910
Evan Cheng05a2d562006-01-09 18:31:59 +00006911 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006912 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006913 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006914 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006915 SDValue Op = DAG.getNode(ISD::SHL, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006916 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006917 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006918 // Now that the custom expander is done, expand the result, which is
6919 // still VT.
6920 ExpandOp(Op, Lo, Hi);
6921 break;
6922 }
6923 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006924
6925 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
Chris Lattner79980b02006-09-13 03:50:39 +00006926 // this X << 1 as X+X.
6927 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006928 if (ShAmt->getAPIntValue() == 1 &&
Scott Michelfdc40a02009-02-17 22:15:04 +00006929 TLI.isOperationLegalOrCustom(ISD::ADDC, NVT) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006930 TLI.isOperationLegalOrCustom(ISD::ADDE, NVT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006931 SDValue LoOps[2], HiOps[3];
Chris Lattner79980b02006-09-13 03:50:39 +00006932 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6933 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6934 LoOps[1] = LoOps[0];
Dale Johannesen8a782a22009-02-02 22:12:50 +00006935 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Chris Lattner79980b02006-09-13 03:50:39 +00006936
6937 HiOps[1] = HiOps[0];
6938 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006939 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Chris Lattner79980b02006-09-13 03:50:39 +00006940 break;
6941 }
6942 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006943
Chris Lattnere34b3962005-01-19 04:19:40 +00006944 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006945 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006946 break;
Chris Lattner47599822005-04-02 03:38:53 +00006947
6948 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006949 TargetLowering::LegalizeAction Action =
6950 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6951 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6952 Action == TargetLowering::Custom) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006953 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006954 ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006955 break;
6956 }
6957
Chris Lattnere34b3962005-01-19 04:19:40 +00006958 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006959 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006960 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006961 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006962
Evan Cheng05a2d562006-01-09 18:31:59 +00006963 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006964 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006965 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006966 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dale Johannesene72c5962009-02-06 21:55:48 +00006967 SDValue Op = DAG.getNode(ISD::SRA, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006968 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006969 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006970 // Now that the custom expander is done, expand the result, which is
6971 // still VT.
6972 ExpandOp(Op, Lo, Hi);
6973 break;
6974 }
6975 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006976
Chris Lattnere34b3962005-01-19 04:19:40 +00006977 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006978 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006979 break;
Chris Lattner47599822005-04-02 03:38:53 +00006980
6981 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006982 TargetLowering::LegalizeAction Action =
6983 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6984 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6985 Action == TargetLowering::Custom) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006986 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006987 ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006988 break;
6989 }
6990
Chris Lattnere34b3962005-01-19 04:19:40 +00006991 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006992 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006993 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006994 }
6995
6996 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006997 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006998 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006999 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007000 SDValue Op = DAG.getNode(ISD::SRL, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00007001 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007002 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00007003 // Now that the custom expander is done, expand the result, which is
7004 // still VT.
7005 ExpandOp(Op, Lo, Hi);
7006 break;
7007 }
7008 }
7009
Chris Lattnere34b3962005-01-19 04:19:40 +00007010 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007011 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00007012 break;
Chris Lattner47599822005-04-02 03:38:53 +00007013
7014 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00007015 TargetLowering::LegalizeAction Action =
7016 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
7017 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
7018 Action == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007019 ExpandShiftParts(ISD::SRL_PARTS,
7020 Node->getOperand(0), ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00007021 break;
7022 }
7023
Chris Lattnere34b3962005-01-19 04:19:40 +00007024 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00007025 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00007026 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00007027 }
Chris Lattnere34b3962005-01-19 04:19:40 +00007028
Misha Brukmanedf128a2005-04-21 22:36:52 +00007029 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00007030 case ISD::SUB: {
7031 // If the target wants to custom expand this, let them.
7032 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
7033 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00007034 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007035 if (Result.getNode()) {
Duncan Sands69bfb152008-06-22 09:42:16 +00007036 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00007037 break;
7038 }
7039 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00007040 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007041 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattner8137c9e2006-01-28 05:07:51 +00007042 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7043 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Dan Gohman475871a2008-07-27 21:46:04 +00007044 SDValue LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00007045 LoOps[0] = LHSL;
7046 LoOps[1] = RHSL;
7047 HiOps[0] = LHSH;
7048 HiOps[1] = RHSH;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00007049
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007050 //cascaded check to see if any smaller size has a a carry flag.
7051 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
7052 bool hasCarry = false;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00007053 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
7054 MVT AVT = MVT::getIntegerVT(BitSize);
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007055 if (TLI.isOperationLegalOrCustom(OpV, AVT)) {
Andrew Lenharth2163ca12008-10-07 18:27:23 +00007056 hasCarry = true;
7057 break;
7058 }
7059 }
7060
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007061 if(hasCarry) {
Evan Cheng637ed032008-12-12 18:49:09 +00007062 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
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::ADDC, dl, VTList, LoOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007065 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007066 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007067 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007068 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007069 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007070 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007071 }
7072 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007073 } else {
Andrew Lenharth40d51392008-10-07 14:15:42 +00007074 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007075 Lo = DAG.getNode(ISD::ADD, dl, NVT, LoOps, 2);
7076 Hi = DAG.getNode(ISD::ADD, dl, NVT, HiOps, 2);
7077 SDValue Cmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007078 Lo, LoOps[0], ISD::SETULT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007079 SDValue Carry1 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp1,
Scott Michelfdc40a02009-02-17 22:15:04 +00007080 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007081 DAG.getConstant(0, NVT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00007082 SDValue Cmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007083 Lo, LoOps[1], ISD::SETULT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007084 SDValue Carry2 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp2,
Scott Michelfdc40a02009-02-17 22:15:04 +00007085 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007086 Carry1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007087 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, Carry2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007088 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007089 Lo = DAG.getNode(ISD::SUB, dl, NVT, LoOps, 2);
7090 Hi = DAG.getNode(ISD::SUB, dl, NVT, HiOps, 2);
7091 SDValue Cmp = DAG.getSetCC(dl, NVT, LoOps[0], LoOps[1], ISD::SETULT);
7092 SDValue Borrow = DAG.getNode(ISD::SELECT, dl, NVT, Cmp,
Scott Michelfdc40a02009-02-17 22:15:04 +00007093 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007094 DAG.getConstant(0, NVT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00007095 Hi = DAG.getNode(ISD::SUB, dl, NVT, Hi, Borrow);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007096 }
7097 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007098 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00007099 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007100
Chris Lattnerb429f732007-05-17 18:15:41 +00007101 case ISD::ADDC:
7102 case ISD::SUBC: {
7103 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007104 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007105 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7106 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7107 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007108 SDValue LoOps[2] = { LHSL, RHSL };
7109 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michelfdc40a02009-02-17 22:15:04 +00007110
Chris Lattnerb429f732007-05-17 18:15:41 +00007111 if (Node->getOpcode() == ISD::ADDC) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007112 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Chris Lattnerb429f732007-05-17 18:15:41 +00007113 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007114 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007115 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007116 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Chris Lattnerb429f732007-05-17 18:15:41 +00007117 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007118 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007119 }
7120 // Remember that we legalized the flag.
7121 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7122 break;
7123 }
7124 case ISD::ADDE:
7125 case ISD::SUBE: {
7126 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007127 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007128 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7129 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7130 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007131 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
7132 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michelfdc40a02009-02-17 22:15:04 +00007133
Dale Johannesen8a782a22009-02-02 22:12:50 +00007134 Lo = DAG.getNode(Node->getOpcode(), dl, VTList, LoOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007135 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007136 Hi = DAG.getNode(Node->getOpcode(), dl, VTList, HiOps, 3);
Scott Michelfdc40a02009-02-17 22:15:04 +00007137
Chris Lattnerb429f732007-05-17 18:15:41 +00007138 // Remember that we legalized the flag.
7139 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7140 break;
7141 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007142 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007143 // If the target wants to custom expand this, let them.
7144 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00007145 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007146 if (New.getNode()) {
Chris Lattner8829dc82006-09-16 05:08:34 +00007147 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007148 break;
7149 }
7150 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007151
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007152 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, NVT);
7153 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, NVT);
7154 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, NVT);
7155 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00007156 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman475871a2008-07-27 21:46:04 +00007157 SDValue LL, LH, RL, RH;
Nate Begemanc7c16572005-04-11 03:01:51 +00007158 ExpandOp(Node->getOperand(0), LL, LH);
7159 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007160 unsigned OuterBitSize = Op.getValueSizeInBits();
7161 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00007162 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
7163 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00007164 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
7165 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
7166 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00007167 // The inputs are both zero-extended.
7168 if (HasUMUL_LOHI) {
7169 // We can emit a umul_lohi.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007170 Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007171 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007172 break;
7173 }
7174 if (HasMULHU) {
7175 // We can emit a mulhu+mul.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007176 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7177 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
Dan Gohman525178c2007-10-08 18:33:35 +00007178 break;
7179 }
Dan Gohman525178c2007-10-08 18:33:35 +00007180 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007181 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00007182 // The input values are both sign-extended.
7183 if (HasSMUL_LOHI) {
7184 // We can emit a smul_lohi.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007185 Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007186 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007187 break;
7188 }
7189 if (HasMULHS) {
7190 // We can emit a mulhs+mul.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007191 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7192 Hi = DAG.getNode(ISD::MULHS, dl, NVT, LL, RL);
Dan Gohman525178c2007-10-08 18:33:35 +00007193 break;
7194 }
7195 }
7196 if (HasUMUL_LOHI) {
7197 // Lo,Hi = umul LHS, RHS.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007198 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, dl,
Dan Gohman525178c2007-10-08 18:33:35 +00007199 DAG.getVTList(NVT, NVT), LL, RL);
7200 Lo = UMulLOHI;
7201 Hi = UMulLOHI.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007202 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7203 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7204 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7205 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00007206 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00007207 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007208 if (HasMULHU) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007209 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7210 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
7211 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7212 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7213 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7214 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007215 break;
7216 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007217 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00007218
Dan Gohman525178c2007-10-08 18:33:35 +00007219 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00007220 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00007221 break;
7222 }
Evan Cheng56966222007-01-12 02:11:51 +00007223 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007224 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007225 break;
7226 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007227 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007228 break;
7229 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007230 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007231 break;
7232 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007233 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007234 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00007235
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007236 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00007237 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
7238 RTLIB::ADD_F64,
7239 RTLIB::ADD_F80,
7240 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007241 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007242 break;
7243 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00007244 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
7245 RTLIB::SUB_F64,
7246 RTLIB::SUB_F80,
7247 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007248 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007249 break;
7250 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00007251 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
7252 RTLIB::MUL_F64,
7253 RTLIB::MUL_F80,
7254 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007255 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007256 break;
7257 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007258 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
7259 RTLIB::DIV_F64,
7260 RTLIB::DIV_F80,
7261 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007262 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007263 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007264 case ISD::FP_EXTEND: {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007265 if (VT == MVT::ppcf128) {
7266 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
7267 Node->getOperand(0).getValueType()==MVT::f64);
7268 const uint64_t zero = 0;
7269 if (Node->getOperand(0).getValueType()==MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00007270 Hi = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Node->getOperand(0));
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007271 else
7272 Hi = Node->getOperand(0);
7273 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7274 break;
7275 }
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007276 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
7277 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
7278 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007279 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007280 }
7281 case ISD::FP_ROUND: {
7282 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
7283 VT);
7284 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
7285 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007286 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007287 }
Evan Cheng4b887022008-09-09 23:02:14 +00007288 case ISD::FSQRT:
7289 case ISD::FSIN:
Scott Michelfdc40a02009-02-17 22:15:04 +00007290 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007291 case ISD::FLOG:
7292 case ISD::FLOG2:
7293 case ISD::FLOG10:
7294 case ISD::FEXP:
7295 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007296 case ISD::FTRUNC:
7297 case ISD::FFLOOR:
7298 case ISD::FCEIL:
7299 case ISD::FRINT:
7300 case ISD::FNEARBYINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00007301 case ISD::FPOW:
7302 case ISD::FPOWI: {
Evan Cheng56966222007-01-12 02:11:51 +00007303 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007304 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00007305 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00007306 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
7307 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007308 break;
7309 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00007310 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
7311 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007312 break;
7313 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00007314 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
7315 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007316 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007317 case ISD::FLOG:
7318 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
7319 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
7320 break;
7321 case ISD::FLOG2:
7322 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
7323 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
7324 break;
7325 case ISD::FLOG10:
7326 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
7327 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
7328 break;
7329 case ISD::FEXP:
7330 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
7331 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
7332 break;
7333 case ISD::FEXP2:
7334 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
7335 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
7336 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007337 case ISD::FTRUNC:
7338 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
7339 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
7340 break;
7341 case ISD::FFLOOR:
7342 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
7343 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
7344 break;
7345 case ISD::FCEIL:
7346 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
7347 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
7348 break;
7349 case ISD::FRINT:
7350 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
7351 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
7352 break;
7353 case ISD::FNEARBYINT:
7354 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
7355 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
7356 break;
Evan Cheng4b887022008-09-09 23:02:14 +00007357 case ISD::FPOW:
7358 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
7359 RTLIB::POW_PPCF128);
7360 break;
7361 case ISD::FPOWI:
7362 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
7363 RTLIB::POWI_PPCF128);
7364 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007365 default: assert(0 && "Unreachable!");
7366 }
Duncan Sands460a14e2008-04-12 17:14:18 +00007367 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00007368 break;
7369 }
Evan Cheng966bf242006-12-16 00:52:40 +00007370 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007371 if (VT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00007372 SDValue Tmp;
Dale Johannesenf6467742007-10-12 19:02:17 +00007373 ExpandOp(Node->getOperand(0), Lo, Tmp);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007374 Hi = DAG.getNode(ISD::FABS, dl, NVT, Tmp);
Dale Johannesenf6467742007-10-12 19:02:17 +00007375 // lo = hi==fabs(hi) ? lo : -lo;
Dale Johannesen8a782a22009-02-02 22:12:50 +00007376 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Hi, Tmp,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007377 Lo, DAG.getNode(ISD::FNEG, dl, NVT, Lo),
7378 DAG.getCondCode(ISD::SETEQ));
Dale Johannesenf6467742007-10-12 19:02:17 +00007379 break;
7380 }
Dan Gohman475871a2008-07-27 21:46:04 +00007381 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007382 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
7383 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007384 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7385 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7386 Lo = DAG.getNode(ISD::AND, dl, NVT, Lo, Mask);
Evan Cheng966bf242006-12-16 00:52:40 +00007387 if (getTypeAction(NVT) == Expand)
7388 ExpandOp(Lo, Lo, Hi);
7389 break;
7390 }
7391 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007392 if (VT == MVT::ppcf128) {
7393 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007394 Lo = DAG.getNode(ISD::FNEG, dl, MVT::f64, Lo);
7395 Hi = DAG.getNode(ISD::FNEG, dl, MVT::f64, Hi);
Dale Johannesenf6467742007-10-12 19:02:17 +00007396 break;
7397 }
Dan Gohman475871a2008-07-27 21:46:04 +00007398 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007399 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
7400 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007401 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7402 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7403 Lo = DAG.getNode(ISD::XOR, dl, NVT, Lo, Mask);
Evan Cheng966bf242006-12-16 00:52:40 +00007404 if (getTypeAction(NVT) == Expand)
7405 ExpandOp(Lo, Lo, Hi);
7406 break;
7407 }
Evan Cheng912095b2007-01-04 21:56:39 +00007408 case ISD::FCOPYSIGN: {
7409 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
7410 if (getTypeAction(NVT) == Expand)
7411 ExpandOp(Lo, Lo, Hi);
7412 break;
7413 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007414 case ISD::SINT_TO_FP:
7415 case ISD::UINT_TO_FP: {
7416 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007417 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00007418
7419 // Promote the operand if needed. Do this before checking for
7420 // ppcf128 so conversions of i16 and i8 work.
7421 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman475871a2008-07-27 21:46:04 +00007422 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesencf498192008-03-18 17:28:38 +00007423 Tmp = isSigned
Dale Johannesen8a782a22009-02-02 22:12:50 +00007424 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp.getValueType(), Tmp,
Dale Johannesencf498192008-03-18 17:28:38 +00007425 DAG.getValueType(SrcVT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00007426 : DAG.getZeroExtendInReg(Tmp, dl, SrcVT);
Gabor Greifba36cb52008-08-28 21:40:38 +00007427 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesencf498192008-03-18 17:28:38 +00007428 SrcVT = Node->getOperand(0).getValueType();
7429 }
7430
Dan Gohmana2e94852008-03-10 23:03:31 +00007431 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007432 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007433 if (isSigned) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007434 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007435 Node->getOperand(0)));
7436 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7437 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007438 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Scott Michelfdc40a02009-02-17 22:15:04 +00007439 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007440 Node->getOperand(0)));
7441 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007442 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007443 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen8a782a22009-02-02 22:12:50 +00007444 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl,
7445 MVT::ppcf128, Node->getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00007446 DAG.getConstant(0, MVT::i32),
Dale Johannesen8a782a22009-02-02 22:12:50 +00007447 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007448 DAG.getConstantFP
7449 (APFloat(APInt(128, 2, TwoE32)),
7450 MVT::ppcf128)),
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007451 Hi,
7452 DAG.getCondCode(ISD::SETLT)),
7453 Lo, Hi);
7454 }
7455 break;
7456 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00007457 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
7458 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007459 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen8a782a22009-02-02 22:12:50 +00007460 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::ppcf128,
7461 Node->getOperand(0)), Lo, Hi);
7462 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007463 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
Dale Johannesen8a782a22009-02-02 22:12:50 +00007464 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl, MVT::ppcf128,
7465 Node->getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00007466 DAG.getConstant(0, MVT::i64),
Dale Johannesen8a782a22009-02-02 22:12:50 +00007467 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007468 DAG.getConstantFP
7469 (APFloat(APInt(128, 2, TwoE64)),
7470 MVT::ppcf128)),
Dale Johannesen6e63e092007-10-12 17:52:03 +00007471 Hi,
7472 DAG.getCondCode(ISD::SETLT)),
7473 Lo, Hi);
7474 break;
7475 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007476
Dan Gohmana2e94852008-03-10 23:03:31 +00007477 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00007478 Node->getOperand(0), dl);
Evan Cheng110cf482008-04-01 01:50:16 +00007479 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00007480 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00007481 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00007482 break;
7483 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00007484 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00007485
Chris Lattner83397362005-12-21 18:02:52 +00007486 // Make sure the resultant values have been legalized themselves, unless this
7487 // is a type that requires multi-step expansion.
7488 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
7489 Lo = LegalizeOp(Lo);
Gabor Greifba36cb52008-08-28 21:40:38 +00007490 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00007491 // Don't legalize the high part if it is expanded to a single node.
7492 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00007493 }
Evan Cheng05a2d562006-01-09 18:31:59 +00007494
7495 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00007496 bool isNew =
7497 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00007498 assert(isNew && "Value already expanded?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007499 isNew = isNew;
Chris Lattner3e928bb2005-01-07 07:47:09 +00007500}
7501
Dan Gohman7f321562007-06-25 16:23:39 +00007502/// SplitVectorOp - Given an operand of vector type, break it down into
7503/// two smaller values, still of vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00007504void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
7505 SDValue &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007506 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007507 SDNode *Node = Op.getNode();
Dale Johannesenbb5da912009-02-02 20:41:04 +00007508 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007509 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00007510 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00007511
Duncan Sands83ec4b62008-06-06 12:08:01 +00007512 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00007513
7514 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
7515 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
7516
Duncan Sands83ec4b62008-06-06 12:08:01 +00007517 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
7518 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007519
Chris Lattnerc7029802006-03-18 01:44:44 +00007520 // See if we already split it.
Dan Gohman475871a2008-07-27 21:46:04 +00007521 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattnerc7029802006-03-18 01:44:44 +00007522 = SplitNodes.find(Op);
7523 if (I != SplitNodes.end()) {
7524 Lo = I->second.first;
7525 Hi = I->second.second;
7526 return;
7527 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007528
Chris Lattnerc7029802006-03-18 01:44:44 +00007529 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007530 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007531#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007532 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007533#endif
7534 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007535 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00007536 Lo = DAG.getUNDEF(NewVT_Lo);
7537 Hi = DAG.getUNDEF(NewVT_Hi);
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007538 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007539 case ISD::BUILD_PAIR:
7540 Lo = Node->getOperand(0);
7541 Hi = Node->getOperand(1);
7542 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00007543 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00007544 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
7545 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007546 unsigned Index = Idx->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007547 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman68679912008-04-25 18:07:40 +00007548 if (Index < NewNumElts_Lo)
Dale Johannesenc6be1102009-02-02 22:49:46 +00007549 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Lo, Lo, ScalarOp,
Nate Begeman68679912008-04-25 18:07:40 +00007550 DAG.getIntPtrConstant(Index));
7551 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00007552 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Hi, Hi, ScalarOp,
Nate Begeman68679912008-04-25 18:07:40 +00007553 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
7554 break;
7555 }
Dan Gohman475871a2008-07-27 21:46:04 +00007556 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007557 Node->getOperand(1),
7558 Node->getOperand(2), dl);
Nate Begeman68679912008-04-25 18:07:40 +00007559 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00007560 break;
7561 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00007562 case ISD::VECTOR_SHUFFLE: {
7563 // Build the low part.
Dan Gohman475871a2008-07-27 21:46:04 +00007564 SDValue Mask = Node->getOperand(2);
7565 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007566 MVT PtrVT = TLI.getPointerTy();
Scott Michelfdc40a02009-02-17 22:15:04 +00007567
7568 // Insert all of the elements from the input that are needed. We use
Chris Lattner6c9c6802007-11-19 21:16:54 +00007569 // buildvector of extractelement here because the input vectors will have
7570 // to be legalized, so this makes the code simpler.
7571 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007572 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007573 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007574 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman5922f562008-03-14 00:53:31 +00007575 continue;
7576 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007577 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007578 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007579 if (Idx >= NumElements) {
7580 InVec = Node->getOperand(1);
7581 Idx -= NumElements;
7582 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00007583 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner6c9c6802007-11-19 21:16:54 +00007584 DAG.getConstant(Idx, PtrVT)));
7585 }
Evan Chenga87008d2009-02-25 22:49:59 +00007586 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007587 Ops.clear();
Scott Michelfdc40a02009-02-17 22:15:04 +00007588
Chris Lattner6c9c6802007-11-19 21:16:54 +00007589 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007590 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007591 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007592 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman5922f562008-03-14 00:53:31 +00007593 continue;
7594 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007595 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007596 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007597 if (Idx >= NumElements) {
7598 InVec = Node->getOperand(1);
7599 Idx -= NumElements;
7600 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00007601 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner6c9c6802007-11-19 21:16:54 +00007602 DAG.getConstant(Idx, PtrVT)));
7603 }
Evan Chenga87008d2009-02-25 22:49:59 +00007604 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007605 break;
7606 }
Dan Gohman7f321562007-06-25 16:23:39 +00007607 case ISD::BUILD_VECTOR: {
Scott Michelfdc40a02009-02-17 22:15:04 +00007608 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007609 Node->op_begin()+NewNumElts_Lo);
Evan Chenga87008d2009-02-25 22:49:59 +00007610 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007611
Scott Michelfdc40a02009-02-17 22:15:04 +00007612 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007613 Node->op_end());
Evan Chenga87008d2009-02-25 22:49:59 +00007614 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007615 break;
7616 }
Dan Gohman7f321562007-06-25 16:23:39 +00007617 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00007618 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00007619 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7620 if (NewNumSubvectors == 1) {
7621 Lo = Node->getOperand(0);
7622 Hi = Node->getOperand(1);
7623 } else {
Mon P Wangaeb06d22008-11-10 04:46:22 +00007624 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
7625 Node->op_begin()+NewNumSubvectors);
Scott Michelfdc40a02009-02-17 22:15:04 +00007626 Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Lo,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007627 &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00007628
Mon P Wangaeb06d22008-11-10 04:46:22 +00007629 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007630 Node->op_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00007631 Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Hi,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007632 &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00007633 }
Dan Gohman65956352007-06-13 15:12:02 +00007634 break;
7635 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00007636 case ISD::EXTRACT_SUBVECTOR: {
7637 SDValue Vec = Op.getOperand(0);
7638 SDValue Idx = Op.getOperand(1);
7639 MVT IdxVT = Idx.getValueType();
7640
Dale Johannesenc6be1102009-02-02 22:49:46 +00007641 Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Lo, Vec, Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007642 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
7643 if (CIdx) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007644 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec,
Mon P Wangaeb06d22008-11-10 04:46:22 +00007645 DAG.getConstant(CIdx->getZExtValue() + NewNumElts_Lo,
7646 IdxVT));
7647 } else {
Dale Johannesenc6be1102009-02-02 22:49:46 +00007648 Idx = DAG.getNode(ISD::ADD, dl, IdxVT, Idx,
Mon P Wangaeb06d22008-11-10 04:46:22 +00007649 DAG.getConstant(NewNumElts_Lo, IdxVT));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007650 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec, Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007651 }
7652 break;
7653 }
Dan Gohmanc6230962007-10-17 14:48:28 +00007654 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007655 SDValue Cond = Node->getOperand(0);
Dan Gohmanc6230962007-10-17 14:48:28 +00007656
Dan Gohman475871a2008-07-27 21:46:04 +00007657 SDValue LL, LH, RL, RH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007658 SplitVectorOp(Node->getOperand(1), LL, LH);
7659 SplitVectorOp(Node->getOperand(2), RL, RH);
7660
Duncan Sands83ec4b62008-06-06 12:08:01 +00007661 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00007662 // Handle a vector merge.
Dan Gohman475871a2008-07-27 21:46:04 +00007663 SDValue CL, CH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007664 SplitVectorOp(Cond, CL, CH);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007665 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, CL, LL, RL);
7666 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007667 } else {
7668 // Handle a simple select with vector operands.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007669 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, Cond, LL, RL);
7670 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007671 }
7672 break;
7673 }
Chris Lattner80c1a562008-06-30 02:43:01 +00007674 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007675 SDValue CondLHS = Node->getOperand(0);
7676 SDValue CondRHS = Node->getOperand(1);
7677 SDValue CondCode = Node->getOperand(4);
Scott Michelfdc40a02009-02-17 22:15:04 +00007678
Dan Gohman475871a2008-07-27 21:46:04 +00007679 SDValue LL, LH, RL, RH;
Chris Lattner80c1a562008-06-30 02:43:01 +00007680 SplitVectorOp(Node->getOperand(2), LL, LH);
7681 SplitVectorOp(Node->getOperand(3), RL, RH);
Scott Michelfdc40a02009-02-17 22:15:04 +00007682
Chris Lattner80c1a562008-06-30 02:43:01 +00007683 // Handle a simple select with vector operands.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007684 Lo = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Lo, CondLHS, CondRHS,
Chris Lattner80c1a562008-06-30 02:43:01 +00007685 LL, RL, CondCode);
Scott Michelfdc40a02009-02-17 22:15:04 +00007686 Hi = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Hi, CondLHS, CondRHS,
Chris Lattner80c1a562008-06-30 02:43:01 +00007687 LH, RH, CondCode);
7688 break;
7689 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00007690 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007691 SDValue LL, LH, RL, RH;
Nate Begemanb43e9c12008-05-12 19:40:03 +00007692 SplitVectorOp(Node->getOperand(0), LL, LH);
7693 SplitVectorOp(Node->getOperand(1), RL, RH);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007694 Lo = DAG.getNode(ISD::VSETCC, dl, NewVT_Lo, LL, RL, Node->getOperand(2));
7695 Hi = DAG.getNode(ISD::VSETCC, dl, NewVT_Hi, LH, RH, Node->getOperand(2));
Nate Begemanb43e9c12008-05-12 19:40:03 +00007696 break;
7697 }
Dan Gohman7f321562007-06-25 16:23:39 +00007698 case ISD::ADD:
7699 case ISD::SUB:
7700 case ISD::MUL:
7701 case ISD::FADD:
7702 case ISD::FSUB:
7703 case ISD::FMUL:
7704 case ISD::SDIV:
7705 case ISD::UDIV:
7706 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00007707 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007708 case ISD::AND:
7709 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00007710 case ISD::XOR:
7711 case ISD::UREM:
7712 case ISD::SREM:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00007713 case ISD::FREM:
7714 case ISD::SHL:
7715 case ISD::SRA:
7716 case ISD::SRL: {
Dan Gohman475871a2008-07-27 21:46:04 +00007717 SDValue LL, LH, RL, RH;
Chris Lattnerc7029802006-03-18 01:44:44 +00007718 SplitVectorOp(Node->getOperand(0), LL, LH);
7719 SplitVectorOp(Node->getOperand(1), RL, RH);
Scott Michelfdc40a02009-02-17 22:15:04 +00007720
Dale Johannesenc6be1102009-02-02 22:49:46 +00007721 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, LL, RL);
7722 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00007723 break;
7724 }
Dan Gohman7f8613e2008-08-14 20:04:46 +00007725 case ISD::FP_ROUND:
Dan Gohman82669522007-10-11 23:57:53 +00007726 case ISD::FPOWI: {
Dan Gohman475871a2008-07-27 21:46:04 +00007727 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007728 SplitVectorOp(Node->getOperand(0), L, H);
7729
Dale Johannesenc6be1102009-02-02 22:49:46 +00007730 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L, Node->getOperand(1));
7731 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00007732 break;
7733 }
7734 case ISD::CTTZ:
7735 case ISD::CTLZ:
7736 case ISD::CTPOP:
7737 case ISD::FNEG:
7738 case ISD::FABS:
7739 case ISD::FSQRT:
7740 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00007741 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007742 case ISD::FLOG:
7743 case ISD::FLOG2:
7744 case ISD::FLOG10:
7745 case ISD::FEXP:
7746 case ISD::FEXP2:
Nate Begemanb348d182007-11-17 03:58:34 +00007747 case ISD::FP_TO_SINT:
7748 case ISD::FP_TO_UINT:
7749 case ISD::SINT_TO_FP:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007750 case ISD::UINT_TO_FP:
7751 case ISD::TRUNCATE:
7752 case ISD::ANY_EXTEND:
7753 case ISD::SIGN_EXTEND:
7754 case ISD::ZERO_EXTEND:
7755 case ISD::FP_EXTEND: {
Dan Gohman475871a2008-07-27 21:46:04 +00007756 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007757 SplitVectorOp(Node->getOperand(0), L, H);
7758
Dale Johannesenc6be1102009-02-02 22:49:46 +00007759 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L);
7760 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00007761 break;
7762 }
Mon P Wang77cdf302008-11-10 20:54:11 +00007763 case ISD::CONVERT_RNDSAT: {
7764 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
7765 SDValue L, H;
7766 SplitVectorOp(Node->getOperand(0), L, H);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007767 SDValue DTyOpL = DAG.getValueType(NewVT_Lo);
7768 SDValue DTyOpH = DAG.getValueType(NewVT_Hi);
7769 SDValue STyOpL = DAG.getValueType(L.getValueType());
7770 SDValue STyOpH = DAG.getValueType(H.getValueType());
Mon P Wang77cdf302008-11-10 20:54:11 +00007771
7772 SDValue RndOp = Node->getOperand(3);
7773 SDValue SatOp = Node->getOperand(4);
7774
Dale Johannesenc460ae92009-02-04 00:13:36 +00007775 Lo = DAG.getConvertRndSat(NewVT_Lo, dl, L, DTyOpL, STyOpL,
Mon P Wang77cdf302008-11-10 20:54:11 +00007776 RndOp, SatOp, CvtCode);
Dale Johannesenc460ae92009-02-04 00:13:36 +00007777 Hi = DAG.getConvertRndSat(NewVT_Hi, dl, H, DTyOpH, STyOpH,
Mon P Wang77cdf302008-11-10 20:54:11 +00007778 RndOp, SatOp, CvtCode);
7779 break;
7780 }
Dan Gohman7f321562007-06-25 16:23:39 +00007781 case ISD::LOAD: {
7782 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007783 SDValue Ch = LD->getChain();
7784 SDValue Ptr = LD->getBasePtr();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007785 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007786 const Value *SV = LD->getSrcValue();
7787 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007788 MVT MemoryVT = LD->getMemoryVT();
Dan Gohman7f321562007-06-25 16:23:39 +00007789 unsigned Alignment = LD->getAlignment();
7790 bool isVolatile = LD->isVolatile();
7791
Dan Gohman7f8613e2008-08-14 20:04:46 +00007792 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesene8d72302009-02-06 23:05:02 +00007793 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Dan Gohman7f8613e2008-08-14 20:04:46 +00007794
7795 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7796 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7797 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7798
Dale Johannesenc6be1102009-02-02 22:49:46 +00007799 Lo = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007800 NewVT_Lo, Ch, Ptr, Offset,
7801 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7802 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Dale Johannesenc6be1102009-02-02 22:49:46 +00007803 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00007804 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00007805 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00007806 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007807 Hi = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007808 NewVT_Hi, Ch, Ptr, Offset,
7809 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00007810
Chris Lattnerc7029802006-03-18 01:44:44 +00007811 // Build a factor node to remember that this load is independent of the
7812 // other one.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007813 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007814 Hi.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00007815
Chris Lattnerc7029802006-03-18 01:44:44 +00007816 // Remember that we legalized the chain.
7817 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00007818 break;
7819 }
Dan Gohman7f321562007-06-25 16:23:39 +00007820 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00007821 // We know the result is a vector. The input may be either a vector or a
7822 // scalar value.
Dan Gohman475871a2008-07-27 21:46:04 +00007823 SDValue InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007824 if (!InOp.getValueType().isVector() ||
7825 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00007826 // The input is a scalar or single-element vector.
7827 // Lower to a store/load so that it can be split.
7828 // FIXME: this could be improved probably.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007829 unsigned LdAlign = TLI.getTargetData()->
7830 getPrefTypeAlignment(Op.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00007831 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greifba36cb52008-08-28 21:40:38 +00007832 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Chris Lattner7692eb42006-03-23 21:16:34 +00007833
Dale Johannesenc6be1102009-02-02 22:49:46 +00007834 SDValue St = DAG.getStore(DAG.getEntryNode(), dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007835 InOp, Ptr,
7836 PseudoSourceValue::getFixedStack(FI), 0);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007837 InOp = DAG.getLoad(Op.getValueType(), dl, St, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007838 PseudoSourceValue::getFixedStack(FI), 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00007839 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007840 // Split the vector and convert each of the pieces now.
7841 SplitVectorOp(InOp, Lo, Hi);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007842 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Lo, Lo);
7843 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007844 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007845 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007846 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007847
Chris Lattnerc7029802006-03-18 01:44:44 +00007848 // Remember in a map if the values will be reused later.
Scott Michelfdc40a02009-02-17 22:15:04 +00007849 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007850 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007851 assert(isNew && "Value already split?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007852 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00007853}
7854
7855
Dan Gohman89b20c02007-06-27 14:06:22 +00007856/// ScalarizeVectorOp - Given an operand of single-element vector type
7857/// (e.g. v1f32), convert it into the equivalent operation that returns a
7858/// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +00007859SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007860 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007861 SDNode *Node = Op.getNode();
Dale Johannesenc6be1102009-02-02 22:49:46 +00007862 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007863 MVT NewVT = Op.getValueType().getVectorElementType();
7864 assert(Op.getValueType().getVectorNumElements() == 1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007865
Dan Gohman7f321562007-06-25 16:23:39 +00007866 // See if we already scalarized it.
Dan Gohman475871a2008-07-27 21:46:04 +00007867 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohman7f321562007-06-25 16:23:39 +00007868 if (I != ScalarizedNodes.end()) return I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00007869
Dan Gohman475871a2008-07-27 21:46:04 +00007870 SDValue Result;
Chris Lattnerc7029802006-03-18 01:44:44 +00007871 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007872 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007873#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007874 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007875#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007876 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7877 case ISD::ADD:
7878 case ISD::FADD:
7879 case ISD::SUB:
7880 case ISD::FSUB:
7881 case ISD::MUL:
7882 case ISD::FMUL:
7883 case ISD::SDIV:
7884 case ISD::UDIV:
7885 case ISD::FDIV:
7886 case ISD::SREM:
7887 case ISD::UREM:
7888 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007889 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007890 case ISD::AND:
7891 case ISD::OR:
7892 case ISD::XOR:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007893 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007894 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007895 ScalarizeVectorOp(Node->getOperand(0)),
7896 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007897 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007898 case ISD::FNEG:
7899 case ISD::FABS:
7900 case ISD::FSQRT:
7901 case ISD::FSIN:
7902 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007903 case ISD::FLOG:
7904 case ISD::FLOG2:
7905 case ISD::FLOG10:
7906 case ISD::FEXP:
7907 case ISD::FEXP2:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007908 case ISD::FP_TO_SINT:
7909 case ISD::FP_TO_UINT:
7910 case ISD::SINT_TO_FP:
7911 case ISD::UINT_TO_FP:
7912 case ISD::SIGN_EXTEND:
7913 case ISD::ZERO_EXTEND:
7914 case ISD::ANY_EXTEND:
7915 case ISD::TRUNCATE:
7916 case ISD::FP_EXTEND:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007917 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007918 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007919 ScalarizeVectorOp(Node->getOperand(0)));
7920 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00007921 case ISD::CONVERT_RNDSAT: {
7922 SDValue Op0 = ScalarizeVectorOp(Node->getOperand(0));
Dale Johannesenc460ae92009-02-04 00:13:36 +00007923 Result = DAG.getConvertRndSat(NewVT, dl, Op0,
Mon P Wang77cdf302008-11-10 20:54:11 +00007924 DAG.getValueType(NewVT),
7925 DAG.getValueType(Op0.getValueType()),
7926 Node->getOperand(3),
7927 Node->getOperand(4),
7928 cast<CvtRndSatSDNode>(Node)->getCvtCode());
7929 break;
7930 }
Dan Gohman9e04c822007-10-12 14:13:46 +00007931 case ISD::FPOWI:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007932 case ISD::FP_ROUND:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007933 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007934 NewVT,
Dan Gohman9e04c822007-10-12 14:13:46 +00007935 ScalarizeVectorOp(Node->getOperand(0)),
7936 Node->getOperand(1));
7937 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007938 case ISD::LOAD: {
7939 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007940 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7941 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman7f8613e2008-08-14 20:04:46 +00007942 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007943 const Value *SV = LD->getSrcValue();
7944 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007945 MVT MemoryVT = LD->getMemoryVT();
7946 unsigned Alignment = LD->getAlignment();
7947 bool isVolatile = LD->isVolatile();
7948
7949 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesene8d72302009-02-06 23:05:02 +00007950 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Scott Michelfdc40a02009-02-17 22:15:04 +00007951
Dale Johannesenc6be1102009-02-02 22:49:46 +00007952 Result = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007953 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7954 MemoryVT.getVectorElementType(),
7955 isVolatile, Alignment);
Dan Gohman7f321562007-06-25 16:23:39 +00007956
Chris Lattnerc7029802006-03-18 01:44:44 +00007957 // Remember that we legalized the chain.
7958 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7959 break;
7960 }
Dan Gohman7f321562007-06-25 16:23:39 +00007961 case ISD::BUILD_VECTOR:
7962 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007963 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007964 case ISD::INSERT_VECTOR_ELT:
7965 // Returning the inserted scalar element.
7966 Result = Node->getOperand(1);
7967 break;
7968 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007969 assert(Node->getOperand(0).getValueType() == NewVT &&
7970 "Concat of non-legal vectors not yet supported!");
7971 Result = Node->getOperand(0);
7972 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007973 case ISD::VECTOR_SHUFFLE: {
7974 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman475871a2008-07-27 21:46:04 +00007975 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007976 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohman7f321562007-06-25 16:23:39 +00007977 Result = ScalarizeVectorOp(Node->getOperand(1));
7978 else
7979 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007980 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007981 }
7982 case ISD::EXTRACT_SUBVECTOR:
Scott Michelfdc40a02009-02-17 22:15:04 +00007983 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007984 Node->getOperand(0), Node->getOperand(1));
Dan Gohman65956352007-06-13 15:12:02 +00007985 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007986 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007987 SDValue Op0 = Op.getOperand(0);
Dan Gohman4e3fdf22009-05-11 18:30:42 +00007988 if (Op0.getValueType().isVector() &&
7989 Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007990 Op0 = ScalarizeVectorOp(Op0);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007991 Result = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007992 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007993 }
Dan Gohman7f321562007-06-25 16:23:39 +00007994 case ISD::SELECT:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007995 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007996 ScalarizeVectorOp(Op.getOperand(1)),
7997 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007998 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007999 case ISD::SELECT_CC:
Scott Michelfdc40a02009-02-17 22:15:04 +00008000 Result = DAG.getNode(ISD::SELECT_CC, dl, NewVT, Node->getOperand(0),
Chris Lattner80c1a562008-06-30 02:43:01 +00008001 Node->getOperand(1),
8002 ScalarizeVectorOp(Op.getOperand(2)),
8003 ScalarizeVectorOp(Op.getOperand(3)),
8004 Node->getOperand(4));
8005 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00008006 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00008007 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
8008 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008009 Result = DAG.getNode(ISD::SETCC, dl,
8010 TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00008011 Op0, Op1, Op.getOperand(2));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008012 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Result,
Nate Begeman0d1704b2008-05-12 23:09:43 +00008013 DAG.getConstant(-1ULL, NewVT),
8014 DAG.getConstant(0ULL, NewVT));
8015 break;
8016 }
Chris Lattnerc7029802006-03-18 01:44:44 +00008017 }
8018
8019 if (TLI.isTypeLegal(NewVT))
8020 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00008021 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
8022 assert(isNew && "Value already scalarized?");
Evan Cheng24ac4082008-11-24 07:09:49 +00008023 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00008024 return Result;
8025}
8026
Chris Lattner3e928bb2005-01-07 07:47:09 +00008027
Mon P Wang0c397192008-10-30 08:01:45 +00008028SDValue SelectionDAGLegalize::WidenVectorOp(SDValue Op, MVT WidenVT) {
8029 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(Op);
8030 if (I != WidenNodes.end()) return I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00008031
Mon P Wang0c397192008-10-30 08:01:45 +00008032 MVT VT = Op.getValueType();
8033 assert(VT.isVector() && "Cannot widen non-vector type!");
8034
8035 SDValue Result;
8036 SDNode *Node = Op.getNode();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008037 DebugLoc dl = Node->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008038 MVT EVT = VT.getVectorElementType();
8039
8040 unsigned NumElts = VT.getVectorNumElements();
8041 unsigned NewNumElts = WidenVT.getVectorNumElements();
8042 assert(NewNumElts > NumElts && "Cannot widen to smaller type!");
8043 assert(NewNumElts < 17);
8044
8045 // When widen is called, it is assumed that it is more efficient to use a
8046 // wide type. The default action is to widen to operation to a wider legal
8047 // vector type and then do the operation if it is legal by calling LegalizeOp
8048 // again. If there is no vector equivalent, we will unroll the operation, do
8049 // it, and rebuild the vector. If most of the operations are vectorizible to
8050 // the legal type, the resulting code will be more efficient. If this is not
8051 // the case, the resulting code will preform badly as we end up generating
8052 // code to pack/unpack the results. It is the function that calls widen
Mon P Wangf007a8b2008-11-06 05:31:54 +00008053 // that is responsible for seeing this doesn't happen.
Mon P Wang0c397192008-10-30 08:01:45 +00008054 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008055 default:
Mon P Wang0c397192008-10-30 08:01:45 +00008056#ifndef NDEBUG
8057 Node->dump(&DAG);
8058#endif
8059 assert(0 && "Unexpected operation in WidenVectorOp!");
8060 break;
8061 case ISD::CopyFromReg:
Mon P Wang49292f12008-11-15 06:05:52 +00008062 assert(0 && "CopyFromReg doesn't need widening!");
Mon P Wang0c397192008-10-30 08:01:45 +00008063 case ISD::Constant:
8064 case ISD::ConstantFP:
8065 // To build a vector of these elements, clients should call BuildVector
8066 // and with each element instead of creating a node with a vector type
8067 assert(0 && "Unexpected operation in WidenVectorOp!");
8068 case ISD::VAARG:
8069 // Variable Arguments with vector types doesn't make any sense to me
8070 assert(0 && "Unexpected operation in WidenVectorOp!");
8071 break;
Mon P Wang49292f12008-11-15 06:05:52 +00008072 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00008073 Result = DAG.getUNDEF(WidenVT);
Mon P Wang49292f12008-11-15 06:05:52 +00008074 break;
Mon P Wang0c397192008-10-30 08:01:45 +00008075 case ISD::BUILD_VECTOR: {
8076 // Build a vector with undefined for the new nodes
8077 SDValueVector NewOps(Node->op_begin(), Node->op_end());
8078 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesene8d72302009-02-06 23:05:02 +00008079 NewOps.push_back(DAG.getUNDEF(EVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008080 }
Evan Chenga87008d2009-02-25 22:49:59 +00008081 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT,
8082 &NewOps[0], NewOps.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008083 break;
8084 }
8085 case ISD::INSERT_VECTOR_ELT: {
8086 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008087 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, WidenVT, Tmp1,
Mon P Wang0c397192008-10-30 08:01:45 +00008088 Node->getOperand(1), Node->getOperand(2));
8089 break;
8090 }
8091 case ISD::VECTOR_SHUFFLE: {
8092 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8093 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
Nate Begeman9008ca62009-04-27 18:41:29 +00008094 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Node);
8095 SmallVector<int, 8> NewMask;
Mon P Wang0c397192008-10-30 08:01:45 +00008096 for (unsigned i = 0; i < NumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008097 int Idx = SVOp->getMaskElt(i);
8098 if (Idx < (int)NumElts)
8099 NewMask.push_back(Idx);
8100 else
8101 NewMask.push_back(Idx + NewNumElts - NumElts);
Mon P Wang0c397192008-10-30 08:01:45 +00008102 }
Nate Begeman9008ca62009-04-27 18:41:29 +00008103 for (unsigned i = NumElts; i < NewNumElts; ++i)
8104 NewMask.push_back(-1);
8105
8106 Result = DAG.getVectorShuffle(WidenVT, dl, Tmp1, Tmp2, &NewMask[0]);
Mon P Wang0c397192008-10-30 08:01:45 +00008107 break;
8108 }
8109 case ISD::LOAD: {
8110 // If the load widen returns true, we can use a single load for the
8111 // vector. Otherwise, it is returning a token factor for multiple
8112 // loads.
8113 SDValue TFOp;
8114 if (LoadWidenVectorOp(Result, TFOp, Op, WidenVT))
8115 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(1)));
8116 else
8117 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(0)));
8118 break;
8119 }
8120
8121 case ISD::BIT_CONVERT: {
8122 SDValue Tmp1 = Node->getOperand(0);
8123 // Converts between two different types so we need to determine
8124 // the correct widen type for the input operand.
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008125 MVT InVT = Tmp1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008126 unsigned WidenSize = WidenVT.getSizeInBits();
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008127 if (InVT.isVector()) {
8128 MVT InEltVT = InVT.getVectorElementType();
8129 unsigned InEltSize = InEltVT.getSizeInBits();
8130 assert(WidenSize % InEltSize == 0 &&
8131 "can not widen bit convert that are not multiple of element type");
8132 MVT NewInWidenVT = MVT::getVectorVT(InEltVT, WidenSize / InEltSize);
8133 Tmp1 = WidenVectorOp(Tmp1, NewInWidenVT);
8134 assert(Tmp1.getValueType().getSizeInBits() == WidenVT.getSizeInBits());
Dale Johannesenc6be1102009-02-02 22:49:46 +00008135 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Tmp1);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008136 } else {
8137 // If the result size is a multiple of the input size, widen the input
8138 // and then convert.
8139 unsigned InSize = InVT.getSizeInBits();
8140 assert(WidenSize % InSize == 0 &&
8141 "can not widen bit convert that are not multiple of element type");
8142 unsigned NewNumElts = WidenSize / InSize;
8143 SmallVector<SDValue, 16> Ops(NewNumElts);
Dale Johannesene8d72302009-02-06 23:05:02 +00008144 SDValue UndefVal = DAG.getUNDEF(InVT);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008145 Ops[0] = Tmp1;
8146 for (unsigned i = 1; i < NewNumElts; ++i)
8147 Ops[i] = UndefVal;
Mon P Wang0c397192008-10-30 08:01:45 +00008148
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008149 MVT NewInVT = MVT::getVectorVT(InVT, NewNumElts);
Evan Chenga87008d2009-02-25 22:49:59 +00008150 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, NewInVT, &Ops[0], NewNumElts);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008151 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008152 }
8153 break;
8154 }
8155
8156 case ISD::SINT_TO_FP:
8157 case ISD::UINT_TO_FP:
8158 case ISD::FP_TO_SINT:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008159 case ISD::FP_TO_UINT:
8160 case ISD::FP_ROUND: {
Mon P Wang0c397192008-10-30 08:01:45 +00008161 SDValue Tmp1 = Node->getOperand(0);
8162 // Converts between two different types so we need to determine
8163 // the correct widen type for the input operand.
8164 MVT TVT = Tmp1.getValueType();
8165 assert(TVT.isVector() && "can not widen non vector type");
8166 MVT TEVT = TVT.getVectorElementType();
8167 MVT TWidenVT = MVT::getVectorVT(TEVT, NewNumElts);
8168 Tmp1 = WidenVectorOp(Tmp1, TWidenVT);
8169 assert(Tmp1.getValueType().getVectorNumElements() == NewNumElts);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008170 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008171 break;
8172 }
8173
8174 case ISD::FP_EXTEND:
8175 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
8176 case ISD::TRUNCATE:
8177 case ISD::SIGN_EXTEND:
8178 case ISD::ZERO_EXTEND:
8179 case ISD::ANY_EXTEND:
Mon P Wang0c397192008-10-30 08:01:45 +00008180 case ISD::SIGN_EXTEND_INREG:
8181 case ISD::FABS:
8182 case ISD::FNEG:
8183 case ISD::FSQRT:
8184 case ISD::FSIN:
Mon P Wang49292f12008-11-15 06:05:52 +00008185 case ISD::FCOS:
8186 case ISD::CTPOP:
8187 case ISD::CTTZ:
8188 case ISD::CTLZ: {
Mon P Wang0c397192008-10-30 08:01:45 +00008189 // Unary op widening
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008190 SDValue Tmp1;
Mon P Wang0c397192008-10-30 08:01:45 +00008191 Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8192 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008193 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008194 break;
8195 }
Mon P Wang77cdf302008-11-10 20:54:11 +00008196 case ISD::CONVERT_RNDSAT: {
8197 SDValue RndOp = Node->getOperand(3);
8198 SDValue SatOp = Node->getOperand(4);
Mon P Wang77cdf302008-11-10 20:54:11 +00008199 SDValue SrcOp = Node->getOperand(0);
8200
8201 // Converts between two different types so we need to determine
8202 // the correct widen type for the input operand.
8203 MVT SVT = SrcOp.getValueType();
8204 assert(SVT.isVector() && "can not widen non vector type");
8205 MVT SEVT = SVT.getVectorElementType();
8206 MVT SWidenVT = MVT::getVectorVT(SEVT, NewNumElts);
8207
8208 SrcOp = WidenVectorOp(SrcOp, SWidenVT);
8209 assert(SrcOp.getValueType() == WidenVT);
8210 SDValue DTyOp = DAG.getValueType(WidenVT);
8211 SDValue STyOp = DAG.getValueType(SrcOp.getValueType());
8212 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
8213
Dale Johannesenc460ae92009-02-04 00:13:36 +00008214 Result = DAG.getConvertRndSat(WidenVT, dl, SrcOp, DTyOp, STyOp,
Mon P Wang77cdf302008-11-10 20:54:11 +00008215 RndOp, SatOp, CvtCode);
Mon P Wang77cdf302008-11-10 20:54:11 +00008216 break;
8217 }
Mon P Wang0c397192008-10-30 08:01:45 +00008218 case ISD::FPOW:
Scott Michelfdc40a02009-02-17 22:15:04 +00008219 case ISD::FPOWI:
Mon P Wang0c397192008-10-30 08:01:45 +00008220 case ISD::ADD:
8221 case ISD::SUB:
8222 case ISD::MUL:
8223 case ISD::MULHS:
8224 case ISD::MULHU:
8225 case ISD::AND:
8226 case ISD::OR:
8227 case ISD::XOR:
8228 case ISD::FADD:
8229 case ISD::FSUB:
8230 case ISD::FMUL:
8231 case ISD::SDIV:
8232 case ISD::SREM:
8233 case ISD::FDIV:
8234 case ISD::FREM:
8235 case ISD::FCOPYSIGN:
8236 case ISD::UDIV:
8237 case ISD::UREM:
8238 case ISD::BSWAP: {
8239 // Binary op widening
Mon P Wang0c397192008-10-30 08:01:45 +00008240 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8241 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8242 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008243 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008244 break;
8245 }
8246
8247 case ISD::SHL:
8248 case ISD::SRA:
8249 case ISD::SRL: {
Mon P Wang0c397192008-10-30 08:01:45 +00008250 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8251 assert(Tmp1.getValueType() == WidenVT);
Mon P Wangfb13f002008-12-02 07:35:08 +00008252 SDValue ShOp = Node->getOperand(1);
8253 MVT ShVT = ShOp.getValueType();
8254 MVT NewShVT = MVT::getVectorVT(ShVT.getVectorElementType(),
8255 WidenVT.getVectorNumElements());
8256 ShOp = WidenVectorOp(ShOp, NewShVT);
8257 assert(ShOp.getValueType() == NewShVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008258 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, ShOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008259 break;
8260 }
Mon P Wangfb13f002008-12-02 07:35:08 +00008261
Mon P Wang0c397192008-10-30 08:01:45 +00008262 case ISD::EXTRACT_VECTOR_ELT: {
8263 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8264 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008265 Result = DAG.getNode(Node->getOpcode(), dl, EVT, Tmp1, Node->getOperand(1));
Mon P Wang0c397192008-10-30 08:01:45 +00008266 break;
8267 }
8268 case ISD::CONCAT_VECTORS: {
8269 // We concurrently support only widen on a multiple of the incoming vector.
8270 // We could widen on a multiple of the incoming operand if necessary.
8271 unsigned NumConcat = NewNumElts / NumElts;
8272 assert(NewNumElts % NumElts == 0 && "Can widen only a multiple of vector");
Dale Johannesene8d72302009-02-06 23:05:02 +00008273 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang0c397192008-10-30 08:01:45 +00008274 SmallVector<SDValue, 8> MOps;
8275 MOps.push_back(Op);
8276 for (unsigned i = 1; i != NumConcat; ++i) {
8277 MOps.push_back(UndefVal);
8278 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00008279 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008280 &MOps[0], MOps.size()));
8281 break;
8282 }
8283 case ISD::EXTRACT_SUBVECTOR: {
Mon P Wang49292f12008-11-15 06:05:52 +00008284 SDValue Tmp1 = Node->getOperand(0);
8285 SDValue Idx = Node->getOperand(1);
8286 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
8287 if (CIdx && CIdx->getZExtValue() == 0) {
8288 // Since we are access the start of the vector, the incoming
8289 // vector type might be the proper.
8290 MVT Tmp1VT = Tmp1.getValueType();
8291 if (Tmp1VT == WidenVT)
8292 return Tmp1;
8293 else {
8294 unsigned Tmp1VTNumElts = Tmp1VT.getVectorNumElements();
8295 if (Tmp1VTNumElts < NewNumElts)
8296 Result = WidenVectorOp(Tmp1, WidenVT);
8297 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00008298 Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, WidenVT, Tmp1, Idx);
Mon P Wang49292f12008-11-15 06:05:52 +00008299 }
8300 } else if (NewNumElts % NumElts == 0) {
8301 // Widen the extracted subvector.
8302 unsigned NumConcat = NewNumElts / NumElts;
Dale Johannesene8d72302009-02-06 23:05:02 +00008303 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang49292f12008-11-15 06:05:52 +00008304 SmallVector<SDValue, 8> MOps;
8305 MOps.push_back(Op);
8306 for (unsigned i = 1; i != NumConcat; ++i) {
8307 MOps.push_back(UndefVal);
8308 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00008309 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang49292f12008-11-15 06:05:52 +00008310 &MOps[0], MOps.size()));
8311 } else {
8312 assert(0 && "can not widen extract subvector");
8313 // This could be implemented using insert and build vector but I would
8314 // like to see when this happens.
8315 }
Mon P Wang0c397192008-10-30 08:01:45 +00008316 break;
8317 }
8318
8319 case ISD::SELECT: {
Mon P Wang0c397192008-10-30 08:01:45 +00008320 // Determine new condition widen type and widen
8321 SDValue Cond1 = Node->getOperand(0);
8322 MVT CondVT = Cond1.getValueType();
8323 assert(CondVT.isVector() && "can not widen non vector type");
8324 MVT CondEVT = CondVT.getVectorElementType();
8325 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8326 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8327 assert(Cond1.getValueType() == CondWidenVT && "Condition not widen");
8328
8329 SDValue Tmp1 = WidenVectorOp(Node->getOperand(1), WidenVT);
8330 SDValue Tmp2 = WidenVectorOp(Node->getOperand(2), WidenVT);
8331 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008332 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008333 break;
8334 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008335
Mon P Wang0c397192008-10-30 08:01:45 +00008336 case ISD::SELECT_CC: {
Mon P Wang0c397192008-10-30 08:01:45 +00008337 // Determine new condition widen type and widen
8338 SDValue Cond1 = Node->getOperand(0);
8339 SDValue Cond2 = Node->getOperand(1);
8340 MVT CondVT = Cond1.getValueType();
8341 assert(CondVT.isVector() && "can not widen non vector type");
8342 assert(CondVT == Cond2.getValueType() && "mismatch lhs/rhs");
8343 MVT CondEVT = CondVT.getVectorElementType();
8344 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8345 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8346 Cond2 = WidenVectorOp(Cond2, CondWidenVT);
8347 assert(Cond1.getValueType() == CondWidenVT &&
8348 Cond2.getValueType() == CondWidenVT && "condition not widen");
8349
8350 SDValue Tmp1 = WidenVectorOp(Node->getOperand(2), WidenVT);
8351 SDValue Tmp2 = WidenVectorOp(Node->getOperand(3), WidenVT);
8352 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT &&
8353 "operands not widen");
Dale Johannesenc6be1102009-02-02 22:49:46 +00008354 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Cond2, Tmp1,
Mon P Wang0c397192008-10-30 08:01:45 +00008355 Tmp2, Node->getOperand(4));
Mon P Wang0c397192008-10-30 08:01:45 +00008356 break;
Mon P Wang2eb13c32008-10-30 18:21:52 +00008357 }
8358 case ISD::VSETCC: {
8359 // Determine widen for the operand
8360 SDValue Tmp1 = Node->getOperand(0);
8361 MVT TmpVT = Tmp1.getValueType();
8362 assert(TmpVT.isVector() && "can not widen non vector type");
8363 MVT TmpEVT = TmpVT.getVectorElementType();
8364 MVT TmpWidenVT = MVT::getVectorVT(TmpEVT, NewNumElts);
8365 Tmp1 = WidenVectorOp(Tmp1, TmpWidenVT);
8366 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), TmpWidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008367 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2,
Mon P Wang2eb13c32008-10-30 18:21:52 +00008368 Node->getOperand(2));
Mon P Wang0c397192008-10-30 08:01:45 +00008369 break;
8370 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008371 case ISD::ATOMIC_CMP_SWAP:
8372 case ISD::ATOMIC_LOAD_ADD:
8373 case ISD::ATOMIC_LOAD_SUB:
8374 case ISD::ATOMIC_LOAD_AND:
8375 case ISD::ATOMIC_LOAD_OR:
8376 case ISD::ATOMIC_LOAD_XOR:
8377 case ISD::ATOMIC_LOAD_NAND:
8378 case ISD::ATOMIC_LOAD_MIN:
8379 case ISD::ATOMIC_LOAD_MAX:
8380 case ISD::ATOMIC_LOAD_UMIN:
8381 case ISD::ATOMIC_LOAD_UMAX:
8382 case ISD::ATOMIC_SWAP: {
Mon P Wang0c397192008-10-30 08:01:45 +00008383 // For now, we assume that using vectors for these operations don't make
8384 // much sense so we just split it. We return an empty result
8385 SDValue X, Y;
8386 SplitVectorOp(Op, X, Y);
8387 return Result;
8388 break;
8389 }
8390
8391 } // end switch (Node->getOpcode())
8392
Scott Michelfdc40a02009-02-17 22:15:04 +00008393 assert(Result.getNode() && "Didn't set a result!");
Mon P Wang0c397192008-10-30 08:01:45 +00008394 if (Result != Op)
8395 Result = LegalizeOp(Result);
8396
Mon P Wangf007a8b2008-11-06 05:31:54 +00008397 AddWidenedOperand(Op, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008398 return Result;
8399}
8400
8401// Utility function to find a legal vector type and its associated element
8402// type from a preferred width and whose vector type must be the same size
8403// as the VVT.
8404// TLI: Target lowering used to determine legal types
8405// Width: Preferred width of element type
8406// VVT: Vector value type whose size we must match.
8407// Returns VecEVT and EVT - the vector type and its associated element type
Dan Gohman0d137d72009-01-15 16:43:02 +00008408static void FindWidenVecType(const TargetLowering &TLI, unsigned Width, MVT VVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008409 MVT& EVT, MVT& VecEVT) {
8410 // We start with the preferred width, make it a power of 2 and see if
8411 // we can find a vector type of that width. If not, we reduce it by
8412 // another power of 2. If we have widen the type, a vector of bytes should
8413 // always be legal.
8414 assert(TLI.isTypeLegal(VVT));
8415 unsigned EWidth = Width + 1;
8416 do {
8417 assert(EWidth > 0);
8418 EWidth = (1 << Log2_32(EWidth-1));
8419 EVT = MVT::getIntegerVT(EWidth);
8420 unsigned NumEVT = VVT.getSizeInBits()/EWidth;
8421 VecEVT = MVT::getVectorVT(EVT, NumEVT);
8422 } while (!TLI.isTypeLegal(VecEVT) ||
8423 VVT.getSizeInBits() != VecEVT.getSizeInBits());
8424}
8425
8426SDValue SelectionDAGLegalize::genWidenVectorLoads(SDValueVector& LdChain,
8427 SDValue Chain,
8428 SDValue BasePtr,
8429 const Value *SV,
8430 int SVOffset,
8431 unsigned Alignment,
8432 bool isVolatile,
8433 unsigned LdWidth,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008434 MVT ResType,
8435 DebugLoc dl) {
Mon P Wang0c397192008-10-30 08:01:45 +00008436 // We assume that we have good rules to handle loading power of two loads so
8437 // we break down the operations to power of 2 loads. The strategy is to
8438 // load the largest power of 2 that we can easily transform to a legal vector
8439 // and then insert into that vector, and the cast the result into the legal
8440 // vector that we want. This avoids unnecessary stack converts.
8441 // TODO: If the Ldwidth is legal, alignment is the same as the LdWidth, and
8442 // the load is nonvolatile, we an use a wider load for the value.
8443 // Find a vector length we can load a large chunk
8444 MVT EVT, VecEVT;
8445 unsigned EVTWidth;
8446 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8447 EVTWidth = EVT.getSizeInBits();
8448
Dale Johannesenc6be1102009-02-02 22:49:46 +00008449 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV, SVOffset,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008450 isVolatile, Alignment);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008451 SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecEVT, LdOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008452 LdChain.push_back(LdOp.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00008453
Mon P Wang0c397192008-10-30 08:01:45 +00008454 // Check if we can load the element with one instruction
8455 if (LdWidth == EVTWidth) {
Dale Johannesenc6be1102009-02-02 22:49:46 +00008456 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008457 }
8458
8459 // The vector element order is endianness dependent.
8460 unsigned Idx = 1;
8461 LdWidth -= EVTWidth;
8462 unsigned Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008463
Mon P Wang0c397192008-10-30 08:01:45 +00008464 while (LdWidth > 0) {
8465 unsigned Increment = EVTWidth / 8;
8466 Offset += Increment;
Dale Johannesenc6be1102009-02-02 22:49:46 +00008467 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang0c397192008-10-30 08:01:45 +00008468 DAG.getIntPtrConstant(Increment));
8469
8470 if (LdWidth < EVTWidth) {
8471 // Our current type we are using is too large, use a smaller size by
8472 // using a smaller power of 2
8473 unsigned oEVTWidth = EVTWidth;
8474 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8475 EVTWidth = EVT.getSizeInBits();
8476 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008477 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008478 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008479 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008480
Dale Johannesenc6be1102009-02-02 22:49:46 +00008481 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008482 SVOffset+Offset, isVolatile,
8483 MinAlign(Alignment, Offset));
Mon P Wang0c397192008-10-30 08:01:45 +00008484 LdChain.push_back(LdOp.getValue(1));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008485 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecEVT, VecOp, LdOp,
Mon P Wang0c397192008-10-30 08:01:45 +00008486 DAG.getIntPtrConstant(Idx++));
Scott Michelfdc40a02009-02-17 22:15:04 +00008487
Mon P Wang0c397192008-10-30 08:01:45 +00008488 LdWidth -= EVTWidth;
8489 }
8490
Dale Johannesenc6be1102009-02-02 22:49:46 +00008491 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008492}
8493
8494bool SelectionDAGLegalize::LoadWidenVectorOp(SDValue& Result,
8495 SDValue& TFOp,
8496 SDValue Op,
8497 MVT NVT) {
8498 // TODO: Add support for ConcatVec and the ability to load many vector
8499 // types (e.g., v4i8). This will not work when a vector register
8500 // to memory mapping is strange (e.g., vector elements are not
8501 // stored in some sequential order).
8502
Scott Michelfdc40a02009-02-17 22:15:04 +00008503 // It must be true that the widen vector type is bigger than where
Mon P Wang0c397192008-10-30 08:01:45 +00008504 // we need to load from.
8505 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
8506 MVT LdVT = LD->getMemoryVT();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008507 DebugLoc dl = LD->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008508 assert(LdVT.isVector() && NVT.isVector());
8509 assert(LdVT.getVectorElementType() == NVT.getVectorElementType());
Scott Michelfdc40a02009-02-17 22:15:04 +00008510
Mon P Wang0c397192008-10-30 08:01:45 +00008511 // Load information
8512 SDValue Chain = LD->getChain();
8513 SDValue BasePtr = LD->getBasePtr();
8514 int SVOffset = LD->getSrcValueOffset();
8515 unsigned Alignment = LD->getAlignment();
8516 bool isVolatile = LD->isVolatile();
8517 const Value *SV = LD->getSrcValue();
8518 unsigned int LdWidth = LdVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00008519
Mon P Wang0c397192008-10-30 08:01:45 +00008520 // Load value as a large register
8521 SDValueVector LdChain;
8522 Result = genWidenVectorLoads(LdChain, Chain, BasePtr, SV, SVOffset,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008523 Alignment, isVolatile, LdWidth, NVT, dl);
Mon P Wang0c397192008-10-30 08:01:45 +00008524
8525 if (LdChain.size() == 1) {
8526 TFOp = LdChain[0];
8527 return true;
8528 }
8529 else {
Scott Michelfdc40a02009-02-17 22:15:04 +00008530 TFOp=DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008531 &LdChain[0], LdChain.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008532 return false;
8533 }
8534}
8535
8536
8537void SelectionDAGLegalize::genWidenVectorStores(SDValueVector& StChain,
8538 SDValue Chain,
8539 SDValue BasePtr,
8540 const Value *SV,
8541 int SVOffset,
8542 unsigned Alignment,
8543 bool isVolatile,
Mon P Wang49292f12008-11-15 06:05:52 +00008544 SDValue ValOp,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008545 unsigned StWidth,
8546 DebugLoc dl) {
Mon P Wang0c397192008-10-30 08:01:45 +00008547 // Breaks the stores into a series of power of 2 width stores. For any
8548 // width, we convert the vector to the vector of element size that we
8549 // want to store. This avoids requiring a stack convert.
Scott Michelfdc40a02009-02-17 22:15:04 +00008550
Mon P Wang0c397192008-10-30 08:01:45 +00008551 // Find a width of the element type we can store with
8552 MVT VVT = ValOp.getValueType();
8553 MVT EVT, VecEVT;
8554 unsigned EVTWidth;
8555 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8556 EVTWidth = EVT.getSizeInBits();
8557
Dale Johannesenc6be1102009-02-02 22:49:46 +00008558 SDValue VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, ValOp);
8559 SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wange0b436a2008-11-06 22:52:21 +00008560 DAG.getIntPtrConstant(0));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008561 SDValue StOp = DAG.getStore(Chain, dl, EOp, BasePtr, SV, SVOffset,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008562 isVolatile, Alignment);
Mon P Wang0c397192008-10-30 08:01:45 +00008563 StChain.push_back(StOp);
8564
8565 // Check if we are done
8566 if (StWidth == EVTWidth) {
8567 return;
8568 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008569
Mon P Wang0c397192008-10-30 08:01:45 +00008570 unsigned Idx = 1;
8571 StWidth -= EVTWidth;
8572 unsigned Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008573
Mon P Wang0c397192008-10-30 08:01:45 +00008574 while (StWidth > 0) {
8575 unsigned Increment = EVTWidth / 8;
8576 Offset += Increment;
Dale Johannesenc6be1102009-02-02 22:49:46 +00008577 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang0c397192008-10-30 08:01:45 +00008578 DAG.getIntPtrConstant(Increment));
Scott Michelfdc40a02009-02-17 22:15:04 +00008579
Mon P Wang0c397192008-10-30 08:01:45 +00008580 if (StWidth < EVTWidth) {
8581 // Our current type we are using is too large, use a smaller size by
8582 // using a smaller power of 2
8583 unsigned oEVTWidth = EVTWidth;
8584 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8585 EVTWidth = EVT.getSizeInBits();
8586 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008587 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008588 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008589 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008590
Dale Johannesenc6be1102009-02-02 22:49:46 +00008591 EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang49292f12008-11-15 06:05:52 +00008592 DAG.getIntPtrConstant(Idx++));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008593 StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr, SV,
Mon P Wang0c397192008-10-30 08:01:45 +00008594 SVOffset + Offset, isVolatile,
8595 MinAlign(Alignment, Offset)));
8596 StWidth -= EVTWidth;
8597 }
8598}
8599
8600
8601SDValue SelectionDAGLegalize::StoreWidenVectorOp(StoreSDNode *ST,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008602 SDValue Chain,
8603 SDValue BasePtr) {
Mon P Wang0c397192008-10-30 08:01:45 +00008604 // TODO: It might be cleaner if we can use SplitVector and have more legal
8605 // vector types that can be stored into memory (e.g., v4xi8 can
8606 // be stored as a word). This will not work when a vector register
8607 // to memory mapping is strange (e.g., vector elements are not
8608 // stored in some sequential order).
Scott Michelfdc40a02009-02-17 22:15:04 +00008609
Mon P Wang0c397192008-10-30 08:01:45 +00008610 MVT StVT = ST->getMemoryVT();
8611 SDValue ValOp = ST->getValue();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008612 DebugLoc dl = ST->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008613
8614 // Check if we have widen this node with another value
8615 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(ValOp);
8616 if (I != WidenNodes.end())
8617 ValOp = I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00008618
Mon P Wang0c397192008-10-30 08:01:45 +00008619 MVT VVT = ValOp.getValueType();
8620
8621 // It must be true that we the widen vector type is bigger than where
8622 // we need to store.
8623 assert(StVT.isVector() && VVT.isVector());
Dan Gohmanf83c81a2009-01-28 03:10:52 +00008624 assert(StVT.bitsLT(VVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008625 assert(StVT.getVectorElementType() == VVT.getVectorElementType());
8626
8627 // Store value
8628 SDValueVector StChain;
8629 genWidenVectorStores(StChain, Chain, BasePtr, ST->getSrcValue(),
8630 ST->getSrcValueOffset(), ST->getAlignment(),
Dale Johannesenc6be1102009-02-02 22:49:46 +00008631 ST->isVolatile(), ValOp, StVT.getSizeInBits(), dl);
Mon P Wang0c397192008-10-30 08:01:45 +00008632 if (StChain.size() == 1)
8633 return StChain[0];
Scott Michelfdc40a02009-02-17 22:15:04 +00008634 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00008635 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
8636 &StChain[0], StChain.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008637}
8638
8639
Chris Lattner3e928bb2005-01-07 07:47:09 +00008640// SelectionDAG::Legalize - This is the entry point for the file.
8641//
Bill Wendling98a366d2009-04-29 23:29:43 +00008642void SelectionDAG::Legalize(bool TypesNeedLegalizing,
8643 CodeGenOpt::Level OptLevel) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00008644 /// run - This is the main entry point to this class.
8645 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008646 SelectionDAGLegalize(*this, TypesNeedLegalizing, OptLevel).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00008647}
8648