blob: 25305ea243ef910feb893793e65bb46b71eb7aa7 [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 Wendlingbe8cc2a2009-04-29 00:15:41 +000058 unsigned 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 Wendlingbe8cc2a2009-04-29 00:15:41 +0000142 unsigned 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 Begeman9008ca62009-04-27 18:41:29 +0000270 /// promoteShuffle - Promote a shuffle mask of a vector VT to perform the
271 /// same shuffle on a vector of NVT. Must not create an illegal shuffle mask.
272 SDValue promoteShuffle(MVT NVT, MVT VT, DebugLoc dl, SDValue N1, SDValue N2,
273 SmallVectorImpl<int> &Mask) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000274
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000275 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000276 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000277
Dale Johannesenbb5da912009-02-02 20:41:04 +0000278 void LegalizeSetCCOperands(SDValue &LHS, SDValue &RHS, SDValue &CC,
279 DebugLoc dl);
280 void LegalizeSetCCCondCode(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
281 DebugLoc dl);
282 void LegalizeSetCC(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
283 DebugLoc dl) {
284 LegalizeSetCCOperands(LHS, RHS, CC, dl);
285 LegalizeSetCCCondCode(VT, LHS, RHS, CC, dl);
Evan Cheng7f042682008-10-15 02:05:31 +0000286 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000287
Dan Gohman475871a2008-07-27 21:46:04 +0000288 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
289 SDValue &Hi);
Dale Johannesenaf435272009-02-02 19:03:57 +0000290 SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl);
Chris Lattnercad063f2005-07-16 00:19:57 +0000291
Dale Johannesen8a782a22009-02-02 22:12:50 +0000292 SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000293 SDValue ExpandBUILD_VECTOR(SDNode *Node);
294 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Scott Michelfdc40a02009-02-17 22:15:04 +0000295 SDValue LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +0000296 SDValue Op, DebugLoc dl);
297 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT,
298 DebugLoc dl);
299 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned,
300 DebugLoc dl);
301 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned,
302 DebugLoc dl);
Jeff Cohen00b168892005-07-27 06:12:32 +0000303
Dale Johannesen8a782a22009-02-02 22:12:50 +0000304 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
305 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000306 bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +0000307 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000308 void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +0000309 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000310
Dan Gohman475871a2008-07-27 21:46:04 +0000311 SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op);
312 SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000313};
314}
315
Nate Begeman9008ca62009-04-27 18:41:29 +0000316/// promoteShuffle - Promote a shuffle mask of a vector VT to perform the
317/// same shuffle on a vector of NVT. Must not create an illegal shuffle mask.
318/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
319SDValue SelectionDAGLegalize::promoteShuffle(MVT NVT, MVT VT, DebugLoc dl,
320 SDValue N1, SDValue N2,
321 SmallVectorImpl<int> &Mask) const {
322 MVT EltVT = NVT.getVectorElementType();
323 int NumMaskElts = VT.getVectorNumElements();
324 int NumDestElts = NVT.getVectorNumElements();
325 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner4352cc92006-04-04 17:23:26 +0000326
Nate Begeman9008ca62009-04-27 18:41:29 +0000327 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
328
329 if (NumEltsGrowth == 1)
330 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
331
332 SmallVector<int, 8> NewMask;
333 for (int i = 0; i != NumMaskElts; ++i) {
334 int Idx = Mask[i];
335 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
336 if (Idx < 0)
337 NewMask.push_back(-1);
338 else
339 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner4352cc92006-04-04 17:23:26 +0000340 }
Chris Lattner4352cc92006-04-04 17:23:26 +0000341 }
Nate Begeman9008ca62009-04-27 18:41:29 +0000342 assert((int)NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
343 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
344 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner4352cc92006-04-04 17:23:26 +0000345}
346
Bill Wendling5aa49772009-02-24 02:35:30 +0000347SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag,
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000348 bool types, unsigned ol)
349 : TLI(dag.getTargetLoweringInfo()), DAG(dag), OptLevel(ol),
350 TypesNeedLegalizing(types), ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000351 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000352 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000353}
354
Chris Lattner3e928bb2005-01-07 07:47:09 +0000355void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000356 LastCALLSEQ_END = DAG.getEntryNode();
357 IsLegalizingCall = false;
Mon P Wange5ab34e2009-02-04 19:38:14 +0000358 IsLegalizingCallArgs = false;
359
Chris Lattnerab510a72005-10-02 17:49:46 +0000360 // The legalize process is inherently a bottom-up recursive process (users
361 // legalize their uses before themselves). Given infinite stack space, we
362 // could just start legalizing on the root and traverse the whole graph. In
363 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000364 // blocks. To avoid this problem, compute an ordering of the nodes where each
365 // node is only legalized after all of its operands are legalized.
Dan Gohmanf06c8352008-09-30 18:30:35 +0000366 DAG.AssignTopologicalOrder();
367 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
368 E = prior(DAG.allnodes_end()); I != next(E); ++I)
369 HandleOp(SDValue(I, 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000370
371 // Finally, it's possible the root changed. Get the new root.
Dan Gohman475871a2008-07-27 21:46:04 +0000372 SDValue OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000373 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
374 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000375
376 ExpandedNodes.clear();
377 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000378 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000379 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000380 ScalarizedNodes.clear();
Mon P Wang0c397192008-10-30 08:01:45 +0000381 WidenNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000382
383 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000384 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000385}
386
Chris Lattner6831a812006-02-13 09:18:02 +0000387
388/// FindCallEndFromCallStart - Given a chained node that is part of a call
389/// sequence, find the CALLSEQ_END node that terminates the call sequence.
390static SDNode *FindCallEndFromCallStart(SDNode *Node) {
391 if (Node->getOpcode() == ISD::CALLSEQ_END)
392 return Node;
393 if (Node->use_empty())
394 return 0; // No CallSeqEnd
Scott Michelfdc40a02009-02-17 22:15:04 +0000395
Chris Lattner6831a812006-02-13 09:18:02 +0000396 // The chain is usually at the end.
Dan Gohman475871a2008-07-27 21:46:04 +0000397 SDValue TheChain(Node, Node->getNumValues()-1);
Chris Lattner6831a812006-02-13 09:18:02 +0000398 if (TheChain.getValueType() != MVT::Other) {
399 // Sometimes it's at the beginning.
Dan Gohman475871a2008-07-27 21:46:04 +0000400 TheChain = SDValue(Node, 0);
Chris Lattner6831a812006-02-13 09:18:02 +0000401 if (TheChain.getValueType() != MVT::Other) {
402 // Otherwise, hunt for it.
403 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
404 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman475871a2008-07-27 21:46:04 +0000405 TheChain = SDValue(Node, i);
Chris Lattner6831a812006-02-13 09:18:02 +0000406 break;
407 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000408
409 // Otherwise, we walked into a node without a chain.
Chris Lattner6831a812006-02-13 09:18:02 +0000410 if (TheChain.getValueType() != MVT::Other)
411 return 0;
412 }
413 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000414
Chris Lattner6831a812006-02-13 09:18:02 +0000415 for (SDNode::use_iterator UI = Node->use_begin(),
416 E = Node->use_end(); UI != E; ++UI) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000417
Chris Lattner6831a812006-02-13 09:18:02 +0000418 // Make sure to only follow users of our token chain.
Dan Gohman89684502008-07-27 20:43:25 +0000419 SDNode *User = *UI;
Chris Lattner6831a812006-02-13 09:18:02 +0000420 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
421 if (User->getOperand(i) == TheChain)
422 if (SDNode *Result = FindCallEndFromCallStart(User))
423 return Result;
424 }
425 return 0;
426}
427
Scott Michelfdc40a02009-02-17 22:15:04 +0000428/// FindCallStartFromCallEnd - Given a chained node that is part of a call
Chris Lattner6831a812006-02-13 09:18:02 +0000429/// sequence, find the CALLSEQ_START node that initiates the call sequence.
430static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
431 assert(Node && "Didn't find callseq_start for a call??");
432 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Scott Michelfdc40a02009-02-17 22:15:04 +0000433
Chris Lattner6831a812006-02-13 09:18:02 +0000434 assert(Node->getOperand(0).getValueType() == MVT::Other &&
435 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000436 return FindCallStartFromCallEnd(Node->getOperand(0).getNode());
Chris Lattner6831a812006-02-13 09:18:02 +0000437}
438
439/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
Scott Michelfdc40a02009-02-17 22:15:04 +0000440/// see if any uses can reach Dest. If no dest operands can get to dest,
Chris Lattner6831a812006-02-13 09:18:02 +0000441/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000442///
443/// Keep track of the nodes we fine that actually do lead to Dest in
444/// NodesLeadingTo. This avoids retraversing them exponential number of times.
445///
446bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000447 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000448 if (N == Dest) return true; // N certainly leads to Dest :)
Scott Michelfdc40a02009-02-17 22:15:04 +0000449
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000450 // If we've already processed this node and it does lead to Dest, there is no
451 // need to reprocess it.
452 if (NodesLeadingTo.count(N)) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +0000453
Chris Lattner6831a812006-02-13 09:18:02 +0000454 // If the first result of this node has been already legalized, then it cannot
455 // reach N.
456 switch (getTypeAction(N->getValueType(0))) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000457 case Legal:
Dan Gohman475871a2008-07-27 21:46:04 +0000458 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000459 break;
460 case Promote:
Dan Gohman475871a2008-07-27 21:46:04 +0000461 if (PromotedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000462 break;
463 case Expand:
Dan Gohman475871a2008-07-27 21:46:04 +0000464 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000465 break;
466 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000467
Chris Lattner6831a812006-02-13 09:18:02 +0000468 // Okay, this node has not already been legalized. Check and legalize all
469 // operands. If none lead to Dest, then we can legalize this node.
470 bool OperandsLeadToDest = false;
471 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
472 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Gabor Greifba36cb52008-08-28 21:40:38 +0000473 LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000474
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000475 if (OperandsLeadToDest) {
476 NodesLeadingTo.insert(N);
477 return true;
478 }
Chris Lattner6831a812006-02-13 09:18:02 +0000479
480 // Okay, this node looks safe, legalize it and return false.
Dan Gohman475871a2008-07-27 21:46:04 +0000481 HandleOp(SDValue(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000482 return false;
483}
484
Mon P Wang0c397192008-10-30 08:01:45 +0000485/// HandleOp - Legalize, Promote, Widen, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000486/// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000487void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000488 MVT VT = Op.getValueType();
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000489 // If the type legalizer was run then we should never see any illegal result
490 // types here except for target constants (the type legalizer does not touch
Mon P Wang87c8a8f2008-12-18 20:03:17 +0000491 // those) or for build vector used as a mask for a vector shuffle.
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000492 assert((TypesNeedLegalizing || getTypeAction(VT) == Legal ||
Duncan Sands9771b912009-04-27 19:33:03 +0000493 IsLegalizingCallArgs || Op.getOpcode() == ISD::TargetConstant) &&
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000494 "Illegal type introduced after type legalization?");
Dan Gohman7f321562007-06-25 16:23:39 +0000495 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000496 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000497 case Legal: (void)LegalizeOp(Op); break;
Mon P Wang0c397192008-10-30 08:01:45 +0000498 case Promote:
499 if (!VT.isVector()) {
500 (void)PromoteOp(Op);
501 break;
502 }
503 else {
504 // See if we can widen otherwise use Expand to either scalarize or split
505 MVT WidenVT = TLI.getWidenVectorType(VT);
506 if (WidenVT != MVT::Other) {
507 (void) WidenVectorOp(Op, WidenVT);
508 break;
509 }
510 // else fall thru to expand since we can't widen the vector
511 }
Chris Lattnerc7029802006-03-18 01:44:44 +0000512 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000513 if (!VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +0000514 // If this is an illegal scalar, expand it into its two component
515 // pieces.
Dan Gohman475871a2008-07-27 21:46:04 +0000516 SDValue X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000517 if (Op.getOpcode() == ISD::TargetConstant)
518 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000519 ExpandOp(Op, X, Y);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000520 } else if (VT.getVectorNumElements() == 1) {
Dan Gohman7f321562007-06-25 16:23:39 +0000521 // If this is an illegal single element vector, convert it to a
522 // scalar operation.
523 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000524 } else {
Mon P Wang0c397192008-10-30 08:01:45 +0000525 // This is an illegal multiple element vector.
Dan Gohman7f321562007-06-25 16:23:39 +0000526 // Split it in half and legalize both parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000527 SDValue X, Y;
Dan Gohman7f321562007-06-25 16:23:39 +0000528 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000529 }
530 break;
531 }
532}
Chris Lattner6831a812006-02-13 09:18:02 +0000533
Evan Cheng9f877882006-12-13 20:57:08 +0000534/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
535/// a load from the constant pool.
Dan Gohman475871a2008-07-27 21:46:04 +0000536static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Dan Gohman0d137d72009-01-15 16:43:02 +0000537 SelectionDAG &DAG, const TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000538 bool Extend = false;
Dale Johannesen33c960f2009-02-04 20:06:27 +0000539 DebugLoc dl = CFP->getDebugLoc();
Evan Cheng00495212006-12-12 21:32:44 +0000540
541 // If a FP immediate is precise when represented as a float and if the
542 // target can do an extending load from float to double, we put it into
543 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000544 // double. This shrinks FP constants and canonicalizes them for targets where
545 // an FP extending load is the same cost as a normal load (such as on the x87
546 // fp stack or PPC FP unit).
Duncan Sands83ec4b62008-06-06 12:08:01 +0000547 MVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000548 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000549 if (!UseCP) {
Chris Lattnerd2e936a2009-03-08 01:47:41 +0000550 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000551 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000552 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000553 }
554
Duncan Sands83ec4b62008-06-06 12:08:01 +0000555 MVT OrigVT = VT;
556 MVT SVT = VT;
Evan Chengef120572008-03-04 08:05:30 +0000557 while (SVT != MVT::f32) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000558 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Chengef120572008-03-04 08:05:30 +0000559 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
560 // Only do this if the target has a native EXTLOAD instruction from
561 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000562 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000563 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000564 const Type *SType = SVT.getTypeForMVT();
Evan Chengef120572008-03-04 08:05:30 +0000565 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
566 VT = SVT;
567 Extend = true;
568 }
Evan Cheng00495212006-12-12 21:32:44 +0000569 }
570
Dan Gohman475871a2008-07-27 21:46:04 +0000571 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +0000572 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Chengef120572008-03-04 08:05:30 +0000573 if (Extend)
Dale Johannesen33c960f2009-02-04 20:06:27 +0000574 return DAG.getExtLoad(ISD::EXTLOAD, dl,
Dale Johannesen39355f92009-02-04 02:34:38 +0000575 OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000576 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman50284d82008-09-16 22:05:41 +0000577 0, VT, false, Alignment);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000578 return DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +0000579 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +0000580}
581
Chris Lattner6831a812006-02-13 09:18:02 +0000582
Evan Cheng912095b2007-01-04 21:56:39 +0000583/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
584/// operations.
585static
Dan Gohman475871a2008-07-27 21:46:04 +0000586SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
Dan Gohman0d137d72009-01-15 16:43:02 +0000587 SelectionDAG &DAG,
588 const TargetLowering &TLI) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000589 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000590 MVT VT = Node->getValueType(0);
591 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000592 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
593 "fcopysign expansion only supported for f32 and f64");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000594 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000595
Evan Cheng912095b2007-01-04 21:56:39 +0000596 // First get the sign bit of second operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000597 SDValue Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000598 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
599 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000600 Mask1 = DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT, Mask1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000601 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT,
Dale Johannesenbb5da912009-02-02 20:41:04 +0000602 Node->getOperand(1));
603 SignBit = DAG.getNode(ISD::AND, dl, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000604 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000605 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng912095b2007-01-04 21:56:39 +0000606 if (SizeDiff > 0) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000607 SignBit = DAG.getNode(ISD::SRL, dl, SrcNVT, SignBit,
Evan Cheng912095b2007-01-04 21:56:39 +0000608 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000609 SignBit = DAG.getNode(ISD::TRUNCATE, dl, NVT, SignBit);
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000610 } else if (SizeDiff < 0) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000611 SignBit = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, SignBit);
612 SignBit = DAG.getNode(ISD::SHL, dl, NVT, SignBit,
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000613 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
614 }
Evan Cheng068c5f42007-01-05 21:31:51 +0000615
616 // Clear the sign bit of first operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000617 SDValue Mask2 = (VT == MVT::f64)
Evan Cheng068c5f42007-01-05 21:31:51 +0000618 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
619 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000620 Mask2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask2);
621 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
622 Result = DAG.getNode(ISD::AND, dl, NVT, Result, Mask2);
Evan Cheng068c5f42007-01-05 21:31:51 +0000623
624 // Or the value with the sign bit.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000625 Result = DAG.getNode(ISD::OR, dl, NVT, Result, SignBit);
Evan Cheng912095b2007-01-04 21:56:39 +0000626 return Result;
627}
628
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000629/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
630static
Dan Gohman475871a2008-07-27 21:46:04 +0000631SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
Dan Gohman0d137d72009-01-15 16:43:02 +0000632 const TargetLowering &TLI) {
Dan Gohman475871a2008-07-27 21:46:04 +0000633 SDValue Chain = ST->getChain();
634 SDValue Ptr = ST->getBasePtr();
635 SDValue Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000636 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000637 int Alignment = ST->getAlignment();
638 int SVOffset = ST->getSrcValueOffset();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000639 DebugLoc dl = ST->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000640 if (ST->getMemoryVT().isFloatingPoint() ||
641 ST->getMemoryVT().isVector()) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000642 MVT intVT = MVT::getIntegerVT(VT.getSizeInBits());
643 if (TLI.isTypeLegal(intVT)) {
644 // Expand to a bitconvert of the value to the integer type of the
645 // same size, then a (misaligned) int store.
646 // FIXME: Does not handle truncating floating point stores!
Dale Johannesenbb5da912009-02-02 20:41:04 +0000647 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, intVT, Val);
648 return DAG.getStore(Chain, dl, Result, Ptr, ST->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000649 SVOffset, ST->isVolatile(), Alignment);
650 } else {
651 // Do a (aligned) store to a stack slot, then copy from the stack slot
652 // to the final destination using (unaligned) integer loads and stores.
653 MVT StoredVT = ST->getMemoryVT();
654 MVT RegVT =
655 TLI.getRegisterType(MVT::getIntegerVT(StoredVT.getSizeInBits()));
656 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
657 unsigned RegBytes = RegVT.getSizeInBits() / 8;
658 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000659
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000660 // Make sure the stack slot is also aligned for the register type.
661 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
662
663 // Perform the original store, only redirected to the stack slot.
Scott Michelfdc40a02009-02-17 22:15:04 +0000664 SDValue Store = DAG.getTruncStore(Chain, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +0000665 Val, StackPtr, NULL, 0, StoredVT);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000666 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
667 SmallVector<SDValue, 8> Stores;
668 unsigned Offset = 0;
669
670 // Do all but one copies using the full register width.
671 for (unsigned i = 1; i < NumRegs; i++) {
672 // Load one integer register's worth from the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000673 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr, NULL, 0);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000674 // Store it to the final location. Remember the store.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000675 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000676 ST->getSrcValue(), SVOffset + Offset,
677 ST->isVolatile(),
678 MinAlign(ST->getAlignment(), Offset)));
679 // Increment the pointers.
680 Offset += RegBytes;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000681 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000682 Increment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000683 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000684 }
685
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000686 // The last store may be partial. Do a truncating store. On big-endian
687 // machines this requires an extending load from the stack slot to ensure
688 // that the bits are in the right place.
689 MVT MemVT = MVT::getIntegerVT(8 * (StoredBytes - Offset));
Duncan Sands05e11fa2008-12-12 21:47:02 +0000690
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000691 // Load from the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000692 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000693 NULL, 0, MemVT);
694
Dale Johannesenbb5da912009-02-02 20:41:04 +0000695 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000696 ST->getSrcValue(), SVOffset + Offset,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000697 MemVT, ST->isVolatile(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000698 MinAlign(ST->getAlignment(), Offset)));
699 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000700 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sands05e11fa2008-12-12 21:47:02 +0000701 Stores.size());
702 }
Dale Johannesen907f28c2007-09-08 19:29:23 +0000703 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000704 assert(ST->getMemoryVT().isInteger() &&
705 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000706 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000707 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000708 MVT NewStoredVT =
709 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
710 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000711 int IncrementSize = NumBits / 8;
712
713 // Divide the stored value in two parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000714 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
715 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000716 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000717
718 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000719 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000720 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000721 ST->getSrcValue(), SVOffset, NewStoredVT,
722 ST->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000723 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000724 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000725 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000726 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000727 ST->getSrcValue(), SVOffset + IncrementSize,
728 NewStoredVT, ST->isVolatile(), Alignment);
729
Dale Johannesenbb5da912009-02-02 20:41:04 +0000730 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000731}
732
733/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
734static
Dan Gohman475871a2008-07-27 21:46:04 +0000735SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
Dan Gohmane9530ec2009-01-15 16:58:17 +0000736 const TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000737 int SVOffset = LD->getSrcValueOffset();
Dan Gohman475871a2008-07-27 21:46:04 +0000738 SDValue Chain = LD->getChain();
739 SDValue Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000740 MVT VT = LD->getValueType(0);
741 MVT LoadedVT = LD->getMemoryVT();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000742 DebugLoc dl = LD->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000743 if (VT.isFloatingPoint() || VT.isVector()) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000744 MVT intVT = MVT::getIntegerVT(LoadedVT.getSizeInBits());
745 if (TLI.isTypeLegal(intVT)) {
746 // Expand to a (misaligned) integer load of the same size,
747 // then bitconvert to floating point or vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000748 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000749 SVOffset, LD->isVolatile(),
Dale Johannesen907f28c2007-09-08 19:29:23 +0000750 LD->getAlignment());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000751 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, LoadedVT, newLoad);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000752 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesenbb5da912009-02-02 20:41:04 +0000753 Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000754
Duncan Sands05e11fa2008-12-12 21:47:02 +0000755 SDValue Ops[] = { Result, Chain };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000756 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000757 } else {
758 // Copy the value to a (aligned) stack slot using (unaligned) integer
759 // loads and stores, then do a (aligned) load from the stack slot.
760 MVT RegVT = TLI.getRegisterType(intVT);
761 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
762 unsigned RegBytes = RegVT.getSizeInBits() / 8;
763 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
764
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000765 // Make sure the stack slot is also aligned for the register type.
766 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
767
Duncan Sands05e11fa2008-12-12 21:47:02 +0000768 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
769 SmallVector<SDValue, 8> Stores;
770 SDValue StackPtr = StackBase;
771 unsigned Offset = 0;
772
773 // Do all but one copies using the full register width.
774 for (unsigned i = 1; i < NumRegs; i++) {
775 // Load one integer register's worth from the original location.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000776 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000777 SVOffset + Offset, LD->isVolatile(),
778 MinAlign(LD->getAlignment(), Offset));
779 // Follow the load with a store to the stack slot. Remember the store.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000780 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000781 NULL, 0));
782 // Increment the pointers.
783 Offset += RegBytes;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000784 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
785 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000786 Increment);
787 }
788
789 // The last copy may be partial. Do an extending load.
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000790 MVT MemVT = MVT::getIntegerVT(8 * (LoadedBytes - Offset));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000791 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000792 LD->getSrcValue(), SVOffset + Offset,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000793 MemVT, LD->isVolatile(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000794 MinAlign(LD->getAlignment(), Offset));
795 // Follow the load with a store to the stack slot. Remember the store.
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000796 // On big-endian machines this requires a truncating store to ensure
797 // that the bits end up in the right place.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000798 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000799 NULL, 0, MemVT));
Duncan Sands05e11fa2008-12-12 21:47:02 +0000800
801 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000802 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sands05e11fa2008-12-12 21:47:02 +0000803 Stores.size());
804
805 // Finally, perform the original load only redirected to the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000806 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000807 NULL, 0, LoadedVT);
808
809 // Callers expect a MERGE_VALUES node.
810 SDValue Ops[] = { Load, TF };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000811 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000812 }
Dale Johannesen907f28c2007-09-08 19:29:23 +0000813 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000814 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000815 "Unaligned load of unsupported type.");
816
Dale Johannesen8155d642008-02-27 22:36:00 +0000817 // Compute the new VT that is half the size of the old one. This is an
818 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000819 unsigned NumBits = LoadedVT.getSizeInBits();
820 MVT NewLoadedVT;
821 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000822 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000823
Chris Lattnere400af82007-11-19 21:38:03 +0000824 unsigned Alignment = LD->getAlignment();
825 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000826 ISD::LoadExtType HiExtType = LD->getExtensionType();
827
828 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
829 if (HiExtType == ISD::NON_EXTLOAD)
830 HiExtType = ISD::ZEXTLOAD;
831
832 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000833 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000834 if (TLI.isLittleEndian()) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000835 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000836 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000837 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000838 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000839 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000840 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000841 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000842 } else {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000843 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +0000844 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000845 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000846 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000847 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000848 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000849 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000850 }
851
852 // aggregate the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000853 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000854 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
855 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000856
Dale Johannesenbb5da912009-02-02 20:41:04 +0000857 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000858 Hi.getValue(1));
859
Dan Gohman475871a2008-07-27 21:46:04 +0000860 SDValue Ops[] = { Result, TF };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000861 return DAG.getMergeValues(Ops, 2, dl);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000862}
Evan Cheng912095b2007-01-04 21:56:39 +0000863
Dan Gohman82669522007-10-11 23:57:53 +0000864/// UnrollVectorOp - We know that the given vector has a legal type, however
865/// the operation it performs is not legal and is an operation that we have
866/// no way of lowering. "Unroll" the vector, splitting out the scalars and
867/// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000868SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000869 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000870 assert(isTypeLegal(VT) &&
871 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000872 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman82669522007-10-11 23:57:53 +0000873 "Can't unroll a vector with multiple results!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000874 unsigned NE = VT.getVectorNumElements();
875 MVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000876 DebugLoc dl = Op.getDebugLoc();
Dan Gohman82669522007-10-11 23:57:53 +0000877
Dan Gohman475871a2008-07-27 21:46:04 +0000878 SmallVector<SDValue, 8> Scalars;
879 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman82669522007-10-11 23:57:53 +0000880 for (unsigned i = 0; i != NE; ++i) {
881 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +0000882 SDValue Operand = Op.getOperand(j);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000883 MVT OperandVT = Operand.getValueType();
884 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000885 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000886 MVT OperandEltVT = OperandVT.getVectorElementType();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000887 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dan Gohman82669522007-10-11 23:57:53 +0000888 OperandEltVT,
889 Operand,
890 DAG.getConstant(i, MVT::i32));
891 } else {
892 // A scalar operand; just use it as is.
893 Operands[j] = Operand;
894 }
895 }
Mon P Wange9f10152008-12-09 05:46:39 +0000896
897 switch (Op.getOpcode()) {
898 default:
Dale Johannesenbb5da912009-02-02 20:41:04 +0000899 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT,
Mon P Wange9f10152008-12-09 05:46:39 +0000900 &Operands[0], Operands.size()));
901 break;
902 case ISD::SHL:
903 case ISD::SRA:
904 case ISD::SRL:
Duncan Sands92abc622009-01-31 15:50:11 +0000905 case ISD::ROTL:
906 case ISD::ROTR:
Dale Johannesenbb5da912009-02-02 20:41:04 +0000907 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT, Operands[0],
Duncan Sands92abc622009-01-31 15:50:11 +0000908 DAG.getShiftAmountOperand(Operands[1])));
Mon P Wange9f10152008-12-09 05:46:39 +0000909 break;
910 }
Dan Gohman82669522007-10-11 23:57:53 +0000911 }
912
Evan Chenga87008d2009-02-25 22:49:59 +0000913 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Scalars[0], Scalars.size());
Dan Gohman82669522007-10-11 23:57:53 +0000914}
915
Duncan Sands007f9842008-01-10 10:28:30 +0000916/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000917static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000918 RTLIB::Libcall Call_F32,
919 RTLIB::Libcall Call_F64,
920 RTLIB::Libcall Call_F80,
921 RTLIB::Libcall Call_PPCF128) {
922 return
923 VT == MVT::f32 ? Call_F32 :
924 VT == MVT::f64 ? Call_F64 :
925 VT == MVT::f80 ? Call_F80 :
926 VT == MVT::ppcf128 ? Call_PPCF128 :
927 RTLIB::UNKNOWN_LIBCALL;
928}
929
Nate Begeman68679912008-04-25 18:07:40 +0000930/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
931/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
932/// is necessary to spill the vector being inserted into to memory, perform
933/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000934SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000935PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
936 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000937 SDValue Tmp1 = Vec;
938 SDValue Tmp2 = Val;
939 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000940
Nate Begeman68679912008-04-25 18:07:40 +0000941 // If the target doesn't support this, we have to spill the input vector
942 // to a temporary stack slot, update the element, then reload it. This is
943 // badness. We could also load the value into a vector register (either
944 // with a "move to register" or "extload into register" instruction, then
945 // permute it into place, if the idx is a constant and if the idx is
946 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000947 MVT VT = Tmp1.getValueType();
948 MVT EltVT = VT.getVectorElementType();
949 MVT IdxVT = Tmp3.getValueType();
950 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000951 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000952
Gabor Greifba36cb52008-08-28 21:40:38 +0000953 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman68679912008-04-25 18:07:40 +0000954
955 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000956 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Mon P Wang0c397192008-10-30 08:01:45 +0000957 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000958
959 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000960 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000961 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000962 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000963 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000964 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
965 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000966 // Store the scalar value.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000967 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2,
Dan Gohmana54cf172008-07-11 22:44:52 +0000968 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman68679912008-04-25 18:07:40 +0000969 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000970 return DAG.getLoad(VT, dl, Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +0000971 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000972}
973
Mon P Wange9f10152008-12-09 05:46:39 +0000974
Dan Gohmana3466152007-07-13 20:14:11 +0000975/// LegalizeOp - We know that the specified value has a legal type, and
976/// that its operands are legal. Now ensure that the operation itself
977/// is legal, recursively ensuring that the operands' operations remain
978/// legal.
Dan Gohman475871a2008-07-27 21:46:04 +0000979SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000980 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
981 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +0000982
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000983 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000984 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000985 SDNode *Node = Op.getNode();
Dale Johannesen7d2ad622009-01-30 23:10:59 +0000986 DebugLoc dl = Node->getDebugLoc();
Chris Lattnere3304a32005-01-08 20:35:13 +0000987
Chris Lattner3e928bb2005-01-07 07:47:09 +0000988 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000989 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000990 if (Node->getNumValues() > 1) {
991 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000992 if (getTypeAction(Node->getValueType(i)) != Legal) {
993 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000994 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000995 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000996 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000997 }
998 }
999
Chris Lattner45982da2005-05-12 16:53:42 +00001000 // Note that LegalizeOp may be reentered even from single-use nodes, which
1001 // means that we always must cache transformed nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00001002 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +00001003 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001004
Dan Gohman475871a2008-07-27 21:46:04 +00001005 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
1006 SDValue Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +00001007 bool isCustom = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001008
Chris Lattner3e928bb2005-01-07 07:47:09 +00001009 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +00001010 case ISD::FrameIndex:
1011 case ISD::EntryToken:
1012 case ISD::Register:
1013 case ISD::BasicBlock:
1014 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +00001015 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +00001016 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +00001017 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +00001018 case ISD::TargetConstantPool:
1019 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001020 case ISD::TargetGlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +00001021 case ISD::TargetExternalSymbol:
Chris Lattner948c1b12006-01-28 08:31:04 +00001022 case ISD::VALUETYPE:
1023 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +00001024 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +00001025 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +00001026 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +00001027 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00001028 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +00001029 "This must be legal!");
1030 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001031 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001032 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
1033 // If this is a target node, legalize it by legalizing the operands then
1034 // passing it through.
Dan Gohman475871a2008-07-27 21:46:04 +00001035 SmallVector<SDValue, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001036 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001037 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001038
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001039 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001040
1041 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1042 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001043 return Result.getValue(Op.getResNo());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001044 }
1045 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001046#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00001047 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001048#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00001049 assert(0 && "Do not know how to legalize this operator!");
1050 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +00001051 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +00001052 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001053 case ISD::GlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +00001054 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +00001055 case ISD::ConstantPool:
1056 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001057 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1058 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +00001059 case TargetLowering::Custom:
1060 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001061 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner948c1b12006-01-28 08:31:04 +00001062 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001063 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001064 break;
1065 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001066 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +00001067 case ISD::FRAMEADDR:
1068 case ISD::RETURNADDR:
1069 // The only option for these nodes is to custom lower them. If the target
1070 // does not custom lower them, then return zero.
1071 Tmp1 = TLI.LowerOperation(Op, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00001072 if (Tmp1.getNode())
Nate Begemanbcc5f362007-01-29 22:58:52 +00001073 Result = Tmp1;
1074 else
1075 Result = DAG.getConstant(0, TLI.getPointerTy());
1076 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +00001077 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001078 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001079 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1080 default: assert(0 && "This action is not supported yet!");
1081 case TargetLowering::Custom:
1082 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001083 if (Result.getNode()) break;
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001084 // Fall Thru
1085 case TargetLowering::Legal:
1086 Result = DAG.getConstant(0, VT);
1087 break;
1088 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +00001089 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001090 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +00001091 case ISD::EXCEPTIONADDR: {
1092 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001093 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001094 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1095 default: assert(0 && "This action is not supported yet!");
1096 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +00001097 unsigned Reg = TLI.getExceptionAddressRegister();
Dale Johannesenc460ae92009-02-04 00:13:36 +00001098 Result = DAG.getCopyFromReg(Tmp1, dl, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001099 }
1100 break;
1101 case TargetLowering::Custom:
1102 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001103 if (Result.getNode()) break;
Jim Laskey2bc210d2007-02-22 15:37:19 +00001104 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001105 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001106 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Dale Johannesenca57b842009-02-02 23:46:53 +00001107 Result = DAG.getMergeValues(Ops, 2, dl);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001108 break;
1109 }
1110 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001111 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001112 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +00001113
Gabor Greifba36cb52008-08-28 21:40:38 +00001114 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +00001115 "Cannot return more than two values!");
1116
1117 // Since we produced two values, make sure to remember that we
1118 // legalized both of them.
1119 Tmp1 = LegalizeOp(Result);
1120 Tmp2 = LegalizeOp(Result.getValue(1));
1121 AddLegalizedOperand(Op.getValue(0), Tmp1);
1122 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001123 return Op.getResNo() ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +00001124 case ISD::EHSELECTION: {
1125 Tmp1 = LegalizeOp(Node->getOperand(0));
1126 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001127 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +00001128 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1129 default: assert(0 && "This action is not supported yet!");
1130 case TargetLowering::Expand: {
1131 unsigned Reg = TLI.getExceptionSelectorRegister();
Dale Johannesenc460ae92009-02-04 00:13:36 +00001132 Result = DAG.getCopyFromReg(Tmp2, dl, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +00001133 }
1134 break;
1135 case TargetLowering::Custom:
1136 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001137 if (Result.getNode()) break;
Jim Laskey8782d482007-02-28 20:43:58 +00001138 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001139 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001140 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Dale Johannesenca57b842009-02-02 23:46:53 +00001141 Result = DAG.getMergeValues(Ops, 2, dl);
Jim Laskey8782d482007-02-28 20:43:58 +00001142 break;
1143 }
1144 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001145 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001146 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +00001147
Gabor Greifba36cb52008-08-28 21:40:38 +00001148 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +00001149 "Cannot return more than two values!");
1150
1151 // Since we produced two values, make sure to remember that we
1152 // legalized both of them.
1153 Tmp1 = LegalizeOp(Result);
1154 Tmp2 = LegalizeOp(Result.getValue(1));
1155 AddLegalizedOperand(Op.getValue(0), Tmp1);
1156 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001157 return Op.getResNo() ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001158 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001159 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001160 // The only "good" option for this node is to custom lower it.
1161 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1162 default: assert(0 && "This action is not supported at all!");
1163 case TargetLowering::Custom:
1164 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001165 if (Result.getNode()) break;
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001166 // Fall Thru
1167 case TargetLowering::Legal:
1168 // Target does not know, how to lower this, lower to noop
1169 Result = LegalizeOp(Node->getOperand(0));
1170 break;
1171 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001172 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001173 break;
Chris Lattner08951a32005-09-02 01:15:01 +00001174 case ISD::AssertSext:
1175 case ISD::AssertZext:
1176 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001177 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +00001178 break;
Chris Lattner308575b2005-11-20 22:56:56 +00001179 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001180 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif99a6cb92008-08-26 22:36:50 +00001181 Result = Node->getOperand(Op.getResNo());
Chris Lattner456a93a2006-01-28 07:39:30 +00001182 break;
Chris Lattner69a52152005-01-14 22:38:01 +00001183 case ISD::CopyFromReg:
1184 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001185 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001186 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001187 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +00001188 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001189 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001190 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001191 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001192 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1193 } else {
1194 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1195 }
Chris Lattner7310fb12005-12-18 15:27:43 +00001196 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1197 }
Chris Lattner13c184d2005-01-28 06:27:38 +00001198 // Since CopyFromReg produces two values, make sure to remember that we
1199 // legalized both of them.
1200 AddLegalizedOperand(Op.getValue(0), Result);
1201 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001202 return Result.getValue(Op.getResNo());
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001203 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001204 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001205 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +00001206 default: assert(0 && "This action is not supported yet!");
1207 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001208 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001209 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001210 else if (VT.isFloatingPoint())
1211 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +00001212 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001213 else
1214 assert(0 && "Unknown value type!");
1215 break;
Nate Begemanea19cd52005-04-02 00:41:14 +00001216 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001217 break;
1218 }
1219 break;
1220 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001221
Chris Lattner48b61a72006-03-28 00:40:33 +00001222 case ISD::INTRINSIC_W_CHAIN:
1223 case ISD::INTRINSIC_WO_CHAIN:
1224 case ISD::INTRINSIC_VOID: {
Dan Gohman475871a2008-07-27 21:46:04 +00001225 SmallVector<SDValue, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001226 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1227 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001228 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001229
Chris Lattner10d7fa62006-03-26 09:12:51 +00001230 // Allow the target to custom lower its intrinsics if it wants to.
Scott Michelfdc40a02009-02-17 22:15:04 +00001231 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001232 TargetLowering::Custom) {
1233 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001234 if (Tmp3.getNode()) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001235 }
1236
Gabor Greifba36cb52008-08-28 21:40:38 +00001237 if (Result.getNode()->getNumValues() == 1) break;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001238
1239 // Must have return value and chain result.
Gabor Greifba36cb52008-08-28 21:40:38 +00001240 assert(Result.getNode()->getNumValues() == 2 &&
Chris Lattner13fc2f12006-03-27 20:28:29 +00001241 "Cannot return more than two values!");
1242
Scott Michelfdc40a02009-02-17 22:15:04 +00001243 // Since loads produce two values, make sure to remember that we
Chris Lattner13fc2f12006-03-27 20:28:29 +00001244 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001245 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1246 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001247 return Result.getValue(Op.getResNo());
Scott Michelfdc40a02009-02-17 22:15:04 +00001248 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001249
Dan Gohman7f460202008-06-30 20:59:49 +00001250 case ISD::DBG_STOPPOINT:
1251 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner36ce6912005-11-29 06:21:05 +00001252 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00001253
Dan Gohman7f460202008-06-30 20:59:49 +00001254 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner36ce6912005-11-29 06:21:05 +00001255 case TargetLowering::Promote:
1256 default: assert(0 && "This action is not supported yet!");
Bill Wendling92c1e122009-02-13 02:16:35 +00001257 case TargetLowering::Expand: {
1258 DwarfWriter *DW = DAG.getDwarfWriter();
1259 bool useDEBUG_LOC = TLI.isOperationLegalOrCustom(ISD::DEBUG_LOC,
1260 MVT::Other);
1261 bool useLABEL = TLI.isOperationLegalOrCustom(ISD::DBG_LABEL, MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00001262
Bill Wendling92c1e122009-02-13 02:16:35 +00001263 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
1264 GlobalVariable *CU_GV = cast<GlobalVariable>(DSP->getCompileUnit());
1265 if (DW && (useDEBUG_LOC || useLABEL) && !CU_GV->isDeclaration()) {
1266 DICompileUnit CU(cast<GlobalVariable>(DSP->getCompileUnit()));
Bill Wendling0582ae92009-03-13 04:39:26 +00001267 std::string Dir, FN;
1268 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir),
1269 CU.getFilename(FN));
Scott Michelfdc40a02009-02-17 22:15:04 +00001270
Bill Wendling92c1e122009-02-13 02:16:35 +00001271 unsigned Line = DSP->getLine();
1272 unsigned Col = DSP->getColumn();
Bill Wendling86e6cb92009-02-17 01:04:54 +00001273
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00001274 if (OptLevel == 0) {
Bill Wendling86e6cb92009-02-17 01:04:54 +00001275 // A bit self-referential to have DebugLoc on Debug_Loc nodes, but it
1276 // won't hurt anything.
1277 if (useDEBUG_LOC) {
1278 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Bill Wendling92c1e122009-02-13 02:16:35 +00001279 DAG.getConstant(Col, MVT::i32),
1280 DAG.getConstant(SrcFile, MVT::i32) };
Bill Wendling86e6cb92009-02-17 01:04:54 +00001281 Result = DAG.getNode(ISD::DEBUG_LOC, dl, MVT::Other, Ops, 4);
1282 } else {
1283 unsigned ID = DW->RecordSourceLine(Line, Col, SrcFile);
1284 Result = DAG.getLabel(ISD::DBG_LABEL, dl, Tmp1, ID);
1285 }
Bill Wendling92c1e122009-02-13 02:16:35 +00001286 } else {
Bill Wendling86e6cb92009-02-17 01:04:54 +00001287 Result = Tmp1; // chain
Bill Wendling92c1e122009-02-13 02:16:35 +00001288 }
1289 } else {
1290 Result = Tmp1; // chain
1291 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001292 break;
Bill Wendling92c1e122009-02-13 02:16:35 +00001293 }
Sanjiv Gupta5274a4a2009-04-02 18:03:10 +00001294 case TargetLowering::Custom:
1295 Result = TLI.LowerOperation(Op, DAG);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001296 if (Result.getNode())
Sanjiv Gupta5274a4a2009-04-02 18:03:10 +00001297 break;
Evan Cheng71e86852008-07-08 20:06:39 +00001298 case TargetLowering::Legal: {
1299 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1300 if (Action == Legal && Tmp1 == Node->getOperand(0))
1301 break;
1302
Dan Gohman475871a2008-07-27 21:46:04 +00001303 SmallVector<SDValue, 8> Ops;
Evan Cheng71e86852008-07-08 20:06:39 +00001304 Ops.push_back(Tmp1);
1305 if (Action == Legal) {
1306 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1307 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1308 } else {
1309 // Otherwise promote them.
1310 Ops.push_back(PromoteOp(Node->getOperand(1)));
1311 Ops.push_back(PromoteOp(Node->getOperand(2)));
Chris Lattner36ce6912005-11-29 06:21:05 +00001312 }
Evan Cheng71e86852008-07-08 20:06:39 +00001313 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1314 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1315 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001316 break;
1317 }
Evan Cheng71e86852008-07-08 20:06:39 +00001318 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001319 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001320
1321 case ISD::DECLARE:
1322 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1323 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1324 default: assert(0 && "This action is not supported yet!");
1325 case TargetLowering::Legal:
1326 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1327 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1328 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1329 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1330 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001331 case TargetLowering::Expand:
1332 Result = LegalizeOp(Node->getOperand(0));
1333 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001334 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001335 break;
1336
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001337 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001338 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001339 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001340 default: assert(0 && "This action is not supported yet!");
Evan Cheng71e86852008-07-08 20:06:39 +00001341 case TargetLowering::Legal: {
1342 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001343 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng71e86852008-07-08 20:06:39 +00001344 if (Action == Legal && Tmp1 == Node->getOperand(0))
1345 break;
1346 if (Action == Legal) {
1347 Tmp2 = Node->getOperand(1);
1348 Tmp3 = Node->getOperand(2);
1349 Tmp4 = Node->getOperand(3);
1350 } else {
1351 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1352 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1353 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1354 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001355 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001356 break;
1357 }
Evan Cheng71e86852008-07-08 20:06:39 +00001358 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001359 break;
Jim Laskeyabf6d172006-01-05 01:25:28 +00001360
Dan Gohman44066042008-07-01 00:05:16 +00001361 case ISD::DBG_LABEL:
1362 case ISD::EH_LABEL:
1363 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1364 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001365 default: assert(0 && "This action is not supported yet!");
1366 case TargetLowering::Legal:
1367 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001368 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001369 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001370 case TargetLowering::Expand:
1371 Result = LegalizeOp(Node->getOperand(0));
1372 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001373 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001374 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001375
Evan Cheng27b7db52008-03-08 00:58:38 +00001376 case ISD::PREFETCH:
1377 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1378 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1379 default: assert(0 && "This action is not supported yet!");
1380 case TargetLowering::Legal:
1381 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1382 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1383 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1384 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1385 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1386 break;
1387 case TargetLowering::Expand:
1388 // It's a noop.
1389 Result = LegalizeOp(Node->getOperand(0));
1390 break;
1391 }
1392 break;
1393
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001394 case ISD::MEMBARRIER: {
1395 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001396 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1397 default: assert(0 && "This action is not supported yet!");
1398 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001399 SDValue Ops[6];
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001400 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001401 for (int x = 1; x < 6; ++x) {
1402 Ops[x] = Node->getOperand(x);
1403 if (!isTypeLegal(Ops[x].getValueType()))
1404 Ops[x] = PromoteOp(Ops[x]);
1405 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001406 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1407 break;
1408 }
1409 case TargetLowering::Expand:
1410 //There is no libgcc call for this op
1411 Result = Node->getOperand(0); // Noop
1412 break;
1413 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001414 break;
1415 }
1416
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001417 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001418 unsigned int num_operands = 4;
1419 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001420 SDValue Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001421 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001422 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001423 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Scott Michelfdc40a02009-02-17 22:15:04 +00001424
Mon P Wang63307c32008-05-05 19:05:59 +00001425 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1426 default: assert(0 && "This action is not supported yet!");
1427 case TargetLowering::Custom:
1428 Result = TLI.LowerOperation(Result, DAG);
1429 break;
1430 case TargetLowering::Legal:
1431 break;
1432 }
Dan Gohman475871a2008-07-27 21:46:04 +00001433 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1434 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001435 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001436 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001437 case ISD::ATOMIC_LOAD_ADD:
1438 case ISD::ATOMIC_LOAD_SUB:
1439 case ISD::ATOMIC_LOAD_AND:
1440 case ISD::ATOMIC_LOAD_OR:
1441 case ISD::ATOMIC_LOAD_XOR:
1442 case ISD::ATOMIC_LOAD_NAND:
1443 case ISD::ATOMIC_LOAD_MIN:
1444 case ISD::ATOMIC_LOAD_MAX:
1445 case ISD::ATOMIC_LOAD_UMIN:
1446 case ISD::ATOMIC_LOAD_UMAX:
1447 case ISD::ATOMIC_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001448 unsigned int num_operands = 3;
1449 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001450 SDValue Ops[3];
Mon P Wang63307c32008-05-05 19:05:59 +00001451 for (unsigned int x = 0; x < num_operands; ++x)
1452 Ops[x] = LegalizeOp(Node->getOperand(x));
1453 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001454
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001455 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001456 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001457 case TargetLowering::Custom:
1458 Result = TLI.LowerOperation(Result, DAG);
1459 break;
1460 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001461 break;
1462 }
Dan Gohman475871a2008-07-27 21:46:04 +00001463 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1464 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001465 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001466 }
Scott Michelc1513d22007-08-08 23:23:31 +00001467 case ISD::Constant: {
1468 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1469 unsigned opAction =
1470 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1471
Chris Lattner3e928bb2005-01-07 07:47:09 +00001472 // We know we don't need to expand constants here, constants only have one
1473 // value and we check that it is fine above.
1474
Scott Michelc1513d22007-08-08 23:23:31 +00001475 if (opAction == TargetLowering::Custom) {
1476 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001477 if (Tmp1.getNode())
Scott Michelc1513d22007-08-08 23:23:31 +00001478 Result = Tmp1;
1479 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001480 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001481 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001482 case ISD::ConstantFP: {
1483 // Spill FP immediates to the constant pool if the target cannot directly
1484 // codegen them. Targets often have some immediate values that can be
1485 // efficiently generated into an FP register without a load. We explicitly
1486 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001487 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1488
Chris Lattner3181a772006-01-29 06:26:56 +00001489 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1490 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001491 case TargetLowering::Legal:
1492 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001493 case TargetLowering::Custom:
1494 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001495 if (Tmp3.getNode()) {
Chris Lattner3181a772006-01-29 06:26:56 +00001496 Result = Tmp3;
1497 break;
1498 }
1499 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001500 case TargetLowering::Expand: {
1501 // Check to see if this FP immediate is already legal.
1502 bool isLegal = false;
1503 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1504 E = TLI.legal_fpimm_end(); I != E; ++I) {
1505 if (CFP->isExactlyValue(*I)) {
1506 isLegal = true;
1507 break;
1508 }
1509 }
1510 // If this is a legal constant, turn it into a TargetConstantFP node.
1511 if (isLegal)
1512 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001513 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001514 }
Nate Begemane1795842008-02-14 08:57:00 +00001515 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001516 break;
1517 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001518 case ISD::TokenFactor:
1519 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001520 Tmp1 = LegalizeOp(Node->getOperand(0));
1521 Tmp2 = LegalizeOp(Node->getOperand(1));
1522 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1523 } else if (Node->getNumOperands() == 3) {
1524 Tmp1 = LegalizeOp(Node->getOperand(0));
1525 Tmp2 = LegalizeOp(Node->getOperand(1));
1526 Tmp3 = LegalizeOp(Node->getOperand(2));
1527 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001528 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001529 SmallVector<SDValue, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001530 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001531 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1532 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001533 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001534 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001535 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001536
Chris Lattnerfdfded52006-04-12 16:20:43 +00001537 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001538 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001539 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001540 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001541 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001542 // A call within a calling sequence must be legalized to something
1543 // other than the normal CALLSEQ_END. Violating this gets Legalize
1544 // into an infinite loop.
1545 assert ((!IsLegalizingCall ||
1546 Node->getOpcode() != ISD::CALL ||
Gabor Greifba36cb52008-08-28 21:40:38 +00001547 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesen0ea03562008-03-05 19:14:03 +00001548 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001549
1550 // The number of incoming and outgoing values should match; unless the final
1551 // outgoing value is a flag.
Gabor Greifba36cb52008-08-28 21:40:38 +00001552 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1553 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1554 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001555 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001556 "Lowering call/formal_arguments produced unexpected # results!");
Scott Michelfdc40a02009-02-17 22:15:04 +00001557
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001558 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001559 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greifba36cb52008-08-28 21:40:38 +00001560 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1561 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001562 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001563 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001564 if (Op.getResNo() == i)
Chris Lattnere2e41732006-05-16 05:49:56 +00001565 Tmp2 = Tmp1;
Dan Gohman475871a2008-07-27 21:46:04 +00001566 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Chris Lattnere2e41732006-05-16 05:49:56 +00001567 }
1568 return Tmp2;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001569 case ISD::BUILD_VECTOR:
1570 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001571 default: assert(0 && "This action is not supported yet!");
1572 case TargetLowering::Custom:
1573 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001574 if (Tmp3.getNode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001575 Result = Tmp3;
1576 break;
1577 }
1578 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001579 case TargetLowering::Expand:
Gabor Greifba36cb52008-08-28 21:40:38 +00001580 Result = ExpandBUILD_VECTOR(Result.getNode());
Chris Lattnerb2827b02006-03-19 00:52:58 +00001581 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001582 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001583 break;
1584 case ISD::INSERT_VECTOR_ELT:
1585 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001586 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001587
1588 // The type of the value to insert may not be legal, even though the vector
1589 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1590 // here.
1591 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1592 default: assert(0 && "Cannot expand insert element operand");
1593 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1594 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Mon P Wang0c397192008-10-30 08:01:45 +00001595 case Expand:
1596 // FIXME: An alternative would be to check to see if the target is not
Scott Michelfdc40a02009-02-17 22:15:04 +00001597 // going to custom lower this operation, we could bitcast to half elt
Mon P Wang0c397192008-10-30 08:01:45 +00001598 // width and perform two inserts at that width, if that is legal.
1599 Tmp2 = Node->getOperand(1);
1600 break;
Nate Begeman0325d902008-02-13 06:43:04 +00001601 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001602 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00001603
Chris Lattner2332b9f2006-03-19 01:17:20 +00001604 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1605 Node->getValueType(0))) {
1606 default: assert(0 && "This action is not supported yet!");
1607 case TargetLowering::Legal:
1608 break;
1609 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001610 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001611 if (Tmp4.getNode()) {
Nate Begeman2281a992008-01-05 20:47:37 +00001612 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001613 break;
1614 }
1615 // FALLTHROUGH
Mon P Wang0c397192008-10-30 08:01:45 +00001616 case TargetLowering::Promote:
1617 // Fall thru for vector case
Chris Lattner2332b9f2006-03-19 01:17:20 +00001618 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001619 // If the insert index is a constant, codegen this as a scalar_to_vector,
1620 // then a shuffle that inserts it into the right position in the vector.
1621 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001622 // SCALAR_TO_VECTOR requires that the type of the value being inserted
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00001623 // match the element type of the vector being created, except for
1624 // integers in which case the inserted value can be over width.
1625 MVT EltVT = Op.getValueType().getVectorElementType();
1626 if (Tmp2.getValueType() == EltVT ||
1627 (EltVT.isInteger() && Tmp2.getValueType().bitsGE(EltVT))) {
Dale Johannesenca57b842009-02-02 23:46:53 +00001628 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001629 Tmp1.getValueType(), Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00001630
Duncan Sands83ec4b62008-06-06 12:08:01 +00001631 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
Nate Begeman0325d902008-02-13 06:43:04 +00001632 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1633 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1634 // elt 0 of the RHS.
Nate Begeman9008ca62009-04-27 18:41:29 +00001635 SmallVector<int, 8> ShufOps;
1636 for (unsigned i = 0; i != NumElts; ++i)
1637 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
1638
1639 Result = DAG.getVectorShuffle(Tmp1.getValueType(), dl, Tmp1, ScVec,
1640 &ShufOps[0]);
Nate Begeman0325d902008-02-13 06:43:04 +00001641 Result = LegalizeOp(Result);
1642 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001643 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001644 }
Dale Johannesenbb5da912009-02-02 20:41:04 +00001645 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3, dl);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001646 break;
1647 }
1648 }
1649 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001650 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001651 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1652 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1653 break;
1654 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001655
Chris Lattnerce872152006-03-19 06:31:19 +00001656 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1657 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1658 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1659 Node->getValueType(0))) {
1660 default: assert(0 && "This action is not supported yet!");
1661 case TargetLowering::Legal:
1662 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001663 case TargetLowering::Custom:
1664 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001665 if (Tmp3.getNode()) {
Chris Lattner4d3abee2006-03-19 06:47:21 +00001666 Result = Tmp3;
1667 break;
1668 }
1669 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001670 case TargetLowering::Expand:
1671 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001672 break;
1673 }
Chris Lattnerce872152006-03-19 06:31:19 +00001674 break;
Nate Begeman9008ca62009-04-27 18:41:29 +00001675 case ISD::VECTOR_SHUFFLE: {
Chris Lattner87100e02006-03-20 01:52:29 +00001676 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1677 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00001678 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1679 MVT VT = Result.getValueType();
1680
1681 // Copy the Mask to a local SmallVector for use wi
1682 SmallVector<int, 8> Mask;
1683 cast<ShuffleVectorSDNode>(Result)->getMask(Mask);
Chris Lattner87100e02006-03-20 01:52:29 +00001684
1685 // Allow targets to custom lower the SHUFFLEs they support.
Nate Begeman9008ca62009-04-27 18:41:29 +00001686 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
Chris Lattner4352cc92006-04-04 17:23:26 +00001687 default: assert(0 && "Unknown operation action!");
1688 case TargetLowering::Legal:
Nate Begeman9008ca62009-04-27 18:41:29 +00001689 assert(TLI.isShuffleMaskLegal(Mask, VT) &&
Chris Lattner4352cc92006-04-04 17:23:26 +00001690 "vector shuffle should not be created if not legal!");
1691 break;
1692 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001693 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001694 if (Tmp3.getNode()) {
Evan Cheng18dd6d02006-04-05 06:07:11 +00001695 Result = Tmp3;
1696 break;
1697 }
1698 // FALLTHROUGH
1699 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001700 MVT EltVT = VT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00001701 int NumElems = VT.getVectorNumElements();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001702 SmallVector<SDValue, 8> Ops;
Nate Begeman9008ca62009-04-27 18:41:29 +00001703 for (int i = 0; i != NumElems; ++i) {
1704 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00001705 Ops.push_back(DAG.getUNDEF(EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00001706 continue;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001707 }
Nate Begeman9008ca62009-04-27 18:41:29 +00001708 int Idx = Mask[i];
1709 if (Idx < NumElems)
1710 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp1,
1711 DAG.getIntPtrConstant(Idx)));
1712 else
1713 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp2,
1714 DAG.getIntPtrConstant(Idx - NumElems)));
Evan Cheng18dd6d02006-04-05 06:07:11 +00001715 }
Evan Chenga87008d2009-02-25 22:49:59 +00001716 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001717 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001718 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001719 case TargetLowering::Promote: {
1720 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001721 MVT OVT = Node->getValueType(0);
1722 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001723
1724 // Cast the two input vectors.
Dale Johannesenca57b842009-02-02 23:46:53 +00001725 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
1726 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00001727
Chris Lattner4352cc92006-04-04 17:23:26 +00001728 // Convert the shuffle mask to the right # elements.
Nate Begeman9008ca62009-04-27 18:41:29 +00001729 Result = promoteShuffle(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Dale Johannesenca57b842009-02-02 23:46:53 +00001730 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Chris Lattner4352cc92006-04-04 17:23:26 +00001731 break;
1732 }
Chris Lattner87100e02006-03-20 01:52:29 +00001733 }
1734 break;
Nate Begeman9008ca62009-04-27 18:41:29 +00001735 }
Chris Lattner384504c2006-03-21 20:44:12 +00001736 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001737 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001738 Tmp2 = LegalizeOp(Node->getOperand(1));
1739 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001740 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001741 break;
1742
Scott Michelfdc40a02009-02-17 22:15:04 +00001743 case ISD::EXTRACT_SUBVECTOR:
Dan Gohman7f321562007-06-25 16:23:39 +00001744 Tmp1 = Node->getOperand(0);
1745 Tmp2 = LegalizeOp(Node->getOperand(1));
1746 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1747 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001748 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001749
Mon P Wang0c397192008-10-30 08:01:45 +00001750 case ISD::CONCAT_VECTORS: {
1751 // Use extract/insert/build vector for now. We might try to be
1752 // more clever later.
1753 MVT PtrVT = TLI.getPointerTy();
1754 SmallVector<SDValue, 8> Ops;
1755 unsigned NumOperands = Node->getNumOperands();
1756 for (unsigned i=0; i < NumOperands; ++i) {
1757 SDValue SubOp = Node->getOperand(i);
1758 MVT VVT = SubOp.getNode()->getValueType(0);
1759 MVT EltVT = VVT.getVectorElementType();
1760 unsigned NumSubElem = VVT.getVectorNumElements();
1761 for (unsigned j=0; j < NumSubElem; ++j) {
Dale Johannesenca57b842009-02-02 23:46:53 +00001762 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, SubOp,
Mon P Wang0c397192008-10-30 08:01:45 +00001763 DAG.getConstant(j, PtrVT)));
1764 }
1765 }
Evan Chenga87008d2009-02-25 22:49:59 +00001766 return LegalizeOp(DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
1767 &Ops[0], Ops.size()));
Mon P Wang0c397192008-10-30 08:01:45 +00001768 }
1769
Chris Lattner6831a812006-02-13 09:18:02 +00001770 case ISD::CALLSEQ_START: {
1771 SDNode *CallEnd = FindCallEndFromCallStart(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00001772
Chris Lattner6831a812006-02-13 09:18:02 +00001773 // Recursively Legalize all of the inputs of the call end that do not lead
1774 // to this call start. This ensures that any libcalls that need be inserted
1775 // are inserted *before* the CALLSEQ_START.
Mon P Wange5ab34e2009-02-04 19:38:14 +00001776 IsLegalizingCallArgs = true;
Chris Lattner00755df2007-02-04 00:27:56 +00001777 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001778 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00001779 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001780 NodesLeadingTo);
1781 }
Mon P Wange5ab34e2009-02-04 19:38:14 +00001782 IsLegalizingCallArgs = false;
Chris Lattner6831a812006-02-13 09:18:02 +00001783
1784 // Now that we legalized all of the inputs (which may have inserted
1785 // libcalls) create the new CALLSEQ_START node.
1786 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1787
1788 // Merge in the last call, to ensure that this call start after the last
1789 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001790 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001791 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00001792 Tmp1, LastCALLSEQ_END);
Chris Lattnerb248e162006-05-17 17:55:45 +00001793 Tmp1 = LegalizeOp(Tmp1);
1794 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001795
Chris Lattner6831a812006-02-13 09:18:02 +00001796 // Do not try to legalize the target-specific arguments (#1+).
1797 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001798 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001799 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001800 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001801 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001802
Chris Lattner6831a812006-02-13 09:18:02 +00001803 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001804 AddLegalizedOperand(Op.getValue(0), Result);
1805 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1806 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001807
Chris Lattner6831a812006-02-13 09:18:02 +00001808 // Now that the callseq_start and all of the non-call nodes above this call
Scott Michelfdc40a02009-02-17 22:15:04 +00001809 // sequence have been legalized, legalize the call itself. During this
Chris Lattner6831a812006-02-13 09:18:02 +00001810 // process, no libcalls can/will be inserted, guaranteeing that no calls
1811 // can overlap.
1812 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001813 // Note that we are selecting this call!
Dan Gohman475871a2008-07-27 21:46:04 +00001814 LastCALLSEQ_END = SDValue(CallEnd, 0);
Chris Lattner6831a812006-02-13 09:18:02 +00001815 IsLegalizingCall = true;
Scott Michelfdc40a02009-02-17 22:15:04 +00001816
Chris Lattner6831a812006-02-13 09:18:02 +00001817 // Legalize the call, starting from the CALLSEQ_END.
1818 LegalizeOp(LastCALLSEQ_END);
1819 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1820 return Result;
1821 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001822 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001823 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1824 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greifba36cb52008-08-28 21:40:38 +00001825 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman475871a2008-07-27 21:46:04 +00001826 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1827 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001828 assert(I != LegalizedNodes.end() &&
1829 "Legalizing the call start should have legalized this node!");
1830 return I->second;
1831 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001832
1833 // Otherwise, the call start has been legalized and everything is going
Chris Lattner6831a812006-02-13 09:18:02 +00001834 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001835 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001836 // Do not try to legalize the target-specific arguments (#1+), except for
1837 // an optional flag input.
1838 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
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 Lattner70814bc2006-01-29 07:58:15 +00001841 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001842 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001843 }
1844 } else {
1845 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1846 if (Tmp1 != Node->getOperand(0) ||
1847 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001848 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001849 Ops[0] = Tmp1;
1850 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001851 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001852 }
Chris Lattner6a542892006-01-24 05:48:21 +00001853 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001854 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001855 // This finishes up call legalization.
1856 IsLegalizingCall = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001857
Chris Lattner4b653a02006-02-14 00:55:02 +00001858 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman475871a2008-07-27 21:46:04 +00001859 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Chris Lattner4b653a02006-02-14 00:55:02 +00001860 if (Node->getNumValues() == 2)
Dan Gohman475871a2008-07-27 21:46:04 +00001861 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001862 return Result.getValue(Op.getResNo());
Evan Chenga7dce3c2006-01-11 22:14:47 +00001863 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001864 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001865 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1866 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1867 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001868 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001869
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001870 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001871 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001872 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001873 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001874 case TargetLowering::Expand: {
1875 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1876 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1877 " not tell us which reg is the stack pointer!");
Dan Gohman475871a2008-07-27 21:46:04 +00001878 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001879
1880 // Chain the dynamic stack allocation so that it doesn't modify the stack
1881 // pointer when other instructions are using the stack.
Chris Lattnere563bbc2008-10-11 22:08:30 +00001882 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001883
Dan Gohman475871a2008-07-27 21:46:04 +00001884 SDValue Size = Tmp2.getOperand(1);
Dale Johannesenc460ae92009-02-04 00:13:36 +00001885 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001886 Chain = SP.getValue(1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001887 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Cheng61bbbab2007-08-16 23:50:06 +00001888 unsigned StackAlign =
1889 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1890 if (Align > StackAlign)
Dale Johannesenca57b842009-02-02 23:46:53 +00001891 SP = DAG.getNode(ISD::AND, dl, VT, SP,
Evan Cheng3e20bba2007-08-17 18:02:22 +00001892 DAG.getConstant(-(uint64_t)Align, VT));
Dale Johannesenca57b842009-02-02 23:46:53 +00001893 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Dale Johannesenc460ae92009-02-04 00:13:36 +00001894 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001895
Dale Johannesenca57b842009-02-02 23:46:53 +00001896 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Chris Lattnere563bbc2008-10-11 22:08:30 +00001897 DAG.getIntPtrConstant(0, true), SDValue());
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001898
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001899 Tmp1 = LegalizeOp(Tmp1);
1900 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001901 break;
1902 }
1903 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001904 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001905 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001906 Tmp1 = LegalizeOp(Tmp3);
1907 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001908 }
Chris Lattner903d2782006-01-15 08:54:32 +00001909 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001910 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001911 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001912 }
Chris Lattner903d2782006-01-15 08:54:32 +00001913 // Since this op produce two values, make sure to remember that we
1914 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001915 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1916 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001917 return Op.getResNo() ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001918 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001919 case ISD::INLINEASM: {
Dan Gohman475871a2008-07-27 21:46:04 +00001920 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001921 bool Changed = false;
1922 // Legalize all of the operands of the inline asm, in case they are nodes
1923 // that need to be expanded or something. Note we skip the asm string and
1924 // all of the TargetConstant flags.
Dan Gohman475871a2008-07-27 21:46:04 +00001925 SDValue Op = LegalizeOp(Ops[0]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001926 Changed = Op != Ops[0];
1927 Ops[0] = Op;
1928
1929 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1930 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Evan Cheng697cbbf2009-03-20 18:03:34 +00001931 unsigned NumVals = InlineAsm::
1932 getNumOperandRegisters(cast<ConstantSDNode>(Ops[i])->getZExtValue());
Chris Lattner25a022c2006-07-11 01:40:09 +00001933 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman475871a2008-07-27 21:46:04 +00001934 SDValue Op = LegalizeOp(Ops[i]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001935 if (Op != Ops[i]) {
1936 Changed = true;
1937 Ops[i] = Op;
1938 }
1939 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001940 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001941
1942 if (HasInFlag) {
1943 Op = LegalizeOp(Ops.back());
1944 Changed |= Op != Ops.back();
1945 Ops.back() = Op;
1946 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001947
Chris Lattner25a022c2006-07-11 01:40:09 +00001948 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001949 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001950
Chris Lattnerce7518c2006-01-26 22:24:51 +00001951 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman475871a2008-07-27 21:46:04 +00001952 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1953 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001954 return Result.getValue(Op.getResNo());
Chris Lattner25a022c2006-07-11 01:40:09 +00001955 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001956 case ISD::BR:
1957 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001958 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00001959 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00001960 Tmp1 = LegalizeOp(Tmp1);
1961 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00001962
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001963 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001964 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001965 case ISD::BRIND:
1966 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1967 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00001968 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Nate Begeman37efe672006-04-22 18:53:45 +00001969 Tmp1 = LegalizeOp(Tmp1);
1970 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00001971
Nate Begeman37efe672006-04-22 18:53:45 +00001972 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1973 default: assert(0 && "Indirect target must be legal type (pointer)!");
1974 case Legal:
1975 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1976 break;
1977 }
1978 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1979 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001980 case ISD::BR_JT:
1981 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1982 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00001983 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001984 Tmp1 = LegalizeOp(Tmp1);
1985 LastCALLSEQ_END = DAG.getEntryNode();
1986
1987 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1988 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1989
Scott Michelfdc40a02009-02-17 22:15:04 +00001990 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001991 default: assert(0 && "This action is not supported yet!");
1992 case TargetLowering::Legal: break;
1993 case TargetLowering::Custom:
1994 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001995 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001996 break;
1997 case TargetLowering::Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00001998 SDValue Chain = Result.getOperand(0);
1999 SDValue Table = Result.getOperand(1);
2000 SDValue Index = Result.getOperand(2);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002001
Duncan Sands83ec4b62008-06-06 12:08:01 +00002002 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002003 MachineFunction &MF = DAG.getMachineFunction();
2004 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Scott Michelfdc40a02009-02-17 22:15:04 +00002005 Index= DAG.getNode(ISD::MUL, dl, PTy,
Dale Johannesenca57b842009-02-02 23:46:53 +00002006 Index, DAG.getConstant(EntrySize, PTy));
2007 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002008
Duncan Sands712f7b32008-12-12 08:13:38 +00002009 MVT MemVT = MVT::getIntegerVT(EntrySize * 8);
Dale Johannesenca57b842009-02-02 23:46:53 +00002010 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Duncan Sands712f7b32008-12-12 08:13:38 +00002011 PseudoSourceValue::getJumpTable(), 0, MemVT);
Evan Chengcc415862007-11-09 01:32:10 +00002012 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002013 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00002014 // For PIC, the sequence is:
2015 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00002016 // RelocBase can be JumpTable, GOT or some sort of global base.
Dale Johannesenca57b842009-02-02 23:46:53 +00002017 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
Evan Chengcc415862007-11-09 01:32:10 +00002018 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00002019 }
Dale Johannesenca57b842009-02-02 23:46:53 +00002020 Result = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002021 }
2022 }
2023 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002024 case ISD::BRCOND:
2025 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002026 // Ensure that libcalls are emitted before a return.
Dale Johannesenca57b842009-02-02 23:46:53 +00002027 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002028 Tmp1 = LegalizeOp(Tmp1);
2029 LastCALLSEQ_END = DAG.getEntryNode();
2030
Chris Lattner47e92232005-01-18 19:27:06 +00002031 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2032 case Expand: assert(0 && "It's impossible to expand bools");
2033 case Legal:
2034 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2035 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002036 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002037 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Scott Michelfdc40a02009-02-17 22:15:04 +00002038
Chris Lattnerf9908172006-11-27 04:39:56 +00002039 // The top bits of the promoted condition are not necessarily zero, ensure
2040 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002041 unsigned BitWidth = Tmp2.getValueSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002042 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002043 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenca57b842009-02-02 23:46:53 +00002044 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002045 break;
2046 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002047 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002048
2049 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002050 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00002051
2052 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
Nate Begeman7cbd5252005-08-16 19:49:35 +00002053 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002054 case TargetLowering::Legal: break;
2055 case TargetLowering::Custom:
2056 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002057 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002058 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002059 case TargetLowering::Expand:
2060 // Expand brcond's setcc into its constituent parts and create a BR_CC
2061 // Node.
2062 if (Tmp2.getOpcode() == ISD::SETCC) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002063 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00002064 Tmp1, Tmp2.getOperand(2),
Nate Begeman7cbd5252005-08-16 19:49:35 +00002065 Tmp2.getOperand(0), Tmp2.getOperand(1),
2066 Node->getOperand(2));
2067 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00002068 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Nate Begeman7cbd5252005-08-16 19:49:35 +00002069 DAG.getCondCode(ISD::SETNE), Tmp2,
2070 DAG.getConstant(0, Tmp2.getValueType()),
2071 Node->getOperand(2));
2072 }
2073 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002074 }
2075 break;
2076 case ISD::BR_CC:
2077 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002078 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002079 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002080 Tmp1 = LegalizeOp(Tmp1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002081 Tmp2 = Node->getOperand(2); // LHS
Nate Begeman750ac1b2006-02-01 07:19:44 +00002082 Tmp3 = Node->getOperand(3); // RHS
2083 Tmp4 = Node->getOperand(1); // CC
2084
Scott Michelfdc40a02009-02-17 22:15:04 +00002085 LegalizeSetCC(TLI.getSetCCResultType(Tmp2.getValueType()),
Dale Johannesenbb5da912009-02-02 20:41:04 +00002086 Tmp2, Tmp3, Tmp4, dl);
Evan Cheng722cb362006-12-18 22:55:34 +00002087 LastCALLSEQ_END = DAG.getEntryNode();
2088
Evan Cheng7f042682008-10-15 02:05:31 +00002089 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002090 // the LHS is a legal SETCC itself. In this case, we need to compare
2091 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00002092 if (Tmp3.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002093 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
2094 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00002095 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002096
2097 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002098 Node->getOperand(4));
Scott Michelfdc40a02009-02-17 22:15:04 +00002099
Chris Lattner181b7a32005-12-17 23:46:46 +00002100 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
2101 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002102 case TargetLowering::Legal: break;
2103 case TargetLowering::Custom:
2104 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002105 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00002106 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002107 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002108 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002109 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00002110 LoadSDNode *LD = cast<LoadSDNode>(Node);
2111 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
2112 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002113
Evan Cheng466685d2006-10-09 20:57:25 +00002114 ISD::LoadExtType ExtType = LD->getExtensionType();
2115 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002116 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00002117 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2118 Tmp3 = Result.getValue(0);
2119 Tmp4 = Result.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002120
Evan Cheng466685d2006-10-09 20:57:25 +00002121 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
2122 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002123 case TargetLowering::Legal:
2124 // If this is an unaligned load and the target doesn't support it,
2125 // expand it.
2126 if (!TLI.allowsUnalignedMemoryAccesses()) {
2127 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002128 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002129 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002130 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002131 TLI);
2132 Tmp3 = Result.getOperand(0);
2133 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00002134 Tmp3 = LegalizeOp(Tmp3);
2135 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002136 }
2137 }
2138 break;
Evan Cheng466685d2006-10-09 20:57:25 +00002139 case TargetLowering::Custom:
2140 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002141 if (Tmp1.getNode()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002142 Tmp3 = LegalizeOp(Tmp1);
2143 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00002144 }
Evan Cheng466685d2006-10-09 20:57:25 +00002145 break;
2146 case TargetLowering::Promote: {
2147 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002148 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00002149 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002150 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00002151
Dale Johannesenca57b842009-02-02 23:46:53 +00002152 Tmp1 = DAG.getLoad(NVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002153 LD->getSrcValueOffset(),
2154 LD->isVolatile(), LD->getAlignment());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00002155 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp1));
Evan Cheng466685d2006-10-09 20:57:25 +00002156 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002157 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00002158 }
Evan Cheng466685d2006-10-09 20:57:25 +00002159 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002160 // Since loads produce two values, make sure to remember that we
Evan Cheng466685d2006-10-09 20:57:25 +00002161 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002162 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
2163 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002164 return Op.getResNo() ? Tmp4 : Tmp3;
Evan Cheng466685d2006-10-09 20:57:25 +00002165 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002166 MVT SrcVT = LD->getMemoryVT();
2167 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002168 int SVOffset = LD->getSrcValueOffset();
2169 unsigned Alignment = LD->getAlignment();
2170 bool isVolatile = LD->isVolatile();
2171
Duncan Sands83ec4b62008-06-06 12:08:01 +00002172 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002173 // Some targets pretend to have an i1 loading operation, and actually
2174 // load an i8. This trick is correct for ZEXTLOAD because the top 7
2175 // bits are guaranteed to be zero; it helps the optimizers understand
2176 // that these bits are zero. It is also useful for EXTLOAD, since it
2177 // tells the optimizers that those bits are undefined. It would be
2178 // nice to have an effective generic way of getting these benefits...
2179 // Until such a way is found, don't insist on promoting i1 here.
2180 (SrcVT != MVT::i1 ||
Evan Cheng03294662008-10-14 21:26:46 +00002181 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002182 // Promote to a byte-sized load if not loading an integral number of
2183 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002184 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2185 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002186 SDValue Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002187
2188 // The extra bits are guaranteed to be zero, since we stored them that
2189 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2190
2191 ISD::LoadExtType NewExtType =
2192 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2193
Dale Johannesenca57b842009-02-02 23:46:53 +00002194 Result = DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002195 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2196 NVT, isVolatile, Alignment);
2197
2198 Ch = Result.getValue(1); // The chain.
2199
2200 if (ExtType == ISD::SEXTLOAD)
2201 // Having the top bits zero doesn't help when sign extending.
Scott Michelfdc40a02009-02-17 22:15:04 +00002202 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002203 Result.getValueType(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002204 Result, DAG.getValueType(SrcVT));
2205 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2206 // All the top bits are guaranteed to be zero - inform the optimizers.
Scott Michelfdc40a02009-02-17 22:15:04 +00002207 Result = DAG.getNode(ISD::AssertZext, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002208 Result.getValueType(), Result,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002209 DAG.getValueType(SrcVT));
2210
2211 Tmp1 = LegalizeOp(Result);
2212 Tmp2 = LegalizeOp(Ch);
2213 } else if (SrcWidth & (SrcWidth - 1)) {
2214 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002215 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002216 "Unsupported extload!");
2217 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2218 assert(RoundWidth < SrcWidth);
2219 unsigned ExtraWidth = SrcWidth - RoundWidth;
2220 assert(ExtraWidth < RoundWidth);
2221 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2222 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002223 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2224 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002225 SDValue Lo, Hi, Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002226 unsigned IncrementSize;
2227
2228 if (TLI.isLittleEndian()) {
2229 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2230 // Load the bottom RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002231 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
2232 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002233 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2234 Alignment);
2235
2236 // Load the remaining ExtraWidth bits.
2237 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002238 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002239 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002240 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002241 LD->getSrcValue(), SVOffset + IncrementSize,
2242 ExtraVT, isVolatile,
2243 MinAlign(Alignment, IncrementSize));
2244
2245 // Build a factor node to remember that this load is independent of the
2246 // other one.
Dale Johannesenca57b842009-02-02 23:46:53 +00002247 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002248 Hi.getValue(1));
2249
2250 // Move the top bits to the right place.
Dale Johannesenca57b842009-02-02 23:46:53 +00002251 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002252 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2253
2254 // Join the hi and lo parts.
Dale Johannesenca57b842009-02-02 23:46:53 +00002255 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002256 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002257 // Big endian - avoid unaligned loads.
2258 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2259 // Load the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002260 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002261 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2262 Alignment);
2263
2264 // Load the remaining ExtraWidth bits.
2265 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002266 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002267 DAG.getIntPtrConstant(IncrementSize));
Scott Michelfdc40a02009-02-17 22:15:04 +00002268 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002269 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002270 LD->getSrcValue(), SVOffset + IncrementSize,
2271 ExtraVT, isVolatile,
2272 MinAlign(Alignment, IncrementSize));
2273
2274 // Build a factor node to remember that this load is independent of the
2275 // other one.
Dale Johannesenca57b842009-02-02 23:46:53 +00002276 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002277 Hi.getValue(1));
2278
2279 // Move the top bits to the right place.
Dale Johannesenca57b842009-02-02 23:46:53 +00002280 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002281 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2282
2283 // Join the hi and lo parts.
Dale Johannesenca57b842009-02-02 23:46:53 +00002284 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002285 }
2286
2287 Tmp1 = LegalizeOp(Result);
2288 Tmp2 = LegalizeOp(Ch);
2289 } else {
Evan Cheng03294662008-10-14 21:26:46 +00002290 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002291 default: assert(0 && "This action is not supported yet!");
2292 case TargetLowering::Custom:
2293 isCustom = true;
2294 // FALLTHROUGH
2295 case TargetLowering::Legal:
2296 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2297 Tmp1 = Result.getValue(0);
2298 Tmp2 = Result.getValue(1);
2299
2300 if (isCustom) {
2301 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002302 if (Tmp3.getNode()) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002303 Tmp1 = LegalizeOp(Tmp3);
2304 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2305 }
2306 } else {
2307 // If this is an unaligned load and the target doesn't support it,
2308 // expand it.
2309 if (!TLI.allowsUnalignedMemoryAccesses()) {
2310 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002311 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002312 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002313 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002314 TLI);
2315 Tmp1 = Result.getOperand(0);
2316 Tmp2 = Result.getOperand(1);
2317 Tmp1 = LegalizeOp(Tmp1);
2318 Tmp2 = LegalizeOp(Tmp2);
2319 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002320 }
2321 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002322 break;
2323 case TargetLowering::Expand:
2324 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2325 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dale Johannesenca57b842009-02-02 23:46:53 +00002326 SDValue Load = DAG.getLoad(SrcVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002327 LD->getSrcValueOffset(),
2328 LD->isVolatile(), LD->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00002329 Result = DAG.getNode(ISD::FP_EXTEND, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002330 Node->getValueType(0), Load);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002331 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2332 Tmp2 = LegalizeOp(Load.getValue(1));
2333 break;
2334 }
2335 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2336 // Turn the unsupported load into an EXTLOAD followed by an explicit
2337 // zero/sign extend inreg.
Dale Johannesenca57b842009-02-02 23:46:53 +00002338 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002339 Tmp1, Tmp2, LD->getSrcValue(),
2340 LD->getSrcValueOffset(), SrcVT,
2341 LD->isVolatile(), LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00002342 SDValue ValRes;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002343 if (ExtType == ISD::SEXTLOAD)
Dale Johannesenca57b842009-02-02 23:46:53 +00002344 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
2345 Result.getValueType(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002346 Result, DAG.getValueType(SrcVT));
2347 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002348 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002349 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2350 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002351 break;
2352 }
Evan Cheng466685d2006-10-09 20:57:25 +00002353 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002354
Evan Cheng466685d2006-10-09 20:57:25 +00002355 // Since loads produce two values, make sure to remember that we legalized
2356 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002357 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2358 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002359 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002360 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002361 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002362 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002363 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002364 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002365 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002366 case Legal:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002367 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Nate Begeman5dc897b2005-10-19 00:06:56 +00002368 // 1 -> Hi
Dale Johannesenca57b842009-02-02 23:46:53 +00002369 Result = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002370 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002371 TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002372 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Result);
Nate Begeman5dc897b2005-10-19 00:06:56 +00002373 } else {
2374 // 0 -> Lo
Scott Michelfdc40a02009-02-17 22:15:04 +00002375 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
Nate Begeman5dc897b2005-10-19 00:06:56 +00002376 Node->getOperand(0));
2377 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002378 break;
2379 case Expand:
2380 // Get both the low and high parts.
2381 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002382 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Nate Begeman5dc897b2005-10-19 00:06:56 +00002383 Result = Tmp2; // 1 -> Hi
2384 else
2385 Result = Tmp1; // 0 -> Lo
2386 break;
2387 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002388 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002389 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002390
2391 case ISD::CopyToReg:
2392 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002393
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002394 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002395 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002396 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002397 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002398 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002399 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002400 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002401 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002402 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002403 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002404 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2405 Tmp3);
2406 } else {
2407 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002408 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002409
Chris Lattner7310fb12005-12-18 15:27:43 +00002410 // Since this produces two values, make sure to remember that we legalized
2411 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002412 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2413 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002414 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002415 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002416 break;
2417
2418 case ISD::RET:
2419 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002420
2421 // Ensure that libcalls are emitted before a return.
Dale Johannesenca57b842009-02-02 23:46:53 +00002422 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002423 Tmp1 = LegalizeOp(Tmp1);
2424 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00002425
Chris Lattner3e928bb2005-01-07 07:47:09 +00002426 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002427 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002428 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002429 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002430 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002431 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002432 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002433 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002434 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002435 if (!Tmp2.getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002436 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002437 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002438
2439 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002440 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002441 std::swap(Lo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00002442
Gabor Greifba36cb52008-08-28 21:40:38 +00002443 if (Hi.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00002444 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002445 Tmp1, Lo, Tmp3, Hi, Tmp3);
Evan Cheng13acce32006-12-11 19:27:14 +00002446 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002447 Result = DAG.getNode(ISD::RET, dl, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002448 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002449 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00002450 SDNode *InVal = Tmp2.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002451 int InIx = Tmp2.getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002452 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2453 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00002454
Dan Gohman7f321562007-06-25 16:23:39 +00002455 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002456 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002457 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002458 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002459 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002460 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002461 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002462 } else if (NumElems == 1) {
2463 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002464 Tmp2 = ScalarizeVectorOp(Tmp2);
2465 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002466 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00002467
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002468 // FIXME: Returns of gcc generic vectors smaller than a legal type
2469 // should be returned in integer registers!
Scott Michelfdc40a02009-02-17 22:15:04 +00002470
Chris Lattnerf87324e2006-04-11 01:31:51 +00002471 // The scalarized value type may not be legal, e.g. it might require
2472 // promotion or expansion. Relegalize the return.
2473 Result = LegalizeOp(Result);
2474 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002475 // FIXME: Returns of gcc generic vectors larger than a legal vector
2476 // type should be returned by reference!
Dan Gohman475871a2008-07-27 21:46:04 +00002477 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002478 SplitVectorOp(Tmp2, Lo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00002479 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002480 Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002481 Result = LegalizeOp(Result);
2482 }
2483 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002484 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002485 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002486 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002487 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002488 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002489 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002490 }
2491 break;
2492 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002493 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002494 break;
2495 default: { // ret <values>
Dan Gohman475871a2008-07-27 21:46:04 +00002496 SmallVector<SDValue, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002497 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002498 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002499 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2500 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002501 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002502 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002503 break;
2504 case Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002505 SDValue Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002506 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002507 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002508 ExpandOp(Node->getOperand(i), Lo, Hi);
2509 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002510 NewValues.push_back(Node->getOperand(i+1));
Gabor Greifba36cb52008-08-28 21:40:38 +00002511 if (Hi.getNode()) {
Evan Cheng13acce32006-12-11 19:27:14 +00002512 NewValues.push_back(Hi);
2513 NewValues.push_back(Node->getOperand(i+1));
2514 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002515 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002516 }
2517 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002518 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002519 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002520
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002521 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002522 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002523 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002524 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002525 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002526 break;
2527 }
2528 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002529
Chris Lattner6862dbc2006-01-29 21:02:23 +00002530 if (Result.getOpcode() == ISD::RET) {
2531 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2532 default: assert(0 && "This action is not supported yet!");
2533 case TargetLowering::Legal: break;
2534 case TargetLowering::Custom:
2535 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002536 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner6862dbc2006-01-29 21:02:23 +00002537 break;
2538 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002539 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002540 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002541 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002542 StoreSDNode *ST = cast<StoreSDNode>(Node);
2543 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2544 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002545 int SVOffset = ST->getSrcValueOffset();
2546 unsigned Alignment = ST->getAlignment();
2547 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002548
Evan Cheng8b2794a2006-10-13 21:14:26 +00002549 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002550 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2551 // FIXME: We shouldn't do this for TargetConstantFP's.
2552 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2553 // to phase ordering between legalized code and the dag combiner. This
2554 // probably means that we need to integrate dag combiner and legalizer
2555 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002556 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002557 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002558 if (CFP->getValueType(0) == MVT::f32 &&
Chris Lattner3cb93512007-10-15 05:46:06 +00002559 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002560 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen7111b022008-10-09 18:53:47 +00002561 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002562 MVT::i32);
Dale Johannesenca57b842009-02-02 23:46:53 +00002563 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002564 SVOffset, isVolatile, Alignment);
2565 break;
2566 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002567 // If this target supports 64-bit registers, do a single 64-bit store.
2568 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen7111b022008-10-09 18:53:47 +00002569 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002570 zextOrTrunc(64), MVT::i64);
Dale Johannesenca57b842009-02-02 23:46:53 +00002571 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner3cb93512007-10-15 05:46:06 +00002572 SVOffset, isVolatile, Alignment);
2573 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002574 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002575 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2576 // stores. If the target supports neither 32- nor 64-bits, this
2577 // xform is certainly not worth it.
Dale Johannesen7111b022008-10-09 18:53:47 +00002578 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman475871a2008-07-27 21:46:04 +00002579 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2580 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002581 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002582
Dale Johannesenca57b842009-02-02 23:46:53 +00002583 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Chris Lattner3cb93512007-10-15 05:46:06 +00002584 SVOffset, isVolatile, Alignment);
Dale Johannesenca57b842009-02-02 23:46:53 +00002585 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002586 DAG.getIntPtrConstant(4));
Dale Johannesenca57b842009-02-02 23:46:53 +00002587 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002588 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002589
Dale Johannesenca57b842009-02-02 23:46:53 +00002590 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002591 break;
2592 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002593 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002594 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002595
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002596 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002597 case Legal: {
2598 Tmp3 = LegalizeOp(ST->getValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00002599 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002600 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002601
Duncan Sands83ec4b62008-06-06 12:08:01 +00002602 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002603 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2604 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002605 case TargetLowering::Legal:
2606 // If this is an unaligned store and the target doesn't support it,
2607 // expand it.
2608 if (!TLI.allowsUnalignedMemoryAccesses()) {
2609 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002610 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002611 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002612 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002613 TLI);
2614 }
2615 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002616 case TargetLowering::Custom:
2617 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002618 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002619 break;
2620 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002621 assert(VT.isVector() && "Unknown legal promote case!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002622 Tmp3 = DAG.getNode(ISD::BIT_CONVERT, dl,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002623 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
Dale Johannesenca57b842009-02-02 23:46:53 +00002624 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002625 ST->getSrcValue(), SVOffset, isVolatile,
2626 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002627 break;
2628 }
2629 break;
2630 }
2631 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002632 if (!ST->getMemoryVT().isVector()) {
2633 // Truncate the value and store the result.
2634 Tmp3 = PromoteOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002635 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Mon P Wang0c397192008-10-30 08:01:45 +00002636 SVOffset, ST->getMemoryVT(),
2637 isVolatile, Alignment);
2638 break;
2639 }
2640 // Fall thru to expand for vector
2641 case Expand: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002642 unsigned IncrementSize = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002643 SDValue Lo, Hi;
Scott Michelfdc40a02009-02-17 22:15:04 +00002644
Evan Cheng8b2794a2006-10-13 21:14:26 +00002645 // If this is a vector type, then we have to calculate the increment as
2646 // the product of the element size in bytes, and the number of elements
2647 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002648 if (ST->getValue().getValueType().isVector()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002649 SDNode *InVal = ST->getValue().getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002650 int InIx = ST->getValue().getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002651 MVT InVT = InVal->getValueType(InIx);
2652 unsigned NumElems = InVT.getVectorNumElements();
2653 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002654
Dan Gohman7f321562007-06-25 16:23:39 +00002655 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002656 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002657 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002658 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002659 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002660 Tmp3 = LegalizeOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002661 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002662 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002663 Result = LegalizeOp(Result);
2664 break;
2665 } else if (NumElems == 1) {
2666 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002667 Tmp3 = ScalarizeVectorOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002668 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002669 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002670 // The scalarized value type may not be legal, e.g. it might require
2671 // promotion or expansion. Relegalize the scalar store.
2672 Result = LegalizeOp(Result);
2673 break;
2674 } else {
Mon P Wang0c397192008-10-30 08:01:45 +00002675 // Check if we have widen this node with another value
2676 std::map<SDValue, SDValue>::iterator I =
2677 WidenNodes.find(ST->getValue());
2678 if (I != WidenNodes.end()) {
2679 Result = StoreWidenVectorOp(ST, Tmp1, Tmp2);
2680 break;
2681 }
2682 else {
2683 SplitVectorOp(ST->getValue(), Lo, Hi);
2684 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
2685 EVT.getSizeInBits()/8;
2686 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002687 }
2688 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002689 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002690 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002691
Richard Pennington4b052dc2008-09-25 16:15:10 +00002692 if (Hi.getNode() && TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002693 std::swap(Lo, Hi);
2694 }
2695
Dale Johannesenca57b842009-02-02 23:46:53 +00002696 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002697 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002698
Gabor Greifba36cb52008-08-28 21:40:38 +00002699 if (Hi.getNode() == NULL) {
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002700 // Must be int <-> float one-to-one expansion.
2701 Result = Lo;
2702 break;
2703 }
2704
Dale Johannesenca57b842009-02-02 23:46:53 +00002705 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002706 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002707 assert(isTypeLegal(Tmp2.getValueType()) &&
2708 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002709 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002710 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenca57b842009-02-02 23:46:53 +00002711 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002712 SVOffset, isVolatile, Alignment);
Dale Johannesenca57b842009-02-02 23:46:53 +00002713 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002714 break;
Mon P Wang0c397192008-10-30 08:01:45 +00002715 } // case Expand
Evan Cheng8b2794a2006-10-13 21:14:26 +00002716 }
2717 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002718 switch (getTypeAction(ST->getValue().getValueType())) {
2719 case Legal:
2720 Tmp3 = LegalizeOp(ST->getValue());
2721 break;
2722 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002723 if (!ST->getValue().getValueType().isVector()) {
2724 // We can promote the value, the truncstore will still take care of it.
2725 Tmp3 = PromoteOp(ST->getValue());
2726 break;
2727 }
2728 // Vector case falls through to expand
Chris Lattnerddf89562008-01-17 19:59:44 +00002729 case Expand:
2730 // Just store the low part. This may become a non-trunc store, so make
2731 // sure to use getTruncStore, not UpdateNodeOperands below.
2732 ExpandOp(ST->getValue(), Tmp3, Tmp4);
Dale Johannesenca57b842009-02-02 23:46:53 +00002733 return DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattnerddf89562008-01-17 19:59:44 +00002734 SVOffset, MVT::i8, isVolatile, Alignment);
2735 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002736
Duncan Sands83ec4b62008-06-06 12:08:01 +00002737 MVT StVT = ST->getMemoryVT();
2738 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002739
Duncan Sands83ec4b62008-06-06 12:08:01 +00002740 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002741 // Promote to a byte-sized store with upper bits zero if not
2742 // storing an integral number of bytes. For example, promote
2743 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002744 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Dale Johannesenca57b842009-02-02 23:46:53 +00002745 Tmp3 = DAG.getZeroExtendInReg(Tmp3, dl, StVT);
2746 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002747 SVOffset, NVT, isVolatile, Alignment);
2748 } else if (StWidth & (StWidth - 1)) {
2749 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002750 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002751 "Unsupported truncstore!");
2752 unsigned RoundWidth = 1 << Log2_32(StWidth);
2753 assert(RoundWidth < StWidth);
2754 unsigned ExtraWidth = StWidth - RoundWidth;
2755 assert(ExtraWidth < RoundWidth);
2756 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2757 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002758 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2759 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002760 SDValue Lo, Hi;
Duncan Sands7e857202008-01-22 07:17:34 +00002761 unsigned IncrementSize;
2762
2763 if (TLI.isLittleEndian()) {
2764 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2765 // Store the bottom RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002766 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002767 SVOffset, RoundVT,
2768 isVolatile, Alignment);
2769
2770 // Store the remaining ExtraWidth bits.
2771 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002772 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00002773 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002774 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands7e857202008-01-22 07:17:34 +00002775 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002776 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002777 SVOffset + IncrementSize, ExtraVT, isVolatile,
2778 MinAlign(Alignment, IncrementSize));
2779 } else {
2780 // Big endian - avoid unaligned stores.
2781 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2782 // Store the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002783 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands7e857202008-01-22 07:17:34 +00002784 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002785 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
2786 SVOffset, RoundVT, isVolatile, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00002787
2788 // Store the remaining ExtraWidth bits.
2789 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002790 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00002791 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002792 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002793 SVOffset + IncrementSize, ExtraVT, isVolatile,
2794 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002795 }
Duncan Sands7e857202008-01-22 07:17:34 +00002796
2797 // The order of the stores doesn't matter.
Dale Johannesenca57b842009-02-02 23:46:53 +00002798 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Duncan Sands7e857202008-01-22 07:17:34 +00002799 } else {
2800 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2801 Tmp2 != ST->getBasePtr())
2802 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2803 ST->getOffset());
2804
2805 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2806 default: assert(0 && "This action is not supported yet!");
2807 case TargetLowering::Legal:
2808 // If this is an unaligned store and the target doesn't support it,
2809 // expand it.
2810 if (!TLI.allowsUnalignedMemoryAccesses()) {
2811 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002812 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002813 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002814 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands7e857202008-01-22 07:17:34 +00002815 TLI);
2816 }
2817 break;
2818 case TargetLowering::Custom:
2819 Result = TLI.LowerOperation(Result, DAG);
2820 break;
2821 case Expand:
2822 // TRUNCSTORE:i16 i32 -> STORE i16
2823 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
Dale Johannesenca57b842009-02-02 23:46:53 +00002824 Tmp3 = DAG.getNode(ISD::TRUNCATE, dl, StVT, Tmp3);
2825 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
2826 SVOffset, isVolatile, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00002827 break;
2828 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002829 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002830 }
2831 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002832 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002833 case ISD::PCMARKER:
2834 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002835 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002836 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002837 case ISD::STACKSAVE:
2838 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002839 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2840 Tmp1 = Result.getValue(0);
2841 Tmp2 = Result.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002842
Chris Lattner140d53c2006-01-13 02:50:02 +00002843 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2844 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002845 case TargetLowering::Legal: break;
2846 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002847 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002848 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002849 Tmp1 = LegalizeOp(Tmp3);
2850 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002851 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002852 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002853 case TargetLowering::Expand:
Scott Michelfdc40a02009-02-17 22:15:04 +00002854 // Expand to CopyFromReg if the target set
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002855 // StackPointerRegisterToSaveRestore.
2856 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00002857 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), dl, SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002858 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002859 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002860 } else {
Dale Johannesene8d72302009-02-06 23:05:02 +00002861 Tmp1 = DAG.getUNDEF(Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002862 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002863 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002864 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002865 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002866
2867 // Since stacksave produce two values, make sure to remember that we
2868 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002869 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2870 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002871 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002872
Chris Lattner140d53c2006-01-13 02:50:02 +00002873 case ISD::STACKRESTORE:
2874 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2875 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002876 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00002877
Chris Lattner140d53c2006-01-13 02:50:02 +00002878 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2879 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002880 case TargetLowering::Legal: break;
2881 case TargetLowering::Custom:
2882 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002883 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002884 break;
2885 case TargetLowering::Expand:
Scott Michelfdc40a02009-02-17 22:15:04 +00002886 // Expand to CopyToReg if the target set
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002887 // StackPointerRegisterToSaveRestore.
2888 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00002889 Result = DAG.getCopyToReg(Tmp1, dl, SP, Tmp2);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002890 } else {
2891 Result = Tmp1;
2892 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002893 break;
2894 }
2895 break;
2896
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002897 case ISD::READCYCLECOUNTER:
2898 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002899 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002900 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2901 Node->getValueType(0))) {
2902 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002903 case TargetLowering::Legal:
2904 Tmp1 = Result.getValue(0);
2905 Tmp2 = Result.getValue(1);
2906 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002907 case TargetLowering::Custom:
2908 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002909 Tmp1 = LegalizeOp(Result.getValue(0));
2910 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002911 break;
2912 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002913
2914 // Since rdcc produce two values, make sure to remember that we legalized
2915 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002916 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2917 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002918 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002919
Chris Lattner2ee743f2005-01-14 22:08:15 +00002920 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002921 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2922 case Expand: assert(0 && "It's impossible to expand bools");
2923 case Legal:
2924 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2925 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002926 case Promote: {
Mon P Wang0c397192008-10-30 08:01:45 +00002927 assert(!Node->getOperand(0).getValueType().isVector() && "not possible");
Chris Lattner47e92232005-01-18 19:27:06 +00002928 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002929 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002930 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002931 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002932 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenca57b842009-02-02 23:46:53 +00002933 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002934 break;
2935 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002936 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002937 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002938 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002939
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002940 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00002941
Nate Begemanb942a3d2005-08-23 04:29:48 +00002942 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002943 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002944 case TargetLowering::Legal: break;
2945 case TargetLowering::Custom: {
2946 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002947 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002948 break;
2949 }
Nate Begeman9373a812005-08-10 20:51:12 +00002950 case TargetLowering::Expand:
2951 if (Tmp1.getOpcode() == ISD::SETCC) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002952 Result = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
Nate Begeman9373a812005-08-10 20:51:12 +00002953 Tmp2, Tmp3,
2954 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2955 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00002956 Result = DAG.getSelectCC(dl, Tmp1,
Nate Begeman9373a812005-08-10 20:51:12 +00002957 DAG.getConstant(0, Tmp1.getValueType()),
2958 Tmp2, Tmp3, ISD::SETNE);
2959 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002960 break;
2961 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002962 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002963 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2964 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002965 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002966 ExtOp = ISD::BIT_CONVERT;
2967 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002968 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002969 ExtOp = ISD::ANY_EXTEND;
2970 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002971 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002972 ExtOp = ISD::FP_EXTEND;
2973 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002974 }
2975 // Promote each of the values to the new type.
Dale Johannesenca57b842009-02-02 23:46:53 +00002976 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Tmp2);
2977 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Tmp3);
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002978 // Perform the larger operation, then round down.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002979 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2, Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002980 if (TruncOp != ISD::FP_ROUND)
Dale Johannesenca57b842009-02-02 23:46:53 +00002981 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00002982 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002983 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00002984 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002985 break;
2986 }
2987 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002988 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002989 case ISD::SELECT_CC: {
2990 Tmp1 = Node->getOperand(0); // LHS
2991 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002992 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2993 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman475871a2008-07-27 21:46:04 +00002994 SDValue CC = Node->getOperand(4);
Scott Michelfdc40a02009-02-17 22:15:04 +00002995
2996 LegalizeSetCC(TLI.getSetCCResultType(Tmp1.getValueType()),
Dale Johannesenbb5da912009-02-02 20:41:04 +00002997 Tmp1, Tmp2, CC, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00002998
Evan Cheng7f042682008-10-15 02:05:31 +00002999 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00003000 // the LHS is a legal SETCC itself. In this case, we need to compare
3001 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00003002 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003003 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3004 CC = DAG.getCondCode(ISD::SETNE);
3005 }
3006 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
3007
3008 // Everything is legal, see if we should expand this op or something.
3009 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
3010 default: assert(0 && "This action is not supported yet!");
3011 case TargetLowering::Legal: break;
3012 case TargetLowering::Custom:
3013 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003014 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00003015 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003016 }
3017 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00003018 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003019 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00003020 Tmp1 = Node->getOperand(0);
3021 Tmp2 = Node->getOperand(1);
3022 Tmp3 = Node->getOperand(2);
Dale Johannesenbb5da912009-02-02 20:41:04 +00003023 LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003024
3025 // If we had to Expand the SetCC operands into a SELECT node, then it may
3026 // not always be possible to return a true LHS & RHS. In this case, just
Nate Begeman750ac1b2006-02-01 07:19:44 +00003027 // return the value we legalized, returned in the LHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003028 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003029 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003030 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003031 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003032
Chris Lattner73e142f2006-01-30 22:43:50 +00003033 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003034 default: assert(0 && "Cannot handle this action for SETCC yet!");
3035 case TargetLowering::Custom:
3036 isCustom = true;
3037 // FALLTHROUGH.
3038 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00003039 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00003040 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00003041 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003042 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00003043 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003044 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003045 case TargetLowering::Promote: {
3046 // First step, figure out the appropriate operation to use.
3047 // Allow SETCC to not be supported for all legal data types
3048 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00003049 MVT NewInTy = Node->getOperand(0).getValueType();
3050 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00003051
3052 // Scan for the appropriate larger type to use.
3053 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003054 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00003055
Duncan Sands83ec4b62008-06-06 12:08:01 +00003056 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003057 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003058 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003059 "Fell off of the edge of the floating point world");
Scott Michelfdc40a02009-02-17 22:15:04 +00003060
Andrew Lenharthae355752005-11-30 17:12:26 +00003061 // If the target supports SETCC of this type, use it.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003062 if (TLI.isOperationLegalOrCustom(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00003063 break;
3064 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00003065 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00003066 assert(0 && "Cannot promote Legal Integer SETCC yet");
3067 else {
Dale Johannesenca57b842009-02-02 23:46:53 +00003068 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp1);
3069 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp2);
Andrew Lenharthae355752005-11-30 17:12:26 +00003070 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003071 Tmp1 = LegalizeOp(Tmp1);
3072 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00003073 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00003074 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00003075 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003076 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003077 case TargetLowering::Expand:
3078 // Expand a setcc node into a select_cc of the same condition, lhs, and
3079 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003080 MVT VT = Node->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003081 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Nate Begemanb942a3d2005-08-23 04:29:48 +00003082 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00003083 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00003084 break;
3085 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003086 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003087 case ISD::VSETCC: {
3088 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3089 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman475871a2008-07-27 21:46:04 +00003090 SDValue CC = Node->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00003091
Nate Begemanb43e9c12008-05-12 19:40:03 +00003092 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
3093
3094 // Everything is legal, see if we should expand this op or something.
3095 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
3096 default: assert(0 && "This action is not supported yet!");
3097 case TargetLowering::Legal: break;
3098 case TargetLowering::Custom:
3099 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003100 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003101 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003102 case TargetLowering::Expand: {
3103 // Unroll into a nasty set of scalar code for now.
3104 MVT VT = Node->getValueType(0);
3105 unsigned NumElems = VT.getVectorNumElements();
3106 MVT EltVT = VT.getVectorElementType();
3107 MVT TmpEltVT = Tmp1.getValueType().getVectorElementType();
3108 SmallVector<SDValue, 8> Ops(NumElems);
3109 for (unsigned i = 0; i < NumElems; ++i) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003110 SDValue In1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT,
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003111 Tmp1, DAG.getIntPtrConstant(i));
Dale Johannesenca57b842009-02-02 23:46:53 +00003112 Ops[i] = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(TmpEltVT),
3113 In1, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3114 TmpEltVT, Tmp2,
3115 DAG.getIntPtrConstant(i)),
Mon P Wang84aff842008-12-17 08:49:47 +00003116 CC);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00003117 Ops[i] = DAG.getNode(ISD::SELECT, dl, EltVT, Ops[i],
3118 DAG.getConstant(APInt::getAllOnesValue
3119 (EltVT.getSizeInBits()), EltVT),
3120 DAG.getConstant(0, EltVT));
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003121 }
Evan Chenga87008d2009-02-25 22:49:59 +00003122 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElems);
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003123 break;
3124 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00003125 }
3126 break;
3127 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00003128
Chris Lattner5b359c62005-04-02 04:00:59 +00003129 case ISD::SHL_PARTS:
3130 case ISD::SRA_PARTS:
3131 case ISD::SRL_PARTS: {
Dan Gohman475871a2008-07-27 21:46:04 +00003132 SmallVector<SDValue, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00003133 bool Changed = false;
Duncan Sands92abc622009-01-31 15:50:11 +00003134 unsigned N = Node->getNumOperands();
3135 for (unsigned i = 0; i + 1 < N; ++i) {
Chris Lattner84f67882005-01-20 18:52:28 +00003136 Ops.push_back(LegalizeOp(Node->getOperand(i)));
3137 Changed |= Ops.back() != Node->getOperand(i);
3138 }
Duncan Sands92abc622009-01-31 15:50:11 +00003139 Ops.push_back(LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(N-1))));
3140 Changed |= Ops.back() != Node->getOperand(N-1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003141 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003142 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00003143
Evan Cheng05a2d562006-01-09 18:31:59 +00003144 switch (TLI.getOperationAction(Node->getOpcode(),
3145 Node->getValueType(0))) {
3146 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003147 case TargetLowering::Legal: break;
3148 case TargetLowering::Custom:
3149 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003150 if (Tmp1.getNode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003151 SDValue Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00003152 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003153 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman475871a2008-07-27 21:46:04 +00003154 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003155 if (i == Op.getResNo())
Evan Cheng12f22742006-01-19 04:54:52 +00003156 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00003157 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003158 assert(RetVal.getNode() && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00003159 return RetVal;
3160 }
Evan Cheng05a2d562006-01-09 18:31:59 +00003161 break;
3162 }
3163
Chris Lattner2c8086f2005-04-02 05:00:07 +00003164 // Since these produce multiple values, make sure to remember that we
3165 // legalized all of them.
3166 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00003167 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00003168 return Result.getValue(Op.getResNo());
Chris Lattner84f67882005-01-20 18:52:28 +00003169 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003170
3171 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00003172 case ISD::ADD:
3173 case ISD::SUB:
3174 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00003175 case ISD::MULHS:
3176 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003177 case ISD::UDIV:
3178 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003179 case ISD::AND:
3180 case ISD::OR:
3181 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00003182 case ISD::SHL:
3183 case ISD::SRL:
3184 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00003185 case ISD::FADD:
3186 case ISD::FSUB:
3187 case ISD::FMUL:
3188 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00003189 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003190 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003191 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003192
3193 if ((Node->getOpcode() == ISD::SHL ||
3194 Node->getOpcode() == ISD::SRL ||
3195 Node->getOpcode() == ISD::SRA) &&
Duncan Sands92abc622009-01-31 15:50:11 +00003196 !Node->getValueType(0).isVector())
3197 Tmp2 = DAG.getShiftAmountOperand(Tmp2);
3198
3199 switch (getTypeAction(Tmp2.getValueType())) {
3200 case Expand: assert(0 && "Not possible");
3201 case Legal:
3202 Tmp2 = LegalizeOp(Tmp2); // Legalize the RHS.
3203 break;
3204 case Promote:
3205 Tmp2 = PromoteOp(Tmp2); // Promote the RHS.
3206 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003207 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003208
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003209 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Mon P Wangaeb06d22008-11-10 04:46:22 +00003210
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003211 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003212 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00003213 case TargetLowering::Legal: break;
3214 case TargetLowering::Custom:
3215 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003216 if (Tmp1.getNode()) {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003217 Result = Tmp1;
3218 break;
Nate Begeman24dc3462008-07-29 19:07:27 +00003219 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003220 // Fall through if the custom lower can't deal with the operation
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003221 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003222 MVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003223
Dan Gohman525178c2007-10-08 18:33:35 +00003224 // See if multiply or divide can be lowered using two-result operations.
3225 SDVTList VTs = DAG.getVTList(VT, VT);
3226 if (Node->getOpcode() == ISD::MUL) {
3227 // We just need the low half of the multiply; try both the signed
3228 // and unsigned forms. If the target supports both SMUL_LOHI and
3229 // UMUL_LOHI, form a preference by checking which forms of plain
3230 // MULH it supports.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003231 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3232 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3233 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3234 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
Dan Gohman525178c2007-10-08 18:33:35 +00003235 unsigned OpToUse = 0;
3236 if (HasSMUL_LOHI && !HasMULHS) {
3237 OpToUse = ISD::SMUL_LOHI;
3238 } else if (HasUMUL_LOHI && !HasMULHU) {
3239 OpToUse = ISD::UMUL_LOHI;
3240 } else if (HasSMUL_LOHI) {
3241 OpToUse = ISD::SMUL_LOHI;
3242 } else if (HasUMUL_LOHI) {
3243 OpToUse = ISD::UMUL_LOHI;
3244 }
3245 if (OpToUse) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003246 Result = SDValue(DAG.getNode(OpToUse, dl, VTs, Tmp1, Tmp2).getNode(),
3247 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003248 break;
3249 }
3250 }
3251 if (Node->getOpcode() == ISD::MULHS &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003252 TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003253 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003254 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003255 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003256 break;
3257 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003258 if (Node->getOpcode() == ISD::MULHU &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003259 TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003260 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, dl,
3261 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003262 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003263 break;
3264 }
3265 if (Node->getOpcode() == ISD::SDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003266 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003267 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003268 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003269 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003270 break;
3271 }
3272 if (Node->getOpcode() == ISD::UDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003273 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003274 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3275 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003276 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003277 break;
3278 }
Mon P Wang87c8a8f2008-12-18 20:03:17 +00003279
Dan Gohman82669522007-10-11 23:57:53 +00003280 // Check to see if we have a libcall for this operator.
3281 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3282 bool isSigned = false;
3283 switch (Node->getOpcode()) {
3284 case ISD::UDIV:
3285 case ISD::SDIV:
3286 if (VT == MVT::i32) {
3287 LC = Node->getOpcode() == ISD::UDIV
Mon P Wang0c397192008-10-30 08:01:45 +00003288 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003289 isSigned = Node->getOpcode() == ISD::SDIV;
3290 }
3291 break;
Chris Lattner31d71612008-10-04 21:27:46 +00003292 case ISD::MUL:
3293 if (VT == MVT::i32)
3294 LC = RTLIB::MUL_I32;
Nate Begeman9b994852009-01-24 22:12:48 +00003295 else if (VT == MVT::i64)
Scott Michel845145f2008-12-29 03:21:37 +00003296 LC = RTLIB::MUL_I64;
Chris Lattner31d71612008-10-04 21:27:46 +00003297 break;
Dan Gohman82669522007-10-11 23:57:53 +00003298 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003299 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3300 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003301 break;
Scott Micheld1e8d9c2009-01-21 04:58:48 +00003302 case ISD::FDIV:
3303 LC = GetFPLibCall(VT, RTLIB::DIV_F32, RTLIB::DIV_F64, RTLIB::DIV_F80,
3304 RTLIB::DIV_PPCF128);
3305 break;
Dan Gohman82669522007-10-11 23:57:53 +00003306 default: break;
3307 }
3308 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +00003309 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003310 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003311 break;
3312 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003313
Duncan Sands83ec4b62008-06-06 12:08:01 +00003314 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003315 "Cannot expand this binary operator!");
3316 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003317 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003318 break;
3319 }
Evan Chengcc987612006-04-12 21:20:24 +00003320 case TargetLowering::Promote: {
3321 switch (Node->getOpcode()) {
3322 default: assert(0 && "Do not know how to promote this BinOp!");
3323 case ISD::AND:
3324 case ISD::OR:
3325 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003326 MVT OVT = Node->getValueType(0);
3327 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3328 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003329 // Bit convert each of the values to the new type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003330 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
3331 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
3332 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Evan Chengcc987612006-04-12 21:20:24 +00003333 // Bit convert the result back the original type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003334 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Evan Chengcc987612006-04-12 21:20:24 +00003335 break;
3336 }
3337 }
3338 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003339 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003340 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003341
Dan Gohmane14ea862007-10-05 14:17:22 +00003342 case ISD::SMUL_LOHI:
3343 case ISD::UMUL_LOHI:
3344 case ISD::SDIVREM:
3345 case ISD::UDIVREM:
3346 // These nodes will only be produced by target-specific lowering, so
3347 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003348 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003349 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003350
3351 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3352 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3353 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003354 break;
3355
Chris Lattnera09f8482006-03-05 05:09:38 +00003356 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3357 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3358 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3359 case Expand: assert(0 && "Not possible");
3360 case Legal:
3361 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3362 break;
3363 case Promote:
3364 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3365 break;
3366 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003367
Chris Lattnera09f8482006-03-05 05:09:38 +00003368 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00003369
Chris Lattnera09f8482006-03-05 05:09:38 +00003370 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3371 default: assert(0 && "Operation not supported");
3372 case TargetLowering::Custom:
3373 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003374 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003375 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003376 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003377 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003378 // If this target supports fabs/fneg natively and select is cheap,
3379 // do this efficiently.
3380 if (!TLI.isSelectExpensive() &&
3381 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3382 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003383 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003384 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003385 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003386 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003387 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dale Johannesenca57b842009-02-02 23:46:53 +00003388 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, IVT, Tmp2);
3389 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(IVT),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003390 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3391 // Get the absolute value of the result.
Dale Johannesenca57b842009-02-02 23:46:53 +00003392 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
Chris Lattner8f4191d2006-03-13 06:08:38 +00003393 // Select between the nabs and abs value based on the sign bit of
3394 // the input.
Dale Johannesenca57b842009-02-02 23:46:53 +00003395 Result = DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
Scott Michelfdc40a02009-02-17 22:15:04 +00003396 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003397 AbsVal),
3398 AbsVal);
3399 Result = LegalizeOp(Result);
3400 break;
3401 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003402
Chris Lattner8f4191d2006-03-13 06:08:38 +00003403 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003404 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003405 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3406 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
Dale Johannesenca57b842009-02-02 23:46:53 +00003407 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0), Result);
Evan Cheng912095b2007-01-04 21:56:39 +00003408 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003409 break;
3410 }
Evan Cheng912095b2007-01-04 21:56:39 +00003411 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003412 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003413
Nate Begeman551bf3f2006-02-17 05:43:56 +00003414 case ISD::ADDC:
3415 case ISD::SUBC:
3416 Tmp1 = LegalizeOp(Node->getOperand(0));
3417 Tmp2 = LegalizeOp(Node->getOperand(1));
3418 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003419 Tmp3 = Result.getValue(0);
3420 Tmp4 = Result.getValue(1);
3421
3422 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3423 default: assert(0 && "This action is not supported yet!");
3424 case TargetLowering::Legal:
3425 break;
3426 case TargetLowering::Custom:
3427 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3428 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003429 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003430 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3431 }
3432 break;
3433 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003434 // Since this produces two values, make sure to remember that we legalized
3435 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003436 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3437 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3438 return Op.getResNo() ? Tmp4 : Tmp3;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003439
Nate Begeman551bf3f2006-02-17 05:43:56 +00003440 case ISD::ADDE:
3441 case ISD::SUBE:
3442 Tmp1 = LegalizeOp(Node->getOperand(0));
3443 Tmp2 = LegalizeOp(Node->getOperand(1));
3444 Tmp3 = LegalizeOp(Node->getOperand(2));
3445 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003446 Tmp3 = Result.getValue(0);
3447 Tmp4 = Result.getValue(1);
3448
3449 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3450 default: assert(0 && "This action is not supported yet!");
3451 case TargetLowering::Legal:
3452 break;
3453 case TargetLowering::Custom:
3454 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3455 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003456 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003457 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3458 }
3459 break;
3460 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003461 // Since this produces two values, make sure to remember that we legalized
3462 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003463 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3464 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3465 return Op.getResNo() ? Tmp4 : Tmp3;
Scott Michelfdc40a02009-02-17 22:15:04 +00003466
Nate Begeman419f8b62005-10-18 00:27:41 +00003467 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003468 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003469 // TODO: handle the case where the Lo and Hi operands are not of legal type
3470 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3471 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3472 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003473 case TargetLowering::Promote:
3474 case TargetLowering::Custom:
3475 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003476 case TargetLowering::Legal:
3477 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
Dale Johannesenca57b842009-02-02 23:46:53 +00003478 Result = DAG.getNode(ISD::BUILD_PAIR, dl, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003479 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003480 case TargetLowering::Expand:
Dale Johannesenca57b842009-02-02 23:46:53 +00003481 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Tmp1);
3482 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Tmp2);
3483 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003484 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003485 TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00003486 Result = DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003487 break;
3488 }
3489 break;
3490 }
3491
Nate Begemanc105e192005-04-06 00:23:54 +00003492 case ISD::UREM:
3493 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003494 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003495 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3496 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003497
Nate Begemanc105e192005-04-06 00:23:54 +00003498 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003499 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3500 case TargetLowering::Custom:
3501 isCustom = true;
3502 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003503 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003504 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003505 if (isCustom) {
3506 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003507 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003508 }
Nate Begemanc105e192005-04-06 00:23:54 +00003509 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003510 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003511 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003512 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003513 MVT VT = Node->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003514
Dan Gohman525178c2007-10-08 18:33:35 +00003515 // See if remainder can be lowered using two-result operations.
3516 SDVTList VTs = DAG.getVTList(VT, VT);
3517 if (Node->getOpcode() == ISD::SREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003518 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003519 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003520 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003521 break;
3522 }
3523 if (Node->getOpcode() == ISD::UREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003524 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003525 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3526 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003527 break;
3528 }
3529
Duncan Sands83ec4b62008-06-06 12:08:01 +00003530 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003531 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003532 TargetLowering::Legal) {
3533 // X % Y -> X-X/Y*Y
Dale Johannesenca57b842009-02-02 23:46:53 +00003534 Result = DAG.getNode(DivOpc, dl, VT, Tmp1, Tmp2);
3535 Result = DAG.getNode(ISD::MUL, dl, VT, Result, Tmp2);
3536 Result = DAG.getNode(ISD::SUB, dl, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003537 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003538 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003539 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003540 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003541 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003542 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3543 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman475871a2008-07-27 21:46:04 +00003544 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003545 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003546 }
Dan Gohman0d974262007-11-06 22:11:54 +00003547 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003548 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003549 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003550 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003551 Result = LegalizeOp(UnrollVectorOp(Op));
3552 } else {
3553 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003554 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3555 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003556 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003557 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003558 }
Nate Begemanc105e192005-04-06 00:23:54 +00003559 }
3560 break;
3561 }
Dan Gohman525178c2007-10-08 18:33:35 +00003562 }
Nate Begemanc105e192005-04-06 00:23:54 +00003563 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003564 case ISD::VAARG: {
3565 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3566 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3567
Duncan Sands83ec4b62008-06-06 12:08:01 +00003568 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003569 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3570 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003571 case TargetLowering::Custom:
3572 isCustom = true;
3573 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003574 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003575 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3576 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003577 Tmp1 = Result.getValue(1);
3578
3579 if (isCustom) {
3580 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003581 if (Tmp2.getNode()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003582 Result = LegalizeOp(Tmp2);
3583 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3584 }
3585 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003586 break;
3587 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003588 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenca57b842009-02-02 23:46:53 +00003589 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003590 // Increment the pointer, VAList, to the next vaarg
Dale Johannesenca57b842009-02-02 23:46:53 +00003591 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00003592 DAG.getConstant(TLI.getTargetData()->
3593 getTypePaddedSize(VT.getTypeForMVT()),
3594 TLI.getPointerTy()));
Nate Begemanacc398c2006-01-25 18:21:52 +00003595 // Store the incremented VAList to the legalized pointer
Dale Johannesenca57b842009-02-02 23:46:53 +00003596 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003597 // Load the actual argument out of the pointer VAList
Dale Johannesenca57b842009-02-02 23:46:53 +00003598 Result = DAG.getLoad(VT, dl, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003599 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003600 Result = LegalizeOp(Result);
3601 break;
3602 }
3603 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003604 // Since VAARG produces two values, make sure to remember that we
Nate Begemanacc398c2006-01-25 18:21:52 +00003605 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003606 AddLegalizedOperand(SDValue(Node, 0), Result);
3607 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003608 return Op.getResNo() ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003609 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003610
3611 case ISD::VACOPY:
Nate Begemanacc398c2006-01-25 18:21:52 +00003612 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3613 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3614 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3615
3616 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3617 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003618 case TargetLowering::Custom:
3619 isCustom = true;
3620 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003621 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003622 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3623 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003624 if (isCustom) {
3625 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003626 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003627 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003628 break;
3629 case TargetLowering::Expand:
3630 // This defaults to loading a pointer from the input and storing it to the
3631 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003632 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3633 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dale Johannesenca57b842009-02-02 23:46:53 +00003634 Tmp4 = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp3, VS, 0);
3635 Result = DAG.getStore(Tmp4.getValue(1), dl, Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003636 break;
3637 }
3638 break;
3639
Scott Michelfdc40a02009-02-17 22:15:04 +00003640 case ISD::VAEND:
Nate Begemanacc398c2006-01-25 18:21:52 +00003641 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3642 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3643
3644 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3645 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003646 case TargetLowering::Custom:
3647 isCustom = true;
3648 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003649 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003650 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003651 if (isCustom) {
3652 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003653 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003654 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003655 break;
3656 case TargetLowering::Expand:
3657 Result = Tmp1; // Default to a no-op, return the chain
3658 break;
3659 }
3660 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003661
3662 case ISD::VASTART:
Nate Begemanacc398c2006-01-25 18:21:52 +00003663 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3664 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3665
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003666 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00003667
Nate Begemanacc398c2006-01-25 18:21:52 +00003668 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3669 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003670 case TargetLowering::Legal: break;
3671 case TargetLowering::Custom:
3672 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003673 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003674 break;
3675 }
3676 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003677
Nate Begeman35ef9132006-01-11 21:21:00 +00003678 case ISD::ROTL:
3679 case ISD::ROTR:
3680 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003681 Tmp2 = LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(1))); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003682 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003683 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3684 default:
3685 assert(0 && "ROTL/ROTR legalize operation not supported");
3686 break;
3687 case TargetLowering::Legal:
3688 break;
3689 case TargetLowering::Custom:
3690 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003691 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelc9dc1142007-04-02 21:36:32 +00003692 break;
3693 case TargetLowering::Promote:
3694 assert(0 && "Do not know how to promote ROTL/ROTR");
3695 break;
3696 case TargetLowering::Expand:
3697 assert(0 && "Do not know how to expand ROTL/ROTR");
3698 break;
3699 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003700 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003701
Nate Begemand88fc032006-01-14 03:14:10 +00003702 case ISD::BSWAP:
3703 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3704 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003705 case TargetLowering::Custom:
3706 assert(0 && "Cannot custom legalize this yet!");
3707 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003708 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003709 break;
3710 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003711 MVT OVT = Tmp1.getValueType();
3712 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3713 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003714
Dale Johannesenca57b842009-02-02 23:46:53 +00003715 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
3716 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3717 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Chris Lattner456a93a2006-01-28 07:39:30 +00003718 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3719 break;
3720 }
3721 case TargetLowering::Expand:
Dale Johannesen8a782a22009-02-02 22:12:50 +00003722 Result = ExpandBSWAP(Tmp1, dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00003723 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003724 }
3725 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003726
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003727 case ISD::CTPOP:
3728 case ISD::CTTZ:
3729 case ISD::CTLZ:
3730 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3731 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003732 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003733 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003734 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003735 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003736 TargetLowering::Custom) {
3737 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003738 if (Tmp1.getNode()) {
Scott Michel335f4f72007-08-02 02:22:46 +00003739 Result = Tmp1;
3740 }
Scott Michel910b66d2007-07-30 21:00:31 +00003741 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003742 break;
3743 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003744 MVT OVT = Tmp1.getValueType();
3745 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003746
3747 // Zero extend the argument.
Dale Johannesenca57b842009-02-02 23:46:53 +00003748 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003749 // Perform the larger operation, then subtract if needed.
Dale Johannesenca57b842009-02-02 23:46:53 +00003750 Tmp1 = DAG.getNode(Node->getOpcode(), dl, Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003751 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003752 case ISD::CTPOP:
3753 Result = Tmp1;
3754 break;
3755 case ISD::CTTZ:
3756 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesenca57b842009-02-02 23:46:53 +00003757 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
3758 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003759 ISD::SETEQ);
Dale Johannesenca57b842009-02-02 23:46:53 +00003760 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003761 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003762 break;
3763 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003764 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesenca57b842009-02-02 23:46:53 +00003765 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003766 DAG.getConstant(NVT.getSizeInBits() -
3767 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003768 break;
3769 }
3770 break;
3771 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003772 case TargetLowering::Expand:
Dale Johannesen8a782a22009-02-02 22:12:50 +00003773 Result = ExpandBitCount(Node->getOpcode(), Tmp1, dl);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003774 break;
3775 }
3776 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003777
Chris Lattner2c8086f2005-04-02 05:00:07 +00003778 // Unary operators
3779 case ISD::FABS:
3780 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003781 case ISD::FSQRT:
3782 case ISD::FSIN:
3783 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003784 case ISD::FLOG:
3785 case ISD::FLOG2:
3786 case ISD::FLOG10:
3787 case ISD::FEXP:
3788 case ISD::FEXP2:
Dan Gohman509e84f2008-08-21 17:55:02 +00003789 case ISD::FTRUNC:
3790 case ISD::FFLOOR:
3791 case ISD::FCEIL:
3792 case ISD::FRINT:
3793 case ISD::FNEARBYINT:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003794 Tmp1 = LegalizeOp(Node->getOperand(0));
3795 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003796 case TargetLowering::Promote:
3797 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003798 isCustom = true;
3799 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003800 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003801 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003802 if (isCustom) {
3803 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003804 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng59ad7812006-01-31 18:14:25 +00003805 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003806 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003807 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003808 switch (Node->getOpcode()) {
3809 default: assert(0 && "Unreachable!");
3810 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003811 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3812 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00003813 Result = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003814 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003815 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003816 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003817 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003818 Tmp2 = DAG.getConstantFP(0.0, VT);
Dale Johannesenca57b842009-02-02 23:46:53 +00003819 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00003820 Tmp1, Tmp2, ISD::SETUGT);
Dale Johannesenca57b842009-02-02 23:46:53 +00003821 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3822 Result = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003823 break;
3824 }
Evan Cheng9d24ac52008-09-09 23:35:53 +00003825 case ISD::FSQRT:
3826 case ISD::FSIN:
Scott Michelfdc40a02009-02-17 22:15:04 +00003827 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003828 case ISD::FLOG:
3829 case ISD::FLOG2:
3830 case ISD::FLOG10:
3831 case ISD::FEXP:
3832 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003833 case ISD::FTRUNC:
3834 case ISD::FFLOOR:
3835 case ISD::FCEIL:
3836 case ISD::FRINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00003837 case ISD::FNEARBYINT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003838 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003839
3840 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003841 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003842 Result = LegalizeOp(UnrollVectorOp(Op));
3843 break;
3844 }
3845
Evan Cheng56966222007-01-12 02:11:51 +00003846 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003847 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003848 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003849 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3850 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003851 break;
3852 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003853 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3854 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003855 break;
3856 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003857 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3858 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003859 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003860 case ISD::FLOG:
3861 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3862 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3863 break;
3864 case ISD::FLOG2:
3865 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3866 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3867 break;
3868 case ISD::FLOG10:
3869 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3870 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3871 break;
3872 case ISD::FEXP:
3873 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3874 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3875 break;
3876 case ISD::FEXP2:
3877 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3878 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3879 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003880 case ISD::FTRUNC:
3881 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3882 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3883 break;
3884 case ISD::FFLOOR:
3885 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3886 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3887 break;
3888 case ISD::FCEIL:
3889 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3890 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3891 break;
3892 case ISD::FRINT:
3893 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3894 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3895 break;
3896 case ISD::FNEARBYINT:
3897 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3898 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3899 break;
Evan Cheng9d24ac52008-09-09 23:35:53 +00003900 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003901 default: assert(0 && "Unreachable!");
3902 }
Dan Gohman475871a2008-07-27 21:46:04 +00003903 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003904 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003905 break;
3906 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003907 }
3908 break;
3909 }
3910 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003911 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003912 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003913
3914 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003915 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003916 Result = LegalizeOp(UnrollVectorOp(Op));
3917 break;
3918 }
3919
3920 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003921 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3922 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003923 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003924 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003925 break;
3926 }
Chris Lattner35481892005-12-23 00:16:34 +00003927 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003928 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003929 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00003930 Node->getValueType(0), dl);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003931 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003932 // The input has to be a vector type, we have to either scalarize it, pack
3933 // it, or convert it based on whether the input vector type is legal.
Gabor Greifba36cb52008-08-28 21:40:38 +00003934 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00003935 int InIx = Node->getOperand(0).getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003936 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3937 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003938
Dan Gohman7f321562007-06-25 16:23:39 +00003939 // Figure out if there is a simple type corresponding to this Vector
3940 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003941 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003942 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003943 // Turn this into a bit convert of the vector input.
Scott Michelfdc40a02009-02-17 22:15:04 +00003944 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohman7f321562007-06-25 16:23:39 +00003945 LegalizeOp(Node->getOperand(0)));
3946 break;
3947 } else if (NumElems == 1) {
3948 // Turn this into a bit convert of the scalar input.
Scott Michelfdc40a02009-02-17 22:15:04 +00003949 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohman7f321562007-06-25 16:23:39 +00003950 ScalarizeVectorOp(Node->getOperand(0)));
3951 break;
3952 } else {
3953 // FIXME: UNIMP! Store then reload
3954 assert(0 && "Cast from unsupported vector type not implemented yet!");
3955 }
Chris Lattner67993f72006-01-23 07:30:46 +00003956 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003957 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3958 Node->getOperand(0).getValueType())) {
3959 default: assert(0 && "Unknown operation action!");
3960 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003961 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00003962 Node->getValueType(0), dl);
Chris Lattner35481892005-12-23 00:16:34 +00003963 break;
3964 case TargetLowering::Legal:
3965 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003966 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003967 break;
3968 }
3969 }
3970 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00003971 case ISD::CONVERT_RNDSAT: {
3972 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
3973 switch (CvtCode) {
3974 default: assert(0 && "Unknown cvt code!");
3975 case ISD::CVT_SF:
3976 case ISD::CVT_UF:
Mon P Wang77cdf302008-11-10 20:54:11 +00003977 case ISD::CVT_FF:
Mon P Wang1cd46bb2008-12-09 07:27:39 +00003978 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00003979 case ISD::CVT_FS:
3980 case ISD::CVT_FU:
3981 case ISD::CVT_SS:
3982 case ISD::CVT_SU:
3983 case ISD::CVT_US:
3984 case ISD::CVT_UU: {
3985 SDValue DTyOp = Node->getOperand(1);
3986 SDValue STyOp = Node->getOperand(2);
3987 SDValue RndOp = Node->getOperand(3);
3988 SDValue SatOp = Node->getOperand(4);
3989 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3990 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3991 case Legal:
3992 Tmp1 = LegalizeOp(Node->getOperand(0));
3993 Result = DAG.UpdateNodeOperands(Result, Tmp1, DTyOp, STyOp,
3994 RndOp, SatOp);
3995 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3996 TargetLowering::Custom) {
3997 Tmp1 = TLI.LowerOperation(Result, DAG);
3998 if (Tmp1.getNode()) Result = Tmp1;
3999 }
4000 break;
4001 case Promote:
4002 Result = PromoteOp(Node->getOperand(0));
4003 // For FP, make Op1 a i32
Scott Michelfdc40a02009-02-17 22:15:04 +00004004
Dale Johannesenc460ae92009-02-04 00:13:36 +00004005 Result = DAG.getConvertRndSat(Op.getValueType(), dl, Result,
Mon P Wang77cdf302008-11-10 20:54:11 +00004006 DTyOp, STyOp, RndOp, SatOp, CvtCode);
4007 break;
4008 }
4009 break;
4010 }
4011 } // end switch CvtCode
4012 break;
4013 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00004014 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00004015 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004016 case ISD::UINT_TO_FP: {
4017 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman7f8613e2008-08-14 20:04:46 +00004018 Result = LegalizeINT_TO_FP(Result, isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00004019 Node->getValueType(0), Node->getOperand(0), dl);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004020 break;
4021 }
4022 case ISD::TRUNCATE:
4023 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4024 case Legal:
4025 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel546d7b52008-12-02 19:55:08 +00004026 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
4027 default: assert(0 && "Unknown TRUNCATE legalization operation action!");
4028 case TargetLowering::Custom:
Mon P Wangf67303d2008-12-11 00:44:22 +00004029 isCustom = true;
4030 // FALLTHROUGH
Scott Michel546d7b52008-12-02 19:55:08 +00004031 case TargetLowering::Legal:
Mon P Wangf67303d2008-12-11 00:44:22 +00004032 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4033 if (isCustom) {
4034 Tmp1 = TLI.LowerOperation(Result, DAG);
4035 if (Tmp1.getNode()) Result = Tmp1;
4036 }
4037 break;
Mon P Wang9e5ecb82008-12-12 01:25:51 +00004038 case TargetLowering::Expand:
4039 assert(Result.getValueType().isVector() && "must be vector type");
4040 // Unroll the truncate. We should do better.
4041 Result = LegalizeOp(UnrollVectorOp(Result));
Tilmann Schellerb0a5cdd2008-12-02 12:12:25 +00004042 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004043 break;
4044 case Expand:
4045 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4046
4047 // Since the result is legal, we should just be able to truncate the low
4048 // part of the source.
Dale Johannesenca57b842009-02-02 23:46:53 +00004049 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004050 break;
4051 case Promote:
4052 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004053 Result = DAG.getNode(ISD::TRUNCATE, dl, Op.getValueType(), Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004054 break;
4055 }
4056 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004057
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004058 case ISD::FP_TO_SINT:
4059 case ISD::FP_TO_UINT:
4060 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4061 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00004062 Tmp1 = LegalizeOp(Node->getOperand(0));
4063
Chris Lattner1618beb2005-07-29 00:11:56 +00004064 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
4065 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004066 case TargetLowering::Custom:
4067 isCustom = true;
4068 // FALLTHROUGH
4069 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004070 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004071 if (isCustom) {
4072 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004073 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00004074 }
4075 break;
4076 case TargetLowering::Promote:
4077 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00004078 Node->getOpcode() == ISD::FP_TO_SINT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004079 dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00004080 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00004081 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00004082 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman475871a2008-07-27 21:46:04 +00004083 SDValue True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004084 MVT VT = Node->getOperand(0).getValueType();
4085 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00004086 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00004087 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
4088 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004089 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00004090 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004091 Tmp3 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
Dale Johannesenaf435272009-02-02 19:03:57 +00004092 Node->getOperand(0),
Duncan Sands5480c042009-01-01 15:52:00 +00004093 Tmp2, ISD::SETLT);
Dale Johannesenaf435272009-02-02 19:03:57 +00004094 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
4095 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004096 DAG.getNode(ISD::FSUB, dl, VT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004097 Node->getOperand(0), Tmp2));
4098 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004099 DAG.getConstant(x, NVT));
Dale Johannesenaf435272009-02-02 19:03:57 +00004100 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp3, True, False);
Chris Lattner456a93a2006-01-28 07:39:30 +00004101 break;
Nate Begemand2558e32005-08-14 01:20:53 +00004102 } else {
4103 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
4104 }
4105 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00004106 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004107 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00004108 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004109 MVT VT = Op.getValueType();
4110 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004111 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004112 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004113 if (Node->getOpcode() == ISD::FP_TO_SINT) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004114 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, MVT::ppcf128,
Chris Lattner0bd48932008-01-17 07:00:52 +00004115 Node->getOperand(0), DAG.getValueType(MVT::f64));
Scott Michelfdc40a02009-02-17 22:15:04 +00004116 Result = DAG.getNode(ISD::FP_ROUND, dl, MVT::f64, Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00004117 DAG.getIntPtrConstant(1));
Dale Johannesenaf435272009-02-02 19:03:57 +00004118 Result = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004119 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004120 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
4121 APFloat apf = APFloat(APInt(128, 2, TwoE31));
4122 Tmp2 = DAG.getConstantFP(apf, OVT);
4123 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
4124 // FIXME: generated code sucks.
Scott Michelfdc40a02009-02-17 22:15:04 +00004125 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Node->getOperand(0),
Dale Johannesenaf435272009-02-02 19:03:57 +00004126 Tmp2,
4127 DAG.getNode(ISD::ADD, dl, MVT::i32,
4128 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
4129 DAG.getNode(ISD::FSUB, dl, OVT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004130 Node->getOperand(0), Tmp2)),
4131 DAG.getConstant(0x80000000, MVT::i32)),
Scott Michelfdc40a02009-02-17 22:15:04 +00004132 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004133 Node->getOperand(0)),
4134 DAG.getCondCode(ISD::SETGE));
4135 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004136 break;
4137 }
Dan Gohmana2e94852008-03-10 23:03:31 +00004138 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsb2ff8852008-07-17 02:36:29 +00004139 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
4140 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
4141 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman475871a2008-07-27 21:46:04 +00004142 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00004143 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00004144 break;
4145 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004146 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004147 Tmp1 = PromoteOp(Node->getOperand(0));
4148 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
4149 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004150 break;
4151 }
4152 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004153
Chris Lattnerf2670a82008-01-16 06:57:07 +00004154 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004155 MVT DstVT = Op.getValueType();
4156 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004157 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4158 // The only other way we can lower this is to turn it into a STORE,
4159 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen8a782a22009-02-02 22:12:50 +00004160 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT, dl);
Chris Lattner0bd48932008-01-17 07:00:52 +00004161 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00004162 }
4163 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4164 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4165 case Legal:
4166 Tmp1 = LegalizeOp(Node->getOperand(0));
4167 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4168 break;
4169 case Promote:
4170 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004171 Result = DAG.getNode(ISD::FP_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattnerf2670a82008-01-16 06:57:07 +00004172 break;
4173 }
4174 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004175 }
Dale Johannesen5411a392007-08-09 01:04:01 +00004176 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004177 MVT DstVT = Op.getValueType();
4178 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004179 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4180 if (SrcVT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00004181 SDValue Lo;
Dale Johannesen713ed3f2008-01-20 01:18:38 +00004182 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004183 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00004184 if (DstVT!=MVT::f64)
Dale Johannesenca57b842009-02-02 23:46:53 +00004185 Result = DAG.getNode(ISD::FP_ROUND, dl,
4186 DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00004187 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00004188 }
Chris Lattner0bd48932008-01-17 07:00:52 +00004189 // The only other way we can lower this is to turn it into a STORE,
4190 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen8a782a22009-02-02 22:12:50 +00004191 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT, dl);
Chris Lattner0bd48932008-01-17 07:00:52 +00004192 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00004193 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00004194 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4195 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4196 case Legal:
4197 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00004198 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004199 break;
4200 case Promote:
4201 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004202 Result = DAG.getNode(ISD::FP_ROUND, dl, Op.getValueType(), Tmp1,
Chris Lattner0bd48932008-01-17 07:00:52 +00004203 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004204 break;
4205 }
4206 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004207 }
Chris Lattner13c78e22005-09-02 00:18:10 +00004208 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004209 case ISD::ZERO_EXTEND:
4210 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004211 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00004212 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004213 case Legal:
4214 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00004215 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00004216 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4217 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00004218 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004219 if (Tmp1.getNode()) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00004220 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004221 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004222 case Promote:
4223 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00004224 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004225 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004226 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00004227 break;
Chris Lattner1713e732005-01-16 00:38:00 +00004228 case ISD::ZERO_EXTEND:
4229 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004230 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4231 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004232 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00004233 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004234 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00004235 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004236 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4237 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004238 Result,
4239 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00004240 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004241 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004242 }
4243 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00004244 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00004245 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00004246 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004247 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00004248
4249 // If this operation is not supported, convert it to a shl/shr or load/store
4250 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004251 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
4252 default: assert(0 && "This action not supported for this op yet!");
4253 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004254 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004255 break;
4256 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00004257 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00004258 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00004259 // NOTE: we could fall back on load/store here too for targets without
4260 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004261 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
4262 ExtraVT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00004263 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Dale Johannesenca57b842009-02-02 23:46:53 +00004264 Result = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
Chris Lattner45b8caf2005-01-15 07:15:18 +00004265 Node->getOperand(0), ShiftCst);
Dale Johannesenca57b842009-02-02 23:46:53 +00004266 Result = DAG.getNode(ISD::SRA, dl, Node->getValueType(0),
Chris Lattner45b8caf2005-01-15 07:15:18 +00004267 Result, ShiftCst);
4268 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00004269 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00004270 // EXTLOAD pair, targetting a temporary location (a stack slot).
4271
4272 // NOTE: there is a choice here between constantly creating new stack
4273 // slots and always reusing the same one. We currently always create
4274 // new ones, as reuse may inhibit scheduling.
Scott Michelfdc40a02009-02-17 22:15:04 +00004275 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00004276 Node->getValueType(0), dl);
Chris Lattner45b8caf2005-01-15 07:15:18 +00004277 } else {
4278 assert(0 && "Unknown op");
4279 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004280 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00004281 }
Chris Lattner0f69b292005-01-15 06:18:18 +00004282 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004283 }
Duncan Sands36397f52007-07-27 12:58:54 +00004284 case ISD::TRAMPOLINE: {
Dan Gohman475871a2008-07-27 21:46:04 +00004285 SDValue Ops[6];
Duncan Sands36397f52007-07-27 12:58:54 +00004286 for (unsigned i = 0; i != 6; ++i)
4287 Ops[i] = LegalizeOp(Node->getOperand(i));
4288 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
4289 // The only option for this node is to custom lower it.
4290 Result = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004291 assert(Result.getNode() && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00004292
4293 // Since trampoline produces two values, make sure to remember that we
4294 // legalized both of them.
4295 Tmp1 = LegalizeOp(Result.getValue(1));
4296 Result = LegalizeOp(Result);
Dan Gohman475871a2008-07-27 21:46:04 +00004297 AddLegalizedOperand(SDValue(Node, 0), Result);
4298 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00004299 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00004300 }
Dan Gohman9c78a392008-05-14 00:43:10 +00004301 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004302 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004303 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4304 default: assert(0 && "This action not supported for this op yet!");
4305 case TargetLowering::Custom:
4306 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004307 if (Result.getNode()) break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004308 // Fall Thru
4309 case TargetLowering::Legal:
4310 // If this operation is not supported, lower it to constant 1
4311 Result = DAG.getConstant(1, VT);
4312 break;
4313 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00004314 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004315 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004316 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004317 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004318 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4319 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00004320 case TargetLowering::Legal:
4321 Tmp1 = LegalizeOp(Node->getOperand(0));
4322 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4323 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004324 case TargetLowering::Custom:
4325 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004326 if (Result.getNode()) break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004327 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00004328 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004329 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00004330 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004331 TargetLowering::ArgListTy Args;
Bob Wilsonec15bbf2009-04-10 18:48:47 +00004332 std::pair<SDValue, SDValue> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00004333 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00004334 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00004335 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Dale Johannesen7d2ad622009-01-30 23:10:59 +00004336 Args, DAG, dl);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004337 Result = CallResult.second;
4338 break;
4339 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004340 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004341 }
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004342
Bill Wendling74c37652008-12-09 22:08:41 +00004343 case ISD::SADDO:
4344 case ISD::SSUBO: {
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004345 MVT VT = Node->getValueType(0);
4346 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4347 default: assert(0 && "This action not supported for this op yet!");
4348 case TargetLowering::Custom:
4349 Result = TLI.LowerOperation(Op, DAG);
4350 if (Result.getNode()) break;
4351 // FALLTHROUGH
4352 case TargetLowering::Legal: {
4353 SDValue LHS = LegalizeOp(Node->getOperand(0));
4354 SDValue RHS = LegalizeOp(Node->getOperand(1));
4355
Scott Michelfdc40a02009-02-17 22:15:04 +00004356 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
Dale Johannesenca57b842009-02-02 23:46:53 +00004357 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling74c37652008-12-09 22:08:41 +00004358 LHS, RHS);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004359 MVT OType = Node->getValueType(1);
4360
Bill Wendlinga6af91a2008-11-25 08:19:22 +00004361 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004362
Bill Wendling740464e2008-11-25 19:40:17 +00004363 // LHSSign -> LHS >= 0
4364 // RHSSign -> RHS >= 0
4365 // SumSign -> Sum >= 0
4366 //
Bill Wendling74c37652008-12-09 22:08:41 +00004367 // Add:
Bill Wendling740464e2008-11-25 19:40:17 +00004368 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
Bill Wendling74c37652008-12-09 22:08:41 +00004369 // Sub:
4370 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
Bill Wendling740464e2008-11-25 19:40:17 +00004371 //
Dale Johannesenca57b842009-02-02 23:46:53 +00004372 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
4373 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
Scott Michelfdc40a02009-02-17 22:15:04 +00004374 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
4375 Node->getOpcode() == ISD::SADDO ?
Bill Wendling74c37652008-12-09 22:08:41 +00004376 ISD::SETEQ : ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004377
Dale Johannesenca57b842009-02-02 23:46:53 +00004378 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
4379 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004380
Dale Johannesenca57b842009-02-02 23:46:53 +00004381 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004382
4383 MVT ValueVTs[] = { LHS.getValueType(), OType };
4384 SDValue Ops[] = { Sum, Cmp };
4385
Scott Michelfdc40a02009-02-17 22:15:04 +00004386 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00004387 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004388 &Ops[0], 2);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004389 SDNode *RNode = Result.getNode();
Dan Gohmanc23e4962009-04-15 20:06:30 +00004390 DAG.ReplaceAllUsesWith(Node, RNode);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004391 break;
4392 }
4393 }
4394
4395 break;
4396 }
Bill Wendling74c37652008-12-09 22:08:41 +00004397 case ISD::UADDO:
4398 case ISD::USUBO: {
Bill Wendling41ea7e72008-11-24 19:21:46 +00004399 MVT VT = Node->getValueType(0);
4400 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4401 default: assert(0 && "This action not supported for this op yet!");
4402 case TargetLowering::Custom:
4403 Result = TLI.LowerOperation(Op, DAG);
4404 if (Result.getNode()) break;
4405 // FALLTHROUGH
4406 case TargetLowering::Legal: {
4407 SDValue LHS = LegalizeOp(Node->getOperand(0));
4408 SDValue RHS = LegalizeOp(Node->getOperand(1));
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004409
Bill Wendling74c37652008-12-09 22:08:41 +00004410 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
Dale Johannesenca57b842009-02-02 23:46:53 +00004411 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling74c37652008-12-09 22:08:41 +00004412 LHS, RHS);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004413 MVT OType = Node->getValueType(1);
Dale Johannesenca57b842009-02-02 23:46:53 +00004414 SDValue Cmp = DAG.getSetCC(dl, OType, Sum, LHS,
Scott Michelfdc40a02009-02-17 22:15:04 +00004415 Node->getOpcode () == ISD::UADDO ?
Bill Wendling74c37652008-12-09 22:08:41 +00004416 ISD::SETULT : ISD::SETUGT);
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004417
Bill Wendling41ea7e72008-11-24 19:21:46 +00004418 MVT ValueVTs[] = { LHS.getValueType(), OType };
4419 SDValue Ops[] = { Sum, Cmp };
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004420
Scott Michelfdc40a02009-02-17 22:15:04 +00004421 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00004422 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004423 &Ops[0], 2);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004424 SDNode *RNode = Result.getNode();
Dan Gohmanc23e4962009-04-15 20:06:30 +00004425 DAG.ReplaceAllUsesWith(Node, RNode);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004426 break;
4427 }
4428 }
4429
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004430 break;
4431 }
Bill Wendling74c37652008-12-09 22:08:41 +00004432 case ISD::SMULO:
4433 case ISD::UMULO: {
4434 MVT VT = Node->getValueType(0);
4435 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4436 default: assert(0 && "This action is not supported at all!");
4437 case TargetLowering::Custom:
4438 Result = TLI.LowerOperation(Op, DAG);
4439 if (Result.getNode()) break;
4440 // Fall Thru
4441 case TargetLowering::Legal:
4442 // FIXME: According to Hacker's Delight, this can be implemented in
4443 // target independent lowering, but it would be inefficient, since it
Bill Wendlingbc5e15e2008-12-10 02:01:32 +00004444 // requires a division + a branch.
Scott Michelfdc40a02009-02-17 22:15:04 +00004445 assert(0 && "Target independent lowering is not supported for SMULO/UMULO!");
Bill Wendling74c37652008-12-09 22:08:41 +00004446 break;
4447 }
4448 break;
4449 }
4450
Chris Lattner45b8caf2005-01-15 07:15:18 +00004451 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004452
Chris Lattner4ddd2832006-04-08 04:13:17 +00004453 assert(Result.getValueType() == Op.getValueType() &&
4454 "Bad legalization!");
Scott Michelfdc40a02009-02-17 22:15:04 +00004455
Chris Lattner456a93a2006-01-28 07:39:30 +00004456 // Make sure that the generated code is itself legal.
4457 if (Result != Op)
4458 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004459
Chris Lattner45982da2005-05-12 16:53:42 +00004460 // Note that LegalizeOp may be reentered even from single-use nodes, which
4461 // means that we always must cache transformed nodes.
4462 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004463 return Result;
4464}
4465
Chris Lattner8b6fa222005-01-15 22:16:26 +00004466/// PromoteOp - Given an operation that produces a value in an invalid type,
4467/// promote it to compute the value into a larger type. The produced value will
4468/// have the correct bits for the low portion of the register, but no guarantee
4469/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman475871a2008-07-27 21:46:04 +00004470SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004471 MVT VT = Op.getValueType();
4472 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004473 assert(getTypeAction(VT) == Promote &&
4474 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004475 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004476 "Cannot promote to smaller type!");
4477
Dan Gohman475871a2008-07-27 21:46:04 +00004478 SDValue Tmp1, Tmp2, Tmp3;
4479 SDValue Result;
Gabor Greifba36cb52008-08-28 21:40:38 +00004480 SDNode *Node = Op.getNode();
Dale Johannesen8a782a22009-02-02 22:12:50 +00004481 DebugLoc dl = Node->getDebugLoc();
Chris Lattner03c85462005-01-15 05:21:40 +00004482
Dan Gohman475871a2008-07-27 21:46:04 +00004483 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004484 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004485
Chris Lattner03c85462005-01-15 05:21:40 +00004486 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004487 case ISD::CopyFromReg:
4488 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004489 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004490#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004491 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004492#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004493 assert(0 && "Do not know how to promote this operator!");
4494 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004495 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00004496 Result = DAG.getUNDEF(NVT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004497 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004498 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004499 if (VT != MVT::i1)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004500 Result = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Op);
Chris Lattnerec176e32005-08-30 16:56:19 +00004501 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00004502 Result = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004503 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4504 break;
4505 case ISD::ConstantFP:
Dale Johannesen8a782a22009-02-02 22:12:50 +00004506 Result = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004507 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4508 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004509
Duncan Sands5480c042009-01-01 15:52:00 +00004510 case ISD::SETCC: {
4511 MVT VT0 = Node->getOperand(0).getValueType();
4512 assert(isTypeLegal(TLI.getSetCCResultType(VT0))
Nate Begeman5922f562008-03-14 00:53:31 +00004513 && "SetCC type is not legal??");
Dale Johannesen8a782a22009-02-02 22:12:50 +00004514 Result = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(VT0),
Nate Begeman5922f562008-03-14 00:53:31 +00004515 Node->getOperand(0), Node->getOperand(1),
4516 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004517 break;
Duncan Sands5480c042009-01-01 15:52:00 +00004518 }
Chris Lattner03c85462005-01-15 05:21:40 +00004519 case ISD::TRUNCATE:
4520 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4521 case Legal:
4522 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004523 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004524 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004525 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Dale Johannesen8a782a22009-02-02 22:12:50 +00004526 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Result);
Chris Lattner03c85462005-01-15 05:21:40 +00004527 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004528 case Promote:
4529 // The truncation is not required, because we don't guarantee anything
4530 // about high bits anyway.
4531 Result = PromoteOp(Node->getOperand(0));
4532 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004533 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004534 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4535 // Truncate the low part of the expanded value to the result type
Dale Johannesen8a782a22009-02-02 22:12:50 +00004536 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004537 }
4538 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004539 case ISD::SIGN_EXTEND:
4540 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004541 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004542 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4543 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4544 case Legal:
4545 // Input is legal? Just do extend all the way to the larger type.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004546 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004547 break;
4548 case Promote:
4549 // Promote the reg if it's smaller.
4550 Result = PromoteOp(Node->getOperand(0));
4551 // The high bits are not guaranteed to be anything. Insert an extend.
4552 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004553 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004554 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004555 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004556 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004557 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004558 break;
4559 }
4560 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004561 case ISD::CONVERT_RNDSAT: {
4562 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4563 assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
4564 CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
4565 CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) &&
4566 "can only promote integers");
Dale Johannesenc460ae92009-02-04 00:13:36 +00004567 Result = DAG.getConvertRndSat(NVT, dl, Node->getOperand(0),
Mon P Wang77cdf302008-11-10 20:54:11 +00004568 Node->getOperand(1), Node->getOperand(2),
4569 Node->getOperand(3), Node->getOperand(4),
4570 CvtCode);
4571 break;
4572
4573 }
Chris Lattner35481892005-12-23 00:16:34 +00004574 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004575 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00004576 Node->getValueType(0), dl);
Chris Lattner35481892005-12-23 00:16:34 +00004577 Result = PromoteOp(Result);
4578 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00004579
Chris Lattner8b6fa222005-01-15 22:16:26 +00004580 case ISD::FP_EXTEND:
4581 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4582 case ISD::FP_ROUND:
4583 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4584 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4585 case Promote: assert(0 && "Unreachable with 2 FP types!");
4586 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004587 if (Node->getConstantOperandVal(1) == 0) {
4588 // Input is legal? Do an FP_ROUND_INREG.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004589 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Node->getOperand(0),
Chris Lattner0bd48932008-01-17 07:00:52 +00004590 DAG.getValueType(VT));
4591 } else {
4592 // Just remove the truncate, it isn't affecting the value.
Scott Michelfdc40a02009-02-17 22:15:04 +00004593 Result = DAG.getNode(ISD::FP_ROUND, dl, NVT, Node->getOperand(0),
Chris Lattner0bd48932008-01-17 07:00:52 +00004594 Node->getOperand(1));
4595 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004596 break;
4597 }
4598 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004599 case ISD::SINT_TO_FP:
4600 case ISD::UINT_TO_FP:
4601 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4602 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004603 // No extra round required here.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004604 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004605 break;
4606
4607 case Promote:
4608 Result = PromoteOp(Node->getOperand(0));
4609 if (Node->getOpcode() == ISD::SINT_TO_FP)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004610 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004611 Result,
4612 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004613 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00004614 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004615 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004616 // No extra round required here.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004617 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004618 break;
4619 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004620 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00004621 Node->getOperand(0), dl);
Chris Lattner77e77a62005-01-21 06:05:23 +00004622 // Round if we cannot tolerate excess precision.
4623 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004624 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004625 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004626 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004627 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004628 break;
4629
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004630 case ISD::SIGN_EXTEND_INREG:
4631 Result = PromoteOp(Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004632 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004633 Node->getOperand(1));
4634 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004635 case ISD::FP_TO_SINT:
4636 case ISD::FP_TO_UINT:
4637 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4638 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004639 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004640 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004641 break;
4642 case Promote:
4643 // The input result is prerounded, so we don't have to do anything
4644 // special.
4645 Tmp1 = PromoteOp(Node->getOperand(0));
4646 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004647 }
Nate Begemand2558e32005-08-14 01:20:53 +00004648 // If we're promoting a UINT to a larger size, check to see if the new node
4649 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4650 // we can use that instead. This allows us to generate better code for
4651 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4652 // legal, such as PowerPC.
Scott Michelfdc40a02009-02-17 22:15:04 +00004653 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00004654 !TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NVT) &&
4655 (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT) ||
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004656 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Dale Johannesen8a782a22009-02-02 22:12:50 +00004657 Result = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Tmp1);
Nate Begemand2558e32005-08-14 01:20:53 +00004658 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00004659 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Nate Begemand2558e32005-08-14 01:20:53 +00004660 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004661 break;
4662
Chris Lattner2c8086f2005-04-02 05:00:07 +00004663 case ISD::FABS:
4664 case ISD::FNEG:
4665 Tmp1 = PromoteOp(Node->getOperand(0));
4666 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004667 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner2c8086f2005-04-02 05:00:07 +00004668 // NOTE: we do not have to do any extra rounding here for
4669 // NoExcessFPPrecision, because we know the input will have the appropriate
4670 // precision, and these operations don't modify precision at all.
4671 break;
4672
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004673 case ISD::FLOG:
4674 case ISD::FLOG2:
4675 case ISD::FLOG10:
4676 case ISD::FEXP:
4677 case ISD::FEXP2:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004678 case ISD::FSQRT:
4679 case ISD::FSIN:
4680 case ISD::FCOS:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00004681 case ISD::FTRUNC:
4682 case ISD::FFLOOR:
4683 case ISD::FCEIL:
4684 case ISD::FRINT:
4685 case ISD::FNEARBYINT:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004686 Tmp1 = PromoteOp(Node->getOperand(0));
4687 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004688 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004689 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004690 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004691 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004692 break;
4693
Evan Cheng9d24ac52008-09-09 23:35:53 +00004694 case ISD::FPOW:
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004695 case ISD::FPOWI: {
Evan Cheng9d24ac52008-09-09 23:35:53 +00004696 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004697 // directly as well, which may be better.
4698 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng9d24ac52008-09-09 23:35:53 +00004699 Tmp2 = Node->getOperand(1);
4700 if (Node->getOpcode() == ISD::FPOW)
4701 Tmp2 = PromoteOp(Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004702 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004703 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004704 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004705 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004706 DAG.getValueType(VT));
4707 break;
4708 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004709
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004710 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004711 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004712 Tmp2 = PromoteOp(Node->getOperand(2));
4713 Tmp3 = PromoteOp(Node->getOperand(3));
Scott Michelfdc40a02009-02-17 22:15:04 +00004714 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
4715 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004716 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004717 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004718 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004719 // Remember that we legalized the chain.
4720 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4721 break;
4722 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004723 case ISD::ATOMIC_LOAD_ADD:
4724 case ISD::ATOMIC_LOAD_SUB:
4725 case ISD::ATOMIC_LOAD_AND:
4726 case ISD::ATOMIC_LOAD_OR:
4727 case ISD::ATOMIC_LOAD_XOR:
4728 case ISD::ATOMIC_LOAD_NAND:
4729 case ISD::ATOMIC_LOAD_MIN:
4730 case ISD::ATOMIC_LOAD_MAX:
4731 case ISD::ATOMIC_LOAD_UMIN:
4732 case ISD::ATOMIC_LOAD_UMAX:
4733 case ISD::ATOMIC_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004734 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004735 Tmp2 = PromoteOp(Node->getOperand(2));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004736 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00004737 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004738 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004739 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004740 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004741 // Remember that we legalized the chain.
4742 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4743 break;
4744 }
4745
Chris Lattner03c85462005-01-15 05:21:40 +00004746 case ISD::AND:
4747 case ISD::OR:
4748 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004749 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004750 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004751 case ISD::MUL:
4752 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004753 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004754 // that too is okay if they are integer operations.
4755 Tmp1 = PromoteOp(Node->getOperand(0));
4756 Tmp2 = PromoteOp(Node->getOperand(1));
4757 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004758 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004759 break;
4760 case ISD::FADD:
4761 case ISD::FSUB:
4762 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004763 Tmp1 = PromoteOp(Node->getOperand(0));
4764 Tmp2 = PromoteOp(Node->getOperand(1));
4765 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004766 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00004767
Chris Lattner01b3d732005-09-28 22:28:18 +00004768 // Floating point operations will give excess precision that we may not be
4769 // able to tolerate. If we DO allow excess precision, just leave it,
4770 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004771 // FIXME: Why would we need to round FP ops more than integer ones?
4772 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004773 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004774 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004775 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004776 break;
4777
Chris Lattner8b6fa222005-01-15 22:16:26 +00004778 case ISD::SDIV:
4779 case ISD::SREM:
4780 // These operators require that their input be sign extended.
4781 Tmp1 = PromoteOp(Node->getOperand(0));
4782 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004783 if (NVT.isInteger()) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00004784 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Chris Lattner15e4b012005-07-10 00:07:11 +00004785 DAG.getValueType(VT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004786 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Chris Lattner15e4b012005-07-10 00:07:11 +00004787 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004788 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00004789 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004790
4791 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004792 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004793 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004794 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004795 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004796 case ISD::FDIV:
4797 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004798 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004799 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004800 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004801 case Expand: assert(0 && "not implemented");
4802 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4803 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004804 }
4805 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004806 case Expand: assert(0 && "not implemented");
4807 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4808 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004809 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00004810 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00004811
Chris Lattner01b3d732005-09-28 22:28:18 +00004812 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004813 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004814 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner01b3d732005-09-28 22:28:18 +00004815 DAG.getValueType(VT));
4816 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004817
4818 case ISD::UDIV:
4819 case ISD::UREM:
4820 // These operators require that their input be zero extended.
4821 Tmp1 = PromoteOp(Node->getOperand(0));
4822 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004823 assert(NVT.isInteger() && "Operators don't apply to FP!");
Dale Johannesen8a782a22009-02-02 22:12:50 +00004824 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4825 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
4826 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004827 break;
4828
4829 case ISD::SHL:
4830 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004831 Result = DAG.getNode(ISD::SHL, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004832 break;
4833 case ISD::SRA:
4834 // The input value must be properly sign extended.
4835 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004836 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Chris Lattner15e4b012005-07-10 00:07:11 +00004837 DAG.getValueType(VT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004838 Result = DAG.getNode(ISD::SRA, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004839 break;
4840 case ISD::SRL:
4841 // The input value must be properly zero extended.
4842 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004843 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4844 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004845 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004846
4847 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004848 Tmp1 = Node->getOperand(0); // Get the chain.
4849 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004850 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00004851 Tmp3 = DAG.getVAArg(VT, dl, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004852 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004853 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004854 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenc460ae92009-02-04 00:13:36 +00004855 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004856 // Increment the pointer, VAList, to the next vaarg
Scott Michelfdc40a02009-02-17 22:15:04 +00004857 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004858 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004859 TLI.getPointerTy()));
4860 // Store the incremented VAList to the legalized pointer
Dale Johannesen8a782a22009-02-02 22:12:50 +00004861 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004862 // Load the actual argument out of the pointer VAList
Dale Johannesen8a782a22009-02-02 22:12:50 +00004863 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004864 }
4865 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004866 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004867 break;
4868
Evan Cheng466685d2006-10-09 20:57:25 +00004869 case ISD::LOAD: {
4870 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004871 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4872 ? ISD::EXTLOAD : LD->getExtensionType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00004873 Result = DAG.getExtLoad(ExtType, dl, NVT,
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004874 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004875 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004876 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004877 LD->isVolatile(),
4878 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004879 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004880 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004881 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004882 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004883 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004884 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4885 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004886
Duncan Sands83ec4b62008-06-06 12:08:01 +00004887 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004888 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004889 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4890 // Ensure that the resulting node is at least the same size as the operands'
4891 // value types, because we cannot assume that TLI.getSetCCValueType() is
4892 // constant.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004893 Result = DAG.getNode(ISD::SELECT, dl, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004894 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004895 }
Nate Begeman9373a812005-08-10 20:51:12 +00004896 case ISD::SELECT_CC:
4897 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4898 Tmp3 = PromoteOp(Node->getOperand(3)); // False
Dale Johannesen8a782a22009-02-02 22:12:50 +00004899 Result = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004900 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004901 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004902 case ISD::BSWAP:
4903 Tmp1 = Node->getOperand(0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004904 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
4905 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4906 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004907 DAG.getConstant(NVT.getSizeInBits() -
4908 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004909 TLI.getShiftAmountTy()));
4910 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004911 case ISD::CTPOP:
4912 case ISD::CTTZ:
4913 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004914 // Zero extend the argument
Dale Johannesen8a782a22009-02-02 22:12:50 +00004915 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004916 // Perform the larger operation, then subtract if needed.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004917 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004918 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004919 case ISD::CTPOP:
4920 Result = Tmp1;
4921 break;
4922 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004923 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004924 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004925 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004926 ISD::SETEQ);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004927 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004928 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004929 break;
4930 case ISD::CTLZ:
4931 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00004932 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004933 DAG.getConstant(NVT.getSizeInBits() -
4934 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004935 break;
4936 }
4937 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004938 case ISD::EXTRACT_SUBVECTOR:
4939 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004940 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004941 case ISD::EXTRACT_VECTOR_ELT:
4942 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4943 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004944 }
4945
Gabor Greifba36cb52008-08-28 21:40:38 +00004946 assert(Result.getNode() && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004947
4948 // Make sure the result is itself legal.
4949 Result = LegalizeOp(Result);
Scott Michelfdc40a02009-02-17 22:15:04 +00004950
Chris Lattner456a93a2006-01-28 07:39:30 +00004951 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004952 AddPromotedOperand(Op, Result);
4953 return Result;
4954}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004955
Dan Gohman7f321562007-06-25 16:23:39 +00004956/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4957/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4958/// based on the vector type. The return type of this matches the element type
4959/// of the vector, which may not be legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00004960SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004961 // We know that operand #0 is the Vec vector. If the index is a constant
4962 // or if the invec is a supported hardware type, we can use it. Otherwise,
4963 // lower to a store then an indexed load.
Dan Gohman475871a2008-07-27 21:46:04 +00004964 SDValue Vec = Op.getOperand(0);
4965 SDValue Idx = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004966 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00004967
Duncan Sands83ec4b62008-06-06 12:08:01 +00004968 MVT TVT = Vec.getValueType();
4969 unsigned NumElems = TVT.getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00004970
Dan Gohman7f321562007-06-25 16:23:39 +00004971 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4972 default: assert(0 && "This action is not supported yet!");
4973 case TargetLowering::Custom: {
4974 Vec = LegalizeOp(Vec);
4975 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004976 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004977 if (Tmp3.getNode())
Dan Gohman7f321562007-06-25 16:23:39 +00004978 return Tmp3;
4979 break;
4980 }
4981 case TargetLowering::Legal:
4982 if (isTypeLegal(TVT)) {
4983 Vec = LegalizeOp(Vec);
4984 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004985 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004986 }
4987 break;
Mon P Wang0c397192008-10-30 08:01:45 +00004988 case TargetLowering::Promote:
4989 assert(TVT.isVector() && "not vector type");
4990 // fall thru to expand since vectors are by default are promote
Dan Gohman7f321562007-06-25 16:23:39 +00004991 case TargetLowering::Expand:
4992 break;
4993 }
4994
4995 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004996 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004997 Op = ScalarizeVectorOp(Vec);
4998 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00004999 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00005000 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005001 SDValue Lo, Hi;
Chris Lattner15972212006-03-31 17:55:51 +00005002 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005003 if (CIdx->getZExtValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00005004 Vec = Lo;
5005 } else {
5006 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005007 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00005008 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00005009 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005010
Chris Lattner15972212006-03-31 17:55:51 +00005011 // It's now an extract from the appropriate high or low part. Recurse.
5012 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005013 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00005014 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00005015 // Store the value to a temporary stack slot, then LOAD the scalar
5016 // element back out.
Dan Gohman475871a2008-07-27 21:46:04 +00005017 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dale Johannesenbb5da912009-02-02 20:41:04 +00005018 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, NULL, 0);
Dan Gohman7f321562007-06-25 16:23:39 +00005019
5020 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005021 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +00005022 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Dan Gohman7f321562007-06-25 16:23:39 +00005023 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005024
Duncan Sands8e4eb092008-06-08 20:54:56 +00005025 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Dale Johannesenbb5da912009-02-02 20:41:04 +00005026 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005027 else
Dale Johannesenbb5da912009-02-02 20:41:04 +00005028 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005029
Dale Johannesenbb5da912009-02-02 20:41:04 +00005030 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
Dan Gohman7f321562007-06-25 16:23:39 +00005031
Dale Johannesenbb5da912009-02-02 20:41:04 +00005032 Op = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00005033 }
Dan Gohman7f321562007-06-25 16:23:39 +00005034 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00005035}
5036
Dan Gohman7f321562007-06-25 16:23:39 +00005037/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00005038/// we assume the operation can be split if it is not already legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005039SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohman65956352007-06-13 15:12:02 +00005040 // We know that operand #0 is the Vec vector. For now we assume the index
5041 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman475871a2008-07-27 21:46:04 +00005042 SDValue Vec = Op.getOperand(0);
5043 SDValue Idx = LegalizeOp(Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005044
Duncan Sands83ec4b62008-06-06 12:08:01 +00005045 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00005046
Duncan Sands83ec4b62008-06-06 12:08:01 +00005047 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00005048 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00005049 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00005050 }
5051
5052 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005053 SDValue Lo, Hi;
Dan Gohman65956352007-06-13 15:12:02 +00005054 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005055 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohman65956352007-06-13 15:12:02 +00005056 Vec = Lo;
5057 } else {
5058 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005059 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
5060 Idx.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00005061 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005062
Dan Gohman65956352007-06-13 15:12:02 +00005063 // It's now an extract from the appropriate high or low part. Recurse.
5064 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005065 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00005066}
5067
Nate Begeman750ac1b2006-02-01 07:19:44 +00005068/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
5069/// with condition CC on the current target. This usually involves legalizing
5070/// or promoting the arguments. In the case where LHS and RHS must be expanded,
5071/// there may be no choice but to create a new SetCC node to represent the
5072/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman475871a2008-07-27 21:46:04 +00005073/// LHS, and the SDValue returned in RHS has a nil SDNode value.
5074void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
5075 SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005076 SDValue &CC,
5077 DebugLoc dl) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005078 SDValue Tmp1, Tmp2, Tmp3, Result;
5079
Nate Begeman750ac1b2006-02-01 07:19:44 +00005080 switch (getTypeAction(LHS.getValueType())) {
5081 case Legal:
5082 Tmp1 = LegalizeOp(LHS); // LHS
5083 Tmp2 = LegalizeOp(RHS); // RHS
5084 break;
5085 case Promote:
5086 Tmp1 = PromoteOp(LHS); // LHS
5087 Tmp2 = PromoteOp(RHS); // RHS
5088
5089 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005090 if (LHS.getValueType().isInteger()) {
5091 MVT VT = LHS.getValueType();
5092 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005093
5094 // Otherwise, we have to insert explicit sign or zero extends. Note
5095 // that we could insert sign extends for ALL conditions, but zero extend
5096 // is cheaper on many machines (an AND instead of two shifts), so prefer
5097 // it.
5098 switch (cast<CondCodeSDNode>(CC)->get()) {
5099 default: assert(0 && "Unknown integer comparison!");
5100 case ISD::SETEQ:
5101 case ISD::SETNE:
5102 case ISD::SETUGE:
5103 case ISD::SETUGT:
5104 case ISD::SETULE:
5105 case ISD::SETULT:
5106 // ALL of these operations will work if we either sign or zero extend
5107 // the operands (including the unsigned comparisons!). Zero extend is
5108 // usually a simpler/cheaper operation, so prefer it.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005109 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
5110 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005111 break;
5112 case ISD::SETGE:
5113 case ISD::SETGT:
5114 case ISD::SETLT:
5115 case ISD::SETLE:
Dale Johannesenbb5da912009-02-02 20:41:04 +00005116 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005117 DAG.getValueType(VT));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005118 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005119 DAG.getValueType(VT));
Evan Chengefa53392008-10-13 18:46:18 +00005120 Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
5121 Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
Nate Begeman750ac1b2006-02-01 07:19:44 +00005122 break;
5123 }
5124 }
5125 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005126 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005127 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00005128 if (VT == MVT::f32 || VT == MVT::f64) {
5129 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00005130 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00005131 switch (cast<CondCodeSDNode>(CC)->get()) {
5132 case ISD::SETEQ:
5133 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00005134 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005135 break;
5136 case ISD::SETNE:
5137 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00005138 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005139 break;
5140 case ISD::SETGE:
5141 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00005142 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005143 break;
5144 case ISD::SETLT:
5145 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00005146 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005147 break;
5148 case ISD::SETLE:
5149 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00005150 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005151 break;
5152 case ISD::SETGT:
5153 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00005154 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005155 break;
5156 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00005157 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5158 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005159 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00005160 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005161 break;
5162 default:
Evan Cheng56966222007-01-12 02:11:51 +00005163 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005164 switch (cast<CondCodeSDNode>(CC)->get()) {
5165 case ISD::SETONE:
5166 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00005167 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005168 // Fallthrough
5169 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00005170 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005171 break;
5172 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00005173 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005174 break;
5175 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00005176 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005177 break;
5178 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00005179 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005180 break;
Evan Cheng56966222007-01-12 02:11:51 +00005181 case ISD::SETUEQ:
5182 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00005183 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005184 default: assert(0 && "Unsupported FP setcc!");
5185 }
5186 }
Duncan Sandsf9516202008-06-30 10:19:09 +00005187
Dan Gohman475871a2008-07-27 21:46:04 +00005188 SDValue Dummy;
5189 SDValue Ops[2] = { LHS, RHS };
Dale Johannesenbb5da912009-02-02 20:41:04 +00005190 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005191 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00005192 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00005193 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00005194 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Dale Johannesenbb5da912009-02-02 20:41:04 +00005195 Tmp1 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005196 TLI.getSetCCResultType(Tmp1.getValueType()),
5197 Tmp1, Tmp2, CC);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005198 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005199 false /*sign irrelevant*/, Dummy);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005200 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005201 TLI.getSetCCResultType(LHS.getValueType()), LHS,
5202 Tmp2, DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005203 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman475871a2008-07-27 21:46:04 +00005204 Tmp2 = SDValue();
Evan Cheng2b49c502006-12-15 02:59:56 +00005205 }
Evan Cheng21cacc42008-07-07 07:18:09 +00005206 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00005207 RHS = Tmp2;
5208 return;
5209 }
5210
Dan Gohman475871a2008-07-27 21:46:04 +00005211 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Nate Begeman750ac1b2006-02-01 07:19:44 +00005212 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00005213 ExpandOp(RHS, RHSLo, RHSHi);
5214 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5215
5216 if (VT==MVT::ppcf128) {
5217 // FIXME: This generated code sucks. We want to generate
Dale Johannesene2f20832008-09-12 00:30:56 +00005218 // FCMPU crN, hi1, hi2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005219 // BNE crN, L:
Dale Johannesene2f20832008-09-12 00:30:56 +00005220 // FCMPU crN, lo1, lo2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005221 // The following can be improved, but not that much.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005222 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005223 LHSHi, RHSHi, ISD::SETOEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005224 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005225 LHSLo, RHSLo, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005226 Tmp3 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5227 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005228 LHSHi, RHSHi, ISD::SETUNE);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005229 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005230 LHSHi, RHSHi, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005231 Tmp1 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5232 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman475871a2008-07-27 21:46:04 +00005233 Tmp2 = SDValue();
Dale Johannesen638ccd52007-10-06 01:24:11 +00005234 break;
5235 }
5236
5237 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005238 case ISD::SETEQ:
5239 case ISD::SETNE:
5240 if (RHSLo == RHSHi)
5241 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
5242 if (RHSCST->isAllOnesValue()) {
5243 // Comparison to -1.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005244 Tmp1 = DAG.getNode(ISD::AND, dl,LHSLo.getValueType(), LHSLo, LHSHi);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005245 Tmp2 = RHSLo;
5246 break;
5247 }
5248
Dale Johannesenbb5da912009-02-02 20:41:04 +00005249 Tmp1 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
5250 Tmp2 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
5251 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005252 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
5253 break;
5254 default:
5255 // If this is a comparison of the sign bit, just look at the top part.
5256 // X > -1, x < 0
5257 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
Scott Michelfdc40a02009-02-17 22:15:04 +00005258 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00005259 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00005260 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
5261 CST->isAllOnesValue())) { // X > -1
5262 Tmp1 = LHSHi;
5263 Tmp2 = RHSHi;
5264 break;
5265 }
5266
5267 // FIXME: This generated code sucks.
5268 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00005269 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005270 default: assert(0 && "Unknown integer setcc!");
5271 case ISD::SETLT:
5272 case ISD::SETULT: LowCC = ISD::SETULT; break;
5273 case ISD::SETGT:
5274 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
5275 case ISD::SETLE:
5276 case ISD::SETULE: LowCC = ISD::SETULE; break;
5277 case ISD::SETGE:
5278 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
5279 }
5280
5281 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
5282 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
5283 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
5284
5285 // NOTE: on targets without efficient SELECT of bools, we can always use
5286 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00005287 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Duncan Sands5480c042009-01-01 15:52:00 +00005288 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005289 LHSLo, RHSLo, LowCC, false, DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005290 if (!Tmp1.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005291 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005292 LHSLo, RHSLo, LowCC);
5293 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005294 LHSHi, RHSHi, CCCode, false, DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005295 if (!Tmp2.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005296 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005297 TLI.getSetCCResultType(LHSHi.getValueType()),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005298 LHSHi, RHSHi, CC);
Scott Michelfdc40a02009-02-17 22:15:04 +00005299
Gabor Greifba36cb52008-08-28 21:40:38 +00005300 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
5301 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman002e5d02008-03-13 22:13:53 +00005302 if ((Tmp1C && Tmp1C->isNullValue()) ||
5303 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00005304 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
5305 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00005306 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00005307 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
5308 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
5309 // low part is known false, returns high part.
5310 // For LE / GE, if high part is known false, ignore the low part.
5311 // For LT / GT, if high part is known true, ignore the low part.
5312 Tmp1 = Tmp2;
Dan Gohman475871a2008-07-27 21:46:04 +00005313 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005314 } else {
Duncan Sands5480c042009-01-01 15:52:00 +00005315 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
5316 LHSHi, RHSHi, ISD::SETEQ, false,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005317 DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005318 if (!Result.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005319 Result=DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005320 LHSHi, RHSHi, ISD::SETEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005321 Result = LegalizeOp(DAG.getNode(ISD::SELECT, dl, Tmp1.getValueType(),
Evan Cheng2e677812007-02-08 22:16:19 +00005322 Result, Tmp1, Tmp2));
5323 Tmp1 = Result;
Dan Gohman475871a2008-07-27 21:46:04 +00005324 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005325 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005326 }
5327 }
Evan Cheng2b49c502006-12-15 02:59:56 +00005328 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005329 LHS = Tmp1;
5330 RHS = Tmp2;
5331}
5332
Evan Cheng7f042682008-10-15 02:05:31 +00005333/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
5334/// condition code CC on the current target. This routine assumes LHS and rHS
5335/// have already been legalized by LegalizeSetCCOperands. It expands SETCC with
5336/// illegal condition code into AND / OR of multiple SETCC values.
5337void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT,
5338 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005339 SDValue &CC,
5340 DebugLoc dl) {
Evan Cheng7f042682008-10-15 02:05:31 +00005341 MVT OpVT = LHS.getValueType();
5342 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5343 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
5344 default: assert(0 && "Unknown condition code action!");
5345 case TargetLowering::Legal:
5346 // Nothing to do.
5347 break;
5348 case TargetLowering::Expand: {
5349 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
5350 unsigned Opc = 0;
5351 switch (CCCode) {
5352 default: assert(0 && "Don't know how to expand this condition!"); abort();
Dan Gohmane7d238e2008-10-21 03:12:54 +00005353 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
5354 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5355 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5356 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5357 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5358 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5359 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5360 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5361 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5362 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5363 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5364 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng7f042682008-10-15 02:05:31 +00005365 // FIXME: Implement more expansions.
5366 }
5367
Dale Johannesenbb5da912009-02-02 20:41:04 +00005368 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
5369 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
5370 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00005371 RHS = SDValue();
5372 CC = SDValue();
5373 break;
5374 }
5375 }
5376}
5377
Chris Lattner1401d152008-01-16 07:45:30 +00005378/// EmitStackConvert - Emit a store/load combination to the stack. This stores
5379/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
5380/// a load from the stack slot to DestVT, extending it if needed.
5381/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005382SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
5383 MVT SlotVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005384 MVT DestVT,
5385 DebugLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00005386 // Create the stack frame object.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005387 unsigned SrcAlign =
5388 TLI.getTargetData()->getPrefTypeAlignment(SrcOp.getValueType().
5389 getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00005390 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00005391
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005392 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005393 int SPFI = StackPtrFI->getIndex();
Dan Gohman15b38302009-01-29 21:02:43 +00005394 const Value *SV = PseudoSourceValue::getFixedStack(SPFI);
5395
Duncan Sands83ec4b62008-06-06 12:08:01 +00005396 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
5397 unsigned SlotSize = SlotVT.getSizeInBits();
5398 unsigned DestSize = DestVT.getSizeInBits();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005399 unsigned DestAlign =
5400 TLI.getTargetData()->getPrefTypeAlignment(DestVT.getTypeForMVT());
Scott Michelfdc40a02009-02-17 22:15:04 +00005401
Chris Lattner1401d152008-01-16 07:45:30 +00005402 // Emit a store to the stack slot. Use a truncstore if the input value is
5403 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00005404 SDValue Store;
Scott Michelfdc40a02009-02-17 22:15:04 +00005405
Chris Lattner1401d152008-01-16 07:45:30 +00005406 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005407 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005408 SV, 0, SlotVT, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005409 else {
5410 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00005411 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005412 SV, 0, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005413 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005414
Chris Lattner35481892005-12-23 00:16:34 +00005415 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00005416 if (SlotSize == DestSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005417 return DAG.getLoad(DestVT, dl, Store, FIPtr, SV, 0, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00005418
Chris Lattner1401d152008-01-16 07:45:30 +00005419 assert(SlotSize < DestSize && "Unknown extension!");
Dale Johannesen8a782a22009-02-02 22:12:50 +00005420 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr, SV, 0, SlotVT,
Mon P Wang364d73d2008-07-05 20:40:31 +00005421 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00005422}
5423
Dan Gohman475871a2008-07-27 21:46:04 +00005424SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005425 DebugLoc dl = Node->getDebugLoc();
Chris Lattner4352cc92006-04-04 17:23:26 +00005426 // Create a vector sized/aligned stack slot, store the value to element #0,
5427 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00005428 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00005429
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005430 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005431 int SPFI = StackPtrFI->getIndex();
5432
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00005433 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
5434 StackPtr,
5435 PseudoSourceValue::getFixedStack(SPFI), 0,
5436 Node->getValueType(0).getVectorElementType());
Dale Johannesen8a782a22009-02-02 22:12:50 +00005437 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00005438 PseudoSourceValue::getFixedStack(SPFI), 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00005439}
5440
5441
Chris Lattnerce872152006-03-19 06:31:19 +00005442/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00005443/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00005444SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005445 unsigned NumElems = Node->getNumOperands();
5446 SDValue SplatValue = Node->getOperand(0);
5447 DebugLoc dl = Node->getDebugLoc();
5448 MVT VT = Node->getValueType(0);
5449 MVT OpVT = SplatValue.getValueType();
5450 MVT EltVT = VT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005451
5452 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00005453 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattnerce872152006-03-19 06:31:19 +00005454 bool isOnlyLowElement = true;
Scott Michelfdc40a02009-02-17 22:15:04 +00005455
Dan Gohman475871a2008-07-27 21:46:04 +00005456 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005457 // and use a bitmask instead of a list of elements.
Nate Begeman9008ca62009-04-27 18:41:29 +00005458 // FIXME: this doesn't treat <0, u, 0, u> for example, as a splat.
Dan Gohman475871a2008-07-27 21:46:04 +00005459 std::map<SDValue, std::vector<unsigned> > Values;
Evan Cheng033e6812006-03-24 01:17:21 +00005460 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005461 bool isConstant = true;
5462 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
5463 SplatValue.getOpcode() != ISD::UNDEF)
5464 isConstant = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005465
Evan Cheng033e6812006-03-24 01:17:21 +00005466 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005467 SDValue V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00005468 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00005469 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00005470 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00005471 if (SplatValue != V)
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005472 SplatValue = SDValue(0, 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005473
5474 // If this isn't a constant element or an undef, we can't use a constant
5475 // pool load.
5476 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
5477 V.getOpcode() != ISD::UNDEF)
5478 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00005479 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005480
Chris Lattnerce872152006-03-19 06:31:19 +00005481 if (isOnlyLowElement) {
5482 // If the low element is an undef too, then this whole things is an undef.
5483 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005484 return DAG.getUNDEF(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005485 // Otherwise, turn this into a scalar_to_vector node.
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005486 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Chris Lattnerce872152006-03-19 06:31:19 +00005487 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005488
Chris Lattner2eb86532006-03-24 07:29:17 +00005489 // If all elements are constants, create a load from the constant pool.
5490 if (isConstant) {
Chris Lattner2eb86532006-03-24 07:29:17 +00005491 std::vector<Constant*> CV;
5492 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005493 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00005494 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005495 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00005496 } else if (ConstantSDNode *V =
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005497 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005498 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00005499 } else {
5500 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005501 const Type *OpNTy = OpVT.getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00005502 CV.push_back(UndefValue::get(OpNTy));
5503 }
5504 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00005505 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00005506 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00005507 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00005508 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005509 PseudoSourceValue::getConstantPool(), 0,
5510 false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00005511 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005512
Gabor Greifba36cb52008-08-28 21:40:38 +00005513 if (SplatValue.getNode()) { // Splat of one value?
Chris Lattner87100e02006-03-20 01:52:29 +00005514 // Build the shuffle constant vector: <0, 0, 0, 0>
Nate Begeman9008ca62009-04-27 18:41:29 +00005515 SmallVector<int, 8> ZeroVec(NumElems, 0);
Chris Lattner87100e02006-03-20 01:52:29 +00005516
5517 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Nate Begeman9008ca62009-04-27 18:41:29 +00005518 if (TLI.isShuffleMaskLegal(ZeroVec, Node->getValueType(0))) {
Chris Lattner87100e02006-03-20 01:52:29 +00005519 // Get the splatted value into the low element of a vector register.
Scott Michelfdc40a02009-02-17 22:15:04 +00005520 SDValue LowValVec =
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005521 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, SplatValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00005522
Chris Lattner87100e02006-03-20 01:52:29 +00005523 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Nate Begeman9008ca62009-04-27 18:41:29 +00005524 return DAG.getVectorShuffle(VT, dl, LowValVec, DAG.getUNDEF(VT),
5525 &ZeroVec[0]);
Chris Lattner87100e02006-03-20 01:52:29 +00005526 }
5527 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005528
Evan Cheng033e6812006-03-24 01:17:21 +00005529 // If there are only two unique elements, we may be able to turn this into a
5530 // vector shuffle.
5531 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005532 // Get the two values in deterministic order.
Dan Gohman475871a2008-07-27 21:46:04 +00005533 SDValue Val1 = Node->getOperand(1);
5534 SDValue Val2;
5535 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005536 if (MI->first != Val1)
5537 Val2 = MI->first;
5538 else
5539 Val2 = (++MI)->first;
Scott Michelfdc40a02009-02-17 22:15:04 +00005540
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005541 // If Val1 is an undef, make sure it ends up as Val2, to ensure that our
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005542 // vector shuffle has the undef vector on the RHS.
5543 if (Val1.getOpcode() == ISD::UNDEF)
5544 std::swap(Val1, Val2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005545
Evan Cheng033e6812006-03-24 01:17:21 +00005546 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Nate Begeman9008ca62009-04-27 18:41:29 +00005547 SmallVector<int, 8> ShuffleMask(NumElems, -1);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005548
5549 // Set elements of the shuffle mask for Val1.
5550 std::vector<unsigned> &Val1Elts = Values[Val1];
5551 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005552 ShuffleMask[Val1Elts[i]] = 0;
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005553
5554 // Set elements of the shuffle mask for Val2.
5555 std::vector<unsigned> &Val2Elts = Values[Val2];
5556 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5557 if (Val2.getOpcode() != ISD::UNDEF)
Nate Begeman9008ca62009-04-27 18:41:29 +00005558 ShuffleMask[Val2Elts[i]] = NumElems;
Evan Cheng033e6812006-03-24 01:17:21 +00005559
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005560 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005561 if (TLI.isOperationLegalOrCustom(ISD::SCALAR_TO_VECTOR, VT) &&
Nate Begeman9008ca62009-04-27 18:41:29 +00005562 TLI.isShuffleMaskLegal(ShuffleMask, VT)) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005563 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Val1);
5564 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Val2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005565 return DAG.getVectorShuffle(VT, dl, Val1, Val2, &ShuffleMask[0]);
Evan Cheng033e6812006-03-24 01:17:21 +00005566 }
5567 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005568
Chris Lattnerce872152006-03-19 06:31:19 +00005569 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5570 // aligned object on the stack, store each element into it, then load
5571 // the result as a vector.
Chris Lattnerce872152006-03-19 06:31:19 +00005572 // Create the stack frame object.
Dan Gohman475871a2008-07-27 21:46:04 +00005573 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohman15b38302009-01-29 21:02:43 +00005574 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
5575 const Value *SV = PseudoSourceValue::getFixedStack(FI);
5576
Chris Lattnerce872152006-03-19 06:31:19 +00005577 // Emit a store of each element to the stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00005578 SmallVector<SDValue, 8> Stores;
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005579 unsigned TypeByteSize = OpVT.getSizeInBits() / 8;
Chris Lattnerce872152006-03-19 06:31:19 +00005580 // Store (in the right endianness) the elements to memory.
5581 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5582 // Ignore undef elements.
5583 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00005584
Chris Lattner841c8822006-03-22 01:46:54 +00005585 unsigned Offset = TypeByteSize*i;
Scott Michelfdc40a02009-02-17 22:15:04 +00005586
Dan Gohman475871a2008-07-27 21:46:04 +00005587 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Dale Johannesen8a782a22009-02-02 22:12:50 +00005588 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005589
Dale Johannesen8a782a22009-02-02 22:12:50 +00005590 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(i),
5591 Idx, SV, Offset));
Chris Lattnerce872152006-03-19 06:31:19 +00005592 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005593
Dan Gohman475871a2008-07-27 21:46:04 +00005594 SDValue StoreChain;
Chris Lattnerce872152006-03-19 06:31:19 +00005595 if (!Stores.empty()) // Not all undef elements?
Dale Johannesen8a782a22009-02-02 22:12:50 +00005596 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005597 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005598 else
5599 StoreChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005600
Chris Lattnerce872152006-03-19 06:31:19 +00005601 // Result is a load from the stack slot.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005602 return DAG.getLoad(VT, dl, StoreChain, FIPtr, SV, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005603}
5604
Chris Lattner5b359c62005-04-02 04:00:59 +00005605void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman475871a2008-07-27 21:46:04 +00005606 SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005607 SDValue &Lo, SDValue &Hi,
5608 DebugLoc dl) {
Chris Lattner5b359c62005-04-02 04:00:59 +00005609 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00005610 SDValue LHSL, LHSH;
Chris Lattner5b359c62005-04-02 04:00:59 +00005611 ExpandOp(Op, LHSL, LHSH);
5612
Dan Gohman475871a2008-07-27 21:46:04 +00005613 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005614 MVT VT = LHSL.getValueType();
Dan Gohmanfc166572009-04-09 23:54:40 +00005615 Lo = DAG.getNode(NodeOp, dl, DAG.getVTList(VT, VT), Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005616 Hi = Lo.getValue(1);
5617}
5618
5619
Chris Lattnere34b3962005-01-19 04:19:40 +00005620/// ExpandShift - Try to find a clever way to expand this shift operation out to
5621/// smaller elements. If we can't find a way that is more efficient than a
5622/// libcall on this target, return false. Otherwise, return true with the
5623/// low-parts expanded into Lo and Hi.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005624bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005625 SDValue &Lo, SDValue &Hi,
5626 DebugLoc dl) {
Chris Lattnere34b3962005-01-19 04:19:40 +00005627 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5628 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005629
Duncan Sands83ec4b62008-06-06 12:08:01 +00005630 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman475871a2008-07-27 21:46:04 +00005631 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005632 MVT ShTy = ShAmt.getValueType();
5633 unsigned ShBits = ShTy.getSizeInBits();
5634 unsigned VTBits = Op.getValueType().getSizeInBits();
5635 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005636
Chris Lattner7a3c8552007-10-14 20:35:12 +00005637 // Handle the case when Amt is an immediate.
Gabor Greifba36cb52008-08-28 21:40:38 +00005638 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005639 unsigned Cst = CN->getZExtValue();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005640 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005641 SDValue InL, InH;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005642 ExpandOp(Op, InL, InH);
5643 switch(Opc) {
5644 case ISD::SHL:
5645 if (Cst > VTBits) {
5646 Lo = DAG.getConstant(0, NVT);
5647 Hi = DAG.getConstant(0, NVT);
5648 } else if (Cst > NVTBits) {
5649 Lo = DAG.getConstant(0, NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00005650 Hi = DAG.getNode(ISD::SHL, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005651 NVT, InL, DAG.getConstant(Cst-NVTBits, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005652 } else if (Cst == NVTBits) {
5653 Lo = DAG.getConstant(0, NVT);
5654 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005655 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005656 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, DAG.getConstant(Cst, ShTy));
5657 Hi = DAG.getNode(ISD::OR, dl, NVT,
5658 DAG.getNode(ISD::SHL, dl, NVT, InH, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005659 DAG.getNode(ISD::SRL, dl, NVT, InL,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005660 DAG.getConstant(NVTBits-Cst, ShTy)));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005661 }
5662 return true;
5663 case ISD::SRL:
5664 if (Cst > VTBits) {
5665 Lo = DAG.getConstant(0, NVT);
5666 Hi = DAG.getConstant(0, NVT);
5667 } else if (Cst > NVTBits) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005668 Lo = DAG.getNode(ISD::SRL, dl, NVT,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005669 InH, DAG.getConstant(Cst-NVTBits, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005670 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005671 } else if (Cst == NVTBits) {
5672 Lo = InH;
5673 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005674 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005675 Lo = DAG.getNode(ISD::OR, dl, NVT,
5676 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005677 DAG.getNode(ISD::SHL, dl, NVT, InH,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005678 DAG.getConstant(NVTBits-Cst, ShTy)));
5679 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005680 }
5681 return true;
5682 case ISD::SRA:
5683 if (Cst > VTBits) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005684 Hi = Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005685 DAG.getConstant(NVTBits-1, ShTy));
5686 } else if (Cst > NVTBits) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005687 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005688 DAG.getConstant(Cst-NVTBits, ShTy));
Dale Johannesen8a782a22009-02-02 22:12:50 +00005689 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005690 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005691 } else if (Cst == NVTBits) {
5692 Lo = InH;
Dale Johannesen8a782a22009-02-02 22:12:50 +00005693 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005694 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005695 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005696 Lo = DAG.getNode(ISD::OR, dl, NVT,
5697 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005698 DAG.getNode(ISD::SHL, dl,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005699 NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5700 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005701 }
5702 return true;
5703 }
5704 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005705
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005706 // Okay, the shift amount isn't constant. However, if we can tell that it is
5707 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005708 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5709 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005710 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00005711
Dan Gohman9e255b72008-02-22 01:12:31 +00005712 // If we know that if any of the high bits of the shift amount are one, then
5713 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005714 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005715 // Mask out the high bit, which we know is set.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005716 Amt = DAG.getNode(ISD::AND, dl, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005717 DAG.getConstant(~Mask, Amt.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00005718
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005719 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005720 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005721 ExpandOp(Op, InL, InH);
5722 switch(Opc) {
5723 case ISD::SHL:
5724 Lo = DAG.getConstant(0, NVT); // Low part is zero.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005725 Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005726 return true;
5727 case ISD::SRL:
5728 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005729 Lo = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); // Lo part from Hi part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005730 return true;
5731 case ISD::SRA:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005732 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, // Sign extend high part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005733 DAG.getConstant(NVTBits-1, Amt.getValueType()));
Dale Johannesen8a782a22009-02-02 22:12:50 +00005734 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); // Lo part from Hi part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005735 return true;
5736 }
5737 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005738
Dan Gohman9e255b72008-02-22 01:12:31 +00005739 // If we know that the high bits of the shift amount are all zero, then we can
5740 // do this as a couple of simple shifts.
5741 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005742 // Compute 32-amt.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005743 SDValue Amt2 = DAG.getNode(ISD::SUB, dl, Amt.getValueType(),
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005744 DAG.getConstant(NVTBits, Amt.getValueType()),
5745 Amt);
Scott Michelfdc40a02009-02-17 22:15:04 +00005746
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005747 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005748 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005749 ExpandOp(Op, InL, InH);
5750 switch(Opc) {
5751 case ISD::SHL:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005752 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt);
5753 Hi = DAG.getNode(ISD::OR, dl, NVT,
5754 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt),
5755 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005756 return true;
5757 case ISD::SRL:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005758 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt);
5759 Lo = DAG.getNode(ISD::OR, dl, NVT,
5760 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5761 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005762 return true;
5763 case ISD::SRA:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005764 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt);
5765 Lo = DAG.getNode(ISD::OR, dl, NVT,
5766 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5767 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005768 return true;
5769 }
5770 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005771
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005772 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005773}
Chris Lattner77e77a62005-01-21 06:05:23 +00005774
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005775
Chris Lattner77e77a62005-01-21 06:05:23 +00005776// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5777// does not fit into a register, return the lo part and set the hi part to the
5778// by-reg argument. If it does fit into a single register, return the result
5779// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00005780SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5781 bool isSigned, SDValue &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005782 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
Scott Michelfdc40a02009-02-17 22:15:04 +00005783 // The input chain to this libcall is the entry node of the function.
Chris Lattner6831a812006-02-13 09:18:02 +00005784 // Legalizing the call will automatically add the previous call to the
5785 // dependence.
Dan Gohman475871a2008-07-27 21:46:04 +00005786 SDValue InChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005787
Chris Lattner77e77a62005-01-21 06:05:23 +00005788 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005789 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005790 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005791 MVT ArgVT = Node->getOperand(i).getValueType();
5792 const Type *ArgTy = ArgVT.getTypeForMVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00005793 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005794 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005795 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005796 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005797 }
Bill Wendling056292f2008-09-16 21:48:12 +00005798 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00005799 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005800
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005801 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005802 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005803 std::pair<SDValue, SDValue> CallInfo =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005804 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005805 CallingConv::C, false, Callee, Args, DAG,
5806 Node->getDebugLoc());
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005807
Chris Lattner6831a812006-02-13 09:18:02 +00005808 // Legalize the call sequence, starting with the chain. This will advance
5809 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5810 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5811 LegalizeOp(CallInfo.second);
Dan Gohman475871a2008-07-27 21:46:04 +00005812 SDValue Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005813 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005814 default: assert(0 && "Unknown thing");
5815 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005816 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005817 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005818 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005819 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005820 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005821 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005822 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005823}
5824
Dan Gohman7f8613e2008-08-14 20:04:46 +00005825/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5826///
5827SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005828LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op,
5829 DebugLoc dl) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00005830 bool isCustom = false;
5831 SDValue Tmp1;
5832 switch (getTypeAction(Op.getValueType())) {
5833 case Legal:
5834 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5835 Op.getValueType())) {
5836 default: assert(0 && "Unknown operation action!");
5837 case TargetLowering::Custom:
5838 isCustom = true;
5839 // FALLTHROUGH
5840 case TargetLowering::Legal:
5841 Tmp1 = LegalizeOp(Op);
Gabor Greifba36cb52008-08-28 21:40:38 +00005842 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005843 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5844 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005845 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005846 DestTy, Tmp1);
5847 if (isCustom) {
5848 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005849 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005850 }
5851 break;
5852 case TargetLowering::Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005853 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005854 break;
5855 case TargetLowering::Promote:
Dale Johannesenaf435272009-02-02 19:03:57 +00005856 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005857 break;
5858 }
5859 break;
5860 case Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005861 Result = ExpandIntToFP(isSigned, DestTy, Op, dl) ;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005862 break;
5863 case Promote:
5864 Tmp1 = PromoteOp(Op);
5865 if (isSigned) {
Dale Johannesenaf435272009-02-02 19:03:57 +00005866 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp1.getValueType(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005867 Tmp1, DAG.getValueType(Op.getValueType()));
Dan Gohman7f8613e2008-08-14 20:04:46 +00005868 } else {
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005869 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, Op.getValueType());
Dan Gohman7f8613e2008-08-14 20:04:46 +00005870 }
Gabor Greifba36cb52008-08-28 21:40:38 +00005871 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005872 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5873 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005874 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005875 DestTy, Tmp1);
5876 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5877 break;
5878 }
5879 return Result;
5880}
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005881
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005882/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5883///
Dan Gohman475871a2008-07-27 21:46:04 +00005884SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005885ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005886 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005887 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005888
Dan Gohman7f8613e2008-08-14 20:04:46 +00005889 // Expand unsupported int-to-fp vector casts by unrolling them.
5890 if (DestTy.isVector()) {
5891 if (!ExpandSource)
5892 return LegalizeOp(UnrollVectorOp(Source));
5893 MVT DestEltTy = DestTy.getVectorElementType();
5894 if (DestTy.getVectorNumElements() == 1) {
5895 SDValue Scalar = ScalarizeVectorOp(Source);
5896 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00005897 DestEltTy, Scalar, dl);
Evan Chenga87008d2009-02-25 22:49:59 +00005898 return DAG.getNode(ISD::BUILD_VECTOR, dl, DestTy, Result);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005899 }
5900 SDValue Lo, Hi;
5901 SplitVectorOp(Source, Lo, Hi);
5902 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5903 DestTy.getVectorNumElements() / 2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005904 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +00005905 Lo, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00005906 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +00005907 Hi, dl);
5908 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, DestTy, LoResult,
Evan Chengefa53392008-10-13 18:46:18 +00005909 HiResult));
Dan Gohman7f8613e2008-08-14 20:04:46 +00005910 }
5911
Evan Cheng9845eb52008-04-01 02:18:22 +00005912 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5913 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005914 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005915 // incoming integer is set. To handle this, we dynamically test to see if
5916 // it is set, and, if so, add a fudge factor.
Dan Gohman475871a2008-07-27 21:46:04 +00005917 SDValue Hi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005918 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005919 SDValue Lo;
Dan Gohman034f60e2008-03-11 01:59:03 +00005920 ExpandOp(Source, Lo, Hi);
Dale Johannesenaf435272009-02-02 19:03:57 +00005921 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, Lo, Hi);
Dan Gohman034f60e2008-03-11 01:59:03 +00005922 } else {
5923 // The comparison for the sign bit will use the entire operand.
5924 Hi = Source;
5925 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005926
Dale Johannesen53997b02008-11-04 20:52:49 +00005927 // Check to see if the target has a custom way to lower this. If so, use
5928 // it. (Note we've already expanded the operand in this case.)
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005929 switch (TLI.getOperationAction(ISD::UINT_TO_FP, SourceVT)) {
5930 default: assert(0 && "This action not implemented for this operation!");
5931 case TargetLowering::Legal:
5932 case TargetLowering::Expand:
5933 break; // This case is handled below.
5934 case TargetLowering::Custom: {
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005935 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::UINT_TO_FP, dl, DestTy,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005936 Source), DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005937 if (NV.getNode())
5938 return LegalizeOp(NV);
5939 break; // The target decided this was legal after all
5940 }
5941 }
5942
Chris Lattner66de05b2005-05-13 04:45:13 +00005943 // If this is unsigned, and not supported, first perform the conversion to
5944 // signed, then adjust the result if the sign bit is set.
Dale Johannesenaf435272009-02-02 19:03:57 +00005945 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source, dl);
Chris Lattner66de05b2005-05-13 04:45:13 +00005946
Scott Michelfdc40a02009-02-17 22:15:04 +00005947 SDValue SignSet = DAG.getSetCC(dl,
Dale Johannesenaf435272009-02-02 19:03:57 +00005948 TLI.getSetCCResultType(Hi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005949 Hi, DAG.getConstant(0, Hi.getValueType()),
5950 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00005951 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00005952 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattnere9c35e72005-04-13 05:09:42 +00005953 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005954 uint64_t FF = 0x5f800000ULL;
5955 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattnerd2e936a2009-03-08 01:47:41 +00005956 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005957
Dan Gohman475871a2008-07-27 21:46:04 +00005958 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00005959 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00005960 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00005961 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00005962 SDValue FudgeInReg;
Chris Lattnere9c35e72005-04-13 05:09:42 +00005963 if (DestTy == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00005964 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005965 PseudoSourceValue::getConstantPool(), 0,
5966 false, Alignment);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005967 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005968 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesenaf435272009-02-02 19:03:57 +00005969 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, dl, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005970 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005971 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00005972 MVT::f32, false, Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00005973 else
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005974 assert(0 && "Unexpected conversion");
5975
Duncan Sands83ec4b62008-06-06 12:08:01 +00005976 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005977 if (SCVT != DestTy) {
5978 // Destination type needs to be expanded as well. The FADD now we are
5979 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005980 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5981 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dale Johannesenaf435272009-02-02 19:03:57 +00005982 SignedConv = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005983 SignedConv, SignedConv.getValue(1));
5984 }
Dale Johannesenaf435272009-02-02 19:03:57 +00005985 SignedConv = DAG.getNode(ISD::BIT_CONVERT, dl, DestTy, SignedConv);
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005986 }
Dale Johannesenaf435272009-02-02 19:03:57 +00005987 return DAG.getNode(ISD::FADD, dl, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005988 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005989
Chris Lattnera88a2602005-05-14 05:33:54 +00005990 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005991 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00005992 default: assert(0 && "This action not implemented for this operation!");
5993 case TargetLowering::Legal:
5994 case TargetLowering::Expand:
5995 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005996 case TargetLowering::Custom: {
Dale Johannesenaf435272009-02-02 19:03:57 +00005997 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, dl, DestTy,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005998 Source), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005999 if (NV.getNode())
Chris Lattner07dffd62005-08-26 00:14:16 +00006000 return LegalizeOp(NV);
6001 break; // The target decided this was legal after all
6002 }
Chris Lattnera88a2602005-05-14 05:33:54 +00006003 }
6004
Chris Lattner13689e22005-05-12 07:00:44 +00006005 // Expand the source, then glue it back together for the call. We must expand
6006 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00006007 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00006008 SDValue SrcLo, SrcHi;
Dan Gohman034f60e2008-03-11 01:59:03 +00006009 ExpandOp(Source, SrcLo, SrcHi);
Dale Johannesenaf435272009-02-02 19:03:57 +00006010 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, SrcLo, SrcHi);
Dan Gohman034f60e2008-03-11 01:59:03 +00006011 }
Chris Lattner13689e22005-05-12 07:00:44 +00006012
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006013 RTLIB::Libcall LC = isSigned ?
6014 RTLIB::getSINTTOFP(SourceVT, DestTy) :
6015 RTLIB::getUINTTOFP(SourceVT, DestTy);
6016 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
6017
Dale Johannesenaf435272009-02-02 19:03:57 +00006018 Source = DAG.getNode(ISD::SINT_TO_FP, dl, DestTy, Source);
Dan Gohman475871a2008-07-27 21:46:04 +00006019 SDValue HiPart;
Gabor Greifba36cb52008-08-28 21:40:38 +00006020 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
6021 if (Result.getValueType() != DestTy && HiPart.getNode())
Dale Johannesenaf435272009-02-02 19:03:57 +00006022 Result = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy, Result, HiPart);
Dan Gohmana2e94852008-03-10 23:03:31 +00006023 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00006024}
Misha Brukmanedf128a2005-04-21 22:36:52 +00006025
Chris Lattner22cde6a2006-01-28 08:25:58 +00006026/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
6027/// INT_TO_FP operation of the specified operand when the target requests that
6028/// we expand it. At this point, we know that the result and operand types are
6029/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00006030SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
6031 SDValue Op0,
Dale Johannesenaf435272009-02-02 19:03:57 +00006032 MVT DestVT,
6033 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006034 if (Op0.getValueType() == MVT::i32) {
6035 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00006036
Chris Lattner23594d42008-01-16 07:03:22 +00006037 // Get the stack frame index of a 8 byte buffer.
Dan Gohman475871a2008-07-27 21:46:04 +00006038 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00006039
Chris Lattner22cde6a2006-01-28 08:25:58 +00006040 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00006041 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00006042 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00006043 SDValue Hi = StackSlot;
Scott Michelfdc40a02009-02-17 22:15:04 +00006044 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006045 TLI.getPointerTy(), StackSlot, WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00006046 if (TLI.isLittleEndian())
6047 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00006048
Chris Lattner22cde6a2006-01-28 08:25:58 +00006049 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00006050 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006051 if (isSigned) {
6052 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman475871a2008-07-27 21:46:04 +00006053 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dale Johannesenaf435272009-02-02 19:03:57 +00006054 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006055 } else {
6056 Op0Mapped = Op0;
6057 }
6058 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00006059 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006060 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006061 // initial hi portion of constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00006062 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006063 // store the hi of the constructed double - biased exponent
Dale Johannesenaf435272009-02-02 19:03:57 +00006064 SDValue Store2=DAG.getStore(Store1, dl, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006065 // load the constructed double
Dale Johannesenaf435272009-02-02 19:03:57 +00006066 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006067 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00006068 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006069 BitsToDouble(0x4330000080000000ULL) :
6070 BitsToDouble(0x4330000000000000ULL),
Chris Lattner22cde6a2006-01-28 08:25:58 +00006071 MVT::f64);
6072 // subtract the bias
Dale Johannesenaf435272009-02-02 19:03:57 +00006073 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006074 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00006075 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006076 // handle final rounding
6077 if (DestVT == MVT::f64) {
6078 // do nothing
6079 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006080 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006081 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00006082 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00006083 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006084 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006085 }
6086 return Result;
6087 }
6088 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesenaf435272009-02-02 19:03:57 +00006089 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006090
Dale Johannesenaf435272009-02-02 19:03:57 +00006091 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00006092 Op0, DAG.getConstant(0, Op0.getValueType()),
6093 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00006094 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00006095 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattner22cde6a2006-01-28 08:25:58 +00006096 SignSet, Four, Zero);
6097
6098 // If the sign bit of the integer is set, the large number will be treated
6099 // as a negative number. To counteract this, the dynamic code adds an
6100 // offset depending on the data type.
6101 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006102 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006103 default: assert(0 && "Unsupported integer type!");
6104 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
6105 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
6106 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
6107 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
6108 }
6109 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattnerd2e936a2009-03-08 01:47:41 +00006110 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006111
Dan Gohman475871a2008-07-27 21:46:04 +00006112 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00006113 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00006114 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00006115 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00006116 SDValue FudgeInReg;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006117 if (DestVT == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00006118 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00006119 PseudoSourceValue::getConstantPool(), 0,
6120 false, Alignment);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006121 else {
Dan Gohman69de1932008-02-06 22:27:42 +00006122 FudgeInReg =
Dale Johannesenaf435272009-02-02 19:03:57 +00006123 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
Dan Gohman69de1932008-02-06 22:27:42 +00006124 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00006125 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00006126 MVT::f32, false, Alignment));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006127 }
6128
Dale Johannesenaf435272009-02-02 19:03:57 +00006129 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006130}
6131
6132/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
6133/// *INT_TO_FP operation of the specified operand when the target requests that
6134/// we promote it. At this point, we know that the result and operand types are
6135/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
6136/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00006137SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
6138 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006139 bool isSigned,
6140 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006141 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006142 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006143
6144 unsigned OpToUse = 0;
6145
6146 // Scan for the appropriate larger type to use.
6147 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006148 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
6149 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006150
6151 // If the target supports SINT_TO_FP of this type, use it.
6152 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
6153 default: break;
6154 case TargetLowering::Legal:
6155 if (!TLI.isTypeLegal(NewInTy))
6156 break; // Can't use this datatype.
6157 // FALL THROUGH.
6158 case TargetLowering::Custom:
6159 OpToUse = ISD::SINT_TO_FP;
6160 break;
6161 }
6162 if (OpToUse) break;
6163 if (isSigned) continue;
6164
6165 // If the target supports UINT_TO_FP of this type, use it.
6166 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
6167 default: break;
6168 case TargetLowering::Legal:
6169 if (!TLI.isTypeLegal(NewInTy))
6170 break; // Can't use this datatype.
6171 // FALL THROUGH.
6172 case TargetLowering::Custom:
6173 OpToUse = ISD::UINT_TO_FP;
6174 break;
6175 }
6176 if (OpToUse) break;
6177
6178 // Otherwise, try a larger type.
6179 }
6180
6181 // Okay, we found the operation and type to use. Zero extend our input to the
6182 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00006183 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00006184 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00006185 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006186}
6187
6188/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
6189/// FP_TO_*INT operation of the specified operand when the target requests that
6190/// we promote it. At this point, we know that the result and operand types are
6191/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
6192/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00006193SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
6194 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006195 bool isSigned,
6196 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006197 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006198 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006199
6200 unsigned OpToUse = 0;
6201
6202 // Scan for the appropriate larger type to use.
6203 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006204 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
6205 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006206
6207 // If the target supports FP_TO_SINT returning this type, use it.
6208 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
6209 default: break;
6210 case TargetLowering::Legal:
6211 if (!TLI.isTypeLegal(NewOutTy))
6212 break; // Can't use this datatype.
6213 // FALL THROUGH.
6214 case TargetLowering::Custom:
6215 OpToUse = ISD::FP_TO_SINT;
6216 break;
6217 }
6218 if (OpToUse) break;
6219
6220 // If the target supports FP_TO_UINT of this type, use it.
6221 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
6222 default: break;
6223 case TargetLowering::Legal:
6224 if (!TLI.isTypeLegal(NewOutTy))
6225 break; // Can't use this datatype.
6226 // FALL THROUGH.
6227 case TargetLowering::Custom:
6228 OpToUse = ISD::FP_TO_UINT;
6229 break;
6230 }
6231 if (OpToUse) break;
6232
6233 // Otherwise, try a larger type.
6234 }
6235
Scott Michelfdc40a02009-02-17 22:15:04 +00006236
Chris Lattner27a6c732007-11-24 07:07:01 +00006237 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00006238 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00006239
Chris Lattner27a6c732007-11-24 07:07:01 +00006240 // If the operation produces an invalid type, it must be custom lowered. Use
6241 // the target lowering hooks to expand it. Just keep the low part of the
6242 // expanded operation, we know that we're truncating anyway.
6243 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands1607f052008-12-01 11:39:25 +00006244 SmallVector<SDValue, 2> Results;
6245 TLI.ReplaceNodeResults(Operation.getNode(), Results, DAG);
6246 assert(Results.size() == 1 && "Incorrect FP_TO_XINT lowering!");
6247 Operation = Results[0];
Chris Lattner27a6c732007-11-24 07:07:01 +00006248 }
Duncan Sands126d9072008-07-04 11:47:58 +00006249
Chris Lattner27a6c732007-11-24 07:07:01 +00006250 // Truncate the result of the extended FP_TO_*INT operation to the desired
6251 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00006252 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006253}
6254
6255/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
6256///
Dale Johannesen8a782a22009-02-02 22:12:50 +00006257SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006258 MVT VT = Op.getValueType();
6259 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman475871a2008-07-27 21:46:04 +00006260 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006261 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006262 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
6263 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006264 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6265 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6266 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006267 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006268 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6269 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6270 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6271 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6272 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
6273 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
6274 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6275 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6276 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006277 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006278 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
6279 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
6280 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6281 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6282 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6283 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6284 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
6285 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
6286 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
6287 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
6288 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
6289 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
6290 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
6291 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
6292 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
6293 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
6294 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6295 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6296 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
6297 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
6298 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006299 }
6300}
6301
6302/// ExpandBitCount - Expand the specified bitcount instruction into operations.
6303///
Scott Michelfdc40a02009-02-17 22:15:04 +00006304SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen8a782a22009-02-02 22:12:50 +00006305 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006306 switch (Opc) {
6307 default: assert(0 && "Cannot expand this yet!");
6308 case ISD::CTPOP: {
6309 static const uint64_t mask[6] = {
6310 0x5555555555555555ULL, 0x3333333333333333ULL,
6311 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
6312 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
6313 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00006314 MVT VT = Op.getValueType();
6315 MVT ShVT = TLI.getShiftAmountTy();
6316 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006317 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
6318 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006319 unsigned EltSize = VT.isVector() ?
6320 VT.getVectorElementType().getSizeInBits() : len;
6321 SDValue Tmp2 = DAG.getConstant(APInt(EltSize, mask[i]), VT);
Dan Gohman475871a2008-07-27 21:46:04 +00006322 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00006323 Op = DAG.getNode(ISD::ADD, dl, VT,
Dale Johannesene72c5962009-02-06 21:55:48 +00006324 DAG.getNode(ISD::AND, dl, VT, Op, Tmp2),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006325 DAG.getNode(ISD::AND, dl, VT,
6326 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3),
6327 Tmp2));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006328 }
6329 return Op;
6330 }
6331 case ISD::CTLZ: {
6332 // for now, we do this:
6333 // x = x | (x >> 1);
6334 // x = x | (x >> 2);
6335 // ...
6336 // x = x | (x >>16);
6337 // x = x | (x >>32); // for 64-bit input
6338 // return popcount(~x);
6339 //
6340 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006341 MVT VT = Op.getValueType();
6342 MVT ShVT = TLI.getShiftAmountTy();
6343 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006344 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006345 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00006346 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00006347 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006348 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00006349 Op = DAG.getNOT(dl, Op, VT);
6350 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006351 }
6352 case ISD::CTTZ: {
6353 // for now, we use: { return popcount(~x & (x - 1)); }
6354 // unless the target has ctlz but not ctpop, in which case we use:
6355 // { return 32 - nlz(~x & (x-1)); }
6356 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006357 MVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006358 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
6359 DAG.getNOT(dl, Op, VT),
6360 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00006361 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006362 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006363 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
6364 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00006365 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006366 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006367 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
6368 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006369 }
6370 }
6371}
Chris Lattnere34b3962005-01-19 04:19:40 +00006372
Dan Gohman475871a2008-07-27 21:46:04 +00006373/// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattner3e928bb2005-01-07 07:47:09 +00006374/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman929d3eb2008-10-01 15:07:49 +00006375/// LegalizedNodes map is filled in for any results that are not expanded, the
Chris Lattner3e928bb2005-01-07 07:47:09 +00006376/// ExpandedNodes map is filled in for any results that are expanded, and the
6377/// Lo/Hi values are returned.
Dan Gohman475871a2008-07-27 21:46:04 +00006378void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00006379 MVT VT = Op.getValueType();
6380 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greifba36cb52008-08-28 21:40:38 +00006381 SDNode *Node = Op.getNode();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006382 DebugLoc dl = Node->getDebugLoc();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006383 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00006384 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00006385 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006386
Chris Lattner6fdcb252005-09-02 20:32:45 +00006387 // See if we already expanded it.
Dan Gohman475871a2008-07-27 21:46:04 +00006388 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00006389 = ExpandedNodes.find(Op);
6390 if (I != ExpandedNodes.end()) {
6391 Lo = I->second.first;
6392 Hi = I->second.second;
6393 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006394 }
6395
Chris Lattner3e928bb2005-01-07 07:47:09 +00006396 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006397 case ISD::CopyFromReg:
6398 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006399 case ISD::FP_ROUND_INREG:
Scott Michelfdc40a02009-02-17 22:15:04 +00006400 if (VT == MVT::ppcf128 &&
6401 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006402 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006403 SDValue SrcLo, SrcHi, Src;
Dale Johannesenfcf4d242007-10-11 23:32:15 +00006404 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006405 Src = DAG.getNode(ISD::BUILD_PAIR, dl, VT, SrcLo, SrcHi);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006406 SDValue Result =
6407 TLI.LowerOperation(DAG.getNode(ISD::FP_ROUND_INREG, dl, VT, Src,
6408 Op.getOperand(1)), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006409 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
6410 Lo = Result.getNode()->getOperand(0);
6411 Hi = Result.getNode()->getOperand(1);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006412 break;
6413 }
6414 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00006415 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006416#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006417 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006418#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00006419 assert(0 && "Do not know how to expand this operator!");
6420 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00006421 case ISD::EXTRACT_ELEMENT:
6422 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006423 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman1953ecb2008-02-27 01:52:30 +00006424 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00006425 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00006426 case ISD::EXTRACT_VECTOR_ELT:
Dale Johannesen25f1d082007-10-31 00:32:36 +00006427 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
6428 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
6429 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006430 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00006431 Lo = DAG.getUNDEF(NVT);
6432 Hi = DAG.getUNDEF(NVT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006433 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006434 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006435 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00006436 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
6437 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
6438 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006439 break;
6440 }
Evan Cheng00495212006-12-12 21:32:44 +00006441 case ISD::ConstantFP: {
6442 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00006443 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen7111b022008-10-09 18:53:47 +00006444 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesena471c2e2007-10-11 18:07:22 +00006445 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
6446 MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00006447 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
Dale Johannesena471c2e2007-10-11 18:07:22 +00006448 MVT::f64);
6449 break;
6450 }
Evan Cheng279101e2006-12-12 22:19:28 +00006451 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00006452 if (getTypeAction(Lo.getValueType()) == Expand)
6453 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006454 break;
6455 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006456 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006457 // Return the operands.
6458 Lo = Node->getOperand(0);
6459 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006460 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006461
Chris Lattner27a6c732007-11-24 07:07:01 +00006462 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00006463 if (Node->getNumValues() == 1) {
6464 ExpandOp(Op.getOperand(0), Lo, Hi);
6465 break;
6466 }
Chris Lattner27a6c732007-11-24 07:07:01 +00006467 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif99a6cb92008-08-26 22:36:50 +00006468 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattner27a6c732007-11-24 07:07:01 +00006469 Op.getValue(1).getValueType() == MVT::Other &&
6470 "unhandled MERGE_VALUES");
6471 ExpandOp(Op.getOperand(0), Lo, Hi);
6472 // Remember that we legalized the chain.
6473 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
6474 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006475
Chris Lattner58f79632005-12-12 22:27:43 +00006476 case ISD::SIGN_EXTEND_INREG:
6477 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00006478 // sext_inreg the low part if needed.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006479 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Lo, Node->getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006480
Chris Lattner4bdd2752006-10-06 17:34:12 +00006481 // The high part gets the sign extension from the lo-part. This handles
6482 // things like sextinreg V:i64 from i8.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006483 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006484 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00006485 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00006486 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006487
Nate Begemand88fc032006-01-14 03:14:10 +00006488 case ISD::BSWAP: {
6489 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006490 SDValue TempLo = DAG.getNode(ISD::BSWAP, dl, NVT, Hi);
6491 Hi = DAG.getNode(ISD::BSWAP, dl, NVT, Lo);
Nate Begemand88fc032006-01-14 03:14:10 +00006492 Lo = TempLo;
6493 break;
6494 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006495
Chris Lattneredb1add2005-05-11 04:51:16 +00006496 case ISD::CTPOP:
6497 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006498 Lo = DAG.getNode(ISD::ADD, dl, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
6499 DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
6500 DAG.getNode(ISD::CTPOP, dl, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00006501 Hi = DAG.getConstant(0, NVT);
6502 break;
6503
Chris Lattner39a8f332005-05-12 19:05:01 +00006504 case ISD::CTLZ: {
6505 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006506 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006507 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006508 SDValue HLZ = DAG.getNode(ISD::CTLZ, dl, NVT, Hi);
6509 SDValue TopNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), HLZ,
6510 BitsC, ISD::SETNE);
6511 SDValue LowPart = DAG.getNode(ISD::CTLZ, dl, NVT, Lo);
6512 LowPart = DAG.getNode(ISD::ADD, dl, NVT, LowPart, BitsC);
Chris Lattner39a8f332005-05-12 19:05:01 +00006513
Dale Johannesen8a782a22009-02-02 22:12:50 +00006514 Lo = DAG.getNode(ISD::SELECT, dl, NVT, TopNotZero, HLZ, LowPart);
Chris Lattner39a8f332005-05-12 19:05:01 +00006515 Hi = DAG.getConstant(0, NVT);
6516 break;
6517 }
6518
6519 case ISD::CTTZ: {
6520 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006521 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006522 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006523 SDValue LTZ = DAG.getNode(ISD::CTTZ, dl, NVT, Lo);
6524 SDValue BotNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), LTZ,
6525 BitsC, ISD::SETNE);
6526 SDValue HiPart = DAG.getNode(ISD::CTTZ, dl, NVT, Hi);
6527 HiPart = DAG.getNode(ISD::ADD, dl, NVT, HiPart, BitsC);
Chris Lattner39a8f332005-05-12 19:05:01 +00006528
Dale Johannesen8a782a22009-02-02 22:12:50 +00006529 Lo = DAG.getNode(ISD::SELECT, dl, NVT, BotNotZero, LTZ, HiPart);
Chris Lattner39a8f332005-05-12 19:05:01 +00006530 Hi = DAG.getConstant(0, NVT);
6531 break;
6532 }
Chris Lattneredb1add2005-05-11 04:51:16 +00006533
Nate Begemanacc398c2006-01-25 18:21:52 +00006534 case ISD::VAARG: {
Dan Gohman475871a2008-07-27 21:46:04 +00006535 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6536 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Dale Johannesenc460ae92009-02-04 00:13:36 +00006537 Lo = DAG.getVAArg(NVT, dl, Ch, Ptr, Node->getOperand(2));
6538 Hi = DAG.getVAArg(NVT, dl, Lo.getValue(1), Ptr, Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00006539
6540 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00006541 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00006542 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00006543 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00006544 std::swap(Lo, Hi);
6545 break;
6546 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006547
Chris Lattner3e928bb2005-01-07 07:47:09 +00006548 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00006549 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00006550 SDValue Ch = LD->getChain(); // Legalize the chain.
6551 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Evan Cheng466685d2006-10-09 20:57:25 +00006552 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f8613e2008-08-14 20:04:46 +00006553 const Value *SV = LD->getSrcValue();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006554 int SVOffset = LD->getSrcValueOffset();
6555 unsigned Alignment = LD->getAlignment();
6556 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006557
Evan Cheng466685d2006-10-09 20:57:25 +00006558 if (ExtType == ISD::NON_EXTLOAD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006559 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006560 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00006561 if (VT == MVT::f32 || VT == MVT::f64) {
6562 // f32->i32 or f64->i64 one to one expansion.
6563 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006564 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00006565 // Recursively expand the new load.
6566 if (getTypeAction(NVT) == Expand)
6567 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006568 break;
6569 }
Chris Lattnerec39a452005-01-19 18:02:17 +00006570
Evan Cheng466685d2006-10-09 20:57:25 +00006571 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006572 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Dale Johannesen8a782a22009-02-02 22:12:50 +00006573 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006574 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006575 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006576 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006577 Hi = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006578 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00006579
Evan Cheng466685d2006-10-09 20:57:25 +00006580 // Build a factor node to remember that this load is independent of the
6581 // other one.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006582 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006583 Hi.getValue(1));
Evan Cheng466685d2006-10-09 20:57:25 +00006584
6585 // Remember that we legalized the chain.
6586 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00006587 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00006588 std::swap(Lo, Hi);
6589 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006590 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00006591
Dale Johannesenb6210fc2007-10-19 20:29:00 +00006592 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6593 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00006594 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dale Johannesen8a782a22009-02-02 22:12:50 +00006595 SDValue Load = DAG.getLoad(EVT, dl, Ch, Ptr, SV,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006596 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00006597 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006598 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Dale Johannesen8a782a22009-02-02 22:12:50 +00006599 ExpandOp(DAG.getNode(ISD::FP_EXTEND, dl, VT, Load), Lo, Hi);
Evan Cheng548f6112006-12-13 03:19:57 +00006600 break;
6601 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006602
Evan Cheng466685d2006-10-09 20:57:25 +00006603 if (EVT == NVT)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006604 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006605 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006606 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00006607 Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006608 SVOffset, EVT, isVolatile,
6609 Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00006610
Evan Cheng466685d2006-10-09 20:57:25 +00006611 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006612 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng466685d2006-10-09 20:57:25 +00006613
6614 if (ExtType == ISD::SEXTLOAD) {
6615 // The high part is obtained by SRA'ing all but one of the bits of the
6616 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006617 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006618 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Evan Cheng466685d2006-10-09 20:57:25 +00006619 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6620 } else if (ExtType == ISD::ZEXTLOAD) {
6621 // The high part is just a zero.
6622 Hi = DAG.getConstant(0, NVT);
6623 } else /* if (ExtType == ISD::EXTLOAD) */ {
6624 // The high part is undefined.
Dale Johannesene8d72302009-02-06 23:05:02 +00006625 Hi = DAG.getUNDEF(NVT);
Evan Cheng466685d2006-10-09 20:57:25 +00006626 }
6627 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006628 break;
6629 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006630 case ISD::AND:
6631 case ISD::OR:
6632 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman475871a2008-07-27 21:46:04 +00006633 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006634 ExpandOp(Node->getOperand(0), LL, LH);
6635 ExpandOp(Node->getOperand(1), RL, RH);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006636 Lo = DAG.getNode(Node->getOpcode(), dl, NVT, LL, RL);
6637 Hi = DAG.getNode(Node->getOpcode(), dl, NVT, LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006638 break;
6639 }
6640 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006641 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006642 ExpandOp(Node->getOperand(1), LL, LH);
6643 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006644 if (getTypeAction(NVT) == Expand)
6645 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006646 Lo = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006647 if (VT != MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006648 Hi = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006649 break;
6650 }
Nate Begeman9373a812005-08-10 20:51:12 +00006651 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006652 SDValue TL, TH, FL, FH;
Nate Begeman9373a812005-08-10 20:51:12 +00006653 ExpandOp(Node->getOperand(2), TL, TH);
6654 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006655 if (getTypeAction(NVT) == Expand)
6656 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006657 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Nate Begeman9373a812005-08-10 20:51:12 +00006658 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006659 if (VT != MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006660 Hi = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Evan Cheng19103b12006-12-15 22:42:55 +00006661 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006662 break;
6663 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006664 case ISD::ANY_EXTEND:
6665 // The low part is any extension of the input (which degenerates to a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006666 Lo = DAG.getNode(ISD::ANY_EXTEND, dl, NVT, Node->getOperand(0));
Chris Lattner8137c9e2006-01-28 05:07:51 +00006667 // The high part is undefined.
Dale Johannesene8d72302009-02-06 23:05:02 +00006668 Hi = DAG.getUNDEF(NVT);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006669 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006670 case ISD::SIGN_EXTEND: {
6671 // The low part is just a sign extension of the input (which degenerates to
6672 // a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006673 Lo = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006674
Chris Lattner3e928bb2005-01-07 07:47:09 +00006675 // The high part is obtained by SRA'ing all but one of the bits of the lo
6676 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006677 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006678 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Chris Lattner8137c9e2006-01-28 05:07:51 +00006679 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006680 break;
6681 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006682 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006683 // The low part is just a zero extension of the input (which degenerates to
6684 // a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006685 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006686
Chris Lattner3e928bb2005-01-07 07:47:09 +00006687 // The high part is just a zero.
6688 Hi = DAG.getConstant(0, NVT);
6689 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006690
Chris Lattner4c948eb2007-02-13 23:55:16 +00006691 case ISD::TRUNCATE: {
6692 // The input value must be larger than this value. Expand *it*.
Dan Gohman475871a2008-07-27 21:46:04 +00006693 SDValue NewLo;
Chris Lattner4c948eb2007-02-13 23:55:16 +00006694 ExpandOp(Node->getOperand(0), NewLo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00006695
Chris Lattner4c948eb2007-02-13 23:55:16 +00006696 // The low part is now either the right size, or it is closer. If not the
6697 // right size, make an illegal truncate so we recursively expand it.
6698 if (NewLo.getValueType() != Node->getValueType(0))
Dale Johannesen8a782a22009-02-02 22:12:50 +00006699 NewLo = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), NewLo);
Chris Lattner4c948eb2007-02-13 23:55:16 +00006700 ExpandOp(NewLo, Lo, Hi);
6701 break;
6702 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006703
Chris Lattner35481892005-12-23 00:16:34 +00006704 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006705 SDValue Tmp;
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006706 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6707 // If the target wants to, allow it to lower this itself.
6708 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6709 case Expand: assert(0 && "cannot expand FP!");
6710 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6711 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6712 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00006713 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp), DAG);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006714 }
6715
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006716 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006717 if (VT == MVT::f32 || VT == MVT::f64) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006718 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006719 if (getTypeAction(NVT) == Expand)
6720 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006721 break;
6722 }
6723
6724 // If source operand will be expanded to the same type as VT, i.e.
6725 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006726 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006727 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6728 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006729 break;
6730 }
6731
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006732 // Turn this into a load/store pair by default.
Gabor Greifba36cb52008-08-28 21:40:38 +00006733 if (Tmp.getNode() == 0)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006734 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00006735
Chris Lattner35481892005-12-23 00:16:34 +00006736 ExpandOp(Tmp, Lo, Hi);
6737 break;
6738 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006739
Chris Lattner27a6c732007-11-24 07:07:01 +00006740 case ISD::READCYCLECOUNTER: {
Scott Michelfdc40a02009-02-17 22:15:04 +00006741 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
Chris Lattner308575b2005-11-20 22:56:56 +00006742 TargetLowering::Custom &&
6743 "Must custom expand ReadCycleCounter");
Dan Gohman475871a2008-07-27 21:46:04 +00006744 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006745 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattner27a6c732007-11-24 07:07:01 +00006746 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006747 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006748 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006749 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006750 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006751
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006752 case ISD::ATOMIC_CMP_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006753 // This operation does not need a loop.
6754 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6755 assert(Tmp.getNode() && "Node must be custom expanded!");
6756 ExpandOp(Tmp.getValue(0), Lo, Hi);
6757 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6758 LegalizeOp(Tmp.getValue(1)));
6759 break;
6760 }
6761
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006762 case ISD::ATOMIC_LOAD_ADD:
6763 case ISD::ATOMIC_LOAD_SUB:
6764 case ISD::ATOMIC_LOAD_AND:
6765 case ISD::ATOMIC_LOAD_OR:
6766 case ISD::ATOMIC_LOAD_XOR:
6767 case ISD::ATOMIC_LOAD_NAND:
6768 case ISD::ATOMIC_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006769 // These operations require a loop to be generated. We can't do that yet,
6770 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006771 SDValue In2Lo, In2Hi, In2;
6772 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006773 In2 = DAG.getNode(ISD::BUILD_PAIR, dl, VT, In2Lo, In2Hi);
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006774 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00006775 SDValue Replace =
Dale Johannesen8a782a22009-02-02 22:12:50 +00006776 DAG.getAtomic(Op.getOpcode(), dl, Anode->getMemoryVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006777 Op.getOperand(0), Op.getOperand(1), In2,
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006778 Anode->getSrcValue(), Anode->getAlignment());
6779 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006780 ExpandOp(Result.getValue(0), Lo, Hi);
6781 // Remember that we legalized the chain.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006782 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Result.getValue(1)));
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006783 break;
6784 }
6785
Chris Lattner4e6c7462005-01-08 19:27:05 +00006786 // These operators cannot be expanded directly, emit them as calls to
6787 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006788 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006789 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006790 SDValue Op;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006791 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6792 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006793 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6794 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006795 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006796
Dale Johannesen8a782a22009-02-02 22:12:50 +00006797 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op), DAG);
Chris Lattnerf20d1832005-07-30 01:40:57 +00006798
Chris Lattner80a3e942005-07-29 00:33:32 +00006799 // Now that the custom expander is done, expand the result, which is still
6800 // VT.
Gabor Greifba36cb52008-08-28 21:40:38 +00006801 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006802 ExpandOp(Op, Lo, Hi);
6803 break;
6804 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006805 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006806
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006807 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6808 VT);
6809 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6810 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006811 break;
Evan Cheng56966222007-01-12 02:11:51 +00006812 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006813
Evan Cheng56966222007-01-12 02:11:51 +00006814 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006815 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006816 SDValue Op;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006817 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6818 case Expand: assert(0 && "cannot expand FP!");
6819 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6820 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6821 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006822
Dale Johannesen8a782a22009-02-02 22:12:50 +00006823 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, dl, VT, Op), DAG);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006824
6825 // Now that the custom expander is done, expand the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00006826 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006827 ExpandOp(Op, Lo, Hi);
6828 break;
6829 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006830 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006831
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006832 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6833 VT);
6834 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6835 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006836 break;
Evan Cheng56966222007-01-12 02:11:51 +00006837 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006838
Evan Cheng05a2d562006-01-09 18:31:59 +00006839 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006840 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006841 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006842 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006843 SDValue Op = DAG.getNode(ISD::SHL, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006844 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006845 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006846 // Now that the custom expander is done, expand the result, which is
6847 // still VT.
6848 ExpandOp(Op, Lo, Hi);
6849 break;
6850 }
6851 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006852
6853 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
Chris Lattner79980b02006-09-13 03:50:39 +00006854 // this X << 1 as X+X.
6855 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006856 if (ShAmt->getAPIntValue() == 1 &&
Scott Michelfdc40a02009-02-17 22:15:04 +00006857 TLI.isOperationLegalOrCustom(ISD::ADDC, NVT) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006858 TLI.isOperationLegalOrCustom(ISD::ADDE, NVT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006859 SDValue LoOps[2], HiOps[3];
Chris Lattner79980b02006-09-13 03:50:39 +00006860 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6861 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6862 LoOps[1] = LoOps[0];
Dale Johannesen8a782a22009-02-02 22:12:50 +00006863 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Chris Lattner79980b02006-09-13 03:50:39 +00006864
6865 HiOps[1] = HiOps[0];
6866 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006867 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Chris Lattner79980b02006-09-13 03:50:39 +00006868 break;
6869 }
6870 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006871
Chris Lattnere34b3962005-01-19 04:19:40 +00006872 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006873 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006874 break;
Chris Lattner47599822005-04-02 03:38:53 +00006875
6876 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006877 TargetLowering::LegalizeAction Action =
6878 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6879 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6880 Action == TargetLowering::Custom) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006881 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006882 ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006883 break;
6884 }
6885
Chris Lattnere34b3962005-01-19 04:19:40 +00006886 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006887 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006888 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006889 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006890
Evan Cheng05a2d562006-01-09 18:31:59 +00006891 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006892 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006893 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006894 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dale Johannesene72c5962009-02-06 21:55:48 +00006895 SDValue Op = DAG.getNode(ISD::SRA, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006896 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006897 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006898 // Now that the custom expander is done, expand the result, which is
6899 // still VT.
6900 ExpandOp(Op, Lo, Hi);
6901 break;
6902 }
6903 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006904
Chris Lattnere34b3962005-01-19 04:19:40 +00006905 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006906 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006907 break;
Chris Lattner47599822005-04-02 03:38:53 +00006908
6909 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006910 TargetLowering::LegalizeAction Action =
6911 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6912 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6913 Action == TargetLowering::Custom) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006914 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006915 ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006916 break;
6917 }
6918
Chris Lattnere34b3962005-01-19 04:19:40 +00006919 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006920 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006921 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006922 }
6923
6924 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006925 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006926 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006927 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006928 SDValue Op = DAG.getNode(ISD::SRL, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006929 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006930 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006931 // Now that the custom expander is done, expand the result, which is
6932 // still VT.
6933 ExpandOp(Op, Lo, Hi);
6934 break;
6935 }
6936 }
6937
Chris Lattnere34b3962005-01-19 04:19:40 +00006938 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006939 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006940 break;
Chris Lattner47599822005-04-02 03:38:53 +00006941
6942 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006943 TargetLowering::LegalizeAction Action =
6944 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6945 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6946 Action == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006947 ExpandShiftParts(ISD::SRL_PARTS,
6948 Node->getOperand(0), ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006949 break;
6950 }
6951
Chris Lattnere34b3962005-01-19 04:19:40 +00006952 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006953 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006954 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006955 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006956
Misha Brukmanedf128a2005-04-21 22:36:52 +00006957 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006958 case ISD::SUB: {
6959 // If the target wants to custom expand this, let them.
6960 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6961 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006962 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006963 if (Result.getNode()) {
Duncan Sands69bfb152008-06-22 09:42:16 +00006964 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006965 break;
6966 }
6967 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006968 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006969 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006970 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6971 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Dan Gohman475871a2008-07-27 21:46:04 +00006972 SDValue LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006973 LoOps[0] = LHSL;
6974 LoOps[1] = RHSL;
6975 HiOps[0] = LHSH;
6976 HiOps[1] = RHSH;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006977
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006978 //cascaded check to see if any smaller size has a a carry flag.
6979 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
6980 bool hasCarry = false;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006981 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
6982 MVT AVT = MVT::getIntegerVT(BitSize);
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006983 if (TLI.isOperationLegalOrCustom(OpV, AVT)) {
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006984 hasCarry = true;
6985 break;
6986 }
6987 }
6988
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006989 if(hasCarry) {
Evan Cheng637ed032008-12-12 18:49:09 +00006990 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Andrew Lenharth40d51392008-10-07 14:15:42 +00006991 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006992 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00006993 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006994 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Andrew Lenharth40d51392008-10-07 14:15:42 +00006995 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006996 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00006997 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006998 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Andrew Lenharth40d51392008-10-07 14:15:42 +00006999 }
7000 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007001 } else {
Andrew Lenharth40d51392008-10-07 14:15:42 +00007002 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007003 Lo = DAG.getNode(ISD::ADD, dl, NVT, LoOps, 2);
7004 Hi = DAG.getNode(ISD::ADD, dl, NVT, HiOps, 2);
7005 SDValue Cmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007006 Lo, LoOps[0], ISD::SETULT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007007 SDValue Carry1 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp1,
Scott Michelfdc40a02009-02-17 22:15:04 +00007008 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007009 DAG.getConstant(0, NVT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00007010 SDValue Cmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007011 Lo, LoOps[1], ISD::SETULT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007012 SDValue Carry2 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp2,
Scott Michelfdc40a02009-02-17 22:15:04 +00007013 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007014 Carry1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007015 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, Carry2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007016 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007017 Lo = DAG.getNode(ISD::SUB, dl, NVT, LoOps, 2);
7018 Hi = DAG.getNode(ISD::SUB, dl, NVT, HiOps, 2);
7019 SDValue Cmp = DAG.getSetCC(dl, NVT, LoOps[0], LoOps[1], ISD::SETULT);
7020 SDValue Borrow = DAG.getNode(ISD::SELECT, dl, NVT, Cmp,
Scott Michelfdc40a02009-02-17 22:15:04 +00007021 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007022 DAG.getConstant(0, NVT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00007023 Hi = DAG.getNode(ISD::SUB, dl, NVT, Hi, Borrow);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007024 }
7025 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007026 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00007027 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007028
Chris Lattnerb429f732007-05-17 18:15:41 +00007029 case ISD::ADDC:
7030 case ISD::SUBC: {
7031 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007032 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007033 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7034 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7035 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007036 SDValue LoOps[2] = { LHSL, RHSL };
7037 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michelfdc40a02009-02-17 22:15:04 +00007038
Chris Lattnerb429f732007-05-17 18:15:41 +00007039 if (Node->getOpcode() == ISD::ADDC) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007040 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Chris Lattnerb429f732007-05-17 18:15:41 +00007041 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007042 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007043 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007044 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Chris Lattnerb429f732007-05-17 18:15:41 +00007045 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007046 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007047 }
7048 // Remember that we legalized the flag.
7049 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7050 break;
7051 }
7052 case ISD::ADDE:
7053 case ISD::SUBE: {
7054 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007055 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007056 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7057 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7058 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007059 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
7060 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michelfdc40a02009-02-17 22:15:04 +00007061
Dale Johannesen8a782a22009-02-02 22:12:50 +00007062 Lo = DAG.getNode(Node->getOpcode(), dl, VTList, LoOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007063 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007064 Hi = DAG.getNode(Node->getOpcode(), dl, VTList, HiOps, 3);
Scott Michelfdc40a02009-02-17 22:15:04 +00007065
Chris Lattnerb429f732007-05-17 18:15:41 +00007066 // Remember that we legalized the flag.
7067 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7068 break;
7069 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007070 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007071 // If the target wants to custom expand this, let them.
7072 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00007073 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007074 if (New.getNode()) {
Chris Lattner8829dc82006-09-16 05:08:34 +00007075 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007076 break;
7077 }
7078 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007079
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007080 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, NVT);
7081 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, NVT);
7082 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, NVT);
7083 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00007084 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman475871a2008-07-27 21:46:04 +00007085 SDValue LL, LH, RL, RH;
Nate Begemanc7c16572005-04-11 03:01:51 +00007086 ExpandOp(Node->getOperand(0), LL, LH);
7087 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007088 unsigned OuterBitSize = Op.getValueSizeInBits();
7089 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00007090 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
7091 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00007092 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
7093 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
7094 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00007095 // The inputs are both zero-extended.
7096 if (HasUMUL_LOHI) {
7097 // We can emit a umul_lohi.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007098 Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007099 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007100 break;
7101 }
7102 if (HasMULHU) {
7103 // We can emit a mulhu+mul.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007104 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7105 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
Dan Gohman525178c2007-10-08 18:33:35 +00007106 break;
7107 }
Dan Gohman525178c2007-10-08 18:33:35 +00007108 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007109 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00007110 // The input values are both sign-extended.
7111 if (HasSMUL_LOHI) {
7112 // We can emit a smul_lohi.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007113 Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007114 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007115 break;
7116 }
7117 if (HasMULHS) {
7118 // We can emit a mulhs+mul.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007119 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7120 Hi = DAG.getNode(ISD::MULHS, dl, NVT, LL, RL);
Dan Gohman525178c2007-10-08 18:33:35 +00007121 break;
7122 }
7123 }
7124 if (HasUMUL_LOHI) {
7125 // Lo,Hi = umul LHS, RHS.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007126 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, dl,
Dan Gohman525178c2007-10-08 18:33:35 +00007127 DAG.getVTList(NVT, NVT), LL, RL);
7128 Lo = UMulLOHI;
7129 Hi = UMulLOHI.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007130 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7131 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7132 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7133 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00007134 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00007135 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007136 if (HasMULHU) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007137 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7138 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
7139 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7140 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7141 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7142 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007143 break;
7144 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007145 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00007146
Dan Gohman525178c2007-10-08 18:33:35 +00007147 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00007148 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00007149 break;
7150 }
Evan Cheng56966222007-01-12 02:11:51 +00007151 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007152 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007153 break;
7154 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007155 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007156 break;
7157 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007158 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007159 break;
7160 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007161 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007162 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00007163
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007164 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00007165 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
7166 RTLIB::ADD_F64,
7167 RTLIB::ADD_F80,
7168 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007169 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007170 break;
7171 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00007172 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
7173 RTLIB::SUB_F64,
7174 RTLIB::SUB_F80,
7175 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007176 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007177 break;
7178 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00007179 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
7180 RTLIB::MUL_F64,
7181 RTLIB::MUL_F80,
7182 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007183 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007184 break;
7185 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007186 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
7187 RTLIB::DIV_F64,
7188 RTLIB::DIV_F80,
7189 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007190 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007191 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007192 case ISD::FP_EXTEND: {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007193 if (VT == MVT::ppcf128) {
7194 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
7195 Node->getOperand(0).getValueType()==MVT::f64);
7196 const uint64_t zero = 0;
7197 if (Node->getOperand(0).getValueType()==MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00007198 Hi = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Node->getOperand(0));
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007199 else
7200 Hi = Node->getOperand(0);
7201 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7202 break;
7203 }
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007204 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
7205 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
7206 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007207 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007208 }
7209 case ISD::FP_ROUND: {
7210 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
7211 VT);
7212 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
7213 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007214 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007215 }
Evan Cheng4b887022008-09-09 23:02:14 +00007216 case ISD::FSQRT:
7217 case ISD::FSIN:
Scott Michelfdc40a02009-02-17 22:15:04 +00007218 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007219 case ISD::FLOG:
7220 case ISD::FLOG2:
7221 case ISD::FLOG10:
7222 case ISD::FEXP:
7223 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007224 case ISD::FTRUNC:
7225 case ISD::FFLOOR:
7226 case ISD::FCEIL:
7227 case ISD::FRINT:
7228 case ISD::FNEARBYINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00007229 case ISD::FPOW:
7230 case ISD::FPOWI: {
Evan Cheng56966222007-01-12 02:11:51 +00007231 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007232 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00007233 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00007234 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
7235 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007236 break;
7237 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00007238 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
7239 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007240 break;
7241 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00007242 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
7243 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007244 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007245 case ISD::FLOG:
7246 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
7247 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
7248 break;
7249 case ISD::FLOG2:
7250 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
7251 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
7252 break;
7253 case ISD::FLOG10:
7254 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
7255 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
7256 break;
7257 case ISD::FEXP:
7258 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
7259 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
7260 break;
7261 case ISD::FEXP2:
7262 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
7263 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
7264 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007265 case ISD::FTRUNC:
7266 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
7267 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
7268 break;
7269 case ISD::FFLOOR:
7270 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
7271 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
7272 break;
7273 case ISD::FCEIL:
7274 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
7275 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
7276 break;
7277 case ISD::FRINT:
7278 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
7279 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
7280 break;
7281 case ISD::FNEARBYINT:
7282 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
7283 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
7284 break;
Evan Cheng4b887022008-09-09 23:02:14 +00007285 case ISD::FPOW:
7286 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
7287 RTLIB::POW_PPCF128);
7288 break;
7289 case ISD::FPOWI:
7290 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
7291 RTLIB::POWI_PPCF128);
7292 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007293 default: assert(0 && "Unreachable!");
7294 }
Duncan Sands460a14e2008-04-12 17:14:18 +00007295 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00007296 break;
7297 }
Evan Cheng966bf242006-12-16 00:52:40 +00007298 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007299 if (VT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00007300 SDValue Tmp;
Dale Johannesenf6467742007-10-12 19:02:17 +00007301 ExpandOp(Node->getOperand(0), Lo, Tmp);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007302 Hi = DAG.getNode(ISD::FABS, dl, NVT, Tmp);
Dale Johannesenf6467742007-10-12 19:02:17 +00007303 // lo = hi==fabs(hi) ? lo : -lo;
Dale Johannesen8a782a22009-02-02 22:12:50 +00007304 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Hi, Tmp,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007305 Lo, DAG.getNode(ISD::FNEG, dl, NVT, Lo),
7306 DAG.getCondCode(ISD::SETEQ));
Dale Johannesenf6467742007-10-12 19:02:17 +00007307 break;
7308 }
Dan Gohman475871a2008-07-27 21:46:04 +00007309 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007310 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
7311 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007312 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7313 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7314 Lo = DAG.getNode(ISD::AND, dl, NVT, Lo, Mask);
Evan Cheng966bf242006-12-16 00:52:40 +00007315 if (getTypeAction(NVT) == Expand)
7316 ExpandOp(Lo, Lo, Hi);
7317 break;
7318 }
7319 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007320 if (VT == MVT::ppcf128) {
7321 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007322 Lo = DAG.getNode(ISD::FNEG, dl, MVT::f64, Lo);
7323 Hi = DAG.getNode(ISD::FNEG, dl, MVT::f64, Hi);
Dale Johannesenf6467742007-10-12 19:02:17 +00007324 break;
7325 }
Dan Gohman475871a2008-07-27 21:46:04 +00007326 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007327 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
7328 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007329 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7330 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7331 Lo = DAG.getNode(ISD::XOR, dl, NVT, Lo, Mask);
Evan Cheng966bf242006-12-16 00:52:40 +00007332 if (getTypeAction(NVT) == Expand)
7333 ExpandOp(Lo, Lo, Hi);
7334 break;
7335 }
Evan Cheng912095b2007-01-04 21:56:39 +00007336 case ISD::FCOPYSIGN: {
7337 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
7338 if (getTypeAction(NVT) == Expand)
7339 ExpandOp(Lo, Lo, Hi);
7340 break;
7341 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007342 case ISD::SINT_TO_FP:
7343 case ISD::UINT_TO_FP: {
7344 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007345 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00007346
7347 // Promote the operand if needed. Do this before checking for
7348 // ppcf128 so conversions of i16 and i8 work.
7349 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman475871a2008-07-27 21:46:04 +00007350 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesencf498192008-03-18 17:28:38 +00007351 Tmp = isSigned
Dale Johannesen8a782a22009-02-02 22:12:50 +00007352 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp.getValueType(), Tmp,
Dale Johannesencf498192008-03-18 17:28:38 +00007353 DAG.getValueType(SrcVT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00007354 : DAG.getZeroExtendInReg(Tmp, dl, SrcVT);
Gabor Greifba36cb52008-08-28 21:40:38 +00007355 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesencf498192008-03-18 17:28:38 +00007356 SrcVT = Node->getOperand(0).getValueType();
7357 }
7358
Dan Gohmana2e94852008-03-10 23:03:31 +00007359 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007360 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007361 if (isSigned) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007362 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007363 Node->getOperand(0)));
7364 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7365 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007366 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Scott Michelfdc40a02009-02-17 22:15:04 +00007367 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007368 Node->getOperand(0)));
7369 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007370 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007371 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen8a782a22009-02-02 22:12:50 +00007372 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl,
7373 MVT::ppcf128, Node->getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00007374 DAG.getConstant(0, MVT::i32),
Dale Johannesen8a782a22009-02-02 22:12:50 +00007375 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007376 DAG.getConstantFP
7377 (APFloat(APInt(128, 2, TwoE32)),
7378 MVT::ppcf128)),
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007379 Hi,
7380 DAG.getCondCode(ISD::SETLT)),
7381 Lo, Hi);
7382 }
7383 break;
7384 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00007385 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
7386 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007387 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen8a782a22009-02-02 22:12:50 +00007388 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::ppcf128,
7389 Node->getOperand(0)), Lo, Hi);
7390 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007391 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
Dale Johannesen8a782a22009-02-02 22:12:50 +00007392 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl, MVT::ppcf128,
7393 Node->getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00007394 DAG.getConstant(0, MVT::i64),
Dale Johannesen8a782a22009-02-02 22:12:50 +00007395 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007396 DAG.getConstantFP
7397 (APFloat(APInt(128, 2, TwoE64)),
7398 MVT::ppcf128)),
Dale Johannesen6e63e092007-10-12 17:52:03 +00007399 Hi,
7400 DAG.getCondCode(ISD::SETLT)),
7401 Lo, Hi);
7402 break;
7403 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007404
Dan Gohmana2e94852008-03-10 23:03:31 +00007405 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00007406 Node->getOperand(0), dl);
Evan Cheng110cf482008-04-01 01:50:16 +00007407 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00007408 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00007409 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00007410 break;
7411 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00007412 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00007413
Chris Lattner83397362005-12-21 18:02:52 +00007414 // Make sure the resultant values have been legalized themselves, unless this
7415 // is a type that requires multi-step expansion.
7416 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
7417 Lo = LegalizeOp(Lo);
Gabor Greifba36cb52008-08-28 21:40:38 +00007418 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00007419 // Don't legalize the high part if it is expanded to a single node.
7420 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00007421 }
Evan Cheng05a2d562006-01-09 18:31:59 +00007422
7423 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00007424 bool isNew =
7425 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00007426 assert(isNew && "Value already expanded?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007427 isNew = isNew;
Chris Lattner3e928bb2005-01-07 07:47:09 +00007428}
7429
Dan Gohman7f321562007-06-25 16:23:39 +00007430/// SplitVectorOp - Given an operand of vector type, break it down into
7431/// two smaller values, still of vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00007432void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
7433 SDValue &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007434 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007435 SDNode *Node = Op.getNode();
Dale Johannesenbb5da912009-02-02 20:41:04 +00007436 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007437 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00007438 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00007439
Duncan Sands83ec4b62008-06-06 12:08:01 +00007440 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00007441
7442 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
7443 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
7444
Duncan Sands83ec4b62008-06-06 12:08:01 +00007445 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
7446 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007447
Chris Lattnerc7029802006-03-18 01:44:44 +00007448 // See if we already split it.
Dan Gohman475871a2008-07-27 21:46:04 +00007449 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattnerc7029802006-03-18 01:44:44 +00007450 = SplitNodes.find(Op);
7451 if (I != SplitNodes.end()) {
7452 Lo = I->second.first;
7453 Hi = I->second.second;
7454 return;
7455 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007456
Chris Lattnerc7029802006-03-18 01:44:44 +00007457 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007458 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007459#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007460 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007461#endif
7462 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007463 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00007464 Lo = DAG.getUNDEF(NewVT_Lo);
7465 Hi = DAG.getUNDEF(NewVT_Hi);
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007466 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007467 case ISD::BUILD_PAIR:
7468 Lo = Node->getOperand(0);
7469 Hi = Node->getOperand(1);
7470 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00007471 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00007472 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
7473 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007474 unsigned Index = Idx->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007475 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman68679912008-04-25 18:07:40 +00007476 if (Index < NewNumElts_Lo)
Dale Johannesenc6be1102009-02-02 22:49:46 +00007477 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Lo, Lo, ScalarOp,
Nate Begeman68679912008-04-25 18:07:40 +00007478 DAG.getIntPtrConstant(Index));
7479 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00007480 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Hi, Hi, ScalarOp,
Nate Begeman68679912008-04-25 18:07:40 +00007481 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
7482 break;
7483 }
Dan Gohman475871a2008-07-27 21:46:04 +00007484 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007485 Node->getOperand(1),
7486 Node->getOperand(2), dl);
Nate Begeman68679912008-04-25 18:07:40 +00007487 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00007488 break;
7489 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00007490 case ISD::VECTOR_SHUFFLE: {
7491 // Build the low part.
Dan Gohman475871a2008-07-27 21:46:04 +00007492 SDValue Mask = Node->getOperand(2);
7493 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007494 MVT PtrVT = TLI.getPointerTy();
Scott Michelfdc40a02009-02-17 22:15:04 +00007495
7496 // Insert all of the elements from the input that are needed. We use
Chris Lattner6c9c6802007-11-19 21:16:54 +00007497 // buildvector of extractelement here because the input vectors will have
7498 // to be legalized, so this makes the code simpler.
7499 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007500 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007501 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007502 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman5922f562008-03-14 00:53:31 +00007503 continue;
7504 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007505 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007506 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007507 if (Idx >= NumElements) {
7508 InVec = Node->getOperand(1);
7509 Idx -= NumElements;
7510 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00007511 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner6c9c6802007-11-19 21:16:54 +00007512 DAG.getConstant(Idx, PtrVT)));
7513 }
Evan Chenga87008d2009-02-25 22:49:59 +00007514 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007515 Ops.clear();
Scott Michelfdc40a02009-02-17 22:15:04 +00007516
Chris Lattner6c9c6802007-11-19 21:16:54 +00007517 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007518 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007519 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007520 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman5922f562008-03-14 00:53:31 +00007521 continue;
7522 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007523 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007524 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007525 if (Idx >= NumElements) {
7526 InVec = Node->getOperand(1);
7527 Idx -= NumElements;
7528 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00007529 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner6c9c6802007-11-19 21:16:54 +00007530 DAG.getConstant(Idx, PtrVT)));
7531 }
Evan Chenga87008d2009-02-25 22:49:59 +00007532 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007533 break;
7534 }
Dan Gohman7f321562007-06-25 16:23:39 +00007535 case ISD::BUILD_VECTOR: {
Scott Michelfdc40a02009-02-17 22:15:04 +00007536 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007537 Node->op_begin()+NewNumElts_Lo);
Evan Chenga87008d2009-02-25 22:49:59 +00007538 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007539
Scott Michelfdc40a02009-02-17 22:15:04 +00007540 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007541 Node->op_end());
Evan Chenga87008d2009-02-25 22:49:59 +00007542 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007543 break;
7544 }
Dan Gohman7f321562007-06-25 16:23:39 +00007545 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00007546 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00007547 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7548 if (NewNumSubvectors == 1) {
7549 Lo = Node->getOperand(0);
7550 Hi = Node->getOperand(1);
7551 } else {
Mon P Wangaeb06d22008-11-10 04:46:22 +00007552 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
7553 Node->op_begin()+NewNumSubvectors);
Scott Michelfdc40a02009-02-17 22:15:04 +00007554 Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Lo,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007555 &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00007556
Mon P Wangaeb06d22008-11-10 04:46:22 +00007557 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007558 Node->op_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00007559 Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Hi,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007560 &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00007561 }
Dan Gohman65956352007-06-13 15:12:02 +00007562 break;
7563 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00007564 case ISD::EXTRACT_SUBVECTOR: {
7565 SDValue Vec = Op.getOperand(0);
7566 SDValue Idx = Op.getOperand(1);
7567 MVT IdxVT = Idx.getValueType();
7568
Dale Johannesenc6be1102009-02-02 22:49:46 +00007569 Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Lo, Vec, Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007570 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
7571 if (CIdx) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007572 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec,
Mon P Wangaeb06d22008-11-10 04:46:22 +00007573 DAG.getConstant(CIdx->getZExtValue() + NewNumElts_Lo,
7574 IdxVT));
7575 } else {
Dale Johannesenc6be1102009-02-02 22:49:46 +00007576 Idx = DAG.getNode(ISD::ADD, dl, IdxVT, Idx,
Mon P Wangaeb06d22008-11-10 04:46:22 +00007577 DAG.getConstant(NewNumElts_Lo, IdxVT));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007578 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec, Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007579 }
7580 break;
7581 }
Dan Gohmanc6230962007-10-17 14:48:28 +00007582 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007583 SDValue Cond = Node->getOperand(0);
Dan Gohmanc6230962007-10-17 14:48:28 +00007584
Dan Gohman475871a2008-07-27 21:46:04 +00007585 SDValue LL, LH, RL, RH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007586 SplitVectorOp(Node->getOperand(1), LL, LH);
7587 SplitVectorOp(Node->getOperand(2), RL, RH);
7588
Duncan Sands83ec4b62008-06-06 12:08:01 +00007589 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00007590 // Handle a vector merge.
Dan Gohman475871a2008-07-27 21:46:04 +00007591 SDValue CL, CH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007592 SplitVectorOp(Cond, CL, CH);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007593 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, CL, LL, RL);
7594 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007595 } else {
7596 // Handle a simple select with vector operands.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007597 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, Cond, LL, RL);
7598 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007599 }
7600 break;
7601 }
Chris Lattner80c1a562008-06-30 02:43:01 +00007602 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007603 SDValue CondLHS = Node->getOperand(0);
7604 SDValue CondRHS = Node->getOperand(1);
7605 SDValue CondCode = Node->getOperand(4);
Scott Michelfdc40a02009-02-17 22:15:04 +00007606
Dan Gohman475871a2008-07-27 21:46:04 +00007607 SDValue LL, LH, RL, RH;
Chris Lattner80c1a562008-06-30 02:43:01 +00007608 SplitVectorOp(Node->getOperand(2), LL, LH);
7609 SplitVectorOp(Node->getOperand(3), RL, RH);
Scott Michelfdc40a02009-02-17 22:15:04 +00007610
Chris Lattner80c1a562008-06-30 02:43:01 +00007611 // Handle a simple select with vector operands.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007612 Lo = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Lo, CondLHS, CondRHS,
Chris Lattner80c1a562008-06-30 02:43:01 +00007613 LL, RL, CondCode);
Scott Michelfdc40a02009-02-17 22:15:04 +00007614 Hi = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Hi, CondLHS, CondRHS,
Chris Lattner80c1a562008-06-30 02:43:01 +00007615 LH, RH, CondCode);
7616 break;
7617 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00007618 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007619 SDValue LL, LH, RL, RH;
Nate Begemanb43e9c12008-05-12 19:40:03 +00007620 SplitVectorOp(Node->getOperand(0), LL, LH);
7621 SplitVectorOp(Node->getOperand(1), RL, RH);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007622 Lo = DAG.getNode(ISD::VSETCC, dl, NewVT_Lo, LL, RL, Node->getOperand(2));
7623 Hi = DAG.getNode(ISD::VSETCC, dl, NewVT_Hi, LH, RH, Node->getOperand(2));
Nate Begemanb43e9c12008-05-12 19:40:03 +00007624 break;
7625 }
Dan Gohman7f321562007-06-25 16:23:39 +00007626 case ISD::ADD:
7627 case ISD::SUB:
7628 case ISD::MUL:
7629 case ISD::FADD:
7630 case ISD::FSUB:
7631 case ISD::FMUL:
7632 case ISD::SDIV:
7633 case ISD::UDIV:
7634 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00007635 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007636 case ISD::AND:
7637 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00007638 case ISD::XOR:
7639 case ISD::UREM:
7640 case ISD::SREM:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00007641 case ISD::FREM:
7642 case ISD::SHL:
7643 case ISD::SRA:
7644 case ISD::SRL: {
Dan Gohman475871a2008-07-27 21:46:04 +00007645 SDValue LL, LH, RL, RH;
Chris Lattnerc7029802006-03-18 01:44:44 +00007646 SplitVectorOp(Node->getOperand(0), LL, LH);
7647 SplitVectorOp(Node->getOperand(1), RL, RH);
Scott Michelfdc40a02009-02-17 22:15:04 +00007648
Dale Johannesenc6be1102009-02-02 22:49:46 +00007649 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, LL, RL);
7650 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00007651 break;
7652 }
Dan Gohman7f8613e2008-08-14 20:04:46 +00007653 case ISD::FP_ROUND:
Dan Gohman82669522007-10-11 23:57:53 +00007654 case ISD::FPOWI: {
Dan Gohman475871a2008-07-27 21:46:04 +00007655 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007656 SplitVectorOp(Node->getOperand(0), L, H);
7657
Dale Johannesenc6be1102009-02-02 22:49:46 +00007658 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L, Node->getOperand(1));
7659 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00007660 break;
7661 }
7662 case ISD::CTTZ:
7663 case ISD::CTLZ:
7664 case ISD::CTPOP:
7665 case ISD::FNEG:
7666 case ISD::FABS:
7667 case ISD::FSQRT:
7668 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00007669 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007670 case ISD::FLOG:
7671 case ISD::FLOG2:
7672 case ISD::FLOG10:
7673 case ISD::FEXP:
7674 case ISD::FEXP2:
Nate Begemanb348d182007-11-17 03:58:34 +00007675 case ISD::FP_TO_SINT:
7676 case ISD::FP_TO_UINT:
7677 case ISD::SINT_TO_FP:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007678 case ISD::UINT_TO_FP:
7679 case ISD::TRUNCATE:
7680 case ISD::ANY_EXTEND:
7681 case ISD::SIGN_EXTEND:
7682 case ISD::ZERO_EXTEND:
7683 case ISD::FP_EXTEND: {
Dan Gohman475871a2008-07-27 21:46:04 +00007684 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007685 SplitVectorOp(Node->getOperand(0), L, H);
7686
Dale Johannesenc6be1102009-02-02 22:49:46 +00007687 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L);
7688 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00007689 break;
7690 }
Mon P Wang77cdf302008-11-10 20:54:11 +00007691 case ISD::CONVERT_RNDSAT: {
7692 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
7693 SDValue L, H;
7694 SplitVectorOp(Node->getOperand(0), L, H);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007695 SDValue DTyOpL = DAG.getValueType(NewVT_Lo);
7696 SDValue DTyOpH = DAG.getValueType(NewVT_Hi);
7697 SDValue STyOpL = DAG.getValueType(L.getValueType());
7698 SDValue STyOpH = DAG.getValueType(H.getValueType());
Mon P Wang77cdf302008-11-10 20:54:11 +00007699
7700 SDValue RndOp = Node->getOperand(3);
7701 SDValue SatOp = Node->getOperand(4);
7702
Dale Johannesenc460ae92009-02-04 00:13:36 +00007703 Lo = DAG.getConvertRndSat(NewVT_Lo, dl, L, DTyOpL, STyOpL,
Mon P Wang77cdf302008-11-10 20:54:11 +00007704 RndOp, SatOp, CvtCode);
Dale Johannesenc460ae92009-02-04 00:13:36 +00007705 Hi = DAG.getConvertRndSat(NewVT_Hi, dl, H, DTyOpH, STyOpH,
Mon P Wang77cdf302008-11-10 20:54:11 +00007706 RndOp, SatOp, CvtCode);
7707 break;
7708 }
Dan Gohman7f321562007-06-25 16:23:39 +00007709 case ISD::LOAD: {
7710 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007711 SDValue Ch = LD->getChain();
7712 SDValue Ptr = LD->getBasePtr();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007713 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007714 const Value *SV = LD->getSrcValue();
7715 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007716 MVT MemoryVT = LD->getMemoryVT();
Dan Gohman7f321562007-06-25 16:23:39 +00007717 unsigned Alignment = LD->getAlignment();
7718 bool isVolatile = LD->isVolatile();
7719
Dan Gohman7f8613e2008-08-14 20:04:46 +00007720 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesene8d72302009-02-06 23:05:02 +00007721 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Dan Gohman7f8613e2008-08-14 20:04:46 +00007722
7723 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7724 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7725 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7726
Dale Johannesenc6be1102009-02-02 22:49:46 +00007727 Lo = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007728 NewVT_Lo, Ch, Ptr, Offset,
7729 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7730 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Dale Johannesenc6be1102009-02-02 22:49:46 +00007731 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00007732 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00007733 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00007734 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007735 Hi = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007736 NewVT_Hi, Ch, Ptr, Offset,
7737 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00007738
Chris Lattnerc7029802006-03-18 01:44:44 +00007739 // Build a factor node to remember that this load is independent of the
7740 // other one.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007741 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007742 Hi.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00007743
Chris Lattnerc7029802006-03-18 01:44:44 +00007744 // Remember that we legalized the chain.
7745 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00007746 break;
7747 }
Dan Gohman7f321562007-06-25 16:23:39 +00007748 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00007749 // We know the result is a vector. The input may be either a vector or a
7750 // scalar value.
Dan Gohman475871a2008-07-27 21:46:04 +00007751 SDValue InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007752 if (!InOp.getValueType().isVector() ||
7753 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00007754 // The input is a scalar or single-element vector.
7755 // Lower to a store/load so that it can be split.
7756 // FIXME: this could be improved probably.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007757 unsigned LdAlign = TLI.getTargetData()->
7758 getPrefTypeAlignment(Op.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00007759 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greifba36cb52008-08-28 21:40:38 +00007760 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Chris Lattner7692eb42006-03-23 21:16:34 +00007761
Dale Johannesenc6be1102009-02-02 22:49:46 +00007762 SDValue St = DAG.getStore(DAG.getEntryNode(), dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007763 InOp, Ptr,
7764 PseudoSourceValue::getFixedStack(FI), 0);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007765 InOp = DAG.getLoad(Op.getValueType(), dl, St, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007766 PseudoSourceValue::getFixedStack(FI), 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00007767 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007768 // Split the vector and convert each of the pieces now.
7769 SplitVectorOp(InOp, Lo, Hi);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007770 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Lo, Lo);
7771 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007772 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007773 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007774 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007775
Chris Lattnerc7029802006-03-18 01:44:44 +00007776 // Remember in a map if the values will be reused later.
Scott Michelfdc40a02009-02-17 22:15:04 +00007777 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007778 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007779 assert(isNew && "Value already split?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007780 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00007781}
7782
7783
Dan Gohman89b20c02007-06-27 14:06:22 +00007784/// ScalarizeVectorOp - Given an operand of single-element vector type
7785/// (e.g. v1f32), convert it into the equivalent operation that returns a
7786/// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +00007787SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007788 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007789 SDNode *Node = Op.getNode();
Dale Johannesenc6be1102009-02-02 22:49:46 +00007790 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007791 MVT NewVT = Op.getValueType().getVectorElementType();
7792 assert(Op.getValueType().getVectorNumElements() == 1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007793
Dan Gohman7f321562007-06-25 16:23:39 +00007794 // See if we already scalarized it.
Dan Gohman475871a2008-07-27 21:46:04 +00007795 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohman7f321562007-06-25 16:23:39 +00007796 if (I != ScalarizedNodes.end()) return I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00007797
Dan Gohman475871a2008-07-27 21:46:04 +00007798 SDValue Result;
Chris Lattnerc7029802006-03-18 01:44:44 +00007799 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007800 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007801#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007802 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007803#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007804 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7805 case ISD::ADD:
7806 case ISD::FADD:
7807 case ISD::SUB:
7808 case ISD::FSUB:
7809 case ISD::MUL:
7810 case ISD::FMUL:
7811 case ISD::SDIV:
7812 case ISD::UDIV:
7813 case ISD::FDIV:
7814 case ISD::SREM:
7815 case ISD::UREM:
7816 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007817 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007818 case ISD::AND:
7819 case ISD::OR:
7820 case ISD::XOR:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007821 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007822 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007823 ScalarizeVectorOp(Node->getOperand(0)),
7824 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007825 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007826 case ISD::FNEG:
7827 case ISD::FABS:
7828 case ISD::FSQRT:
7829 case ISD::FSIN:
7830 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007831 case ISD::FLOG:
7832 case ISD::FLOG2:
7833 case ISD::FLOG10:
7834 case ISD::FEXP:
7835 case ISD::FEXP2:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007836 case ISD::FP_TO_SINT:
7837 case ISD::FP_TO_UINT:
7838 case ISD::SINT_TO_FP:
7839 case ISD::UINT_TO_FP:
7840 case ISD::SIGN_EXTEND:
7841 case ISD::ZERO_EXTEND:
7842 case ISD::ANY_EXTEND:
7843 case ISD::TRUNCATE:
7844 case ISD::FP_EXTEND:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007845 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007846 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007847 ScalarizeVectorOp(Node->getOperand(0)));
7848 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00007849 case ISD::CONVERT_RNDSAT: {
7850 SDValue Op0 = ScalarizeVectorOp(Node->getOperand(0));
Dale Johannesenc460ae92009-02-04 00:13:36 +00007851 Result = DAG.getConvertRndSat(NewVT, dl, Op0,
Mon P Wang77cdf302008-11-10 20:54:11 +00007852 DAG.getValueType(NewVT),
7853 DAG.getValueType(Op0.getValueType()),
7854 Node->getOperand(3),
7855 Node->getOperand(4),
7856 cast<CvtRndSatSDNode>(Node)->getCvtCode());
7857 break;
7858 }
Dan Gohman9e04c822007-10-12 14:13:46 +00007859 case ISD::FPOWI:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007860 case ISD::FP_ROUND:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007861 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007862 NewVT,
Dan Gohman9e04c822007-10-12 14:13:46 +00007863 ScalarizeVectorOp(Node->getOperand(0)),
7864 Node->getOperand(1));
7865 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007866 case ISD::LOAD: {
7867 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007868 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7869 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman7f8613e2008-08-14 20:04:46 +00007870 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007871 const Value *SV = LD->getSrcValue();
7872 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007873 MVT MemoryVT = LD->getMemoryVT();
7874 unsigned Alignment = LD->getAlignment();
7875 bool isVolatile = LD->isVolatile();
7876
7877 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesene8d72302009-02-06 23:05:02 +00007878 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Scott Michelfdc40a02009-02-17 22:15:04 +00007879
Dale Johannesenc6be1102009-02-02 22:49:46 +00007880 Result = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007881 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7882 MemoryVT.getVectorElementType(),
7883 isVolatile, Alignment);
Dan Gohman7f321562007-06-25 16:23:39 +00007884
Chris Lattnerc7029802006-03-18 01:44:44 +00007885 // Remember that we legalized the chain.
7886 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7887 break;
7888 }
Dan Gohman7f321562007-06-25 16:23:39 +00007889 case ISD::BUILD_VECTOR:
7890 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007891 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007892 case ISD::INSERT_VECTOR_ELT:
7893 // Returning the inserted scalar element.
7894 Result = Node->getOperand(1);
7895 break;
7896 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007897 assert(Node->getOperand(0).getValueType() == NewVT &&
7898 "Concat of non-legal vectors not yet supported!");
7899 Result = Node->getOperand(0);
7900 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007901 case ISD::VECTOR_SHUFFLE: {
7902 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman475871a2008-07-27 21:46:04 +00007903 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007904 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohman7f321562007-06-25 16:23:39 +00007905 Result = ScalarizeVectorOp(Node->getOperand(1));
7906 else
7907 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007908 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007909 }
7910 case ISD::EXTRACT_SUBVECTOR:
Scott Michelfdc40a02009-02-17 22:15:04 +00007911 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007912 Node->getOperand(0), Node->getOperand(1));
Dan Gohman65956352007-06-13 15:12:02 +00007913 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007914 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007915 SDValue Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007916 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007917 Op0 = ScalarizeVectorOp(Op0);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007918 Result = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007919 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007920 }
Dan Gohman7f321562007-06-25 16:23:39 +00007921 case ISD::SELECT:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007922 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007923 ScalarizeVectorOp(Op.getOperand(1)),
7924 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007925 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007926 case ISD::SELECT_CC:
Scott Michelfdc40a02009-02-17 22:15:04 +00007927 Result = DAG.getNode(ISD::SELECT_CC, dl, NewVT, Node->getOperand(0),
Chris Lattner80c1a562008-06-30 02:43:01 +00007928 Node->getOperand(1),
7929 ScalarizeVectorOp(Op.getOperand(2)),
7930 ScalarizeVectorOp(Op.getOperand(3)),
7931 Node->getOperand(4));
7932 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007933 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007934 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7935 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007936 Result = DAG.getNode(ISD::SETCC, dl,
7937 TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00007938 Op0, Op1, Op.getOperand(2));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007939 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Result,
Nate Begeman0d1704b2008-05-12 23:09:43 +00007940 DAG.getConstant(-1ULL, NewVT),
7941 DAG.getConstant(0ULL, NewVT));
7942 break;
7943 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007944 }
7945
7946 if (TLI.isTypeLegal(NewVT))
7947 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007948 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7949 assert(isNew && "Value already scalarized?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007950 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00007951 return Result;
7952}
7953
Chris Lattner3e928bb2005-01-07 07:47:09 +00007954
Mon P Wang0c397192008-10-30 08:01:45 +00007955SDValue SelectionDAGLegalize::WidenVectorOp(SDValue Op, MVT WidenVT) {
7956 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(Op);
7957 if (I != WidenNodes.end()) return I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00007958
Mon P Wang0c397192008-10-30 08:01:45 +00007959 MVT VT = Op.getValueType();
7960 assert(VT.isVector() && "Cannot widen non-vector type!");
7961
7962 SDValue Result;
7963 SDNode *Node = Op.getNode();
Dale Johannesenc6be1102009-02-02 22:49:46 +00007964 DebugLoc dl = Node->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00007965 MVT EVT = VT.getVectorElementType();
7966
7967 unsigned NumElts = VT.getVectorNumElements();
7968 unsigned NewNumElts = WidenVT.getVectorNumElements();
7969 assert(NewNumElts > NumElts && "Cannot widen to smaller type!");
7970 assert(NewNumElts < 17);
7971
7972 // When widen is called, it is assumed that it is more efficient to use a
7973 // wide type. The default action is to widen to operation to a wider legal
7974 // vector type and then do the operation if it is legal by calling LegalizeOp
7975 // again. If there is no vector equivalent, we will unroll the operation, do
7976 // it, and rebuild the vector. If most of the operations are vectorizible to
7977 // the legal type, the resulting code will be more efficient. If this is not
7978 // the case, the resulting code will preform badly as we end up generating
7979 // code to pack/unpack the results. It is the function that calls widen
Mon P Wangf007a8b2008-11-06 05:31:54 +00007980 // that is responsible for seeing this doesn't happen.
Mon P Wang0c397192008-10-30 08:01:45 +00007981 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007982 default:
Mon P Wang0c397192008-10-30 08:01:45 +00007983#ifndef NDEBUG
7984 Node->dump(&DAG);
7985#endif
7986 assert(0 && "Unexpected operation in WidenVectorOp!");
7987 break;
7988 case ISD::CopyFromReg:
Mon P Wang49292f12008-11-15 06:05:52 +00007989 assert(0 && "CopyFromReg doesn't need widening!");
Mon P Wang0c397192008-10-30 08:01:45 +00007990 case ISD::Constant:
7991 case ISD::ConstantFP:
7992 // To build a vector of these elements, clients should call BuildVector
7993 // and with each element instead of creating a node with a vector type
7994 assert(0 && "Unexpected operation in WidenVectorOp!");
7995 case ISD::VAARG:
7996 // Variable Arguments with vector types doesn't make any sense to me
7997 assert(0 && "Unexpected operation in WidenVectorOp!");
7998 break;
Mon P Wang49292f12008-11-15 06:05:52 +00007999 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00008000 Result = DAG.getUNDEF(WidenVT);
Mon P Wang49292f12008-11-15 06:05:52 +00008001 break;
Mon P Wang0c397192008-10-30 08:01:45 +00008002 case ISD::BUILD_VECTOR: {
8003 // Build a vector with undefined for the new nodes
8004 SDValueVector NewOps(Node->op_begin(), Node->op_end());
8005 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesene8d72302009-02-06 23:05:02 +00008006 NewOps.push_back(DAG.getUNDEF(EVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008007 }
Evan Chenga87008d2009-02-25 22:49:59 +00008008 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT,
8009 &NewOps[0], NewOps.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008010 break;
8011 }
8012 case ISD::INSERT_VECTOR_ELT: {
8013 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008014 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, WidenVT, Tmp1,
Mon P Wang0c397192008-10-30 08:01:45 +00008015 Node->getOperand(1), Node->getOperand(2));
8016 break;
8017 }
8018 case ISD::VECTOR_SHUFFLE: {
8019 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8020 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
Nate Begeman9008ca62009-04-27 18:41:29 +00008021 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Node);
8022 SmallVector<int, 8> NewMask;
Mon P Wang0c397192008-10-30 08:01:45 +00008023 for (unsigned i = 0; i < NumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008024 int Idx = SVOp->getMaskElt(i);
8025 if (Idx < (int)NumElts)
8026 NewMask.push_back(Idx);
8027 else
8028 NewMask.push_back(Idx + NewNumElts - NumElts);
Mon P Wang0c397192008-10-30 08:01:45 +00008029 }
Nate Begeman9008ca62009-04-27 18:41:29 +00008030 for (unsigned i = NumElts; i < NewNumElts; ++i)
8031 NewMask.push_back(-1);
8032
8033 Result = DAG.getVectorShuffle(WidenVT, dl, Tmp1, Tmp2, &NewMask[0]);
Mon P Wang0c397192008-10-30 08:01:45 +00008034 break;
8035 }
8036 case ISD::LOAD: {
8037 // If the load widen returns true, we can use a single load for the
8038 // vector. Otherwise, it is returning a token factor for multiple
8039 // loads.
8040 SDValue TFOp;
8041 if (LoadWidenVectorOp(Result, TFOp, Op, WidenVT))
8042 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(1)));
8043 else
8044 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(0)));
8045 break;
8046 }
8047
8048 case ISD::BIT_CONVERT: {
8049 SDValue Tmp1 = Node->getOperand(0);
8050 // Converts between two different types so we need to determine
8051 // the correct widen type for the input operand.
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008052 MVT InVT = Tmp1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008053 unsigned WidenSize = WidenVT.getSizeInBits();
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008054 if (InVT.isVector()) {
8055 MVT InEltVT = InVT.getVectorElementType();
8056 unsigned InEltSize = InEltVT.getSizeInBits();
8057 assert(WidenSize % InEltSize == 0 &&
8058 "can not widen bit convert that are not multiple of element type");
8059 MVT NewInWidenVT = MVT::getVectorVT(InEltVT, WidenSize / InEltSize);
8060 Tmp1 = WidenVectorOp(Tmp1, NewInWidenVT);
8061 assert(Tmp1.getValueType().getSizeInBits() == WidenVT.getSizeInBits());
Dale Johannesenc6be1102009-02-02 22:49:46 +00008062 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Tmp1);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008063 } else {
8064 // If the result size is a multiple of the input size, widen the input
8065 // and then convert.
8066 unsigned InSize = InVT.getSizeInBits();
8067 assert(WidenSize % InSize == 0 &&
8068 "can not widen bit convert that are not multiple of element type");
8069 unsigned NewNumElts = WidenSize / InSize;
8070 SmallVector<SDValue, 16> Ops(NewNumElts);
Dale Johannesene8d72302009-02-06 23:05:02 +00008071 SDValue UndefVal = DAG.getUNDEF(InVT);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008072 Ops[0] = Tmp1;
8073 for (unsigned i = 1; i < NewNumElts; ++i)
8074 Ops[i] = UndefVal;
Mon P Wang0c397192008-10-30 08:01:45 +00008075
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008076 MVT NewInVT = MVT::getVectorVT(InVT, NewNumElts);
Evan Chenga87008d2009-02-25 22:49:59 +00008077 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, NewInVT, &Ops[0], NewNumElts);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008078 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008079 }
8080 break;
8081 }
8082
8083 case ISD::SINT_TO_FP:
8084 case ISD::UINT_TO_FP:
8085 case ISD::FP_TO_SINT:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008086 case ISD::FP_TO_UINT:
8087 case ISD::FP_ROUND: {
Mon P Wang0c397192008-10-30 08:01:45 +00008088 SDValue Tmp1 = Node->getOperand(0);
8089 // Converts between two different types so we need to determine
8090 // the correct widen type for the input operand.
8091 MVT TVT = Tmp1.getValueType();
8092 assert(TVT.isVector() && "can not widen non vector type");
8093 MVT TEVT = TVT.getVectorElementType();
8094 MVT TWidenVT = MVT::getVectorVT(TEVT, NewNumElts);
8095 Tmp1 = WidenVectorOp(Tmp1, TWidenVT);
8096 assert(Tmp1.getValueType().getVectorNumElements() == NewNumElts);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008097 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008098 break;
8099 }
8100
8101 case ISD::FP_EXTEND:
8102 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
8103 case ISD::TRUNCATE:
8104 case ISD::SIGN_EXTEND:
8105 case ISD::ZERO_EXTEND:
8106 case ISD::ANY_EXTEND:
Mon P Wang0c397192008-10-30 08:01:45 +00008107 case ISD::SIGN_EXTEND_INREG:
8108 case ISD::FABS:
8109 case ISD::FNEG:
8110 case ISD::FSQRT:
8111 case ISD::FSIN:
Mon P Wang49292f12008-11-15 06:05:52 +00008112 case ISD::FCOS:
8113 case ISD::CTPOP:
8114 case ISD::CTTZ:
8115 case ISD::CTLZ: {
Mon P Wang0c397192008-10-30 08:01:45 +00008116 // Unary op widening
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008117 SDValue Tmp1;
Mon P Wang0c397192008-10-30 08:01:45 +00008118 Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8119 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008120 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008121 break;
8122 }
Mon P Wang77cdf302008-11-10 20:54:11 +00008123 case ISD::CONVERT_RNDSAT: {
8124 SDValue RndOp = Node->getOperand(3);
8125 SDValue SatOp = Node->getOperand(4);
Mon P Wang77cdf302008-11-10 20:54:11 +00008126 SDValue SrcOp = Node->getOperand(0);
8127
8128 // Converts between two different types so we need to determine
8129 // the correct widen type for the input operand.
8130 MVT SVT = SrcOp.getValueType();
8131 assert(SVT.isVector() && "can not widen non vector type");
8132 MVT SEVT = SVT.getVectorElementType();
8133 MVT SWidenVT = MVT::getVectorVT(SEVT, NewNumElts);
8134
8135 SrcOp = WidenVectorOp(SrcOp, SWidenVT);
8136 assert(SrcOp.getValueType() == WidenVT);
8137 SDValue DTyOp = DAG.getValueType(WidenVT);
8138 SDValue STyOp = DAG.getValueType(SrcOp.getValueType());
8139 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
8140
Dale Johannesenc460ae92009-02-04 00:13:36 +00008141 Result = DAG.getConvertRndSat(WidenVT, dl, SrcOp, DTyOp, STyOp,
Mon P Wang77cdf302008-11-10 20:54:11 +00008142 RndOp, SatOp, CvtCode);
Mon P Wang77cdf302008-11-10 20:54:11 +00008143 break;
8144 }
Mon P Wang0c397192008-10-30 08:01:45 +00008145 case ISD::FPOW:
Scott Michelfdc40a02009-02-17 22:15:04 +00008146 case ISD::FPOWI:
Mon P Wang0c397192008-10-30 08:01:45 +00008147 case ISD::ADD:
8148 case ISD::SUB:
8149 case ISD::MUL:
8150 case ISD::MULHS:
8151 case ISD::MULHU:
8152 case ISD::AND:
8153 case ISD::OR:
8154 case ISD::XOR:
8155 case ISD::FADD:
8156 case ISD::FSUB:
8157 case ISD::FMUL:
8158 case ISD::SDIV:
8159 case ISD::SREM:
8160 case ISD::FDIV:
8161 case ISD::FREM:
8162 case ISD::FCOPYSIGN:
8163 case ISD::UDIV:
8164 case ISD::UREM:
8165 case ISD::BSWAP: {
8166 // Binary op widening
Mon P Wang0c397192008-10-30 08:01:45 +00008167 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8168 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8169 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008170 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008171 break;
8172 }
8173
8174 case ISD::SHL:
8175 case ISD::SRA:
8176 case ISD::SRL: {
Mon P Wang0c397192008-10-30 08:01:45 +00008177 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8178 assert(Tmp1.getValueType() == WidenVT);
Mon P Wangfb13f002008-12-02 07:35:08 +00008179 SDValue ShOp = Node->getOperand(1);
8180 MVT ShVT = ShOp.getValueType();
8181 MVT NewShVT = MVT::getVectorVT(ShVT.getVectorElementType(),
8182 WidenVT.getVectorNumElements());
8183 ShOp = WidenVectorOp(ShOp, NewShVT);
8184 assert(ShOp.getValueType() == NewShVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008185 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, ShOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008186 break;
8187 }
Mon P Wangfb13f002008-12-02 07:35:08 +00008188
Mon P Wang0c397192008-10-30 08:01:45 +00008189 case ISD::EXTRACT_VECTOR_ELT: {
8190 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8191 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008192 Result = DAG.getNode(Node->getOpcode(), dl, EVT, Tmp1, Node->getOperand(1));
Mon P Wang0c397192008-10-30 08:01:45 +00008193 break;
8194 }
8195 case ISD::CONCAT_VECTORS: {
8196 // We concurrently support only widen on a multiple of the incoming vector.
8197 // We could widen on a multiple of the incoming operand if necessary.
8198 unsigned NumConcat = NewNumElts / NumElts;
8199 assert(NewNumElts % NumElts == 0 && "Can widen only a multiple of vector");
Dale Johannesene8d72302009-02-06 23:05:02 +00008200 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang0c397192008-10-30 08:01:45 +00008201 SmallVector<SDValue, 8> MOps;
8202 MOps.push_back(Op);
8203 for (unsigned i = 1; i != NumConcat; ++i) {
8204 MOps.push_back(UndefVal);
8205 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00008206 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008207 &MOps[0], MOps.size()));
8208 break;
8209 }
8210 case ISD::EXTRACT_SUBVECTOR: {
Mon P Wang49292f12008-11-15 06:05:52 +00008211 SDValue Tmp1 = Node->getOperand(0);
8212 SDValue Idx = Node->getOperand(1);
8213 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
8214 if (CIdx && CIdx->getZExtValue() == 0) {
8215 // Since we are access the start of the vector, the incoming
8216 // vector type might be the proper.
8217 MVT Tmp1VT = Tmp1.getValueType();
8218 if (Tmp1VT == WidenVT)
8219 return Tmp1;
8220 else {
8221 unsigned Tmp1VTNumElts = Tmp1VT.getVectorNumElements();
8222 if (Tmp1VTNumElts < NewNumElts)
8223 Result = WidenVectorOp(Tmp1, WidenVT);
8224 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00008225 Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, WidenVT, Tmp1, Idx);
Mon P Wang49292f12008-11-15 06:05:52 +00008226 }
8227 } else if (NewNumElts % NumElts == 0) {
8228 // Widen the extracted subvector.
8229 unsigned NumConcat = NewNumElts / NumElts;
Dale Johannesene8d72302009-02-06 23:05:02 +00008230 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang49292f12008-11-15 06:05:52 +00008231 SmallVector<SDValue, 8> MOps;
8232 MOps.push_back(Op);
8233 for (unsigned i = 1; i != NumConcat; ++i) {
8234 MOps.push_back(UndefVal);
8235 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00008236 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang49292f12008-11-15 06:05:52 +00008237 &MOps[0], MOps.size()));
8238 } else {
8239 assert(0 && "can not widen extract subvector");
8240 // This could be implemented using insert and build vector but I would
8241 // like to see when this happens.
8242 }
Mon P Wang0c397192008-10-30 08:01:45 +00008243 break;
8244 }
8245
8246 case ISD::SELECT: {
Mon P Wang0c397192008-10-30 08:01:45 +00008247 // Determine new condition widen type and widen
8248 SDValue Cond1 = Node->getOperand(0);
8249 MVT CondVT = Cond1.getValueType();
8250 assert(CondVT.isVector() && "can not widen non vector type");
8251 MVT CondEVT = CondVT.getVectorElementType();
8252 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8253 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8254 assert(Cond1.getValueType() == CondWidenVT && "Condition not widen");
8255
8256 SDValue Tmp1 = WidenVectorOp(Node->getOperand(1), WidenVT);
8257 SDValue Tmp2 = WidenVectorOp(Node->getOperand(2), WidenVT);
8258 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008259 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008260 break;
8261 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008262
Mon P Wang0c397192008-10-30 08:01:45 +00008263 case ISD::SELECT_CC: {
Mon P Wang0c397192008-10-30 08:01:45 +00008264 // Determine new condition widen type and widen
8265 SDValue Cond1 = Node->getOperand(0);
8266 SDValue Cond2 = Node->getOperand(1);
8267 MVT CondVT = Cond1.getValueType();
8268 assert(CondVT.isVector() && "can not widen non vector type");
8269 assert(CondVT == Cond2.getValueType() && "mismatch lhs/rhs");
8270 MVT CondEVT = CondVT.getVectorElementType();
8271 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8272 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8273 Cond2 = WidenVectorOp(Cond2, CondWidenVT);
8274 assert(Cond1.getValueType() == CondWidenVT &&
8275 Cond2.getValueType() == CondWidenVT && "condition not widen");
8276
8277 SDValue Tmp1 = WidenVectorOp(Node->getOperand(2), WidenVT);
8278 SDValue Tmp2 = WidenVectorOp(Node->getOperand(3), WidenVT);
8279 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT &&
8280 "operands not widen");
Dale Johannesenc6be1102009-02-02 22:49:46 +00008281 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Cond2, Tmp1,
Mon P Wang0c397192008-10-30 08:01:45 +00008282 Tmp2, Node->getOperand(4));
Mon P Wang0c397192008-10-30 08:01:45 +00008283 break;
Mon P Wang2eb13c32008-10-30 18:21:52 +00008284 }
8285 case ISD::VSETCC: {
8286 // Determine widen for the operand
8287 SDValue Tmp1 = Node->getOperand(0);
8288 MVT TmpVT = Tmp1.getValueType();
8289 assert(TmpVT.isVector() && "can not widen non vector type");
8290 MVT TmpEVT = TmpVT.getVectorElementType();
8291 MVT TmpWidenVT = MVT::getVectorVT(TmpEVT, NewNumElts);
8292 Tmp1 = WidenVectorOp(Tmp1, TmpWidenVT);
8293 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), TmpWidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008294 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2,
Mon P Wang2eb13c32008-10-30 18:21:52 +00008295 Node->getOperand(2));
Mon P Wang0c397192008-10-30 08:01:45 +00008296 break;
8297 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008298 case ISD::ATOMIC_CMP_SWAP:
8299 case ISD::ATOMIC_LOAD_ADD:
8300 case ISD::ATOMIC_LOAD_SUB:
8301 case ISD::ATOMIC_LOAD_AND:
8302 case ISD::ATOMIC_LOAD_OR:
8303 case ISD::ATOMIC_LOAD_XOR:
8304 case ISD::ATOMIC_LOAD_NAND:
8305 case ISD::ATOMIC_LOAD_MIN:
8306 case ISD::ATOMIC_LOAD_MAX:
8307 case ISD::ATOMIC_LOAD_UMIN:
8308 case ISD::ATOMIC_LOAD_UMAX:
8309 case ISD::ATOMIC_SWAP: {
Mon P Wang0c397192008-10-30 08:01:45 +00008310 // For now, we assume that using vectors for these operations don't make
8311 // much sense so we just split it. We return an empty result
8312 SDValue X, Y;
8313 SplitVectorOp(Op, X, Y);
8314 return Result;
8315 break;
8316 }
8317
8318 } // end switch (Node->getOpcode())
8319
Scott Michelfdc40a02009-02-17 22:15:04 +00008320 assert(Result.getNode() && "Didn't set a result!");
Mon P Wang0c397192008-10-30 08:01:45 +00008321 if (Result != Op)
8322 Result = LegalizeOp(Result);
8323
Mon P Wangf007a8b2008-11-06 05:31:54 +00008324 AddWidenedOperand(Op, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008325 return Result;
8326}
8327
8328// Utility function to find a legal vector type and its associated element
8329// type from a preferred width and whose vector type must be the same size
8330// as the VVT.
8331// TLI: Target lowering used to determine legal types
8332// Width: Preferred width of element type
8333// VVT: Vector value type whose size we must match.
8334// Returns VecEVT and EVT - the vector type and its associated element type
Dan Gohman0d137d72009-01-15 16:43:02 +00008335static void FindWidenVecType(const TargetLowering &TLI, unsigned Width, MVT VVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008336 MVT& EVT, MVT& VecEVT) {
8337 // We start with the preferred width, make it a power of 2 and see if
8338 // we can find a vector type of that width. If not, we reduce it by
8339 // another power of 2. If we have widen the type, a vector of bytes should
8340 // always be legal.
8341 assert(TLI.isTypeLegal(VVT));
8342 unsigned EWidth = Width + 1;
8343 do {
8344 assert(EWidth > 0);
8345 EWidth = (1 << Log2_32(EWidth-1));
8346 EVT = MVT::getIntegerVT(EWidth);
8347 unsigned NumEVT = VVT.getSizeInBits()/EWidth;
8348 VecEVT = MVT::getVectorVT(EVT, NumEVT);
8349 } while (!TLI.isTypeLegal(VecEVT) ||
8350 VVT.getSizeInBits() != VecEVT.getSizeInBits());
8351}
8352
8353SDValue SelectionDAGLegalize::genWidenVectorLoads(SDValueVector& LdChain,
8354 SDValue Chain,
8355 SDValue BasePtr,
8356 const Value *SV,
8357 int SVOffset,
8358 unsigned Alignment,
8359 bool isVolatile,
8360 unsigned LdWidth,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008361 MVT ResType,
8362 DebugLoc dl) {
Mon P Wang0c397192008-10-30 08:01:45 +00008363 // We assume that we have good rules to handle loading power of two loads so
8364 // we break down the operations to power of 2 loads. The strategy is to
8365 // load the largest power of 2 that we can easily transform to a legal vector
8366 // and then insert into that vector, and the cast the result into the legal
8367 // vector that we want. This avoids unnecessary stack converts.
8368 // TODO: If the Ldwidth is legal, alignment is the same as the LdWidth, and
8369 // the load is nonvolatile, we an use a wider load for the value.
8370 // Find a vector length we can load a large chunk
8371 MVT EVT, VecEVT;
8372 unsigned EVTWidth;
8373 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8374 EVTWidth = EVT.getSizeInBits();
8375
Dale Johannesenc6be1102009-02-02 22:49:46 +00008376 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV, SVOffset,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008377 isVolatile, Alignment);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008378 SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecEVT, LdOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008379 LdChain.push_back(LdOp.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00008380
Mon P Wang0c397192008-10-30 08:01:45 +00008381 // Check if we can load the element with one instruction
8382 if (LdWidth == EVTWidth) {
Dale Johannesenc6be1102009-02-02 22:49:46 +00008383 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008384 }
8385
8386 // The vector element order is endianness dependent.
8387 unsigned Idx = 1;
8388 LdWidth -= EVTWidth;
8389 unsigned Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008390
Mon P Wang0c397192008-10-30 08:01:45 +00008391 while (LdWidth > 0) {
8392 unsigned Increment = EVTWidth / 8;
8393 Offset += Increment;
Dale Johannesenc6be1102009-02-02 22:49:46 +00008394 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang0c397192008-10-30 08:01:45 +00008395 DAG.getIntPtrConstant(Increment));
8396
8397 if (LdWidth < EVTWidth) {
8398 // Our current type we are using is too large, use a smaller size by
8399 // using a smaller power of 2
8400 unsigned oEVTWidth = EVTWidth;
8401 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8402 EVTWidth = EVT.getSizeInBits();
8403 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008404 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008405 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008406 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008407
Dale Johannesenc6be1102009-02-02 22:49:46 +00008408 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008409 SVOffset+Offset, isVolatile,
8410 MinAlign(Alignment, Offset));
Mon P Wang0c397192008-10-30 08:01:45 +00008411 LdChain.push_back(LdOp.getValue(1));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008412 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecEVT, VecOp, LdOp,
Mon P Wang0c397192008-10-30 08:01:45 +00008413 DAG.getIntPtrConstant(Idx++));
Scott Michelfdc40a02009-02-17 22:15:04 +00008414
Mon P Wang0c397192008-10-30 08:01:45 +00008415 LdWidth -= EVTWidth;
8416 }
8417
Dale Johannesenc6be1102009-02-02 22:49:46 +00008418 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008419}
8420
8421bool SelectionDAGLegalize::LoadWidenVectorOp(SDValue& Result,
8422 SDValue& TFOp,
8423 SDValue Op,
8424 MVT NVT) {
8425 // TODO: Add support for ConcatVec and the ability to load many vector
8426 // types (e.g., v4i8). This will not work when a vector register
8427 // to memory mapping is strange (e.g., vector elements are not
8428 // stored in some sequential order).
8429
Scott Michelfdc40a02009-02-17 22:15:04 +00008430 // It must be true that the widen vector type is bigger than where
Mon P Wang0c397192008-10-30 08:01:45 +00008431 // we need to load from.
8432 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
8433 MVT LdVT = LD->getMemoryVT();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008434 DebugLoc dl = LD->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008435 assert(LdVT.isVector() && NVT.isVector());
8436 assert(LdVT.getVectorElementType() == NVT.getVectorElementType());
Scott Michelfdc40a02009-02-17 22:15:04 +00008437
Mon P Wang0c397192008-10-30 08:01:45 +00008438 // Load information
8439 SDValue Chain = LD->getChain();
8440 SDValue BasePtr = LD->getBasePtr();
8441 int SVOffset = LD->getSrcValueOffset();
8442 unsigned Alignment = LD->getAlignment();
8443 bool isVolatile = LD->isVolatile();
8444 const Value *SV = LD->getSrcValue();
8445 unsigned int LdWidth = LdVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00008446
Mon P Wang0c397192008-10-30 08:01:45 +00008447 // Load value as a large register
8448 SDValueVector LdChain;
8449 Result = genWidenVectorLoads(LdChain, Chain, BasePtr, SV, SVOffset,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008450 Alignment, isVolatile, LdWidth, NVT, dl);
Mon P Wang0c397192008-10-30 08:01:45 +00008451
8452 if (LdChain.size() == 1) {
8453 TFOp = LdChain[0];
8454 return true;
8455 }
8456 else {
Scott Michelfdc40a02009-02-17 22:15:04 +00008457 TFOp=DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008458 &LdChain[0], LdChain.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008459 return false;
8460 }
8461}
8462
8463
8464void SelectionDAGLegalize::genWidenVectorStores(SDValueVector& StChain,
8465 SDValue Chain,
8466 SDValue BasePtr,
8467 const Value *SV,
8468 int SVOffset,
8469 unsigned Alignment,
8470 bool isVolatile,
Mon P Wang49292f12008-11-15 06:05:52 +00008471 SDValue ValOp,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008472 unsigned StWidth,
8473 DebugLoc dl) {
Mon P Wang0c397192008-10-30 08:01:45 +00008474 // Breaks the stores into a series of power of 2 width stores. For any
8475 // width, we convert the vector to the vector of element size that we
8476 // want to store. This avoids requiring a stack convert.
Scott Michelfdc40a02009-02-17 22:15:04 +00008477
Mon P Wang0c397192008-10-30 08:01:45 +00008478 // Find a width of the element type we can store with
8479 MVT VVT = ValOp.getValueType();
8480 MVT EVT, VecEVT;
8481 unsigned EVTWidth;
8482 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8483 EVTWidth = EVT.getSizeInBits();
8484
Dale Johannesenc6be1102009-02-02 22:49:46 +00008485 SDValue VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, ValOp);
8486 SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wange0b436a2008-11-06 22:52:21 +00008487 DAG.getIntPtrConstant(0));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008488 SDValue StOp = DAG.getStore(Chain, dl, EOp, BasePtr, SV, SVOffset,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008489 isVolatile, Alignment);
Mon P Wang0c397192008-10-30 08:01:45 +00008490 StChain.push_back(StOp);
8491
8492 // Check if we are done
8493 if (StWidth == EVTWidth) {
8494 return;
8495 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008496
Mon P Wang0c397192008-10-30 08:01:45 +00008497 unsigned Idx = 1;
8498 StWidth -= EVTWidth;
8499 unsigned Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008500
Mon P Wang0c397192008-10-30 08:01:45 +00008501 while (StWidth > 0) {
8502 unsigned Increment = EVTWidth / 8;
8503 Offset += Increment;
Dale Johannesenc6be1102009-02-02 22:49:46 +00008504 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang0c397192008-10-30 08:01:45 +00008505 DAG.getIntPtrConstant(Increment));
Scott Michelfdc40a02009-02-17 22:15:04 +00008506
Mon P Wang0c397192008-10-30 08:01:45 +00008507 if (StWidth < EVTWidth) {
8508 // Our current type we are using is too large, use a smaller size by
8509 // using a smaller power of 2
8510 unsigned oEVTWidth = EVTWidth;
8511 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8512 EVTWidth = EVT.getSizeInBits();
8513 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008514 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008515 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008516 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008517
Dale Johannesenc6be1102009-02-02 22:49:46 +00008518 EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang49292f12008-11-15 06:05:52 +00008519 DAG.getIntPtrConstant(Idx++));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008520 StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr, SV,
Mon P Wang0c397192008-10-30 08:01:45 +00008521 SVOffset + Offset, isVolatile,
8522 MinAlign(Alignment, Offset)));
8523 StWidth -= EVTWidth;
8524 }
8525}
8526
8527
8528SDValue SelectionDAGLegalize::StoreWidenVectorOp(StoreSDNode *ST,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008529 SDValue Chain,
8530 SDValue BasePtr) {
Mon P Wang0c397192008-10-30 08:01:45 +00008531 // TODO: It might be cleaner if we can use SplitVector and have more legal
8532 // vector types that can be stored into memory (e.g., v4xi8 can
8533 // be stored as a word). This will not work when a vector register
8534 // to memory mapping is strange (e.g., vector elements are not
8535 // stored in some sequential order).
Scott Michelfdc40a02009-02-17 22:15:04 +00008536
Mon P Wang0c397192008-10-30 08:01:45 +00008537 MVT StVT = ST->getMemoryVT();
8538 SDValue ValOp = ST->getValue();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008539 DebugLoc dl = ST->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008540
8541 // Check if we have widen this node with another value
8542 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(ValOp);
8543 if (I != WidenNodes.end())
8544 ValOp = I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00008545
Mon P Wang0c397192008-10-30 08:01:45 +00008546 MVT VVT = ValOp.getValueType();
8547
8548 // It must be true that we the widen vector type is bigger than where
8549 // we need to store.
8550 assert(StVT.isVector() && VVT.isVector());
Dan Gohmanf83c81a2009-01-28 03:10:52 +00008551 assert(StVT.bitsLT(VVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008552 assert(StVT.getVectorElementType() == VVT.getVectorElementType());
8553
8554 // Store value
8555 SDValueVector StChain;
8556 genWidenVectorStores(StChain, Chain, BasePtr, ST->getSrcValue(),
8557 ST->getSrcValueOffset(), ST->getAlignment(),
Dale Johannesenc6be1102009-02-02 22:49:46 +00008558 ST->isVolatile(), ValOp, StVT.getSizeInBits(), dl);
Mon P Wang0c397192008-10-30 08:01:45 +00008559 if (StChain.size() == 1)
8560 return StChain[0];
Scott Michelfdc40a02009-02-17 22:15:04 +00008561 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00008562 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
8563 &StChain[0], StChain.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008564}
8565
8566
Chris Lattner3e928bb2005-01-07 07:47:09 +00008567// SelectionDAG::Legalize - This is the entry point for the file.
8568//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008569void SelectionDAG::Legalize(bool TypesNeedLegalizing, unsigned OptLevel) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00008570 /// run - This is the main entry point to this class.
8571 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008572 SelectionDAGLegalize(*this, TypesNeedLegalizing, OptLevel).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00008573}
8574