blob: be7a794c867dbbfdb299c2d08dda22e02e4faa02 [file] [log] [blame]
Chris Lattner3e928bb2005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3e928bb2005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner45b8caf2005-01-15 07:15:18 +000016#include "llvm/CodeGen/MachineFrameInfo.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000017#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000018#include "llvm/CodeGen/MachineModuleInfo.h"
Devang Patel83489bb2009-01-13 00:35:13 +000019#include "llvm/CodeGen/DwarfWriter.h"
20#include "llvm/Analysis/DebugInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000021#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Cheng61bbbab2007-08-16 23:50:06 +000022#include "llvm/Target/TargetFrameInfo.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000023#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000024#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000025#include "llvm/Target/TargetMachine.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000026#include "llvm/Target/TargetOptions.h"
Dan Gohman707e0182008-04-12 04:36:06 +000027#include "llvm/Target/TargetSubtarget.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000028#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000029#include "llvm/Constants.h"
Reid Spencerc1030572007-01-19 21:13:56 +000030#include "llvm/DerivedTypes.h"
Bill Wendling86e6cb92009-02-17 01:04:54 +000031#include "llvm/Function.h"
Devang Patel83489bb2009-01-13 00:35:13 +000032#include "llvm/GlobalVariable.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000033#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000034#include "llvm/Support/Compiler.h"
Duncan Sandsdc846502007-10-28 12:59:45 +000035#include "llvm/Support/MathExtras.h"
Chris Lattner79715142007-02-03 01:12:36 +000036#include "llvm/ADT/DenseMap.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000037#include "llvm/ADT/SmallVector.h"
Chris Lattner00755df2007-02-04 00:27:56 +000038#include "llvm/ADT/SmallPtrSet.h"
Evan Cheng033e6812006-03-24 01:17:21 +000039#include <map>
Chris Lattner3e928bb2005-01-07 07:47:09 +000040using namespace llvm;
41
42//===----------------------------------------------------------------------===//
43/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
44/// hacks on it until the target machine can handle it. This involves
45/// eliminating value sizes the machine cannot handle (promoting small sizes to
46/// large sizes or splitting up large values into small values) as well as
47/// eliminating operations the machine cannot handle.
48///
49/// This code also does a small amount of optimization and recognition of idioms
50/// as part of its processing. For example, if a target does not support a
51/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
52/// will attempt merge setcc and brc instructions into brcc's.
53///
54namespace {
Chris Lattner360e8202006-06-28 21:58:30 +000055class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000056 TargetLowering &TLI;
57 SelectionDAG &DAG;
Duncan Sandsb6862bb2008-12-14 09:43:15 +000058 bool TypesNeedLegalizing;
Bill Wendling5aa49772009-02-24 02:35:30 +000059 bool Fast;
Chris Lattner3e928bb2005-01-07 07:47:09 +000060
Chris Lattner6831a812006-02-13 09:18:02 +000061 // Libcall insertion helpers.
Scott Michelfdc40a02009-02-17 22:15:04 +000062
Chris Lattner6831a812006-02-13 09:18:02 +000063 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
64 /// legalized. We use this to ensure that calls are properly serialized
65 /// against each other, including inserted libcalls.
Dan Gohman475871a2008-07-27 21:46:04 +000066 SDValue LastCALLSEQ_END;
Scott Michelfdc40a02009-02-17 22:15:04 +000067
Chris Lattner6831a812006-02-13 09:18:02 +000068 /// IsLegalizingCall - This member is used *only* for purposes of providing
Scott Michelfdc40a02009-02-17 22:15:04 +000069 /// helpful assertions that a libcall isn't created while another call is
Chris Lattner6831a812006-02-13 09:18:02 +000070 /// being legalized (which could lead to non-serialized call sequences).
71 bool IsLegalizingCall;
Scott Michelfdc40a02009-02-17 22:15:04 +000072
Mon P Wange5ab34e2009-02-04 19:38:14 +000073 /// IsLegalizingCallArguments - This member is used only for the purpose
74 /// of providing assert to check for LegalizeTypes because legalizing an
75 /// operation might introduce call nodes that might need type legalization.
76 bool IsLegalizingCallArgs;
77
Chris Lattner3e928bb2005-01-07 07:47:09 +000078 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000079 Legal, // The target natively supports this operation.
80 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000081 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000082 };
Scott Michelfdc40a02009-02-17 22:15:04 +000083
Chris Lattner3e928bb2005-01-07 07:47:09 +000084 /// ValueTypeActions - This is a bitvector that contains two bits for each
85 /// value type, where the two bits correspond to the LegalizeAction enum.
86 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000087 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000088
Chris Lattner3e928bb2005-01-07 07:47:09 +000089 /// LegalizedNodes - For nodes that are of legal width, and that have more
90 /// than one use, this map indicates what regularized operand to use. This
91 /// allows us to avoid legalizing the same thing more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000092 DenseMap<SDValue, SDValue> LegalizedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000093
Chris Lattner03c85462005-01-15 05:21:40 +000094 /// PromotedNodes - For nodes that are below legal width, and that have more
95 /// than one use, this map indicates what promoted value to use. This allows
96 /// us to avoid promoting the same thing more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000097 DenseMap<SDValue, SDValue> PromotedNodes;
Chris Lattner03c85462005-01-15 05:21:40 +000098
Chris Lattnerc7029802006-03-18 01:44:44 +000099 /// ExpandedNodes - For nodes that need to be expanded this map indicates
Mon P Wang0c397192008-10-30 08:01:45 +0000100 /// which operands are the expanded version of the input. This allows
Chris Lattnerc7029802006-03-18 01:44:44 +0000101 /// us to avoid expanding the same node more than once.
Dan Gohman475871a2008-07-27 21:46:04 +0000102 DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000103
Chris Lattnerc7029802006-03-18 01:44:44 +0000104 /// SplitNodes - For vector nodes that need to be split, this map indicates
Mon P Wang0c397192008-10-30 08:01:45 +0000105 /// which operands are the split version of the input. This allows us
Chris Lattnerc7029802006-03-18 01:44:44 +0000106 /// to avoid splitting the same node more than once.
Dan Gohman475871a2008-07-27 21:46:04 +0000107 std::map<SDValue, std::pair<SDValue, SDValue> > SplitNodes;
Scott Michelfdc40a02009-02-17 22:15:04 +0000108
Dan Gohman7f321562007-06-25 16:23:39 +0000109 /// ScalarizedNodes - For nodes that need to be converted from vector types to
110 /// scalar types, this contains the mapping of ones we have already
Chris Lattnerc7029802006-03-18 01:44:44 +0000111 /// processed to the result.
Dan Gohman475871a2008-07-27 21:46:04 +0000112 std::map<SDValue, SDValue> ScalarizedNodes;
Scott Michelfdc40a02009-02-17 22:15:04 +0000113
Mon P Wangf007a8b2008-11-06 05:31:54 +0000114 /// WidenNodes - For nodes that need to be widened from one vector type to
115 /// another, this contains the mapping of those that we have already widen.
116 /// This allows us to avoid widening more than once.
Mon P Wang0c397192008-10-30 08:01:45 +0000117 std::map<SDValue, SDValue> WidenNodes;
118
Dan Gohman475871a2008-07-27 21:46:04 +0000119 void AddLegalizedOperand(SDValue From, SDValue To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000120 LegalizedNodes.insert(std::make_pair(From, To));
121 // If someone requests legalization of the new node, return itself.
122 if (From != To)
123 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000124 }
Dan Gohman475871a2008-07-27 21:46:04 +0000125 void AddPromotedOperand(SDValue From, SDValue To) {
Dan Gohman6b345ee2008-07-07 17:46:23 +0000126 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
Chris Lattner03c85462005-01-15 05:21:40 +0000127 assert(isNew && "Got into the map somehow?");
Evan Cheng24ac4082008-11-24 07:09:49 +0000128 isNew = isNew;
Chris Lattner69a889e2005-12-20 00:53:54 +0000129 // If someone requests legalization of the new node, return itself.
130 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000131 }
Mon P Wangf007a8b2008-11-06 05:31:54 +0000132 void AddWidenedOperand(SDValue From, SDValue To) {
Mon P Wang0c397192008-10-30 08:01:45 +0000133 bool isNew = WidenNodes.insert(std::make_pair(From, To)).second;
134 assert(isNew && "Got into the map somehow?");
Evan Cheng24ac4082008-11-24 07:09:49 +0000135 isNew = isNew;
Mon P Wang0c397192008-10-30 08:01:45 +0000136 // If someone requests legalization of the new node, return itself.
137 LegalizedNodes.insert(std::make_pair(To, To));
138 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000139
Chris Lattner3e928bb2005-01-07 07:47:09 +0000140public:
Bill Wendling5aa49772009-02-24 02:35:30 +0000141 explicit SelectionDAGLegalize(SelectionDAG &DAG, bool TypesNeedLegalizing,
142 bool fast);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000143
Chris Lattner3e928bb2005-01-07 07:47:09 +0000144 /// getTypeAction - Return how we should legalize values of this type, either
145 /// it is already legal or we need to expand it into multiple registers of
146 /// smaller integer type, or we need to promote it to a larger type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000147 LegalizeAction getTypeAction(MVT VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000148 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000149 }
150
151 /// isTypeLegal - Return true if this type is legal on this target.
152 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000153 bool isTypeLegal(MVT VT) const {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000154 return getTypeAction(VT) == Legal;
155 }
156
Chris Lattner3e928bb2005-01-07 07:47:09 +0000157 void LegalizeDAG();
158
Chris Lattner456a93a2006-01-28 07:39:30 +0000159private:
Dan Gohman7f321562007-06-25 16:23:39 +0000160 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000161 /// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000162 void HandleOp(SDValue Op);
Scott Michelfdc40a02009-02-17 22:15:04 +0000163
Chris Lattnerc7029802006-03-18 01:44:44 +0000164 /// LegalizeOp - We know that the specified value has a legal type.
165 /// Recursively ensure that the operands have legal types, then return the
166 /// result.
Dan Gohman475871a2008-07-27 21:46:04 +0000167 SDValue LegalizeOp(SDValue O);
Scott Michelfdc40a02009-02-17 22:15:04 +0000168
Dan Gohman82669522007-10-11 23:57:53 +0000169 /// UnrollVectorOp - We know that the given vector has a legal type, however
170 /// the operation it performs is not legal and is an operation that we have
171 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
172 /// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000173 SDValue UnrollVectorOp(SDValue O);
Scott Michelfdc40a02009-02-17 22:15:04 +0000174
Nate Begeman68679912008-04-25 18:07:40 +0000175 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
176 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
177 /// is necessary to spill the vector being inserted into to memory, perform
178 /// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000179 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Dale Johannesenbb5da912009-02-02 20:41:04 +0000180 SDValue Idx, DebugLoc dl);
Dan Gohman82669522007-10-11 23:57:53 +0000181
Chris Lattnerc7029802006-03-18 01:44:44 +0000182 /// PromoteOp - Given an operation that produces a value in an invalid type,
183 /// promote it to compute the value into a larger type. The produced value
184 /// will have the correct bits for the low portion of the register, but no
185 /// guarantee is made about the top bits: it may be zero, sign-extended, or
186 /// garbage.
Dan Gohman475871a2008-07-27 21:46:04 +0000187 SDValue PromoteOp(SDValue O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000188
Dan Gohman475871a2008-07-27 21:46:04 +0000189 /// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattnerc7029802006-03-18 01:44:44 +0000190 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
Dan Gohman929d3eb2008-10-01 15:07:49 +0000191 /// the LegalizedNodes map is filled in for any results that are not expanded,
Chris Lattnerc7029802006-03-18 01:44:44 +0000192 /// the ExpandedNodes map is filled in for any results that are expanded, and
193 /// the Lo/Hi values are returned. This applies to integer types and Vector
194 /// types.
Dan Gohman475871a2008-07-27 21:46:04 +0000195 void ExpandOp(SDValue O, SDValue &Lo, SDValue &Hi);
Chris Lattnerc7029802006-03-18 01:44:44 +0000196
Scott Michelfdc40a02009-02-17 22:15:04 +0000197 /// WidenVectorOp - Widen a vector operation to a wider type given by WidenVT
Mon P Wangf007a8b2008-11-06 05:31:54 +0000198 /// (e.g., v3i32 to v4i32). The produced value will have the correct value
199 /// for the existing elements but no guarantee is made about the new elements
200 /// at the end of the vector: it may be zero, ones, or garbage. This is useful
201 /// when we have an instruction operating on an illegal vector type and we
202 /// want to widen it to do the computation on a legal wider vector type.
Mon P Wang0c397192008-10-30 08:01:45 +0000203 SDValue WidenVectorOp(SDValue Op, MVT WidenVT);
204
Dan Gohman7f321562007-06-25 16:23:39 +0000205 /// SplitVectorOp - Given an operand of vector type, break it down into
206 /// two smaller values.
Dan Gohman475871a2008-07-27 21:46:04 +0000207 void SplitVectorOp(SDValue O, SDValue &Lo, SDValue &Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +0000208
Dan Gohman89b20c02007-06-27 14:06:22 +0000209 /// ScalarizeVectorOp - Given an operand of single-element vector type
210 /// (e.g. v1f32), convert it into the equivalent operation that returns a
211 /// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +0000212 SDValue ScalarizeVectorOp(SDValue O);
Scott Michelfdc40a02009-02-17 22:15:04 +0000213
Mon P Wangf007a8b2008-11-06 05:31:54 +0000214 /// Useful 16 element vector type that is used to pass operands for widening.
Scott Michelfdc40a02009-02-17 22:15:04 +0000215 typedef SmallVector<SDValue, 16> SDValueVector;
216
Mon P Wang0c397192008-10-30 08:01:45 +0000217 /// LoadWidenVectorOp - Load a vector for a wider type. Returns true if
218 /// the LdChain contains a single load and false if it contains a token
219 /// factor for multiple loads. It takes
220 /// Result: location to return the result
221 /// LdChain: location to return the load chain
222 /// Op: load operation to widen
223 /// NVT: widen vector result type we want for the load
Scott Michelfdc40a02009-02-17 22:15:04 +0000224 bool LoadWidenVectorOp(SDValue& Result, SDValue& LdChain,
Mon P Wang0c397192008-10-30 08:01:45 +0000225 SDValue Op, MVT NVT);
Scott Michelfdc40a02009-02-17 22:15:04 +0000226
Mon P Wang0c397192008-10-30 08:01:45 +0000227 /// Helper genWidenVectorLoads - Helper function to generate a set of
228 /// loads to load a vector with a resulting wider type. It takes
229 /// LdChain: list of chains for the load we have generated
230 /// Chain: incoming chain for the ld vector
231 /// BasePtr: base pointer to load from
232 /// SV: memory disambiguation source value
233 /// SVOffset: memory disambiugation offset
234 /// Alignment: alignment of the memory
235 /// isVolatile: volatile load
Scott Michelfdc40a02009-02-17 22:15:04 +0000236 /// LdWidth: width of memory that we want to load
Mon P Wang0c397192008-10-30 08:01:45 +0000237 /// ResType: the wider result result type for the resulting loaded vector
238 SDValue genWidenVectorLoads(SDValueVector& LdChain, SDValue Chain,
239 SDValue BasePtr, const Value *SV,
240 int SVOffset, unsigned Alignment,
241 bool isVolatile, unsigned LdWidth,
Dale Johannesenc6be1102009-02-02 22:49:46 +0000242 MVT ResType, DebugLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +0000243
Mon P Wang0c397192008-10-30 08:01:45 +0000244 /// StoreWidenVectorOp - Stores a widen vector into non widen memory
245 /// location. It takes
246 /// ST: store node that we want to replace
247 /// Chain: incoming store chain
248 /// BasePtr: base address of where we want to store into
Scott Michelfdc40a02009-02-17 22:15:04 +0000249 SDValue StoreWidenVectorOp(StoreSDNode *ST, SDValue Chain,
Mon P Wang0c397192008-10-30 08:01:45 +0000250 SDValue BasePtr);
Scott Michelfdc40a02009-02-17 22:15:04 +0000251
Mon P Wang0c397192008-10-30 08:01:45 +0000252 /// Helper genWidenVectorStores - Helper function to generate a set of
253 /// stores to store a widen vector into non widen memory
254 // It takes
255 // StChain: list of chains for the stores we have generated
256 // Chain: incoming chain for the ld vector
257 // BasePtr: base pointer to load from
258 // SV: memory disambiguation source value
259 // SVOffset: memory disambiugation offset
260 // Alignment: alignment of the memory
261 // isVolatile: volatile lod
Scott Michelfdc40a02009-02-17 22:15:04 +0000262 // ValOp: value to store
263 // StWidth: width of memory that we want to store
Mon P Wang0c397192008-10-30 08:01:45 +0000264 void genWidenVectorStores(SDValueVector& StChain, SDValue Chain,
265 SDValue BasePtr, const Value *SV,
266 int SVOffset, unsigned Alignment,
267 bool isVolatile, SDValue ValOp,
Dale Johannesenc6be1102009-02-02 22:49:46 +0000268 unsigned StWidth, DebugLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +0000269
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,
348 bool types, bool fast)
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000349 : TLI(dag.getTargetLoweringInfo()), DAG(dag), TypesNeedLegalizing(types),
Bill Wendling5aa49772009-02-24 02:35:30 +0000350 Fast(fast), 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.
492 // FIXME: We can removed the BUILD_VECTOR case when we fix PR2957.
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000493 assert((TypesNeedLegalizing || getTypeAction(VT) == Legal ||
Mon P Wange5ab34e2009-02-04 19:38:14 +0000494 IsLegalizingCallArgs || Op.getOpcode() == ISD::TargetConstant ||
Mon P Wang87c8a8f2008-12-18 20:03:17 +0000495 Op.getOpcode() == ISD::BUILD_VECTOR) &&
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000496 "Illegal type introduced after type legalization?");
Dan Gohman7f321562007-06-25 16:23:39 +0000497 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000498 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000499 case Legal: (void)LegalizeOp(Op); break;
Mon P Wang0c397192008-10-30 08:01:45 +0000500 case Promote:
501 if (!VT.isVector()) {
502 (void)PromoteOp(Op);
503 break;
504 }
505 else {
506 // See if we can widen otherwise use Expand to either scalarize or split
507 MVT WidenVT = TLI.getWidenVectorType(VT);
508 if (WidenVT != MVT::Other) {
509 (void) WidenVectorOp(Op, WidenVT);
510 break;
511 }
512 // else fall thru to expand since we can't widen the vector
513 }
Chris Lattnerc7029802006-03-18 01:44:44 +0000514 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000515 if (!VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +0000516 // If this is an illegal scalar, expand it into its two component
517 // pieces.
Dan Gohman475871a2008-07-27 21:46:04 +0000518 SDValue X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000519 if (Op.getOpcode() == ISD::TargetConstant)
520 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000521 ExpandOp(Op, X, Y);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000522 } else if (VT.getVectorNumElements() == 1) {
Dan Gohman7f321562007-06-25 16:23:39 +0000523 // If this is an illegal single element vector, convert it to a
524 // scalar operation.
525 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000526 } else {
Mon P Wang0c397192008-10-30 08:01:45 +0000527 // This is an illegal multiple element vector.
Dan Gohman7f321562007-06-25 16:23:39 +0000528 // Split it in half and legalize both parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000529 SDValue X, Y;
Dan Gohman7f321562007-06-25 16:23:39 +0000530 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000531 }
532 break;
533 }
534}
Chris Lattner6831a812006-02-13 09:18:02 +0000535
Evan Cheng9f877882006-12-13 20:57:08 +0000536/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
537/// a load from the constant pool.
Dan Gohman475871a2008-07-27 21:46:04 +0000538static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Dan Gohman0d137d72009-01-15 16:43:02 +0000539 SelectionDAG &DAG, const TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000540 bool Extend = false;
Dale Johannesen33c960f2009-02-04 20:06:27 +0000541 DebugLoc dl = CFP->getDebugLoc();
Evan Cheng00495212006-12-12 21:32:44 +0000542
543 // If a FP immediate is precise when represented as a float and if the
544 // target can do an extending load from float to double, we put it into
545 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000546 // double. This shrinks FP constants and canonicalizes them for targets where
547 // an FP extending load is the same cost as a normal load (such as on the x87
548 // fp stack or PPC FP unit).
Duncan Sands83ec4b62008-06-06 12:08:01 +0000549 MVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000550 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000551 if (!UseCP) {
Chris Lattnerd2e936a2009-03-08 01:47:41 +0000552 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000553 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000554 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000555 }
556
Duncan Sands83ec4b62008-06-06 12:08:01 +0000557 MVT OrigVT = VT;
558 MVT SVT = VT;
Evan Chengef120572008-03-04 08:05:30 +0000559 while (SVT != MVT::f32) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000560 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Chengef120572008-03-04 08:05:30 +0000561 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
562 // Only do this if the target has a native EXTLOAD instruction from
563 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000564 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000565 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000566 const Type *SType = SVT.getTypeForMVT();
Evan Chengef120572008-03-04 08:05:30 +0000567 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
568 VT = SVT;
569 Extend = true;
570 }
Evan Cheng00495212006-12-12 21:32:44 +0000571 }
572
Dan Gohman475871a2008-07-27 21:46:04 +0000573 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +0000574 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Chengef120572008-03-04 08:05:30 +0000575 if (Extend)
Dale Johannesen33c960f2009-02-04 20:06:27 +0000576 return DAG.getExtLoad(ISD::EXTLOAD, dl,
Dale Johannesen39355f92009-02-04 02:34:38 +0000577 OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000578 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman50284d82008-09-16 22:05:41 +0000579 0, VT, false, Alignment);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000580 return DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +0000581 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +0000582}
583
Chris Lattner6831a812006-02-13 09:18:02 +0000584
Evan Cheng912095b2007-01-04 21:56:39 +0000585/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
586/// operations.
587static
Dan Gohman475871a2008-07-27 21:46:04 +0000588SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
Dan Gohman0d137d72009-01-15 16:43:02 +0000589 SelectionDAG &DAG,
590 const TargetLowering &TLI) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000591 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000592 MVT VT = Node->getValueType(0);
593 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000594 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
595 "fcopysign expansion only supported for f32 and f64");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000596 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000597
Evan Cheng912095b2007-01-04 21:56:39 +0000598 // First get the sign bit of second operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000599 SDValue Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000600 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
601 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000602 Mask1 = DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT, Mask1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000603 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT,
Dale Johannesenbb5da912009-02-02 20:41:04 +0000604 Node->getOperand(1));
605 SignBit = DAG.getNode(ISD::AND, dl, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000606 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000607 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng912095b2007-01-04 21:56:39 +0000608 if (SizeDiff > 0) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000609 SignBit = DAG.getNode(ISD::SRL, dl, SrcNVT, SignBit,
Evan Cheng912095b2007-01-04 21:56:39 +0000610 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000611 SignBit = DAG.getNode(ISD::TRUNCATE, dl, NVT, SignBit);
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000612 } else if (SizeDiff < 0) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000613 SignBit = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, SignBit);
614 SignBit = DAG.getNode(ISD::SHL, dl, NVT, SignBit,
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000615 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
616 }
Evan Cheng068c5f42007-01-05 21:31:51 +0000617
618 // Clear the sign bit of first operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000619 SDValue Mask2 = (VT == MVT::f64)
Evan Cheng068c5f42007-01-05 21:31:51 +0000620 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
621 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000622 Mask2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask2);
623 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
624 Result = DAG.getNode(ISD::AND, dl, NVT, Result, Mask2);
Evan Cheng068c5f42007-01-05 21:31:51 +0000625
626 // Or the value with the sign bit.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000627 Result = DAG.getNode(ISD::OR, dl, NVT, Result, SignBit);
Evan Cheng912095b2007-01-04 21:56:39 +0000628 return Result;
629}
630
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000631/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
632static
Dan Gohman475871a2008-07-27 21:46:04 +0000633SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
Dan Gohman0d137d72009-01-15 16:43:02 +0000634 const TargetLowering &TLI) {
Dan Gohman475871a2008-07-27 21:46:04 +0000635 SDValue Chain = ST->getChain();
636 SDValue Ptr = ST->getBasePtr();
637 SDValue Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000638 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000639 int Alignment = ST->getAlignment();
640 int SVOffset = ST->getSrcValueOffset();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000641 DebugLoc dl = ST->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000642 if (ST->getMemoryVT().isFloatingPoint() ||
643 ST->getMemoryVT().isVector()) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000644 MVT intVT = MVT::getIntegerVT(VT.getSizeInBits());
645 if (TLI.isTypeLegal(intVT)) {
646 // Expand to a bitconvert of the value to the integer type of the
647 // same size, then a (misaligned) int store.
648 // FIXME: Does not handle truncating floating point stores!
Dale Johannesenbb5da912009-02-02 20:41:04 +0000649 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, intVT, Val);
650 return DAG.getStore(Chain, dl, Result, Ptr, ST->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000651 SVOffset, ST->isVolatile(), Alignment);
652 } else {
653 // Do a (aligned) store to a stack slot, then copy from the stack slot
654 // to the final destination using (unaligned) integer loads and stores.
655 MVT StoredVT = ST->getMemoryVT();
656 MVT RegVT =
657 TLI.getRegisterType(MVT::getIntegerVT(StoredVT.getSizeInBits()));
658 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
659 unsigned RegBytes = RegVT.getSizeInBits() / 8;
660 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000661
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000662 // Make sure the stack slot is also aligned for the register type.
663 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
664
665 // Perform the original store, only redirected to the stack slot.
Scott Michelfdc40a02009-02-17 22:15:04 +0000666 SDValue Store = DAG.getTruncStore(Chain, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +0000667 Val, StackPtr, NULL, 0, StoredVT);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000668 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
669 SmallVector<SDValue, 8> Stores;
670 unsigned Offset = 0;
671
672 // Do all but one copies using the full register width.
673 for (unsigned i = 1; i < NumRegs; i++) {
674 // Load one integer register's worth from the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000675 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr, NULL, 0);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000676 // Store it to the final location. Remember the store.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000677 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000678 ST->getSrcValue(), SVOffset + Offset,
679 ST->isVolatile(),
680 MinAlign(ST->getAlignment(), Offset)));
681 // Increment the pointers.
682 Offset += RegBytes;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000683 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000684 Increment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000685 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000686 }
687
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000688 // The last store may be partial. Do a truncating store. On big-endian
689 // machines this requires an extending load from the stack slot to ensure
690 // that the bits are in the right place.
691 MVT MemVT = MVT::getIntegerVT(8 * (StoredBytes - Offset));
Duncan Sands05e11fa2008-12-12 21:47:02 +0000692
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000693 // Load from the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000694 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000695 NULL, 0, MemVT);
696
Dale Johannesenbb5da912009-02-02 20:41:04 +0000697 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000698 ST->getSrcValue(), SVOffset + Offset,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000699 MemVT, ST->isVolatile(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000700 MinAlign(ST->getAlignment(), Offset)));
701 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000702 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sands05e11fa2008-12-12 21:47:02 +0000703 Stores.size());
704 }
Dale Johannesen907f28c2007-09-08 19:29:23 +0000705 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000706 assert(ST->getMemoryVT().isInteger() &&
707 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000708 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000709 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000710 MVT NewStoredVT =
711 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
712 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000713 int IncrementSize = NumBits / 8;
714
715 // Divide the stored value in two parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000716 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
717 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000718 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000719
720 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000721 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000722 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000723 ST->getSrcValue(), SVOffset, NewStoredVT,
724 ST->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000725 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000726 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000727 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000728 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000729 ST->getSrcValue(), SVOffset + IncrementSize,
730 NewStoredVT, ST->isVolatile(), Alignment);
731
Dale Johannesenbb5da912009-02-02 20:41:04 +0000732 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000733}
734
735/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
736static
Dan Gohman475871a2008-07-27 21:46:04 +0000737SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
Dan Gohmane9530ec2009-01-15 16:58:17 +0000738 const TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000739 int SVOffset = LD->getSrcValueOffset();
Dan Gohman475871a2008-07-27 21:46:04 +0000740 SDValue Chain = LD->getChain();
741 SDValue Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000742 MVT VT = LD->getValueType(0);
743 MVT LoadedVT = LD->getMemoryVT();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000744 DebugLoc dl = LD->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000745 if (VT.isFloatingPoint() || VT.isVector()) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000746 MVT intVT = MVT::getIntegerVT(LoadedVT.getSizeInBits());
747 if (TLI.isTypeLegal(intVT)) {
748 // Expand to a (misaligned) integer load of the same size,
749 // then bitconvert to floating point or vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000750 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000751 SVOffset, LD->isVolatile(),
Dale Johannesen907f28c2007-09-08 19:29:23 +0000752 LD->getAlignment());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000753 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, LoadedVT, newLoad);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000754 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesenbb5da912009-02-02 20:41:04 +0000755 Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000756
Duncan Sands05e11fa2008-12-12 21:47:02 +0000757 SDValue Ops[] = { Result, Chain };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000758 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000759 } else {
760 // Copy the value to a (aligned) stack slot using (unaligned) integer
761 // loads and stores, then do a (aligned) load from the stack slot.
762 MVT RegVT = TLI.getRegisterType(intVT);
763 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
764 unsigned RegBytes = RegVT.getSizeInBits() / 8;
765 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
766
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000767 // Make sure the stack slot is also aligned for the register type.
768 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
769
Duncan Sands05e11fa2008-12-12 21:47:02 +0000770 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
771 SmallVector<SDValue, 8> Stores;
772 SDValue StackPtr = StackBase;
773 unsigned Offset = 0;
774
775 // Do all but one copies using the full register width.
776 for (unsigned i = 1; i < NumRegs; i++) {
777 // Load one integer register's worth from the original location.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000778 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000779 SVOffset + Offset, LD->isVolatile(),
780 MinAlign(LD->getAlignment(), Offset));
781 // Follow the load with a store to the stack slot. Remember the store.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000782 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000783 NULL, 0));
784 // Increment the pointers.
785 Offset += RegBytes;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000786 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
787 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000788 Increment);
789 }
790
791 // The last copy may be partial. Do an extending load.
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000792 MVT MemVT = MVT::getIntegerVT(8 * (LoadedBytes - Offset));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000793 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000794 LD->getSrcValue(), SVOffset + Offset,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000795 MemVT, LD->isVolatile(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000796 MinAlign(LD->getAlignment(), Offset));
797 // Follow the load with a store to the stack slot. Remember the store.
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000798 // On big-endian machines this requires a truncating store to ensure
799 // that the bits end up in the right place.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000800 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000801 NULL, 0, MemVT));
Duncan Sands05e11fa2008-12-12 21:47:02 +0000802
803 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000804 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sands05e11fa2008-12-12 21:47:02 +0000805 Stores.size());
806
807 // Finally, perform the original load only redirected to the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000808 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000809 NULL, 0, LoadedVT);
810
811 // Callers expect a MERGE_VALUES node.
812 SDValue Ops[] = { Load, TF };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000813 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000814 }
Dale Johannesen907f28c2007-09-08 19:29:23 +0000815 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000816 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000817 "Unaligned load of unsupported type.");
818
Dale Johannesen8155d642008-02-27 22:36:00 +0000819 // Compute the new VT that is half the size of the old one. This is an
820 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000821 unsigned NumBits = LoadedVT.getSizeInBits();
822 MVT NewLoadedVT;
823 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000824 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000825
Chris Lattnere400af82007-11-19 21:38:03 +0000826 unsigned Alignment = LD->getAlignment();
827 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000828 ISD::LoadExtType HiExtType = LD->getExtensionType();
829
830 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
831 if (HiExtType == ISD::NON_EXTLOAD)
832 HiExtType = ISD::ZEXTLOAD;
833
834 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000835 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000836 if (TLI.isLittleEndian()) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000837 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000838 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000839 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000840 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000841 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000842 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000843 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000844 } else {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000845 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +0000846 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000847 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000848 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000849 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000850 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000851 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000852 }
853
854 // aggregate the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000855 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000856 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
857 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000858
Dale Johannesenbb5da912009-02-02 20:41:04 +0000859 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000860 Hi.getValue(1));
861
Dan Gohman475871a2008-07-27 21:46:04 +0000862 SDValue Ops[] = { Result, TF };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000863 return DAG.getMergeValues(Ops, 2, dl);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000864}
Evan Cheng912095b2007-01-04 21:56:39 +0000865
Dan Gohman82669522007-10-11 23:57:53 +0000866/// UnrollVectorOp - We know that the given vector has a legal type, however
867/// the operation it performs is not legal and is an operation that we have
868/// no way of lowering. "Unroll" the vector, splitting out the scalars and
869/// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000870SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000871 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000872 assert(isTypeLegal(VT) &&
873 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000874 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman82669522007-10-11 23:57:53 +0000875 "Can't unroll a vector with multiple results!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000876 unsigned NE = VT.getVectorNumElements();
877 MVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000878 DebugLoc dl = Op.getDebugLoc();
Dan Gohman82669522007-10-11 23:57:53 +0000879
Dan Gohman475871a2008-07-27 21:46:04 +0000880 SmallVector<SDValue, 8> Scalars;
881 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman82669522007-10-11 23:57:53 +0000882 for (unsigned i = 0; i != NE; ++i) {
883 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +0000884 SDValue Operand = Op.getOperand(j);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000885 MVT OperandVT = Operand.getValueType();
886 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000887 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000888 MVT OperandEltVT = OperandVT.getVectorElementType();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000889 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dan Gohman82669522007-10-11 23:57:53 +0000890 OperandEltVT,
891 Operand,
892 DAG.getConstant(i, MVT::i32));
893 } else {
894 // A scalar operand; just use it as is.
895 Operands[j] = Operand;
896 }
897 }
Mon P Wange9f10152008-12-09 05:46:39 +0000898
899 switch (Op.getOpcode()) {
900 default:
Dale Johannesenbb5da912009-02-02 20:41:04 +0000901 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT,
Mon P Wange9f10152008-12-09 05:46:39 +0000902 &Operands[0], Operands.size()));
903 break;
904 case ISD::SHL:
905 case ISD::SRA:
906 case ISD::SRL:
Duncan Sands92abc622009-01-31 15:50:11 +0000907 case ISD::ROTL:
908 case ISD::ROTR:
Dale Johannesenbb5da912009-02-02 20:41:04 +0000909 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT, Operands[0],
Duncan Sands92abc622009-01-31 15:50:11 +0000910 DAG.getShiftAmountOperand(Operands[1])));
Mon P Wange9f10152008-12-09 05:46:39 +0000911 break;
912 }
Dan Gohman82669522007-10-11 23:57:53 +0000913 }
914
Evan Chenga87008d2009-02-25 22:49:59 +0000915 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Scalars[0], Scalars.size());
Dan Gohman82669522007-10-11 23:57:53 +0000916}
917
Duncan Sands007f9842008-01-10 10:28:30 +0000918/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000919static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000920 RTLIB::Libcall Call_F32,
921 RTLIB::Libcall Call_F64,
922 RTLIB::Libcall Call_F80,
923 RTLIB::Libcall Call_PPCF128) {
924 return
925 VT == MVT::f32 ? Call_F32 :
926 VT == MVT::f64 ? Call_F64 :
927 VT == MVT::f80 ? Call_F80 :
928 VT == MVT::ppcf128 ? Call_PPCF128 :
929 RTLIB::UNKNOWN_LIBCALL;
930}
931
Nate Begeman68679912008-04-25 18:07:40 +0000932/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
933/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
934/// is necessary to spill the vector being inserted into to memory, perform
935/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000936SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000937PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
938 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000939 SDValue Tmp1 = Vec;
940 SDValue Tmp2 = Val;
941 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000942
Nate Begeman68679912008-04-25 18:07:40 +0000943 // If the target doesn't support this, we have to spill the input vector
944 // to a temporary stack slot, update the element, then reload it. This is
945 // badness. We could also load the value into a vector register (either
946 // with a "move to register" or "extload into register" instruction, then
947 // permute it into place, if the idx is a constant and if the idx is
948 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000949 MVT VT = Tmp1.getValueType();
950 MVT EltVT = VT.getVectorElementType();
951 MVT IdxVT = Tmp3.getValueType();
952 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000953 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000954
Gabor Greifba36cb52008-08-28 21:40:38 +0000955 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman68679912008-04-25 18:07:40 +0000956
957 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000958 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Mon P Wang0c397192008-10-30 08:01:45 +0000959 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000960
961 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000962 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000963 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000964 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000965 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000966 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
967 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000968 // Store the scalar value.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000969 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2,
Dan Gohmana54cf172008-07-11 22:44:52 +0000970 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman68679912008-04-25 18:07:40 +0000971 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000972 return DAG.getLoad(VT, dl, Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +0000973 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000974}
975
Mon P Wange9f10152008-12-09 05:46:39 +0000976
Dan Gohmana3466152007-07-13 20:14:11 +0000977/// LegalizeOp - We know that the specified value has a legal type, and
978/// that its operands are legal. Now ensure that the operation itself
979/// is legal, recursively ensuring that the operands' operations remain
980/// legal.
Dan Gohman475871a2008-07-27 21:46:04 +0000981SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000982 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
983 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +0000984
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000985 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000986 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000987 SDNode *Node = Op.getNode();
Dale Johannesen7d2ad622009-01-30 23:10:59 +0000988 DebugLoc dl = Node->getDebugLoc();
Chris Lattnere3304a32005-01-08 20:35:13 +0000989
Chris Lattner3e928bb2005-01-07 07:47:09 +0000990 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000991 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000992 if (Node->getNumValues() > 1) {
993 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000994 if (getTypeAction(Node->getValueType(i)) != Legal) {
995 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000996 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000997 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000998 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000999 }
1000 }
1001
Chris Lattner45982da2005-05-12 16:53:42 +00001002 // Note that LegalizeOp may be reentered even from single-use nodes, which
1003 // means that we always must cache transformed nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00001004 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +00001005 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001006
Dan Gohman475871a2008-07-27 21:46:04 +00001007 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
1008 SDValue Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +00001009 bool isCustom = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001010
Chris Lattner3e928bb2005-01-07 07:47:09 +00001011 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +00001012 case ISD::FrameIndex:
1013 case ISD::EntryToken:
1014 case ISD::Register:
1015 case ISD::BasicBlock:
1016 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +00001017 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +00001018 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +00001019 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +00001020 case ISD::TargetConstantPool:
1021 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001022 case ISD::TargetGlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +00001023 case ISD::TargetExternalSymbol:
Chris Lattner948c1b12006-01-28 08:31:04 +00001024 case ISD::VALUETYPE:
1025 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +00001026 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +00001027 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +00001028 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +00001029 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00001030 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +00001031 "This must be legal!");
1032 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001033 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001034 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
1035 // If this is a target node, legalize it by legalizing the operands then
1036 // passing it through.
Dan Gohman475871a2008-07-27 21:46:04 +00001037 SmallVector<SDValue, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001038 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001039 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001040
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001041 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001042
1043 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1044 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001045 return Result.getValue(Op.getResNo());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001046 }
1047 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001048#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00001049 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001050#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00001051 assert(0 && "Do not know how to legalize this operator!");
1052 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +00001053 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +00001054 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001055 case ISD::GlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +00001056 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +00001057 case ISD::ConstantPool:
1058 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001059 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1060 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +00001061 case TargetLowering::Custom:
1062 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001063 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner948c1b12006-01-28 08:31:04 +00001064 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001065 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001066 break;
1067 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001068 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +00001069 case ISD::FRAMEADDR:
1070 case ISD::RETURNADDR:
1071 // The only option for these nodes is to custom lower them. If the target
1072 // does not custom lower them, then return zero.
1073 Tmp1 = TLI.LowerOperation(Op, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00001074 if (Tmp1.getNode())
Nate Begemanbcc5f362007-01-29 22:58:52 +00001075 Result = Tmp1;
1076 else
1077 Result = DAG.getConstant(0, TLI.getPointerTy());
1078 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +00001079 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001080 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001081 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1082 default: assert(0 && "This action is not supported yet!");
1083 case TargetLowering::Custom:
1084 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001085 if (Result.getNode()) break;
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001086 // Fall Thru
1087 case TargetLowering::Legal:
1088 Result = DAG.getConstant(0, VT);
1089 break;
1090 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +00001091 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001092 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +00001093 case ISD::EXCEPTIONADDR: {
1094 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001095 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001096 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1097 default: assert(0 && "This action is not supported yet!");
1098 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +00001099 unsigned Reg = TLI.getExceptionAddressRegister();
Dale Johannesenc460ae92009-02-04 00:13:36 +00001100 Result = DAG.getCopyFromReg(Tmp1, dl, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001101 }
1102 break;
1103 case TargetLowering::Custom:
1104 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001105 if (Result.getNode()) break;
Jim Laskey2bc210d2007-02-22 15:37:19 +00001106 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001107 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001108 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Dale Johannesenca57b842009-02-02 23:46:53 +00001109 Result = DAG.getMergeValues(Ops, 2, dl);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001110 break;
1111 }
1112 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001113 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001114 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +00001115
Gabor Greifba36cb52008-08-28 21:40:38 +00001116 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +00001117 "Cannot return more than two values!");
1118
1119 // Since we produced two values, make sure to remember that we
1120 // legalized both of them.
1121 Tmp1 = LegalizeOp(Result);
1122 Tmp2 = LegalizeOp(Result.getValue(1));
1123 AddLegalizedOperand(Op.getValue(0), Tmp1);
1124 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001125 return Op.getResNo() ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +00001126 case ISD::EHSELECTION: {
1127 Tmp1 = LegalizeOp(Node->getOperand(0));
1128 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001129 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +00001130 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1131 default: assert(0 && "This action is not supported yet!");
1132 case TargetLowering::Expand: {
1133 unsigned Reg = TLI.getExceptionSelectorRegister();
Dale Johannesenc460ae92009-02-04 00:13:36 +00001134 Result = DAG.getCopyFromReg(Tmp2, dl, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +00001135 }
1136 break;
1137 case TargetLowering::Custom:
1138 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001139 if (Result.getNode()) break;
Jim Laskey8782d482007-02-28 20:43:58 +00001140 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001141 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001142 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Dale Johannesenca57b842009-02-02 23:46:53 +00001143 Result = DAG.getMergeValues(Ops, 2, dl);
Jim Laskey8782d482007-02-28 20:43:58 +00001144 break;
1145 }
1146 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001147 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001148 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +00001149
Gabor Greifba36cb52008-08-28 21:40:38 +00001150 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +00001151 "Cannot return more than two values!");
1152
1153 // Since we produced two values, make sure to remember that we
1154 // legalized both of them.
1155 Tmp1 = LegalizeOp(Result);
1156 Tmp2 = LegalizeOp(Result.getValue(1));
1157 AddLegalizedOperand(Op.getValue(0), Tmp1);
1158 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001159 return Op.getResNo() ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001160 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001161 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001162 // The only "good" option for this node is to custom lower it.
1163 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1164 default: assert(0 && "This action is not supported at all!");
1165 case TargetLowering::Custom:
1166 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001167 if (Result.getNode()) break;
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001168 // Fall Thru
1169 case TargetLowering::Legal:
1170 // Target does not know, how to lower this, lower to noop
1171 Result = LegalizeOp(Node->getOperand(0));
1172 break;
1173 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001174 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001175 break;
Chris Lattner08951a32005-09-02 01:15:01 +00001176 case ISD::AssertSext:
1177 case ISD::AssertZext:
1178 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001179 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +00001180 break;
Chris Lattner308575b2005-11-20 22:56:56 +00001181 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001182 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif99a6cb92008-08-26 22:36:50 +00001183 Result = Node->getOperand(Op.getResNo());
Chris Lattner456a93a2006-01-28 07:39:30 +00001184 break;
Chris Lattner69a52152005-01-14 22:38:01 +00001185 case ISD::CopyFromReg:
1186 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001187 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001188 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001189 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +00001190 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001191 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001192 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001193 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001194 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1195 } else {
1196 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1197 }
Chris Lattner7310fb12005-12-18 15:27:43 +00001198 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1199 }
Chris Lattner13c184d2005-01-28 06:27:38 +00001200 // Since CopyFromReg produces two values, make sure to remember that we
1201 // legalized both of them.
1202 AddLegalizedOperand(Op.getValue(0), Result);
1203 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001204 return Result.getValue(Op.getResNo());
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001205 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001206 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001207 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +00001208 default: assert(0 && "This action is not supported yet!");
1209 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001210 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001211 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001212 else if (VT.isFloatingPoint())
1213 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +00001214 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001215 else
1216 assert(0 && "Unknown value type!");
1217 break;
Nate Begemanea19cd52005-04-02 00:41:14 +00001218 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001219 break;
1220 }
1221 break;
1222 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001223
Chris Lattner48b61a72006-03-28 00:40:33 +00001224 case ISD::INTRINSIC_W_CHAIN:
1225 case ISD::INTRINSIC_WO_CHAIN:
1226 case ISD::INTRINSIC_VOID: {
Dan Gohman475871a2008-07-27 21:46:04 +00001227 SmallVector<SDValue, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001228 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1229 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001230 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001231
Chris Lattner10d7fa62006-03-26 09:12:51 +00001232 // Allow the target to custom lower its intrinsics if it wants to.
Scott Michelfdc40a02009-02-17 22:15:04 +00001233 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001234 TargetLowering::Custom) {
1235 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001236 if (Tmp3.getNode()) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001237 }
1238
Gabor Greifba36cb52008-08-28 21:40:38 +00001239 if (Result.getNode()->getNumValues() == 1) break;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001240
1241 // Must have return value and chain result.
Gabor Greifba36cb52008-08-28 21:40:38 +00001242 assert(Result.getNode()->getNumValues() == 2 &&
Chris Lattner13fc2f12006-03-27 20:28:29 +00001243 "Cannot return more than two values!");
1244
Scott Michelfdc40a02009-02-17 22:15:04 +00001245 // Since loads produce two values, make sure to remember that we
Chris Lattner13fc2f12006-03-27 20:28:29 +00001246 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001247 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1248 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001249 return Result.getValue(Op.getResNo());
Scott Michelfdc40a02009-02-17 22:15:04 +00001250 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001251
Dan Gohman7f460202008-06-30 20:59:49 +00001252 case ISD::DBG_STOPPOINT:
1253 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner36ce6912005-11-29 06:21:05 +00001254 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00001255
Dan Gohman7f460202008-06-30 20:59:49 +00001256 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner36ce6912005-11-29 06:21:05 +00001257 case TargetLowering::Promote:
1258 default: assert(0 && "This action is not supported yet!");
Bill Wendling92c1e122009-02-13 02:16:35 +00001259 case TargetLowering::Expand: {
1260 DwarfWriter *DW = DAG.getDwarfWriter();
1261 bool useDEBUG_LOC = TLI.isOperationLegalOrCustom(ISD::DEBUG_LOC,
1262 MVT::Other);
1263 bool useLABEL = TLI.isOperationLegalOrCustom(ISD::DBG_LABEL, MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00001264
Bill Wendling92c1e122009-02-13 02:16:35 +00001265 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
1266 GlobalVariable *CU_GV = cast<GlobalVariable>(DSP->getCompileUnit());
1267 if (DW && (useDEBUG_LOC || useLABEL) && !CU_GV->isDeclaration()) {
1268 DICompileUnit CU(cast<GlobalVariable>(DSP->getCompileUnit()));
Bill Wendling0582ae92009-03-13 04:39:26 +00001269 std::string Dir, FN;
1270 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir),
1271 CU.getFilename(FN));
Scott Michelfdc40a02009-02-17 22:15:04 +00001272
Bill Wendling92c1e122009-02-13 02:16:35 +00001273 unsigned Line = DSP->getLine();
1274 unsigned Col = DSP->getColumn();
Bill Wendling86e6cb92009-02-17 01:04:54 +00001275
Bill Wendling5aa49772009-02-24 02:35:30 +00001276 if (Fast) {
Bill Wendling86e6cb92009-02-17 01:04:54 +00001277 // A bit self-referential to have DebugLoc on Debug_Loc nodes, but it
1278 // won't hurt anything.
1279 if (useDEBUG_LOC) {
1280 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Bill Wendling92c1e122009-02-13 02:16:35 +00001281 DAG.getConstant(Col, MVT::i32),
1282 DAG.getConstant(SrcFile, MVT::i32) };
Bill Wendling86e6cb92009-02-17 01:04:54 +00001283 Result = DAG.getNode(ISD::DEBUG_LOC, dl, MVT::Other, Ops, 4);
1284 } else {
1285 unsigned ID = DW->RecordSourceLine(Line, Col, SrcFile);
1286 Result = DAG.getLabel(ISD::DBG_LABEL, dl, Tmp1, ID);
1287 }
Bill Wendling92c1e122009-02-13 02:16:35 +00001288 } else {
Bill Wendling86e6cb92009-02-17 01:04:54 +00001289 Result = Tmp1; // chain
Bill Wendling92c1e122009-02-13 02:16:35 +00001290 }
1291 } else {
1292 Result = Tmp1; // chain
1293 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001294 break;
Bill Wendling92c1e122009-02-13 02:16:35 +00001295 }
Sanjiv Gupta5274a4a2009-04-02 18:03:10 +00001296 case TargetLowering::Custom:
1297 Result = TLI.LowerOperation(Op, DAG);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001298 if (Result.getNode())
Sanjiv Gupta5274a4a2009-04-02 18:03:10 +00001299 break;
Evan Cheng71e86852008-07-08 20:06:39 +00001300 case TargetLowering::Legal: {
1301 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1302 if (Action == Legal && Tmp1 == Node->getOperand(0))
1303 break;
1304
Dan Gohman475871a2008-07-27 21:46:04 +00001305 SmallVector<SDValue, 8> Ops;
Evan Cheng71e86852008-07-08 20:06:39 +00001306 Ops.push_back(Tmp1);
1307 if (Action == Legal) {
1308 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1309 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1310 } else {
1311 // Otherwise promote them.
1312 Ops.push_back(PromoteOp(Node->getOperand(1)));
1313 Ops.push_back(PromoteOp(Node->getOperand(2)));
Chris Lattner36ce6912005-11-29 06:21:05 +00001314 }
Evan Cheng71e86852008-07-08 20:06:39 +00001315 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1316 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1317 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001318 break;
1319 }
Evan Cheng71e86852008-07-08 20:06:39 +00001320 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001321 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001322
1323 case ISD::DECLARE:
1324 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1325 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1326 default: assert(0 && "This action is not supported yet!");
1327 case TargetLowering::Legal:
1328 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1329 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1330 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1331 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1332 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001333 case TargetLowering::Expand:
1334 Result = LegalizeOp(Node->getOperand(0));
1335 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001336 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001337 break;
1338
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001339 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001340 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001341 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001342 default: assert(0 && "This action is not supported yet!");
Evan Cheng71e86852008-07-08 20:06:39 +00001343 case TargetLowering::Legal: {
1344 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001345 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng71e86852008-07-08 20:06:39 +00001346 if (Action == Legal && Tmp1 == Node->getOperand(0))
1347 break;
1348 if (Action == Legal) {
1349 Tmp2 = Node->getOperand(1);
1350 Tmp3 = Node->getOperand(2);
1351 Tmp4 = Node->getOperand(3);
1352 } else {
1353 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1354 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1355 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1356 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001357 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001358 break;
1359 }
Evan Cheng71e86852008-07-08 20:06:39 +00001360 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001361 break;
Jim Laskeyabf6d172006-01-05 01:25:28 +00001362
Dan Gohman44066042008-07-01 00:05:16 +00001363 case ISD::DBG_LABEL:
1364 case ISD::EH_LABEL:
1365 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1366 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001367 default: assert(0 && "This action is not supported yet!");
1368 case TargetLowering::Legal:
1369 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001370 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001371 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001372 case TargetLowering::Expand:
1373 Result = LegalizeOp(Node->getOperand(0));
1374 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001375 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001376 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001377
Evan Cheng27b7db52008-03-08 00:58:38 +00001378 case ISD::PREFETCH:
1379 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1380 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1381 default: assert(0 && "This action is not supported yet!");
1382 case TargetLowering::Legal:
1383 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1384 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1385 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1386 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1387 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1388 break;
1389 case TargetLowering::Expand:
1390 // It's a noop.
1391 Result = LegalizeOp(Node->getOperand(0));
1392 break;
1393 }
1394 break;
1395
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001396 case ISD::MEMBARRIER: {
1397 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001398 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1399 default: assert(0 && "This action is not supported yet!");
1400 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001401 SDValue Ops[6];
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001402 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001403 for (int x = 1; x < 6; ++x) {
1404 Ops[x] = Node->getOperand(x);
1405 if (!isTypeLegal(Ops[x].getValueType()))
1406 Ops[x] = PromoteOp(Ops[x]);
1407 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001408 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1409 break;
1410 }
1411 case TargetLowering::Expand:
1412 //There is no libgcc call for this op
1413 Result = Node->getOperand(0); // Noop
1414 break;
1415 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001416 break;
1417 }
1418
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001419 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001420 unsigned int num_operands = 4;
1421 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001422 SDValue Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001423 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001424 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001425 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Scott Michelfdc40a02009-02-17 22:15:04 +00001426
Mon P Wang63307c32008-05-05 19:05:59 +00001427 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1428 default: assert(0 && "This action is not supported yet!");
1429 case TargetLowering::Custom:
1430 Result = TLI.LowerOperation(Result, DAG);
1431 break;
1432 case TargetLowering::Legal:
1433 break;
1434 }
Dan Gohman475871a2008-07-27 21:46:04 +00001435 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1436 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001437 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001438 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001439 case ISD::ATOMIC_LOAD_ADD:
1440 case ISD::ATOMIC_LOAD_SUB:
1441 case ISD::ATOMIC_LOAD_AND:
1442 case ISD::ATOMIC_LOAD_OR:
1443 case ISD::ATOMIC_LOAD_XOR:
1444 case ISD::ATOMIC_LOAD_NAND:
1445 case ISD::ATOMIC_LOAD_MIN:
1446 case ISD::ATOMIC_LOAD_MAX:
1447 case ISD::ATOMIC_LOAD_UMIN:
1448 case ISD::ATOMIC_LOAD_UMAX:
1449 case ISD::ATOMIC_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001450 unsigned int num_operands = 3;
1451 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001452 SDValue Ops[3];
Mon P Wang63307c32008-05-05 19:05:59 +00001453 for (unsigned int x = 0; x < num_operands; ++x)
1454 Ops[x] = LegalizeOp(Node->getOperand(x));
1455 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001456
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001457 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001458 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001459 case TargetLowering::Custom:
1460 Result = TLI.LowerOperation(Result, DAG);
1461 break;
1462 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001463 break;
1464 }
Dan Gohman475871a2008-07-27 21:46:04 +00001465 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1466 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001467 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001468 }
Scott Michelc1513d22007-08-08 23:23:31 +00001469 case ISD::Constant: {
1470 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1471 unsigned opAction =
1472 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1473
Chris Lattner3e928bb2005-01-07 07:47:09 +00001474 // We know we don't need to expand constants here, constants only have one
1475 // value and we check that it is fine above.
1476
Scott Michelc1513d22007-08-08 23:23:31 +00001477 if (opAction == TargetLowering::Custom) {
1478 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001479 if (Tmp1.getNode())
Scott Michelc1513d22007-08-08 23:23:31 +00001480 Result = Tmp1;
1481 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001482 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001483 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001484 case ISD::ConstantFP: {
1485 // Spill FP immediates to the constant pool if the target cannot directly
1486 // codegen them. Targets often have some immediate values that can be
1487 // efficiently generated into an FP register without a load. We explicitly
1488 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001489 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1490
Chris Lattner3181a772006-01-29 06:26:56 +00001491 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1492 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001493 case TargetLowering::Legal:
1494 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001495 case TargetLowering::Custom:
1496 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001497 if (Tmp3.getNode()) {
Chris Lattner3181a772006-01-29 06:26:56 +00001498 Result = Tmp3;
1499 break;
1500 }
1501 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001502 case TargetLowering::Expand: {
1503 // Check to see if this FP immediate is already legal.
1504 bool isLegal = false;
1505 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1506 E = TLI.legal_fpimm_end(); I != E; ++I) {
1507 if (CFP->isExactlyValue(*I)) {
1508 isLegal = true;
1509 break;
1510 }
1511 }
1512 // If this is a legal constant, turn it into a TargetConstantFP node.
1513 if (isLegal)
1514 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001515 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001516 }
Nate Begemane1795842008-02-14 08:57:00 +00001517 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001518 break;
1519 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001520 case ISD::TokenFactor:
1521 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001522 Tmp1 = LegalizeOp(Node->getOperand(0));
1523 Tmp2 = LegalizeOp(Node->getOperand(1));
1524 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1525 } else if (Node->getNumOperands() == 3) {
1526 Tmp1 = LegalizeOp(Node->getOperand(0));
1527 Tmp2 = LegalizeOp(Node->getOperand(1));
1528 Tmp3 = LegalizeOp(Node->getOperand(2));
1529 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001530 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001531 SmallVector<SDValue, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001532 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001533 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1534 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001535 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001536 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001537 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001538
Chris Lattnerfdfded52006-04-12 16:20:43 +00001539 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001540 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001541 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001542 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001543 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001544 // A call within a calling sequence must be legalized to something
1545 // other than the normal CALLSEQ_END. Violating this gets Legalize
1546 // into an infinite loop.
1547 assert ((!IsLegalizingCall ||
1548 Node->getOpcode() != ISD::CALL ||
Gabor Greifba36cb52008-08-28 21:40:38 +00001549 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesen0ea03562008-03-05 19:14:03 +00001550 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001551
1552 // The number of incoming and outgoing values should match; unless the final
1553 // outgoing value is a flag.
Gabor Greifba36cb52008-08-28 21:40:38 +00001554 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1555 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1556 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001557 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001558 "Lowering call/formal_arguments produced unexpected # results!");
Scott Michelfdc40a02009-02-17 22:15:04 +00001559
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001560 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001561 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greifba36cb52008-08-28 21:40:38 +00001562 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1563 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001564 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001565 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001566 if (Op.getResNo() == i)
Chris Lattnere2e41732006-05-16 05:49:56 +00001567 Tmp2 = Tmp1;
Dan Gohman475871a2008-07-27 21:46:04 +00001568 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Chris Lattnere2e41732006-05-16 05:49:56 +00001569 }
1570 return Tmp2;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001571 case ISD::BUILD_VECTOR:
1572 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001573 default: assert(0 && "This action is not supported yet!");
1574 case TargetLowering::Custom:
1575 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001576 if (Tmp3.getNode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001577 Result = Tmp3;
1578 break;
1579 }
1580 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001581 case TargetLowering::Expand:
Gabor Greifba36cb52008-08-28 21:40:38 +00001582 Result = ExpandBUILD_VECTOR(Result.getNode());
Chris Lattnerb2827b02006-03-19 00:52:58 +00001583 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001584 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001585 break;
1586 case ISD::INSERT_VECTOR_ELT:
1587 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001588 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001589
1590 // The type of the value to insert may not be legal, even though the vector
1591 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1592 // here.
1593 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1594 default: assert(0 && "Cannot expand insert element operand");
1595 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1596 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Mon P Wang0c397192008-10-30 08:01:45 +00001597 case Expand:
1598 // FIXME: An alternative would be to check to see if the target is not
Scott Michelfdc40a02009-02-17 22:15:04 +00001599 // going to custom lower this operation, we could bitcast to half elt
Mon P Wang0c397192008-10-30 08:01:45 +00001600 // width and perform two inserts at that width, if that is legal.
1601 Tmp2 = Node->getOperand(1);
1602 break;
Nate Begeman0325d902008-02-13 06:43:04 +00001603 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001604 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00001605
Chris Lattner2332b9f2006-03-19 01:17:20 +00001606 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1607 Node->getValueType(0))) {
1608 default: assert(0 && "This action is not supported yet!");
1609 case TargetLowering::Legal:
1610 break;
1611 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001612 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001613 if (Tmp4.getNode()) {
Nate Begeman2281a992008-01-05 20:47:37 +00001614 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001615 break;
1616 }
1617 // FALLTHROUGH
Mon P Wang0c397192008-10-30 08:01:45 +00001618 case TargetLowering::Promote:
1619 // Fall thru for vector case
Chris Lattner2332b9f2006-03-19 01:17:20 +00001620 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001621 // If the insert index is a constant, codegen this as a scalar_to_vector,
1622 // then a shuffle that inserts it into the right position in the vector.
1623 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001624 // SCALAR_TO_VECTOR requires that the type of the value being inserted
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00001625 // match the element type of the vector being created, except for
1626 // integers in which case the inserted value can be over width.
1627 MVT EltVT = Op.getValueType().getVectorElementType();
1628 if (Tmp2.getValueType() == EltVT ||
1629 (EltVT.isInteger() && Tmp2.getValueType().bitsGE(EltVT))) {
Dale Johannesenca57b842009-02-02 23:46:53 +00001630 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001631 Tmp1.getValueType(), Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00001632
Duncan Sands83ec4b62008-06-06 12:08:01 +00001633 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
Nate Begeman0325d902008-02-13 06:43:04 +00001634 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1635 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1636 // elt 0 of the RHS.
Nate Begeman9008ca62009-04-27 18:41:29 +00001637 SmallVector<int, 8> ShufOps;
1638 for (unsigned i = 0; i != NumElts; ++i)
1639 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
1640
1641 Result = DAG.getVectorShuffle(Tmp1.getValueType(), dl, Tmp1, ScVec,
1642 &ShufOps[0]);
Nate Begeman0325d902008-02-13 06:43:04 +00001643 Result = LegalizeOp(Result);
1644 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001645 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001646 }
Dale Johannesenbb5da912009-02-02 20:41:04 +00001647 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3, dl);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001648 break;
1649 }
1650 }
1651 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001652 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001653 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1654 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1655 break;
1656 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001657
Chris Lattnerce872152006-03-19 06:31:19 +00001658 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1659 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1660 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1661 Node->getValueType(0))) {
1662 default: assert(0 && "This action is not supported yet!");
1663 case TargetLowering::Legal:
1664 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001665 case TargetLowering::Custom:
1666 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001667 if (Tmp3.getNode()) {
Chris Lattner4d3abee2006-03-19 06:47:21 +00001668 Result = Tmp3;
1669 break;
1670 }
1671 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001672 case TargetLowering::Expand:
1673 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001674 break;
1675 }
Chris Lattnerce872152006-03-19 06:31:19 +00001676 break;
Nate Begeman9008ca62009-04-27 18:41:29 +00001677 case ISD::VECTOR_SHUFFLE: {
Chris Lattner87100e02006-03-20 01:52:29 +00001678 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1679 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00001680 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1681 MVT VT = Result.getValueType();
1682
1683 // Copy the Mask to a local SmallVector for use wi
1684 SmallVector<int, 8> Mask;
1685 cast<ShuffleVectorSDNode>(Result)->getMask(Mask);
Chris Lattner87100e02006-03-20 01:52:29 +00001686
1687 // Allow targets to custom lower the SHUFFLEs they support.
Nate Begeman9008ca62009-04-27 18:41:29 +00001688 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
Chris Lattner4352cc92006-04-04 17:23:26 +00001689 default: assert(0 && "Unknown operation action!");
1690 case TargetLowering::Legal:
Nate Begeman9008ca62009-04-27 18:41:29 +00001691 assert(TLI.isShuffleMaskLegal(Mask, VT) &&
Chris Lattner4352cc92006-04-04 17:23:26 +00001692 "vector shuffle should not be created if not legal!");
1693 break;
1694 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001695 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001696 if (Tmp3.getNode()) {
Evan Cheng18dd6d02006-04-05 06:07:11 +00001697 Result = Tmp3;
1698 break;
1699 }
1700 // FALLTHROUGH
1701 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001702 MVT EltVT = VT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00001703 int NumElems = VT.getVectorNumElements();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001704 SmallVector<SDValue, 8> Ops;
Nate Begeman9008ca62009-04-27 18:41:29 +00001705 for (int i = 0; i != NumElems; ++i) {
1706 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00001707 Ops.push_back(DAG.getUNDEF(EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00001708 continue;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001709 }
Nate Begeman9008ca62009-04-27 18:41:29 +00001710 int Idx = Mask[i];
1711 if (Idx < NumElems)
1712 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp1,
1713 DAG.getIntPtrConstant(Idx)));
1714 else
1715 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp2,
1716 DAG.getIntPtrConstant(Idx - NumElems)));
Evan Cheng18dd6d02006-04-05 06:07:11 +00001717 }
Evan Chenga87008d2009-02-25 22:49:59 +00001718 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001719 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001720 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001721 case TargetLowering::Promote: {
1722 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001723 MVT OVT = Node->getValueType(0);
1724 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001725
1726 // Cast the two input vectors.
Dale Johannesenca57b842009-02-02 23:46:53 +00001727 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
1728 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00001729
Chris Lattner4352cc92006-04-04 17:23:26 +00001730 // Convert the shuffle mask to the right # elements.
Nate Begeman9008ca62009-04-27 18:41:29 +00001731 Result = promoteShuffle(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Dale Johannesenca57b842009-02-02 23:46:53 +00001732 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Chris Lattner4352cc92006-04-04 17:23:26 +00001733 break;
1734 }
Chris Lattner87100e02006-03-20 01:52:29 +00001735 }
1736 break;
Nate Begeman9008ca62009-04-27 18:41:29 +00001737 }
Chris Lattner384504c2006-03-21 20:44:12 +00001738 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001739 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001740 Tmp2 = LegalizeOp(Node->getOperand(1));
1741 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001742 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001743 break;
1744
Scott Michelfdc40a02009-02-17 22:15:04 +00001745 case ISD::EXTRACT_SUBVECTOR:
Dan Gohman7f321562007-06-25 16:23:39 +00001746 Tmp1 = Node->getOperand(0);
1747 Tmp2 = LegalizeOp(Node->getOperand(1));
1748 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1749 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001750 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001751
Mon P Wang0c397192008-10-30 08:01:45 +00001752 case ISD::CONCAT_VECTORS: {
1753 // Use extract/insert/build vector for now. We might try to be
1754 // more clever later.
1755 MVT PtrVT = TLI.getPointerTy();
1756 SmallVector<SDValue, 8> Ops;
1757 unsigned NumOperands = Node->getNumOperands();
1758 for (unsigned i=0; i < NumOperands; ++i) {
1759 SDValue SubOp = Node->getOperand(i);
1760 MVT VVT = SubOp.getNode()->getValueType(0);
1761 MVT EltVT = VVT.getVectorElementType();
1762 unsigned NumSubElem = VVT.getVectorNumElements();
1763 for (unsigned j=0; j < NumSubElem; ++j) {
Dale Johannesenca57b842009-02-02 23:46:53 +00001764 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, SubOp,
Mon P Wang0c397192008-10-30 08:01:45 +00001765 DAG.getConstant(j, PtrVT)));
1766 }
1767 }
Evan Chenga87008d2009-02-25 22:49:59 +00001768 return LegalizeOp(DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
1769 &Ops[0], Ops.size()));
Mon P Wang0c397192008-10-30 08:01:45 +00001770 }
1771
Chris Lattner6831a812006-02-13 09:18:02 +00001772 case ISD::CALLSEQ_START: {
1773 SDNode *CallEnd = FindCallEndFromCallStart(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00001774
Chris Lattner6831a812006-02-13 09:18:02 +00001775 // Recursively Legalize all of the inputs of the call end that do not lead
1776 // to this call start. This ensures that any libcalls that need be inserted
1777 // are inserted *before* the CALLSEQ_START.
Mon P Wange5ab34e2009-02-04 19:38:14 +00001778 IsLegalizingCallArgs = true;
Chris Lattner00755df2007-02-04 00:27:56 +00001779 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001780 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00001781 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001782 NodesLeadingTo);
1783 }
Mon P Wange5ab34e2009-02-04 19:38:14 +00001784 IsLegalizingCallArgs = false;
Chris Lattner6831a812006-02-13 09:18:02 +00001785
1786 // Now that we legalized all of the inputs (which may have inserted
1787 // libcalls) create the new CALLSEQ_START node.
1788 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1789
1790 // Merge in the last call, to ensure that this call start after the last
1791 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001792 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001793 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00001794 Tmp1, LastCALLSEQ_END);
Chris Lattnerb248e162006-05-17 17:55:45 +00001795 Tmp1 = LegalizeOp(Tmp1);
1796 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001797
Chris Lattner6831a812006-02-13 09:18:02 +00001798 // Do not try to legalize the target-specific arguments (#1+).
1799 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001800 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001801 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001802 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001803 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001804
Chris Lattner6831a812006-02-13 09:18:02 +00001805 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001806 AddLegalizedOperand(Op.getValue(0), Result);
1807 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1808 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001809
Chris Lattner6831a812006-02-13 09:18:02 +00001810 // Now that the callseq_start and all of the non-call nodes above this call
Scott Michelfdc40a02009-02-17 22:15:04 +00001811 // sequence have been legalized, legalize the call itself. During this
Chris Lattner6831a812006-02-13 09:18:02 +00001812 // process, no libcalls can/will be inserted, guaranteeing that no calls
1813 // can overlap.
1814 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001815 // Note that we are selecting this call!
Dan Gohman475871a2008-07-27 21:46:04 +00001816 LastCALLSEQ_END = SDValue(CallEnd, 0);
Chris Lattner6831a812006-02-13 09:18:02 +00001817 IsLegalizingCall = true;
Scott Michelfdc40a02009-02-17 22:15:04 +00001818
Chris Lattner6831a812006-02-13 09:18:02 +00001819 // Legalize the call, starting from the CALLSEQ_END.
1820 LegalizeOp(LastCALLSEQ_END);
1821 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1822 return Result;
1823 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001824 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001825 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1826 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greifba36cb52008-08-28 21:40:38 +00001827 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman475871a2008-07-27 21:46:04 +00001828 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1829 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001830 assert(I != LegalizedNodes.end() &&
1831 "Legalizing the call start should have legalized this node!");
1832 return I->second;
1833 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001834
1835 // Otherwise, the call start has been legalized and everything is going
Chris Lattner6831a812006-02-13 09:18:02 +00001836 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001837 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001838 // Do not try to legalize the target-specific arguments (#1+), except for
1839 // an optional flag input.
1840 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1841 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001842 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001843 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001844 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001845 }
1846 } else {
1847 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1848 if (Tmp1 != Node->getOperand(0) ||
1849 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001850 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001851 Ops[0] = Tmp1;
1852 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001853 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001854 }
Chris Lattner6a542892006-01-24 05:48:21 +00001855 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001856 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001857 // This finishes up call legalization.
1858 IsLegalizingCall = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001859
Chris Lattner4b653a02006-02-14 00:55:02 +00001860 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman475871a2008-07-27 21:46:04 +00001861 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Chris Lattner4b653a02006-02-14 00:55:02 +00001862 if (Node->getNumValues() == 2)
Dan Gohman475871a2008-07-27 21:46:04 +00001863 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001864 return Result.getValue(Op.getResNo());
Evan Chenga7dce3c2006-01-11 22:14:47 +00001865 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001866 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001867 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1868 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1869 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001870 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001871
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001872 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001873 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001874 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001875 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001876 case TargetLowering::Expand: {
1877 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1878 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1879 " not tell us which reg is the stack pointer!");
Dan Gohman475871a2008-07-27 21:46:04 +00001880 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001881
1882 // Chain the dynamic stack allocation so that it doesn't modify the stack
1883 // pointer when other instructions are using the stack.
Chris Lattnere563bbc2008-10-11 22:08:30 +00001884 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001885
Dan Gohman475871a2008-07-27 21:46:04 +00001886 SDValue Size = Tmp2.getOperand(1);
Dale Johannesenc460ae92009-02-04 00:13:36 +00001887 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001888 Chain = SP.getValue(1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001889 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Cheng61bbbab2007-08-16 23:50:06 +00001890 unsigned StackAlign =
1891 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1892 if (Align > StackAlign)
Dale Johannesenca57b842009-02-02 23:46:53 +00001893 SP = DAG.getNode(ISD::AND, dl, VT, SP,
Evan Cheng3e20bba2007-08-17 18:02:22 +00001894 DAG.getConstant(-(uint64_t)Align, VT));
Dale Johannesenca57b842009-02-02 23:46:53 +00001895 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Dale Johannesenc460ae92009-02-04 00:13:36 +00001896 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001897
Dale Johannesenca57b842009-02-02 23:46:53 +00001898 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Chris Lattnere563bbc2008-10-11 22:08:30 +00001899 DAG.getIntPtrConstant(0, true), SDValue());
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001900
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001901 Tmp1 = LegalizeOp(Tmp1);
1902 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001903 break;
1904 }
1905 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001906 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001907 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001908 Tmp1 = LegalizeOp(Tmp3);
1909 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001910 }
Chris Lattner903d2782006-01-15 08:54:32 +00001911 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001912 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001913 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001914 }
Chris Lattner903d2782006-01-15 08:54:32 +00001915 // Since this op produce two values, make sure to remember that we
1916 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001917 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1918 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001919 return Op.getResNo() ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001920 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001921 case ISD::INLINEASM: {
Dan Gohman475871a2008-07-27 21:46:04 +00001922 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001923 bool Changed = false;
1924 // Legalize all of the operands of the inline asm, in case they are nodes
1925 // that need to be expanded or something. Note we skip the asm string and
1926 // all of the TargetConstant flags.
Dan Gohman475871a2008-07-27 21:46:04 +00001927 SDValue Op = LegalizeOp(Ops[0]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001928 Changed = Op != Ops[0];
1929 Ops[0] = Op;
1930
1931 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1932 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Evan Cheng697cbbf2009-03-20 18:03:34 +00001933 unsigned NumVals = InlineAsm::
1934 getNumOperandRegisters(cast<ConstantSDNode>(Ops[i])->getZExtValue());
Chris Lattner25a022c2006-07-11 01:40:09 +00001935 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman475871a2008-07-27 21:46:04 +00001936 SDValue Op = LegalizeOp(Ops[i]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001937 if (Op != Ops[i]) {
1938 Changed = true;
1939 Ops[i] = Op;
1940 }
1941 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001942 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001943
1944 if (HasInFlag) {
1945 Op = LegalizeOp(Ops.back());
1946 Changed |= Op != Ops.back();
1947 Ops.back() = Op;
1948 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001949
Chris Lattner25a022c2006-07-11 01:40:09 +00001950 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001951 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001952
Chris Lattnerce7518c2006-01-26 22:24:51 +00001953 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman475871a2008-07-27 21:46:04 +00001954 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1955 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001956 return Result.getValue(Op.getResNo());
Chris Lattner25a022c2006-07-11 01:40:09 +00001957 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001958 case ISD::BR:
1959 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001960 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00001961 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00001962 Tmp1 = LegalizeOp(Tmp1);
1963 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00001964
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001965 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001966 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001967 case ISD::BRIND:
1968 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1969 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00001970 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Nate Begeman37efe672006-04-22 18:53:45 +00001971 Tmp1 = LegalizeOp(Tmp1);
1972 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00001973
Nate Begeman37efe672006-04-22 18:53:45 +00001974 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1975 default: assert(0 && "Indirect target must be legal type (pointer)!");
1976 case Legal:
1977 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1978 break;
1979 }
1980 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1981 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001982 case ISD::BR_JT:
1983 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1984 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00001985 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001986 Tmp1 = LegalizeOp(Tmp1);
1987 LastCALLSEQ_END = DAG.getEntryNode();
1988
1989 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1990 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1991
Scott Michelfdc40a02009-02-17 22:15:04 +00001992 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001993 default: assert(0 && "This action is not supported yet!");
1994 case TargetLowering::Legal: break;
1995 case TargetLowering::Custom:
1996 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001997 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001998 break;
1999 case TargetLowering::Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002000 SDValue Chain = Result.getOperand(0);
2001 SDValue Table = Result.getOperand(1);
2002 SDValue Index = Result.getOperand(2);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002003
Duncan Sands83ec4b62008-06-06 12:08:01 +00002004 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002005 MachineFunction &MF = DAG.getMachineFunction();
2006 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Scott Michelfdc40a02009-02-17 22:15:04 +00002007 Index= DAG.getNode(ISD::MUL, dl, PTy,
Dale Johannesenca57b842009-02-02 23:46:53 +00002008 Index, DAG.getConstant(EntrySize, PTy));
2009 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002010
Duncan Sands712f7b32008-12-12 08:13:38 +00002011 MVT MemVT = MVT::getIntegerVT(EntrySize * 8);
Dale Johannesenca57b842009-02-02 23:46:53 +00002012 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Duncan Sands712f7b32008-12-12 08:13:38 +00002013 PseudoSourceValue::getJumpTable(), 0, MemVT);
Evan Chengcc415862007-11-09 01:32:10 +00002014 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002015 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00002016 // For PIC, the sequence is:
2017 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00002018 // RelocBase can be JumpTable, GOT or some sort of global base.
Dale Johannesenca57b842009-02-02 23:46:53 +00002019 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
Evan Chengcc415862007-11-09 01:32:10 +00002020 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00002021 }
Dale Johannesenca57b842009-02-02 23:46:53 +00002022 Result = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002023 }
2024 }
2025 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002026 case ISD::BRCOND:
2027 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002028 // Ensure that libcalls are emitted before a return.
Dale Johannesenca57b842009-02-02 23:46:53 +00002029 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002030 Tmp1 = LegalizeOp(Tmp1);
2031 LastCALLSEQ_END = DAG.getEntryNode();
2032
Chris Lattner47e92232005-01-18 19:27:06 +00002033 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2034 case Expand: assert(0 && "It's impossible to expand bools");
2035 case Legal:
2036 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2037 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002038 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002039 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Scott Michelfdc40a02009-02-17 22:15:04 +00002040
Chris Lattnerf9908172006-11-27 04:39:56 +00002041 // The top bits of the promoted condition are not necessarily zero, ensure
2042 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002043 unsigned BitWidth = Tmp2.getValueSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002044 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002045 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenca57b842009-02-02 23:46:53 +00002046 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002047 break;
2048 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002049 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002050
2051 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002052 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00002053
2054 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
Nate Begeman7cbd5252005-08-16 19:49:35 +00002055 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002056 case TargetLowering::Legal: break;
2057 case TargetLowering::Custom:
2058 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002059 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002060 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002061 case TargetLowering::Expand:
2062 // Expand brcond's setcc into its constituent parts and create a BR_CC
2063 // Node.
2064 if (Tmp2.getOpcode() == ISD::SETCC) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002065 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00002066 Tmp1, Tmp2.getOperand(2),
Nate Begeman7cbd5252005-08-16 19:49:35 +00002067 Tmp2.getOperand(0), Tmp2.getOperand(1),
2068 Node->getOperand(2));
2069 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00002070 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Nate Begeman7cbd5252005-08-16 19:49:35 +00002071 DAG.getCondCode(ISD::SETNE), Tmp2,
2072 DAG.getConstant(0, Tmp2.getValueType()),
2073 Node->getOperand(2));
2074 }
2075 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002076 }
2077 break;
2078 case ISD::BR_CC:
2079 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002080 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002081 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002082 Tmp1 = LegalizeOp(Tmp1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002083 Tmp2 = Node->getOperand(2); // LHS
Nate Begeman750ac1b2006-02-01 07:19:44 +00002084 Tmp3 = Node->getOperand(3); // RHS
2085 Tmp4 = Node->getOperand(1); // CC
2086
Scott Michelfdc40a02009-02-17 22:15:04 +00002087 LegalizeSetCC(TLI.getSetCCResultType(Tmp2.getValueType()),
Dale Johannesenbb5da912009-02-02 20:41:04 +00002088 Tmp2, Tmp3, Tmp4, dl);
Evan Cheng722cb362006-12-18 22:55:34 +00002089 LastCALLSEQ_END = DAG.getEntryNode();
2090
Evan Cheng7f042682008-10-15 02:05:31 +00002091 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002092 // the LHS is a legal SETCC itself. In this case, we need to compare
2093 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00002094 if (Tmp3.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002095 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
2096 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00002097 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002098
2099 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002100 Node->getOperand(4));
Scott Michelfdc40a02009-02-17 22:15:04 +00002101
Chris Lattner181b7a32005-12-17 23:46:46 +00002102 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
2103 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002104 case TargetLowering::Legal: break;
2105 case TargetLowering::Custom:
2106 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002107 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00002108 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002109 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002110 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002111 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00002112 LoadSDNode *LD = cast<LoadSDNode>(Node);
2113 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
2114 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002115
Evan Cheng466685d2006-10-09 20:57:25 +00002116 ISD::LoadExtType ExtType = LD->getExtensionType();
2117 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002118 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00002119 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2120 Tmp3 = Result.getValue(0);
2121 Tmp4 = Result.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002122
Evan Cheng466685d2006-10-09 20:57:25 +00002123 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
2124 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002125 case TargetLowering::Legal:
2126 // If this is an unaligned load and the target doesn't support it,
2127 // expand it.
2128 if (!TLI.allowsUnalignedMemoryAccesses()) {
2129 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002130 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002131 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002132 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002133 TLI);
2134 Tmp3 = Result.getOperand(0);
2135 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00002136 Tmp3 = LegalizeOp(Tmp3);
2137 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002138 }
2139 }
2140 break;
Evan Cheng466685d2006-10-09 20:57:25 +00002141 case TargetLowering::Custom:
2142 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002143 if (Tmp1.getNode()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002144 Tmp3 = LegalizeOp(Tmp1);
2145 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00002146 }
Evan Cheng466685d2006-10-09 20:57:25 +00002147 break;
2148 case TargetLowering::Promote: {
2149 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002150 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00002151 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002152 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00002153
Dale Johannesenca57b842009-02-02 23:46:53 +00002154 Tmp1 = DAG.getLoad(NVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002155 LD->getSrcValueOffset(),
2156 LD->isVolatile(), LD->getAlignment());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00002157 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp1));
Evan Cheng466685d2006-10-09 20:57:25 +00002158 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002159 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00002160 }
Evan Cheng466685d2006-10-09 20:57:25 +00002161 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002162 // Since loads produce two values, make sure to remember that we
Evan Cheng466685d2006-10-09 20:57:25 +00002163 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002164 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
2165 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002166 return Op.getResNo() ? Tmp4 : Tmp3;
Evan Cheng466685d2006-10-09 20:57:25 +00002167 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002168 MVT SrcVT = LD->getMemoryVT();
2169 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002170 int SVOffset = LD->getSrcValueOffset();
2171 unsigned Alignment = LD->getAlignment();
2172 bool isVolatile = LD->isVolatile();
2173
Duncan Sands83ec4b62008-06-06 12:08:01 +00002174 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002175 // Some targets pretend to have an i1 loading operation, and actually
2176 // load an i8. This trick is correct for ZEXTLOAD because the top 7
2177 // bits are guaranteed to be zero; it helps the optimizers understand
2178 // that these bits are zero. It is also useful for EXTLOAD, since it
2179 // tells the optimizers that those bits are undefined. It would be
2180 // nice to have an effective generic way of getting these benefits...
2181 // Until such a way is found, don't insist on promoting i1 here.
2182 (SrcVT != MVT::i1 ||
Evan Cheng03294662008-10-14 21:26:46 +00002183 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002184 // Promote to a byte-sized load if not loading an integral number of
2185 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002186 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2187 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002188 SDValue Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002189
2190 // The extra bits are guaranteed to be zero, since we stored them that
2191 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2192
2193 ISD::LoadExtType NewExtType =
2194 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2195
Dale Johannesenca57b842009-02-02 23:46:53 +00002196 Result = DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002197 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2198 NVT, isVolatile, Alignment);
2199
2200 Ch = Result.getValue(1); // The chain.
2201
2202 if (ExtType == ISD::SEXTLOAD)
2203 // Having the top bits zero doesn't help when sign extending.
Scott Michelfdc40a02009-02-17 22:15:04 +00002204 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002205 Result.getValueType(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002206 Result, DAG.getValueType(SrcVT));
2207 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2208 // All the top bits are guaranteed to be zero - inform the optimizers.
Scott Michelfdc40a02009-02-17 22:15:04 +00002209 Result = DAG.getNode(ISD::AssertZext, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002210 Result.getValueType(), Result,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002211 DAG.getValueType(SrcVT));
2212
2213 Tmp1 = LegalizeOp(Result);
2214 Tmp2 = LegalizeOp(Ch);
2215 } else if (SrcWidth & (SrcWidth - 1)) {
2216 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002217 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002218 "Unsupported extload!");
2219 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2220 assert(RoundWidth < SrcWidth);
2221 unsigned ExtraWidth = SrcWidth - RoundWidth;
2222 assert(ExtraWidth < RoundWidth);
2223 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2224 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002225 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2226 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002227 SDValue Lo, Hi, Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002228 unsigned IncrementSize;
2229
2230 if (TLI.isLittleEndian()) {
2231 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2232 // Load the bottom RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002233 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
2234 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002235 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2236 Alignment);
2237
2238 // Load the remaining ExtraWidth bits.
2239 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002240 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002241 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002242 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002243 LD->getSrcValue(), SVOffset + IncrementSize,
2244 ExtraVT, isVolatile,
2245 MinAlign(Alignment, IncrementSize));
2246
2247 // Build a factor node to remember that this load is independent of the
2248 // other one.
Dale Johannesenca57b842009-02-02 23:46:53 +00002249 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002250 Hi.getValue(1));
2251
2252 // Move the top bits to the right place.
Dale Johannesenca57b842009-02-02 23:46:53 +00002253 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002254 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2255
2256 // Join the hi and lo parts.
Dale Johannesenca57b842009-02-02 23:46:53 +00002257 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002258 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002259 // Big endian - avoid unaligned loads.
2260 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2261 // Load the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002262 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002263 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2264 Alignment);
2265
2266 // Load the remaining ExtraWidth bits.
2267 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002268 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002269 DAG.getIntPtrConstant(IncrementSize));
Scott Michelfdc40a02009-02-17 22:15:04 +00002270 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002271 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002272 LD->getSrcValue(), SVOffset + IncrementSize,
2273 ExtraVT, isVolatile,
2274 MinAlign(Alignment, IncrementSize));
2275
2276 // Build a factor node to remember that this load is independent of the
2277 // other one.
Dale Johannesenca57b842009-02-02 23:46:53 +00002278 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002279 Hi.getValue(1));
2280
2281 // Move the top bits to the right place.
Dale Johannesenca57b842009-02-02 23:46:53 +00002282 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002283 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2284
2285 // Join the hi and lo parts.
Dale Johannesenca57b842009-02-02 23:46:53 +00002286 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002287 }
2288
2289 Tmp1 = LegalizeOp(Result);
2290 Tmp2 = LegalizeOp(Ch);
2291 } else {
Evan Cheng03294662008-10-14 21:26:46 +00002292 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002293 default: assert(0 && "This action is not supported yet!");
2294 case TargetLowering::Custom:
2295 isCustom = true;
2296 // FALLTHROUGH
2297 case TargetLowering::Legal:
2298 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2299 Tmp1 = Result.getValue(0);
2300 Tmp2 = Result.getValue(1);
2301
2302 if (isCustom) {
2303 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002304 if (Tmp3.getNode()) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002305 Tmp1 = LegalizeOp(Tmp3);
2306 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2307 }
2308 } else {
2309 // If this is an unaligned load and the target doesn't support it,
2310 // expand it.
2311 if (!TLI.allowsUnalignedMemoryAccesses()) {
2312 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002313 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002314 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002315 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002316 TLI);
2317 Tmp1 = Result.getOperand(0);
2318 Tmp2 = Result.getOperand(1);
2319 Tmp1 = LegalizeOp(Tmp1);
2320 Tmp2 = LegalizeOp(Tmp2);
2321 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002322 }
2323 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002324 break;
2325 case TargetLowering::Expand:
2326 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2327 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dale Johannesenca57b842009-02-02 23:46:53 +00002328 SDValue Load = DAG.getLoad(SrcVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002329 LD->getSrcValueOffset(),
2330 LD->isVolatile(), LD->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00002331 Result = DAG.getNode(ISD::FP_EXTEND, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002332 Node->getValueType(0), Load);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002333 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2334 Tmp2 = LegalizeOp(Load.getValue(1));
2335 break;
2336 }
2337 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2338 // Turn the unsupported load into an EXTLOAD followed by an explicit
2339 // zero/sign extend inreg.
Dale Johannesenca57b842009-02-02 23:46:53 +00002340 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002341 Tmp1, Tmp2, LD->getSrcValue(),
2342 LD->getSrcValueOffset(), SrcVT,
2343 LD->isVolatile(), LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00002344 SDValue ValRes;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002345 if (ExtType == ISD::SEXTLOAD)
Dale Johannesenca57b842009-02-02 23:46:53 +00002346 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
2347 Result.getValueType(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002348 Result, DAG.getValueType(SrcVT));
2349 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002350 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002351 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2352 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002353 break;
2354 }
Evan Cheng466685d2006-10-09 20:57:25 +00002355 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002356
Evan Cheng466685d2006-10-09 20:57:25 +00002357 // Since loads produce two values, make sure to remember that we legalized
2358 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002359 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2360 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002361 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002362 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002363 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002364 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002365 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002366 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002367 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002368 case Legal:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002369 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Nate Begeman5dc897b2005-10-19 00:06:56 +00002370 // 1 -> Hi
Dale Johannesenca57b842009-02-02 23:46:53 +00002371 Result = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002372 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002373 TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002374 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Result);
Nate Begeman5dc897b2005-10-19 00:06:56 +00002375 } else {
2376 // 0 -> Lo
Scott Michelfdc40a02009-02-17 22:15:04 +00002377 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
Nate Begeman5dc897b2005-10-19 00:06:56 +00002378 Node->getOperand(0));
2379 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002380 break;
2381 case Expand:
2382 // Get both the low and high parts.
2383 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002384 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Nate Begeman5dc897b2005-10-19 00:06:56 +00002385 Result = Tmp2; // 1 -> Hi
2386 else
2387 Result = Tmp1; // 0 -> Lo
2388 break;
2389 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002390 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002391 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002392
2393 case ISD::CopyToReg:
2394 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002395
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002396 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002397 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002398 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002399 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002400 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002401 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002402 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002403 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002404 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002405 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002406 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2407 Tmp3);
2408 } else {
2409 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002410 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002411
Chris Lattner7310fb12005-12-18 15:27:43 +00002412 // Since this produces two values, make sure to remember that we legalized
2413 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002414 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2415 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002416 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002417 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002418 break;
2419
2420 case ISD::RET:
2421 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002422
2423 // Ensure that libcalls are emitted before a return.
Dale Johannesenca57b842009-02-02 23:46:53 +00002424 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002425 Tmp1 = LegalizeOp(Tmp1);
2426 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00002427
Chris Lattner3e928bb2005-01-07 07:47:09 +00002428 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002429 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002430 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002431 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002432 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002433 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002434 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002435 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002436 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002437 if (!Tmp2.getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002438 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002439 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002440
2441 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002442 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002443 std::swap(Lo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00002444
Gabor Greifba36cb52008-08-28 21:40:38 +00002445 if (Hi.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00002446 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002447 Tmp1, Lo, Tmp3, Hi, Tmp3);
Evan Cheng13acce32006-12-11 19:27:14 +00002448 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002449 Result = DAG.getNode(ISD::RET, dl, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002450 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002451 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00002452 SDNode *InVal = Tmp2.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002453 int InIx = Tmp2.getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002454 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2455 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00002456
Dan Gohman7f321562007-06-25 16:23:39 +00002457 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002458 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002459 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002460 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002461 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002462 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002463 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002464 } else if (NumElems == 1) {
2465 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002466 Tmp2 = ScalarizeVectorOp(Tmp2);
2467 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002468 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00002469
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002470 // FIXME: Returns of gcc generic vectors smaller than a legal type
2471 // should be returned in integer registers!
Scott Michelfdc40a02009-02-17 22:15:04 +00002472
Chris Lattnerf87324e2006-04-11 01:31:51 +00002473 // The scalarized value type may not be legal, e.g. it might require
2474 // promotion or expansion. Relegalize the return.
2475 Result = LegalizeOp(Result);
2476 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002477 // FIXME: Returns of gcc generic vectors larger than a legal vector
2478 // type should be returned by reference!
Dan Gohman475871a2008-07-27 21:46:04 +00002479 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002480 SplitVectorOp(Tmp2, Lo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00002481 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002482 Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002483 Result = LegalizeOp(Result);
2484 }
2485 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002486 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002487 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002488 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002489 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002490 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002491 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002492 }
2493 break;
2494 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002495 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002496 break;
2497 default: { // ret <values>
Dan Gohman475871a2008-07-27 21:46:04 +00002498 SmallVector<SDValue, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002499 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002500 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002501 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2502 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002503 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002504 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002505 break;
2506 case Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002507 SDValue Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002508 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002509 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002510 ExpandOp(Node->getOperand(i), Lo, Hi);
2511 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002512 NewValues.push_back(Node->getOperand(i+1));
Gabor Greifba36cb52008-08-28 21:40:38 +00002513 if (Hi.getNode()) {
Evan Cheng13acce32006-12-11 19:27:14 +00002514 NewValues.push_back(Hi);
2515 NewValues.push_back(Node->getOperand(i+1));
2516 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002517 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002518 }
2519 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002520 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002521 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002522
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002523 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002524 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002525 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002526 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002527 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002528 break;
2529 }
2530 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002531
Chris Lattner6862dbc2006-01-29 21:02:23 +00002532 if (Result.getOpcode() == ISD::RET) {
2533 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2534 default: assert(0 && "This action is not supported yet!");
2535 case TargetLowering::Legal: break;
2536 case TargetLowering::Custom:
2537 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002538 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner6862dbc2006-01-29 21:02:23 +00002539 break;
2540 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002541 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002542 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002543 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002544 StoreSDNode *ST = cast<StoreSDNode>(Node);
2545 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2546 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002547 int SVOffset = ST->getSrcValueOffset();
2548 unsigned Alignment = ST->getAlignment();
2549 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002550
Evan Cheng8b2794a2006-10-13 21:14:26 +00002551 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002552 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2553 // FIXME: We shouldn't do this for TargetConstantFP's.
2554 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2555 // to phase ordering between legalized code and the dag combiner. This
2556 // probably means that we need to integrate dag combiner and legalizer
2557 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002558 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002559 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002560 if (CFP->getValueType(0) == MVT::f32 &&
Chris Lattner3cb93512007-10-15 05:46:06 +00002561 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002562 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen7111b022008-10-09 18:53:47 +00002563 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002564 MVT::i32);
Dale Johannesenca57b842009-02-02 23:46:53 +00002565 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002566 SVOffset, isVolatile, Alignment);
2567 break;
2568 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002569 // If this target supports 64-bit registers, do a single 64-bit store.
2570 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen7111b022008-10-09 18:53:47 +00002571 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002572 zextOrTrunc(64), MVT::i64);
Dale Johannesenca57b842009-02-02 23:46:53 +00002573 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner3cb93512007-10-15 05:46:06 +00002574 SVOffset, isVolatile, Alignment);
2575 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002576 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002577 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2578 // stores. If the target supports neither 32- nor 64-bits, this
2579 // xform is certainly not worth it.
Dale Johannesen7111b022008-10-09 18:53:47 +00002580 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman475871a2008-07-27 21:46:04 +00002581 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2582 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002583 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002584
Dale Johannesenca57b842009-02-02 23:46:53 +00002585 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Chris Lattner3cb93512007-10-15 05:46:06 +00002586 SVOffset, isVolatile, Alignment);
Dale Johannesenca57b842009-02-02 23:46:53 +00002587 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002588 DAG.getIntPtrConstant(4));
Dale Johannesenca57b842009-02-02 23:46:53 +00002589 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002590 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002591
Dale Johannesenca57b842009-02-02 23:46:53 +00002592 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002593 break;
2594 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002595 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002596 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002597
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002598 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002599 case Legal: {
2600 Tmp3 = LegalizeOp(ST->getValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00002601 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002602 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002603
Duncan Sands83ec4b62008-06-06 12:08:01 +00002604 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002605 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2606 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002607 case TargetLowering::Legal:
2608 // If this is an unaligned store and the target doesn't support it,
2609 // expand it.
2610 if (!TLI.allowsUnalignedMemoryAccesses()) {
2611 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002612 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002613 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002614 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002615 TLI);
2616 }
2617 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002618 case TargetLowering::Custom:
2619 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002620 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002621 break;
2622 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002623 assert(VT.isVector() && "Unknown legal promote case!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002624 Tmp3 = DAG.getNode(ISD::BIT_CONVERT, dl,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002625 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
Dale Johannesenca57b842009-02-02 23:46:53 +00002626 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002627 ST->getSrcValue(), SVOffset, isVolatile,
2628 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002629 break;
2630 }
2631 break;
2632 }
2633 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002634 if (!ST->getMemoryVT().isVector()) {
2635 // Truncate the value and store the result.
2636 Tmp3 = PromoteOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002637 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Mon P Wang0c397192008-10-30 08:01:45 +00002638 SVOffset, ST->getMemoryVT(),
2639 isVolatile, Alignment);
2640 break;
2641 }
2642 // Fall thru to expand for vector
2643 case Expand: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002644 unsigned IncrementSize = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002645 SDValue Lo, Hi;
Scott Michelfdc40a02009-02-17 22:15:04 +00002646
Evan Cheng8b2794a2006-10-13 21:14:26 +00002647 // If this is a vector type, then we have to calculate the increment as
2648 // the product of the element size in bytes, and the number of elements
2649 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002650 if (ST->getValue().getValueType().isVector()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002651 SDNode *InVal = ST->getValue().getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002652 int InIx = ST->getValue().getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002653 MVT InVT = InVal->getValueType(InIx);
2654 unsigned NumElems = InVT.getVectorNumElements();
2655 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002656
Dan Gohman7f321562007-06-25 16:23:39 +00002657 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002658 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002659 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002660 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002661 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002662 Tmp3 = LegalizeOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002663 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002664 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002665 Result = LegalizeOp(Result);
2666 break;
2667 } else if (NumElems == 1) {
2668 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002669 Tmp3 = ScalarizeVectorOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002670 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002671 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002672 // The scalarized value type may not be legal, e.g. it might require
2673 // promotion or expansion. Relegalize the scalar store.
2674 Result = LegalizeOp(Result);
2675 break;
2676 } else {
Mon P Wang0c397192008-10-30 08:01:45 +00002677 // Check if we have widen this node with another value
2678 std::map<SDValue, SDValue>::iterator I =
2679 WidenNodes.find(ST->getValue());
2680 if (I != WidenNodes.end()) {
2681 Result = StoreWidenVectorOp(ST, Tmp1, Tmp2);
2682 break;
2683 }
2684 else {
2685 SplitVectorOp(ST->getValue(), Lo, Hi);
2686 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
2687 EVT.getSizeInBits()/8;
2688 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002689 }
2690 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002691 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002692 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002693
Richard Pennington4b052dc2008-09-25 16:15:10 +00002694 if (Hi.getNode() && TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002695 std::swap(Lo, Hi);
2696 }
2697
Dale Johannesenca57b842009-02-02 23:46:53 +00002698 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002699 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002700
Gabor Greifba36cb52008-08-28 21:40:38 +00002701 if (Hi.getNode() == NULL) {
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002702 // Must be int <-> float one-to-one expansion.
2703 Result = Lo;
2704 break;
2705 }
2706
Dale Johannesenca57b842009-02-02 23:46:53 +00002707 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002708 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002709 assert(isTypeLegal(Tmp2.getValueType()) &&
2710 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002711 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002712 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenca57b842009-02-02 23:46:53 +00002713 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002714 SVOffset, isVolatile, Alignment);
Dale Johannesenca57b842009-02-02 23:46:53 +00002715 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002716 break;
Mon P Wang0c397192008-10-30 08:01:45 +00002717 } // case Expand
Evan Cheng8b2794a2006-10-13 21:14:26 +00002718 }
2719 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002720 switch (getTypeAction(ST->getValue().getValueType())) {
2721 case Legal:
2722 Tmp3 = LegalizeOp(ST->getValue());
2723 break;
2724 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002725 if (!ST->getValue().getValueType().isVector()) {
2726 // We can promote the value, the truncstore will still take care of it.
2727 Tmp3 = PromoteOp(ST->getValue());
2728 break;
2729 }
2730 // Vector case falls through to expand
Chris Lattnerddf89562008-01-17 19:59:44 +00002731 case Expand:
2732 // Just store the low part. This may become a non-trunc store, so make
2733 // sure to use getTruncStore, not UpdateNodeOperands below.
2734 ExpandOp(ST->getValue(), Tmp3, Tmp4);
Dale Johannesenca57b842009-02-02 23:46:53 +00002735 return DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattnerddf89562008-01-17 19:59:44 +00002736 SVOffset, MVT::i8, isVolatile, Alignment);
2737 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002738
Duncan Sands83ec4b62008-06-06 12:08:01 +00002739 MVT StVT = ST->getMemoryVT();
2740 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002741
Duncan Sands83ec4b62008-06-06 12:08:01 +00002742 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002743 // Promote to a byte-sized store with upper bits zero if not
2744 // storing an integral number of bytes. For example, promote
2745 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002746 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Dale Johannesenca57b842009-02-02 23:46:53 +00002747 Tmp3 = DAG.getZeroExtendInReg(Tmp3, dl, StVT);
2748 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002749 SVOffset, NVT, isVolatile, Alignment);
2750 } else if (StWidth & (StWidth - 1)) {
2751 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002752 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002753 "Unsupported truncstore!");
2754 unsigned RoundWidth = 1 << Log2_32(StWidth);
2755 assert(RoundWidth < StWidth);
2756 unsigned ExtraWidth = StWidth - RoundWidth;
2757 assert(ExtraWidth < RoundWidth);
2758 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2759 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002760 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2761 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002762 SDValue Lo, Hi;
Duncan Sands7e857202008-01-22 07:17:34 +00002763 unsigned IncrementSize;
2764
2765 if (TLI.isLittleEndian()) {
2766 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2767 // Store the bottom RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002768 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002769 SVOffset, RoundVT,
2770 isVolatile, Alignment);
2771
2772 // Store the remaining ExtraWidth bits.
2773 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002774 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00002775 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002776 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands7e857202008-01-22 07:17:34 +00002777 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002778 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002779 SVOffset + IncrementSize, ExtraVT, isVolatile,
2780 MinAlign(Alignment, IncrementSize));
2781 } else {
2782 // Big endian - avoid unaligned stores.
2783 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2784 // Store the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002785 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands7e857202008-01-22 07:17:34 +00002786 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002787 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
2788 SVOffset, RoundVT, isVolatile, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00002789
2790 // Store the remaining ExtraWidth bits.
2791 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002792 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00002793 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002794 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002795 SVOffset + IncrementSize, ExtraVT, isVolatile,
2796 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002797 }
Duncan Sands7e857202008-01-22 07:17:34 +00002798
2799 // The order of the stores doesn't matter.
Dale Johannesenca57b842009-02-02 23:46:53 +00002800 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Duncan Sands7e857202008-01-22 07:17:34 +00002801 } else {
2802 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2803 Tmp2 != ST->getBasePtr())
2804 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2805 ST->getOffset());
2806
2807 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2808 default: assert(0 && "This action is not supported yet!");
2809 case TargetLowering::Legal:
2810 // If this is an unaligned store and the target doesn't support it,
2811 // expand it.
2812 if (!TLI.allowsUnalignedMemoryAccesses()) {
2813 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002814 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002815 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002816 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands7e857202008-01-22 07:17:34 +00002817 TLI);
2818 }
2819 break;
2820 case TargetLowering::Custom:
2821 Result = TLI.LowerOperation(Result, DAG);
2822 break;
2823 case Expand:
2824 // TRUNCSTORE:i16 i32 -> STORE i16
2825 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
Dale Johannesenca57b842009-02-02 23:46:53 +00002826 Tmp3 = DAG.getNode(ISD::TRUNCATE, dl, StVT, Tmp3);
2827 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
2828 SVOffset, isVolatile, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00002829 break;
2830 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002831 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002832 }
2833 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002834 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002835 case ISD::PCMARKER:
2836 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002837 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002838 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002839 case ISD::STACKSAVE:
2840 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002841 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2842 Tmp1 = Result.getValue(0);
2843 Tmp2 = Result.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002844
Chris Lattner140d53c2006-01-13 02:50:02 +00002845 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2846 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002847 case TargetLowering::Legal: break;
2848 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002849 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002850 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002851 Tmp1 = LegalizeOp(Tmp3);
2852 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002853 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002854 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002855 case TargetLowering::Expand:
Scott Michelfdc40a02009-02-17 22:15:04 +00002856 // Expand to CopyFromReg if the target set
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002857 // StackPointerRegisterToSaveRestore.
2858 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00002859 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), dl, SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002860 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002861 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002862 } else {
Dale Johannesene8d72302009-02-06 23:05:02 +00002863 Tmp1 = DAG.getUNDEF(Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002864 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002865 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002866 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002867 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002868
2869 // Since stacksave produce two values, make sure to remember that we
2870 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002871 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2872 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002873 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002874
Chris Lattner140d53c2006-01-13 02:50:02 +00002875 case ISD::STACKRESTORE:
2876 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2877 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002878 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00002879
Chris Lattner140d53c2006-01-13 02:50:02 +00002880 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2881 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002882 case TargetLowering::Legal: break;
2883 case TargetLowering::Custom:
2884 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002885 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002886 break;
2887 case TargetLowering::Expand:
Scott Michelfdc40a02009-02-17 22:15:04 +00002888 // Expand to CopyToReg if the target set
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002889 // StackPointerRegisterToSaveRestore.
2890 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00002891 Result = DAG.getCopyToReg(Tmp1, dl, SP, Tmp2);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002892 } else {
2893 Result = Tmp1;
2894 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002895 break;
2896 }
2897 break;
2898
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002899 case ISD::READCYCLECOUNTER:
2900 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002901 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002902 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2903 Node->getValueType(0))) {
2904 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002905 case TargetLowering::Legal:
2906 Tmp1 = Result.getValue(0);
2907 Tmp2 = Result.getValue(1);
2908 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002909 case TargetLowering::Custom:
2910 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002911 Tmp1 = LegalizeOp(Result.getValue(0));
2912 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002913 break;
2914 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002915
2916 // Since rdcc produce two values, make sure to remember that we legalized
2917 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002918 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2919 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002920 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002921
Chris Lattner2ee743f2005-01-14 22:08:15 +00002922 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002923 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2924 case Expand: assert(0 && "It's impossible to expand bools");
2925 case Legal:
2926 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2927 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002928 case Promote: {
Mon P Wang0c397192008-10-30 08:01:45 +00002929 assert(!Node->getOperand(0).getValueType().isVector() && "not possible");
Chris Lattner47e92232005-01-18 19:27:06 +00002930 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002931 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002932 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002933 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002934 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenca57b842009-02-02 23:46:53 +00002935 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002936 break;
2937 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002938 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002939 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002940 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002941
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002942 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00002943
Nate Begemanb942a3d2005-08-23 04:29:48 +00002944 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002945 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002946 case TargetLowering::Legal: break;
2947 case TargetLowering::Custom: {
2948 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002949 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002950 break;
2951 }
Nate Begeman9373a812005-08-10 20:51:12 +00002952 case TargetLowering::Expand:
2953 if (Tmp1.getOpcode() == ISD::SETCC) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002954 Result = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
Nate Begeman9373a812005-08-10 20:51:12 +00002955 Tmp2, Tmp3,
2956 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2957 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00002958 Result = DAG.getSelectCC(dl, Tmp1,
Nate Begeman9373a812005-08-10 20:51:12 +00002959 DAG.getConstant(0, Tmp1.getValueType()),
2960 Tmp2, Tmp3, ISD::SETNE);
2961 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002962 break;
2963 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002964 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002965 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2966 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002967 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002968 ExtOp = ISD::BIT_CONVERT;
2969 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002970 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002971 ExtOp = ISD::ANY_EXTEND;
2972 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002973 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002974 ExtOp = ISD::FP_EXTEND;
2975 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002976 }
2977 // Promote each of the values to the new type.
Dale Johannesenca57b842009-02-02 23:46:53 +00002978 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Tmp2);
2979 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Tmp3);
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002980 // Perform the larger operation, then round down.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002981 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2, Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002982 if (TruncOp != ISD::FP_ROUND)
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 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002985 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00002986 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002987 break;
2988 }
2989 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002990 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002991 case ISD::SELECT_CC: {
2992 Tmp1 = Node->getOperand(0); // LHS
2993 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002994 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2995 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman475871a2008-07-27 21:46:04 +00002996 SDValue CC = Node->getOperand(4);
Scott Michelfdc40a02009-02-17 22:15:04 +00002997
2998 LegalizeSetCC(TLI.getSetCCResultType(Tmp1.getValueType()),
Dale Johannesenbb5da912009-02-02 20:41:04 +00002999 Tmp1, Tmp2, CC, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003000
Evan Cheng7f042682008-10-15 02:05:31 +00003001 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00003002 // the LHS is a legal SETCC itself. In this case, we need to compare
3003 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00003004 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003005 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3006 CC = DAG.getCondCode(ISD::SETNE);
3007 }
3008 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
3009
3010 // Everything is legal, see if we should expand this op or something.
3011 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
3012 default: assert(0 && "This action is not supported yet!");
3013 case TargetLowering::Legal: break;
3014 case TargetLowering::Custom:
3015 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003016 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00003017 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003018 }
3019 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00003020 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003021 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00003022 Tmp1 = Node->getOperand(0);
3023 Tmp2 = Node->getOperand(1);
3024 Tmp3 = Node->getOperand(2);
Dale Johannesenbb5da912009-02-02 20:41:04 +00003025 LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003026
3027 // If we had to Expand the SetCC operands into a SELECT node, then it may
3028 // not always be possible to return a true LHS & RHS. In this case, just
Nate Begeman750ac1b2006-02-01 07:19:44 +00003029 // return the value we legalized, returned in the LHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003030 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003031 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003032 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003033 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003034
Chris Lattner73e142f2006-01-30 22:43:50 +00003035 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003036 default: assert(0 && "Cannot handle this action for SETCC yet!");
3037 case TargetLowering::Custom:
3038 isCustom = true;
3039 // FALLTHROUGH.
3040 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00003041 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00003042 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00003043 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003044 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00003045 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003046 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003047 case TargetLowering::Promote: {
3048 // First step, figure out the appropriate operation to use.
3049 // Allow SETCC to not be supported for all legal data types
3050 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00003051 MVT NewInTy = Node->getOperand(0).getValueType();
3052 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00003053
3054 // Scan for the appropriate larger type to use.
3055 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003056 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00003057
Duncan Sands83ec4b62008-06-06 12:08:01 +00003058 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003059 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003060 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003061 "Fell off of the edge of the floating point world");
Scott Michelfdc40a02009-02-17 22:15:04 +00003062
Andrew Lenharthae355752005-11-30 17:12:26 +00003063 // If the target supports SETCC of this type, use it.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003064 if (TLI.isOperationLegalOrCustom(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00003065 break;
3066 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00003067 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00003068 assert(0 && "Cannot promote Legal Integer SETCC yet");
3069 else {
Dale Johannesenca57b842009-02-02 23:46:53 +00003070 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp1);
3071 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp2);
Andrew Lenharthae355752005-11-30 17:12:26 +00003072 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003073 Tmp1 = LegalizeOp(Tmp1);
3074 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00003075 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00003076 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00003077 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003078 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003079 case TargetLowering::Expand:
3080 // Expand a setcc node into a select_cc of the same condition, lhs, and
3081 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003082 MVT VT = Node->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003083 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Nate Begemanb942a3d2005-08-23 04:29:48 +00003084 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00003085 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00003086 break;
3087 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003088 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003089 case ISD::VSETCC: {
3090 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3091 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman475871a2008-07-27 21:46:04 +00003092 SDValue CC = Node->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00003093
Nate Begemanb43e9c12008-05-12 19:40:03 +00003094 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
3095
3096 // Everything is legal, see if we should expand this op or something.
3097 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
3098 default: assert(0 && "This action is not supported yet!");
3099 case TargetLowering::Legal: break;
3100 case TargetLowering::Custom:
3101 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003102 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003103 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003104 case TargetLowering::Expand: {
3105 // Unroll into a nasty set of scalar code for now.
3106 MVT VT = Node->getValueType(0);
3107 unsigned NumElems = VT.getVectorNumElements();
3108 MVT EltVT = VT.getVectorElementType();
3109 MVT TmpEltVT = Tmp1.getValueType().getVectorElementType();
3110 SmallVector<SDValue, 8> Ops(NumElems);
3111 for (unsigned i = 0; i < NumElems; ++i) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003112 SDValue In1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT,
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003113 Tmp1, DAG.getIntPtrConstant(i));
Dale Johannesenca57b842009-02-02 23:46:53 +00003114 Ops[i] = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(TmpEltVT),
3115 In1, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3116 TmpEltVT, Tmp2,
3117 DAG.getIntPtrConstant(i)),
Mon P Wang84aff842008-12-17 08:49:47 +00003118 CC);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00003119 Ops[i] = DAG.getNode(ISD::SELECT, dl, EltVT, Ops[i],
3120 DAG.getConstant(APInt::getAllOnesValue
3121 (EltVT.getSizeInBits()), EltVT),
3122 DAG.getConstant(0, EltVT));
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003123 }
Evan Chenga87008d2009-02-25 22:49:59 +00003124 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElems);
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003125 break;
3126 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00003127 }
3128 break;
3129 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00003130
Chris Lattner5b359c62005-04-02 04:00:59 +00003131 case ISD::SHL_PARTS:
3132 case ISD::SRA_PARTS:
3133 case ISD::SRL_PARTS: {
Dan Gohman475871a2008-07-27 21:46:04 +00003134 SmallVector<SDValue, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00003135 bool Changed = false;
Duncan Sands92abc622009-01-31 15:50:11 +00003136 unsigned N = Node->getNumOperands();
3137 for (unsigned i = 0; i + 1 < N; ++i) {
Chris Lattner84f67882005-01-20 18:52:28 +00003138 Ops.push_back(LegalizeOp(Node->getOperand(i)));
3139 Changed |= Ops.back() != Node->getOperand(i);
3140 }
Duncan Sands92abc622009-01-31 15:50:11 +00003141 Ops.push_back(LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(N-1))));
3142 Changed |= Ops.back() != Node->getOperand(N-1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003143 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003144 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00003145
Evan Cheng05a2d562006-01-09 18:31:59 +00003146 switch (TLI.getOperationAction(Node->getOpcode(),
3147 Node->getValueType(0))) {
3148 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003149 case TargetLowering::Legal: break;
3150 case TargetLowering::Custom:
3151 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003152 if (Tmp1.getNode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003153 SDValue Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00003154 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003155 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman475871a2008-07-27 21:46:04 +00003156 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003157 if (i == Op.getResNo())
Evan Cheng12f22742006-01-19 04:54:52 +00003158 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00003159 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003160 assert(RetVal.getNode() && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00003161 return RetVal;
3162 }
Evan Cheng05a2d562006-01-09 18:31:59 +00003163 break;
3164 }
3165
Chris Lattner2c8086f2005-04-02 05:00:07 +00003166 // Since these produce multiple values, make sure to remember that we
3167 // legalized all of them.
3168 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00003169 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00003170 return Result.getValue(Op.getResNo());
Chris Lattner84f67882005-01-20 18:52:28 +00003171 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003172
3173 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00003174 case ISD::ADD:
3175 case ISD::SUB:
3176 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00003177 case ISD::MULHS:
3178 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003179 case ISD::UDIV:
3180 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003181 case ISD::AND:
3182 case ISD::OR:
3183 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00003184 case ISD::SHL:
3185 case ISD::SRL:
3186 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00003187 case ISD::FADD:
3188 case ISD::FSUB:
3189 case ISD::FMUL:
3190 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00003191 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003192 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003193 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003194
3195 if ((Node->getOpcode() == ISD::SHL ||
3196 Node->getOpcode() == ISD::SRL ||
3197 Node->getOpcode() == ISD::SRA) &&
Duncan Sands92abc622009-01-31 15:50:11 +00003198 !Node->getValueType(0).isVector())
3199 Tmp2 = DAG.getShiftAmountOperand(Tmp2);
3200
3201 switch (getTypeAction(Tmp2.getValueType())) {
3202 case Expand: assert(0 && "Not possible");
3203 case Legal:
3204 Tmp2 = LegalizeOp(Tmp2); // Legalize the RHS.
3205 break;
3206 case Promote:
3207 Tmp2 = PromoteOp(Tmp2); // Promote the RHS.
3208 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003209 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003210
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003211 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Mon P Wangaeb06d22008-11-10 04:46:22 +00003212
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003213 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003214 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00003215 case TargetLowering::Legal: break;
3216 case TargetLowering::Custom:
3217 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003218 if (Tmp1.getNode()) {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003219 Result = Tmp1;
3220 break;
Nate Begeman24dc3462008-07-29 19:07:27 +00003221 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003222 // Fall through if the custom lower can't deal with the operation
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003223 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003224 MVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003225
Dan Gohman525178c2007-10-08 18:33:35 +00003226 // See if multiply or divide can be lowered using two-result operations.
3227 SDVTList VTs = DAG.getVTList(VT, VT);
3228 if (Node->getOpcode() == ISD::MUL) {
3229 // We just need the low half of the multiply; try both the signed
3230 // and unsigned forms. If the target supports both SMUL_LOHI and
3231 // UMUL_LOHI, form a preference by checking which forms of plain
3232 // MULH it supports.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003233 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3234 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3235 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3236 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
Dan Gohman525178c2007-10-08 18:33:35 +00003237 unsigned OpToUse = 0;
3238 if (HasSMUL_LOHI && !HasMULHS) {
3239 OpToUse = ISD::SMUL_LOHI;
3240 } else if (HasUMUL_LOHI && !HasMULHU) {
3241 OpToUse = ISD::UMUL_LOHI;
3242 } else if (HasSMUL_LOHI) {
3243 OpToUse = ISD::SMUL_LOHI;
3244 } else if (HasUMUL_LOHI) {
3245 OpToUse = ISD::UMUL_LOHI;
3246 }
3247 if (OpToUse) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003248 Result = SDValue(DAG.getNode(OpToUse, dl, VTs, Tmp1, Tmp2).getNode(),
3249 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003250 break;
3251 }
3252 }
3253 if (Node->getOpcode() == ISD::MULHS &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003254 TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003255 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003256 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003257 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003258 break;
3259 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003260 if (Node->getOpcode() == ISD::MULHU &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003261 TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003262 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, dl,
3263 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003264 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003265 break;
3266 }
3267 if (Node->getOpcode() == ISD::SDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003268 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003269 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003270 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003271 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003272 break;
3273 }
3274 if (Node->getOpcode() == ISD::UDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003275 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003276 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3277 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003278 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003279 break;
3280 }
Mon P Wang87c8a8f2008-12-18 20:03:17 +00003281
Dan Gohman82669522007-10-11 23:57:53 +00003282 // Check to see if we have a libcall for this operator.
3283 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3284 bool isSigned = false;
3285 switch (Node->getOpcode()) {
3286 case ISD::UDIV:
3287 case ISD::SDIV:
3288 if (VT == MVT::i32) {
3289 LC = Node->getOpcode() == ISD::UDIV
Mon P Wang0c397192008-10-30 08:01:45 +00003290 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003291 isSigned = Node->getOpcode() == ISD::SDIV;
3292 }
3293 break;
Chris Lattner31d71612008-10-04 21:27:46 +00003294 case ISD::MUL:
3295 if (VT == MVT::i32)
3296 LC = RTLIB::MUL_I32;
Nate Begeman9b994852009-01-24 22:12:48 +00003297 else if (VT == MVT::i64)
Scott Michel845145f2008-12-29 03:21:37 +00003298 LC = RTLIB::MUL_I64;
Chris Lattner31d71612008-10-04 21:27:46 +00003299 break;
Dan Gohman82669522007-10-11 23:57:53 +00003300 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003301 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3302 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003303 break;
Scott Micheld1e8d9c2009-01-21 04:58:48 +00003304 case ISD::FDIV:
3305 LC = GetFPLibCall(VT, RTLIB::DIV_F32, RTLIB::DIV_F64, RTLIB::DIV_F80,
3306 RTLIB::DIV_PPCF128);
3307 break;
Dan Gohman82669522007-10-11 23:57:53 +00003308 default: break;
3309 }
3310 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +00003311 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003312 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003313 break;
3314 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003315
Duncan Sands83ec4b62008-06-06 12:08:01 +00003316 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003317 "Cannot expand this binary operator!");
3318 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003319 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003320 break;
3321 }
Evan Chengcc987612006-04-12 21:20:24 +00003322 case TargetLowering::Promote: {
3323 switch (Node->getOpcode()) {
3324 default: assert(0 && "Do not know how to promote this BinOp!");
3325 case ISD::AND:
3326 case ISD::OR:
3327 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003328 MVT OVT = Node->getValueType(0);
3329 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3330 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003331 // Bit convert each of the values to the new type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003332 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
3333 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
3334 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Evan Chengcc987612006-04-12 21:20:24 +00003335 // Bit convert the result back the original type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003336 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Evan Chengcc987612006-04-12 21:20:24 +00003337 break;
3338 }
3339 }
3340 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003341 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003342 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003343
Dan Gohmane14ea862007-10-05 14:17:22 +00003344 case ISD::SMUL_LOHI:
3345 case ISD::UMUL_LOHI:
3346 case ISD::SDIVREM:
3347 case ISD::UDIVREM:
3348 // These nodes will only be produced by target-specific lowering, so
3349 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003350 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003351 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003352
3353 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3354 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3355 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003356 break;
3357
Chris Lattnera09f8482006-03-05 05:09:38 +00003358 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3359 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3360 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3361 case Expand: assert(0 && "Not possible");
3362 case Legal:
3363 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3364 break;
3365 case Promote:
3366 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3367 break;
3368 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003369
Chris Lattnera09f8482006-03-05 05:09:38 +00003370 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00003371
Chris Lattnera09f8482006-03-05 05:09:38 +00003372 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3373 default: assert(0 && "Operation not supported");
3374 case TargetLowering::Custom:
3375 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003376 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003377 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003378 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003379 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003380 // If this target supports fabs/fneg natively and select is cheap,
3381 // do this efficiently.
3382 if (!TLI.isSelectExpensive() &&
3383 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3384 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003385 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003386 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003387 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003388 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003389 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dale Johannesenca57b842009-02-02 23:46:53 +00003390 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, IVT, Tmp2);
3391 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(IVT),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003392 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3393 // Get the absolute value of the result.
Dale Johannesenca57b842009-02-02 23:46:53 +00003394 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
Chris Lattner8f4191d2006-03-13 06:08:38 +00003395 // Select between the nabs and abs value based on the sign bit of
3396 // the input.
Dale Johannesenca57b842009-02-02 23:46:53 +00003397 Result = DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
Scott Michelfdc40a02009-02-17 22:15:04 +00003398 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003399 AbsVal),
3400 AbsVal);
3401 Result = LegalizeOp(Result);
3402 break;
3403 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003404
Chris Lattner8f4191d2006-03-13 06:08:38 +00003405 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003406 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003407 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3408 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
Dale Johannesenca57b842009-02-02 23:46:53 +00003409 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0), Result);
Evan Cheng912095b2007-01-04 21:56:39 +00003410 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003411 break;
3412 }
Evan Cheng912095b2007-01-04 21:56:39 +00003413 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003414 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003415
Nate Begeman551bf3f2006-02-17 05:43:56 +00003416 case ISD::ADDC:
3417 case ISD::SUBC:
3418 Tmp1 = LegalizeOp(Node->getOperand(0));
3419 Tmp2 = LegalizeOp(Node->getOperand(1));
3420 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003421 Tmp3 = Result.getValue(0);
3422 Tmp4 = Result.getValue(1);
3423
3424 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3425 default: assert(0 && "This action is not supported yet!");
3426 case TargetLowering::Legal:
3427 break;
3428 case TargetLowering::Custom:
3429 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3430 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003431 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003432 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3433 }
3434 break;
3435 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003436 // Since this produces two values, make sure to remember that we legalized
3437 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003438 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3439 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3440 return Op.getResNo() ? Tmp4 : Tmp3;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003441
Nate Begeman551bf3f2006-02-17 05:43:56 +00003442 case ISD::ADDE:
3443 case ISD::SUBE:
3444 Tmp1 = LegalizeOp(Node->getOperand(0));
3445 Tmp2 = LegalizeOp(Node->getOperand(1));
3446 Tmp3 = LegalizeOp(Node->getOperand(2));
3447 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003448 Tmp3 = Result.getValue(0);
3449 Tmp4 = Result.getValue(1);
3450
3451 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3452 default: assert(0 && "This action is not supported yet!");
3453 case TargetLowering::Legal:
3454 break;
3455 case TargetLowering::Custom:
3456 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3457 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003458 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003459 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3460 }
3461 break;
3462 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003463 // Since this produces two values, make sure to remember that we legalized
3464 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003465 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3466 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3467 return Op.getResNo() ? Tmp4 : Tmp3;
Scott Michelfdc40a02009-02-17 22:15:04 +00003468
Nate Begeman419f8b62005-10-18 00:27:41 +00003469 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003470 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003471 // TODO: handle the case where the Lo and Hi operands are not of legal type
3472 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3473 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3474 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003475 case TargetLowering::Promote:
3476 case TargetLowering::Custom:
3477 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003478 case TargetLowering::Legal:
3479 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
Dale Johannesenca57b842009-02-02 23:46:53 +00003480 Result = DAG.getNode(ISD::BUILD_PAIR, dl, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003481 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003482 case TargetLowering::Expand:
Dale Johannesenca57b842009-02-02 23:46:53 +00003483 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Tmp1);
3484 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Tmp2);
3485 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003486 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003487 TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00003488 Result = DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003489 break;
3490 }
3491 break;
3492 }
3493
Nate Begemanc105e192005-04-06 00:23:54 +00003494 case ISD::UREM:
3495 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003496 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003497 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3498 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003499
Nate Begemanc105e192005-04-06 00:23:54 +00003500 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003501 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3502 case TargetLowering::Custom:
3503 isCustom = true;
3504 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003505 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003506 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003507 if (isCustom) {
3508 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003509 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003510 }
Nate Begemanc105e192005-04-06 00:23:54 +00003511 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003512 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003513 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003514 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003515 MVT VT = Node->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003516
Dan Gohman525178c2007-10-08 18:33:35 +00003517 // See if remainder can be lowered using two-result operations.
3518 SDVTList VTs = DAG.getVTList(VT, VT);
3519 if (Node->getOpcode() == ISD::SREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003520 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003521 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003522 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003523 break;
3524 }
3525 if (Node->getOpcode() == ISD::UREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003526 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003527 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3528 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003529 break;
3530 }
3531
Duncan Sands83ec4b62008-06-06 12:08:01 +00003532 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003533 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003534 TargetLowering::Legal) {
3535 // X % Y -> X-X/Y*Y
Dale Johannesenca57b842009-02-02 23:46:53 +00003536 Result = DAG.getNode(DivOpc, dl, VT, Tmp1, Tmp2);
3537 Result = DAG.getNode(ISD::MUL, dl, VT, Result, Tmp2);
3538 Result = DAG.getNode(ISD::SUB, dl, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003539 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003540 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003541 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003542 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003543 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003544 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3545 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman475871a2008-07-27 21:46:04 +00003546 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003547 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003548 }
Dan Gohman0d974262007-11-06 22:11:54 +00003549 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003550 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003551 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003552 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003553 Result = LegalizeOp(UnrollVectorOp(Op));
3554 } else {
3555 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003556 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3557 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003558 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003559 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003560 }
Nate Begemanc105e192005-04-06 00:23:54 +00003561 }
3562 break;
3563 }
Dan Gohman525178c2007-10-08 18:33:35 +00003564 }
Nate Begemanc105e192005-04-06 00:23:54 +00003565 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003566 case ISD::VAARG: {
3567 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3568 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3569
Duncan Sands83ec4b62008-06-06 12:08:01 +00003570 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003571 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3572 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003573 case TargetLowering::Custom:
3574 isCustom = true;
3575 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003576 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003577 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3578 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003579 Tmp1 = Result.getValue(1);
3580
3581 if (isCustom) {
3582 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003583 if (Tmp2.getNode()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003584 Result = LegalizeOp(Tmp2);
3585 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3586 }
3587 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003588 break;
3589 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003590 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenca57b842009-02-02 23:46:53 +00003591 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003592 // Increment the pointer, VAList, to the next vaarg
Dale Johannesenca57b842009-02-02 23:46:53 +00003593 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00003594 DAG.getConstant(TLI.getTargetData()->
3595 getTypePaddedSize(VT.getTypeForMVT()),
3596 TLI.getPointerTy()));
Nate Begemanacc398c2006-01-25 18:21:52 +00003597 // Store the incremented VAList to the legalized pointer
Dale Johannesenca57b842009-02-02 23:46:53 +00003598 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003599 // Load the actual argument out of the pointer VAList
Dale Johannesenca57b842009-02-02 23:46:53 +00003600 Result = DAG.getLoad(VT, dl, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003601 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003602 Result = LegalizeOp(Result);
3603 break;
3604 }
3605 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003606 // Since VAARG produces two values, make sure to remember that we
Nate Begemanacc398c2006-01-25 18:21:52 +00003607 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003608 AddLegalizedOperand(SDValue(Node, 0), Result);
3609 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003610 return Op.getResNo() ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003611 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003612
3613 case ISD::VACOPY:
Nate Begemanacc398c2006-01-25 18:21:52 +00003614 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3615 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3616 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3617
3618 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3619 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003620 case TargetLowering::Custom:
3621 isCustom = true;
3622 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003623 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003624 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3625 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003626 if (isCustom) {
3627 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003628 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003629 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003630 break;
3631 case TargetLowering::Expand:
3632 // This defaults to loading a pointer from the input and storing it to the
3633 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003634 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3635 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dale Johannesenca57b842009-02-02 23:46:53 +00003636 Tmp4 = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp3, VS, 0);
3637 Result = DAG.getStore(Tmp4.getValue(1), dl, Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003638 break;
3639 }
3640 break;
3641
Scott Michelfdc40a02009-02-17 22:15:04 +00003642 case ISD::VAEND:
Nate Begemanacc398c2006-01-25 18:21:52 +00003643 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3644 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3645
3646 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3647 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003648 case TargetLowering::Custom:
3649 isCustom = true;
3650 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003651 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003652 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003653 if (isCustom) {
3654 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003655 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003656 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003657 break;
3658 case TargetLowering::Expand:
3659 Result = Tmp1; // Default to a no-op, return the chain
3660 break;
3661 }
3662 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003663
3664 case ISD::VASTART:
Nate Begemanacc398c2006-01-25 18:21:52 +00003665 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3666 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3667
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003668 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00003669
Nate Begemanacc398c2006-01-25 18:21:52 +00003670 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3671 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003672 case TargetLowering::Legal: break;
3673 case TargetLowering::Custom:
3674 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003675 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003676 break;
3677 }
3678 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003679
Nate Begeman35ef9132006-01-11 21:21:00 +00003680 case ISD::ROTL:
3681 case ISD::ROTR:
3682 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003683 Tmp2 = LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(1))); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003684 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003685 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3686 default:
3687 assert(0 && "ROTL/ROTR legalize operation not supported");
3688 break;
3689 case TargetLowering::Legal:
3690 break;
3691 case TargetLowering::Custom:
3692 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003693 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelc9dc1142007-04-02 21:36:32 +00003694 break;
3695 case TargetLowering::Promote:
3696 assert(0 && "Do not know how to promote ROTL/ROTR");
3697 break;
3698 case TargetLowering::Expand:
3699 assert(0 && "Do not know how to expand ROTL/ROTR");
3700 break;
3701 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003702 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003703
Nate Begemand88fc032006-01-14 03:14:10 +00003704 case ISD::BSWAP:
3705 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3706 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003707 case TargetLowering::Custom:
3708 assert(0 && "Cannot custom legalize this yet!");
3709 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003710 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003711 break;
3712 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003713 MVT OVT = Tmp1.getValueType();
3714 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3715 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003716
Dale Johannesenca57b842009-02-02 23:46:53 +00003717 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
3718 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3719 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Chris Lattner456a93a2006-01-28 07:39:30 +00003720 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3721 break;
3722 }
3723 case TargetLowering::Expand:
Dale Johannesen8a782a22009-02-02 22:12:50 +00003724 Result = ExpandBSWAP(Tmp1, dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00003725 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003726 }
3727 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003728
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003729 case ISD::CTPOP:
3730 case ISD::CTTZ:
3731 case ISD::CTLZ:
3732 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3733 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003734 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003735 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003736 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003737 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003738 TargetLowering::Custom) {
3739 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003740 if (Tmp1.getNode()) {
Scott Michel335f4f72007-08-02 02:22:46 +00003741 Result = Tmp1;
3742 }
Scott Michel910b66d2007-07-30 21:00:31 +00003743 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003744 break;
3745 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003746 MVT OVT = Tmp1.getValueType();
3747 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003748
3749 // Zero extend the argument.
Dale Johannesenca57b842009-02-02 23:46:53 +00003750 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003751 // Perform the larger operation, then subtract if needed.
Dale Johannesenca57b842009-02-02 23:46:53 +00003752 Tmp1 = DAG.getNode(Node->getOpcode(), dl, Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003753 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003754 case ISD::CTPOP:
3755 Result = Tmp1;
3756 break;
3757 case ISD::CTTZ:
3758 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesenca57b842009-02-02 23:46:53 +00003759 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
3760 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003761 ISD::SETEQ);
Dale Johannesenca57b842009-02-02 23:46:53 +00003762 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003763 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003764 break;
3765 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003766 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesenca57b842009-02-02 23:46:53 +00003767 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003768 DAG.getConstant(NVT.getSizeInBits() -
3769 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003770 break;
3771 }
3772 break;
3773 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003774 case TargetLowering::Expand:
Dale Johannesen8a782a22009-02-02 22:12:50 +00003775 Result = ExpandBitCount(Node->getOpcode(), Tmp1, dl);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003776 break;
3777 }
3778 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003779
Chris Lattner2c8086f2005-04-02 05:00:07 +00003780 // Unary operators
3781 case ISD::FABS:
3782 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003783 case ISD::FSQRT:
3784 case ISD::FSIN:
3785 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003786 case ISD::FLOG:
3787 case ISD::FLOG2:
3788 case ISD::FLOG10:
3789 case ISD::FEXP:
3790 case ISD::FEXP2:
Dan Gohman509e84f2008-08-21 17:55:02 +00003791 case ISD::FTRUNC:
3792 case ISD::FFLOOR:
3793 case ISD::FCEIL:
3794 case ISD::FRINT:
3795 case ISD::FNEARBYINT:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003796 Tmp1 = LegalizeOp(Node->getOperand(0));
3797 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003798 case TargetLowering::Promote:
3799 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003800 isCustom = true;
3801 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003802 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003803 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003804 if (isCustom) {
3805 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003806 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng59ad7812006-01-31 18:14:25 +00003807 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003808 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003809 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003810 switch (Node->getOpcode()) {
3811 default: assert(0 && "Unreachable!");
3812 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003813 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3814 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00003815 Result = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003816 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003817 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003818 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003819 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003820 Tmp2 = DAG.getConstantFP(0.0, VT);
Dale Johannesenca57b842009-02-02 23:46:53 +00003821 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00003822 Tmp1, Tmp2, ISD::SETUGT);
Dale Johannesenca57b842009-02-02 23:46:53 +00003823 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3824 Result = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003825 break;
3826 }
Evan Cheng9d24ac52008-09-09 23:35:53 +00003827 case ISD::FSQRT:
3828 case ISD::FSIN:
Scott Michelfdc40a02009-02-17 22:15:04 +00003829 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003830 case ISD::FLOG:
3831 case ISD::FLOG2:
3832 case ISD::FLOG10:
3833 case ISD::FEXP:
3834 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003835 case ISD::FTRUNC:
3836 case ISD::FFLOOR:
3837 case ISD::FCEIL:
3838 case ISD::FRINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00003839 case ISD::FNEARBYINT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003840 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003841
3842 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003843 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003844 Result = LegalizeOp(UnrollVectorOp(Op));
3845 break;
3846 }
3847
Evan Cheng56966222007-01-12 02:11:51 +00003848 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003849 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003850 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003851 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3852 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003853 break;
3854 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003855 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3856 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003857 break;
3858 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003859 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3860 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003861 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003862 case ISD::FLOG:
3863 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3864 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3865 break;
3866 case ISD::FLOG2:
3867 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3868 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3869 break;
3870 case ISD::FLOG10:
3871 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3872 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3873 break;
3874 case ISD::FEXP:
3875 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3876 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3877 break;
3878 case ISD::FEXP2:
3879 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3880 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3881 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003882 case ISD::FTRUNC:
3883 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3884 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3885 break;
3886 case ISD::FFLOOR:
3887 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3888 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3889 break;
3890 case ISD::FCEIL:
3891 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3892 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3893 break;
3894 case ISD::FRINT:
3895 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3896 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3897 break;
3898 case ISD::FNEARBYINT:
3899 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3900 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3901 break;
Evan Cheng9d24ac52008-09-09 23:35:53 +00003902 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003903 default: assert(0 && "Unreachable!");
3904 }
Dan Gohman475871a2008-07-27 21:46:04 +00003905 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003906 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003907 break;
3908 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003909 }
3910 break;
3911 }
3912 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003913 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003914 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003915
3916 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003917 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003918 Result = LegalizeOp(UnrollVectorOp(Op));
3919 break;
3920 }
3921
3922 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003923 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3924 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003925 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003926 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003927 break;
3928 }
Chris Lattner35481892005-12-23 00:16:34 +00003929 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003930 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003931 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00003932 Node->getValueType(0), dl);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003933 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003934 // The input has to be a vector type, we have to either scalarize it, pack
3935 // it, or convert it based on whether the input vector type is legal.
Gabor Greifba36cb52008-08-28 21:40:38 +00003936 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00003937 int InIx = Node->getOperand(0).getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003938 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3939 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003940
Dan Gohman7f321562007-06-25 16:23:39 +00003941 // Figure out if there is a simple type corresponding to this Vector
3942 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003943 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003944 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003945 // Turn this into a bit convert of the vector input.
Scott Michelfdc40a02009-02-17 22:15:04 +00003946 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohman7f321562007-06-25 16:23:39 +00003947 LegalizeOp(Node->getOperand(0)));
3948 break;
3949 } else if (NumElems == 1) {
3950 // Turn this into a bit convert of the scalar input.
Scott Michelfdc40a02009-02-17 22:15:04 +00003951 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohman7f321562007-06-25 16:23:39 +00003952 ScalarizeVectorOp(Node->getOperand(0)));
3953 break;
3954 } else {
3955 // FIXME: UNIMP! Store then reload
3956 assert(0 && "Cast from unsupported vector type not implemented yet!");
3957 }
Chris Lattner67993f72006-01-23 07:30:46 +00003958 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003959 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3960 Node->getOperand(0).getValueType())) {
3961 default: assert(0 && "Unknown operation action!");
3962 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003963 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00003964 Node->getValueType(0), dl);
Chris Lattner35481892005-12-23 00:16:34 +00003965 break;
3966 case TargetLowering::Legal:
3967 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003968 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003969 break;
3970 }
3971 }
3972 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00003973 case ISD::CONVERT_RNDSAT: {
3974 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
3975 switch (CvtCode) {
3976 default: assert(0 && "Unknown cvt code!");
3977 case ISD::CVT_SF:
3978 case ISD::CVT_UF:
Mon P Wang77cdf302008-11-10 20:54:11 +00003979 case ISD::CVT_FF:
Mon P Wang1cd46bb2008-12-09 07:27:39 +00003980 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00003981 case ISD::CVT_FS:
3982 case ISD::CVT_FU:
3983 case ISD::CVT_SS:
3984 case ISD::CVT_SU:
3985 case ISD::CVT_US:
3986 case ISD::CVT_UU: {
3987 SDValue DTyOp = Node->getOperand(1);
3988 SDValue STyOp = Node->getOperand(2);
3989 SDValue RndOp = Node->getOperand(3);
3990 SDValue SatOp = Node->getOperand(4);
3991 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3992 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3993 case Legal:
3994 Tmp1 = LegalizeOp(Node->getOperand(0));
3995 Result = DAG.UpdateNodeOperands(Result, Tmp1, DTyOp, STyOp,
3996 RndOp, SatOp);
3997 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3998 TargetLowering::Custom) {
3999 Tmp1 = TLI.LowerOperation(Result, DAG);
4000 if (Tmp1.getNode()) Result = Tmp1;
4001 }
4002 break;
4003 case Promote:
4004 Result = PromoteOp(Node->getOperand(0));
4005 // For FP, make Op1 a i32
Scott Michelfdc40a02009-02-17 22:15:04 +00004006
Dale Johannesenc460ae92009-02-04 00:13:36 +00004007 Result = DAG.getConvertRndSat(Op.getValueType(), dl, Result,
Mon P Wang77cdf302008-11-10 20:54:11 +00004008 DTyOp, STyOp, RndOp, SatOp, CvtCode);
4009 break;
4010 }
4011 break;
4012 }
4013 } // end switch CvtCode
4014 break;
4015 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00004016 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00004017 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004018 case ISD::UINT_TO_FP: {
4019 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman7f8613e2008-08-14 20:04:46 +00004020 Result = LegalizeINT_TO_FP(Result, isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00004021 Node->getValueType(0), Node->getOperand(0), dl);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004022 break;
4023 }
4024 case ISD::TRUNCATE:
4025 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4026 case Legal:
4027 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel546d7b52008-12-02 19:55:08 +00004028 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
4029 default: assert(0 && "Unknown TRUNCATE legalization operation action!");
4030 case TargetLowering::Custom:
Mon P Wangf67303d2008-12-11 00:44:22 +00004031 isCustom = true;
4032 // FALLTHROUGH
Scott Michel546d7b52008-12-02 19:55:08 +00004033 case TargetLowering::Legal:
Mon P Wangf67303d2008-12-11 00:44:22 +00004034 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4035 if (isCustom) {
4036 Tmp1 = TLI.LowerOperation(Result, DAG);
4037 if (Tmp1.getNode()) Result = Tmp1;
4038 }
4039 break;
Mon P Wang9e5ecb82008-12-12 01:25:51 +00004040 case TargetLowering::Expand:
4041 assert(Result.getValueType().isVector() && "must be vector type");
4042 // Unroll the truncate. We should do better.
4043 Result = LegalizeOp(UnrollVectorOp(Result));
Tilmann Schellerb0a5cdd2008-12-02 12:12:25 +00004044 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004045 break;
4046 case Expand:
4047 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4048
4049 // Since the result is legal, we should just be able to truncate the low
4050 // part of the source.
Dale Johannesenca57b842009-02-02 23:46:53 +00004051 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004052 break;
4053 case Promote:
4054 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004055 Result = DAG.getNode(ISD::TRUNCATE, dl, Op.getValueType(), Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004056 break;
4057 }
4058 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004059
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004060 case ISD::FP_TO_SINT:
4061 case ISD::FP_TO_UINT:
4062 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4063 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00004064 Tmp1 = LegalizeOp(Node->getOperand(0));
4065
Chris Lattner1618beb2005-07-29 00:11:56 +00004066 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
4067 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004068 case TargetLowering::Custom:
4069 isCustom = true;
4070 // FALLTHROUGH
4071 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004072 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004073 if (isCustom) {
4074 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004075 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00004076 }
4077 break;
4078 case TargetLowering::Promote:
4079 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00004080 Node->getOpcode() == ISD::FP_TO_SINT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004081 dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00004082 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00004083 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00004084 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman475871a2008-07-27 21:46:04 +00004085 SDValue True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004086 MVT VT = Node->getOperand(0).getValueType();
4087 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00004088 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00004089 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
4090 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004091 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00004092 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004093 Tmp3 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
Dale Johannesenaf435272009-02-02 19:03:57 +00004094 Node->getOperand(0),
Duncan Sands5480c042009-01-01 15:52:00 +00004095 Tmp2, ISD::SETLT);
Dale Johannesenaf435272009-02-02 19:03:57 +00004096 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
4097 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004098 DAG.getNode(ISD::FSUB, dl, VT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004099 Node->getOperand(0), Tmp2));
4100 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004101 DAG.getConstant(x, NVT));
Dale Johannesenaf435272009-02-02 19:03:57 +00004102 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp3, True, False);
Chris Lattner456a93a2006-01-28 07:39:30 +00004103 break;
Nate Begemand2558e32005-08-14 01:20:53 +00004104 } else {
4105 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
4106 }
4107 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00004108 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004109 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00004110 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004111 MVT VT = Op.getValueType();
4112 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004113 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004114 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004115 if (Node->getOpcode() == ISD::FP_TO_SINT) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004116 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, MVT::ppcf128,
Chris Lattner0bd48932008-01-17 07:00:52 +00004117 Node->getOperand(0), DAG.getValueType(MVT::f64));
Scott Michelfdc40a02009-02-17 22:15:04 +00004118 Result = DAG.getNode(ISD::FP_ROUND, dl, MVT::f64, Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00004119 DAG.getIntPtrConstant(1));
Dale Johannesenaf435272009-02-02 19:03:57 +00004120 Result = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004121 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004122 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
4123 APFloat apf = APFloat(APInt(128, 2, TwoE31));
4124 Tmp2 = DAG.getConstantFP(apf, OVT);
4125 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
4126 // FIXME: generated code sucks.
Scott Michelfdc40a02009-02-17 22:15:04 +00004127 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Node->getOperand(0),
Dale Johannesenaf435272009-02-02 19:03:57 +00004128 Tmp2,
4129 DAG.getNode(ISD::ADD, dl, MVT::i32,
4130 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
4131 DAG.getNode(ISD::FSUB, dl, OVT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004132 Node->getOperand(0), Tmp2)),
4133 DAG.getConstant(0x80000000, MVT::i32)),
Scott Michelfdc40a02009-02-17 22:15:04 +00004134 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004135 Node->getOperand(0)),
4136 DAG.getCondCode(ISD::SETGE));
4137 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004138 break;
4139 }
Dan Gohmana2e94852008-03-10 23:03:31 +00004140 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsb2ff8852008-07-17 02:36:29 +00004141 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
4142 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
4143 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman475871a2008-07-27 21:46:04 +00004144 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00004145 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00004146 break;
4147 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004148 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004149 Tmp1 = PromoteOp(Node->getOperand(0));
4150 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
4151 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004152 break;
4153 }
4154 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004155
Chris Lattnerf2670a82008-01-16 06:57:07 +00004156 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004157 MVT DstVT = Op.getValueType();
4158 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004159 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4160 // The only other way we can lower this is to turn it into a STORE,
4161 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen8a782a22009-02-02 22:12:50 +00004162 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT, dl);
Chris Lattner0bd48932008-01-17 07:00:52 +00004163 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00004164 }
4165 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4166 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4167 case Legal:
4168 Tmp1 = LegalizeOp(Node->getOperand(0));
4169 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4170 break;
4171 case Promote:
4172 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004173 Result = DAG.getNode(ISD::FP_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattnerf2670a82008-01-16 06:57:07 +00004174 break;
4175 }
4176 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004177 }
Dale Johannesen5411a392007-08-09 01:04:01 +00004178 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004179 MVT DstVT = Op.getValueType();
4180 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004181 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4182 if (SrcVT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00004183 SDValue Lo;
Dale Johannesen713ed3f2008-01-20 01:18:38 +00004184 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004185 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00004186 if (DstVT!=MVT::f64)
Dale Johannesenca57b842009-02-02 23:46:53 +00004187 Result = DAG.getNode(ISD::FP_ROUND, dl,
4188 DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00004189 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00004190 }
Chris Lattner0bd48932008-01-17 07:00:52 +00004191 // The only other way we can lower this is to turn it into a STORE,
4192 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen8a782a22009-02-02 22:12:50 +00004193 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT, dl);
Chris Lattner0bd48932008-01-17 07:00:52 +00004194 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00004195 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00004196 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4197 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4198 case Legal:
4199 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00004200 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004201 break;
4202 case Promote:
4203 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004204 Result = DAG.getNode(ISD::FP_ROUND, dl, Op.getValueType(), Tmp1,
Chris Lattner0bd48932008-01-17 07:00:52 +00004205 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004206 break;
4207 }
4208 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004209 }
Chris Lattner13c78e22005-09-02 00:18:10 +00004210 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004211 case ISD::ZERO_EXTEND:
4212 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004213 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00004214 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004215 case Legal:
4216 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00004217 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00004218 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4219 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00004220 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004221 if (Tmp1.getNode()) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00004222 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004223 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004224 case Promote:
4225 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00004226 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004227 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004228 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00004229 break;
Chris Lattner1713e732005-01-16 00:38:00 +00004230 case ISD::ZERO_EXTEND:
4231 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004232 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4233 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004234 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00004235 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004236 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00004237 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004238 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4239 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004240 Result,
4241 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00004242 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004243 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004244 }
4245 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00004246 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00004247 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00004248 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004249 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00004250
4251 // If this operation is not supported, convert it to a shl/shr or load/store
4252 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004253 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
4254 default: assert(0 && "This action not supported for this op yet!");
4255 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004256 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004257 break;
4258 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00004259 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00004260 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00004261 // NOTE: we could fall back on load/store here too for targets without
4262 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004263 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
4264 ExtraVT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00004265 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Dale Johannesenca57b842009-02-02 23:46:53 +00004266 Result = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
Chris Lattner45b8caf2005-01-15 07:15:18 +00004267 Node->getOperand(0), ShiftCst);
Dale Johannesenca57b842009-02-02 23:46:53 +00004268 Result = DAG.getNode(ISD::SRA, dl, Node->getValueType(0),
Chris Lattner45b8caf2005-01-15 07:15:18 +00004269 Result, ShiftCst);
4270 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00004271 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00004272 // EXTLOAD pair, targetting a temporary location (a stack slot).
4273
4274 // NOTE: there is a choice here between constantly creating new stack
4275 // slots and always reusing the same one. We currently always create
4276 // new ones, as reuse may inhibit scheduling.
Scott Michelfdc40a02009-02-17 22:15:04 +00004277 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00004278 Node->getValueType(0), dl);
Chris Lattner45b8caf2005-01-15 07:15:18 +00004279 } else {
4280 assert(0 && "Unknown op");
4281 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004282 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00004283 }
Chris Lattner0f69b292005-01-15 06:18:18 +00004284 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004285 }
Duncan Sands36397f52007-07-27 12:58:54 +00004286 case ISD::TRAMPOLINE: {
Dan Gohman475871a2008-07-27 21:46:04 +00004287 SDValue Ops[6];
Duncan Sands36397f52007-07-27 12:58:54 +00004288 for (unsigned i = 0; i != 6; ++i)
4289 Ops[i] = LegalizeOp(Node->getOperand(i));
4290 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
4291 // The only option for this node is to custom lower it.
4292 Result = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004293 assert(Result.getNode() && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00004294
4295 // Since trampoline produces two values, make sure to remember that we
4296 // legalized both of them.
4297 Tmp1 = LegalizeOp(Result.getValue(1));
4298 Result = LegalizeOp(Result);
Dan Gohman475871a2008-07-27 21:46:04 +00004299 AddLegalizedOperand(SDValue(Node, 0), Result);
4300 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00004301 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00004302 }
Dan Gohman9c78a392008-05-14 00:43:10 +00004303 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004304 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004305 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4306 default: assert(0 && "This action not supported for this op yet!");
4307 case TargetLowering::Custom:
4308 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004309 if (Result.getNode()) break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004310 // Fall Thru
4311 case TargetLowering::Legal:
4312 // If this operation is not supported, lower it to constant 1
4313 Result = DAG.getConstant(1, VT);
4314 break;
4315 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00004316 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004317 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004318 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004319 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004320 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4321 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00004322 case TargetLowering::Legal:
4323 Tmp1 = LegalizeOp(Node->getOperand(0));
4324 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4325 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004326 case TargetLowering::Custom:
4327 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004328 if (Result.getNode()) break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004329 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00004330 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004331 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00004332 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004333 TargetLowering::ArgListTy Args;
Bob Wilsonec15bbf2009-04-10 18:48:47 +00004334 std::pair<SDValue, SDValue> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00004335 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00004336 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00004337 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Dale Johannesen7d2ad622009-01-30 23:10:59 +00004338 Args, DAG, dl);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004339 Result = CallResult.second;
4340 break;
4341 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004342 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004343 }
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004344
Bill Wendling74c37652008-12-09 22:08:41 +00004345 case ISD::SADDO:
4346 case ISD::SSUBO: {
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004347 MVT VT = Node->getValueType(0);
4348 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4349 default: assert(0 && "This action not supported for this op yet!");
4350 case TargetLowering::Custom:
4351 Result = TLI.LowerOperation(Op, DAG);
4352 if (Result.getNode()) break;
4353 // FALLTHROUGH
4354 case TargetLowering::Legal: {
4355 SDValue LHS = LegalizeOp(Node->getOperand(0));
4356 SDValue RHS = LegalizeOp(Node->getOperand(1));
4357
Scott Michelfdc40a02009-02-17 22:15:04 +00004358 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
Dale Johannesenca57b842009-02-02 23:46:53 +00004359 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling74c37652008-12-09 22:08:41 +00004360 LHS, RHS);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004361 MVT OType = Node->getValueType(1);
4362
Bill Wendlinga6af91a2008-11-25 08:19:22 +00004363 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004364
Bill Wendling740464e2008-11-25 19:40:17 +00004365 // LHSSign -> LHS >= 0
4366 // RHSSign -> RHS >= 0
4367 // SumSign -> Sum >= 0
4368 //
Bill Wendling74c37652008-12-09 22:08:41 +00004369 // Add:
Bill Wendling740464e2008-11-25 19:40:17 +00004370 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
Bill Wendling74c37652008-12-09 22:08:41 +00004371 // Sub:
4372 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
Bill Wendling740464e2008-11-25 19:40:17 +00004373 //
Dale Johannesenca57b842009-02-02 23:46:53 +00004374 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
4375 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
Scott Michelfdc40a02009-02-17 22:15:04 +00004376 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
4377 Node->getOpcode() == ISD::SADDO ?
Bill Wendling74c37652008-12-09 22:08:41 +00004378 ISD::SETEQ : ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004379
Dale Johannesenca57b842009-02-02 23:46:53 +00004380 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
4381 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004382
Dale Johannesenca57b842009-02-02 23:46:53 +00004383 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004384
4385 MVT ValueVTs[] = { LHS.getValueType(), OType };
4386 SDValue Ops[] = { Sum, Cmp };
4387
Scott Michelfdc40a02009-02-17 22:15:04 +00004388 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00004389 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004390 &Ops[0], 2);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004391 SDNode *RNode = Result.getNode();
Dan Gohmanc23e4962009-04-15 20:06:30 +00004392 DAG.ReplaceAllUsesWith(Node, RNode);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004393 break;
4394 }
4395 }
4396
4397 break;
4398 }
Bill Wendling74c37652008-12-09 22:08:41 +00004399 case ISD::UADDO:
4400 case ISD::USUBO: {
Bill Wendling41ea7e72008-11-24 19:21:46 +00004401 MVT VT = Node->getValueType(0);
4402 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4403 default: assert(0 && "This action not supported for this op yet!");
4404 case TargetLowering::Custom:
4405 Result = TLI.LowerOperation(Op, DAG);
4406 if (Result.getNode()) break;
4407 // FALLTHROUGH
4408 case TargetLowering::Legal: {
4409 SDValue LHS = LegalizeOp(Node->getOperand(0));
4410 SDValue RHS = LegalizeOp(Node->getOperand(1));
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004411
Bill Wendling74c37652008-12-09 22:08:41 +00004412 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
Dale Johannesenca57b842009-02-02 23:46:53 +00004413 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling74c37652008-12-09 22:08:41 +00004414 LHS, RHS);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004415 MVT OType = Node->getValueType(1);
Dale Johannesenca57b842009-02-02 23:46:53 +00004416 SDValue Cmp = DAG.getSetCC(dl, OType, Sum, LHS,
Scott Michelfdc40a02009-02-17 22:15:04 +00004417 Node->getOpcode () == ISD::UADDO ?
Bill Wendling74c37652008-12-09 22:08:41 +00004418 ISD::SETULT : ISD::SETUGT);
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004419
Bill Wendling41ea7e72008-11-24 19:21:46 +00004420 MVT ValueVTs[] = { LHS.getValueType(), OType };
4421 SDValue Ops[] = { Sum, Cmp };
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004422
Scott Michelfdc40a02009-02-17 22:15:04 +00004423 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00004424 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004425 &Ops[0], 2);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004426 SDNode *RNode = Result.getNode();
Dan Gohmanc23e4962009-04-15 20:06:30 +00004427 DAG.ReplaceAllUsesWith(Node, RNode);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004428 break;
4429 }
4430 }
4431
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004432 break;
4433 }
Bill Wendling74c37652008-12-09 22:08:41 +00004434 case ISD::SMULO:
4435 case ISD::UMULO: {
4436 MVT VT = Node->getValueType(0);
4437 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4438 default: assert(0 && "This action is not supported at all!");
4439 case TargetLowering::Custom:
4440 Result = TLI.LowerOperation(Op, DAG);
4441 if (Result.getNode()) break;
4442 // Fall Thru
4443 case TargetLowering::Legal:
4444 // FIXME: According to Hacker's Delight, this can be implemented in
4445 // target independent lowering, but it would be inefficient, since it
Bill Wendlingbc5e15e2008-12-10 02:01:32 +00004446 // requires a division + a branch.
Scott Michelfdc40a02009-02-17 22:15:04 +00004447 assert(0 && "Target independent lowering is not supported for SMULO/UMULO!");
Bill Wendling74c37652008-12-09 22:08:41 +00004448 break;
4449 }
4450 break;
4451 }
4452
Chris Lattner45b8caf2005-01-15 07:15:18 +00004453 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004454
Chris Lattner4ddd2832006-04-08 04:13:17 +00004455 assert(Result.getValueType() == Op.getValueType() &&
4456 "Bad legalization!");
Scott Michelfdc40a02009-02-17 22:15:04 +00004457
Chris Lattner456a93a2006-01-28 07:39:30 +00004458 // Make sure that the generated code is itself legal.
4459 if (Result != Op)
4460 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004461
Chris Lattner45982da2005-05-12 16:53:42 +00004462 // Note that LegalizeOp may be reentered even from single-use nodes, which
4463 // means that we always must cache transformed nodes.
4464 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004465 return Result;
4466}
4467
Chris Lattner8b6fa222005-01-15 22:16:26 +00004468/// PromoteOp - Given an operation that produces a value in an invalid type,
4469/// promote it to compute the value into a larger type. The produced value will
4470/// have the correct bits for the low portion of the register, but no guarantee
4471/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman475871a2008-07-27 21:46:04 +00004472SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004473 MVT VT = Op.getValueType();
4474 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004475 assert(getTypeAction(VT) == Promote &&
4476 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004477 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004478 "Cannot promote to smaller type!");
4479
Dan Gohman475871a2008-07-27 21:46:04 +00004480 SDValue Tmp1, Tmp2, Tmp3;
4481 SDValue Result;
Gabor Greifba36cb52008-08-28 21:40:38 +00004482 SDNode *Node = Op.getNode();
Dale Johannesen8a782a22009-02-02 22:12:50 +00004483 DebugLoc dl = Node->getDebugLoc();
Chris Lattner03c85462005-01-15 05:21:40 +00004484
Dan Gohman475871a2008-07-27 21:46:04 +00004485 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004486 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004487
Chris Lattner03c85462005-01-15 05:21:40 +00004488 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004489 case ISD::CopyFromReg:
4490 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004491 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004492#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004493 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004494#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004495 assert(0 && "Do not know how to promote this operator!");
4496 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004497 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00004498 Result = DAG.getUNDEF(NVT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004499 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004500 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004501 if (VT != MVT::i1)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004502 Result = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Op);
Chris Lattnerec176e32005-08-30 16:56:19 +00004503 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00004504 Result = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004505 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4506 break;
4507 case ISD::ConstantFP:
Dale Johannesen8a782a22009-02-02 22:12:50 +00004508 Result = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004509 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4510 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004511
Duncan Sands5480c042009-01-01 15:52:00 +00004512 case ISD::SETCC: {
4513 MVT VT0 = Node->getOperand(0).getValueType();
4514 assert(isTypeLegal(TLI.getSetCCResultType(VT0))
Nate Begeman5922f562008-03-14 00:53:31 +00004515 && "SetCC type is not legal??");
Dale Johannesen8a782a22009-02-02 22:12:50 +00004516 Result = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(VT0),
Nate Begeman5922f562008-03-14 00:53:31 +00004517 Node->getOperand(0), Node->getOperand(1),
4518 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004519 break;
Duncan Sands5480c042009-01-01 15:52:00 +00004520 }
Chris Lattner03c85462005-01-15 05:21:40 +00004521 case ISD::TRUNCATE:
4522 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4523 case Legal:
4524 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004525 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004526 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004527 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Dale Johannesen8a782a22009-02-02 22:12:50 +00004528 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Result);
Chris Lattner03c85462005-01-15 05:21:40 +00004529 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004530 case Promote:
4531 // The truncation is not required, because we don't guarantee anything
4532 // about high bits anyway.
4533 Result = PromoteOp(Node->getOperand(0));
4534 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004535 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004536 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4537 // Truncate the low part of the expanded value to the result type
Dale Johannesen8a782a22009-02-02 22:12:50 +00004538 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004539 }
4540 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004541 case ISD::SIGN_EXTEND:
4542 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004543 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004544 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4545 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4546 case Legal:
4547 // Input is legal? Just do extend all the way to the larger type.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004548 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004549 break;
4550 case Promote:
4551 // Promote the reg if it's smaller.
4552 Result = PromoteOp(Node->getOperand(0));
4553 // The high bits are not guaranteed to be anything. Insert an extend.
4554 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004555 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004556 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004557 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004558 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004559 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004560 break;
4561 }
4562 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004563 case ISD::CONVERT_RNDSAT: {
4564 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4565 assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
4566 CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
4567 CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) &&
4568 "can only promote integers");
Dale Johannesenc460ae92009-02-04 00:13:36 +00004569 Result = DAG.getConvertRndSat(NVT, dl, Node->getOperand(0),
Mon P Wang77cdf302008-11-10 20:54:11 +00004570 Node->getOperand(1), Node->getOperand(2),
4571 Node->getOperand(3), Node->getOperand(4),
4572 CvtCode);
4573 break;
4574
4575 }
Chris Lattner35481892005-12-23 00:16:34 +00004576 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004577 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00004578 Node->getValueType(0), dl);
Chris Lattner35481892005-12-23 00:16:34 +00004579 Result = PromoteOp(Result);
4580 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00004581
Chris Lattner8b6fa222005-01-15 22:16:26 +00004582 case ISD::FP_EXTEND:
4583 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4584 case ISD::FP_ROUND:
4585 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4586 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4587 case Promote: assert(0 && "Unreachable with 2 FP types!");
4588 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004589 if (Node->getConstantOperandVal(1) == 0) {
4590 // Input is legal? Do an FP_ROUND_INREG.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004591 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Node->getOperand(0),
Chris Lattner0bd48932008-01-17 07:00:52 +00004592 DAG.getValueType(VT));
4593 } else {
4594 // Just remove the truncate, it isn't affecting the value.
Scott Michelfdc40a02009-02-17 22:15:04 +00004595 Result = DAG.getNode(ISD::FP_ROUND, dl, NVT, Node->getOperand(0),
Chris Lattner0bd48932008-01-17 07:00:52 +00004596 Node->getOperand(1));
4597 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004598 break;
4599 }
4600 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004601 case ISD::SINT_TO_FP:
4602 case ISD::UINT_TO_FP:
4603 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4604 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004605 // No extra round required here.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004606 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004607 break;
4608
4609 case Promote:
4610 Result = PromoteOp(Node->getOperand(0));
4611 if (Node->getOpcode() == ISD::SINT_TO_FP)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004612 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004613 Result,
4614 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004615 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00004616 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004617 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004618 // No extra round required here.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004619 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004620 break;
4621 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004622 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00004623 Node->getOperand(0), dl);
Chris Lattner77e77a62005-01-21 06:05:23 +00004624 // Round if we cannot tolerate excess precision.
4625 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004626 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004627 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004628 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004629 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004630 break;
4631
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004632 case ISD::SIGN_EXTEND_INREG:
4633 Result = PromoteOp(Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004634 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004635 Node->getOperand(1));
4636 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004637 case ISD::FP_TO_SINT:
4638 case ISD::FP_TO_UINT:
4639 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4640 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004641 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004642 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004643 break;
4644 case Promote:
4645 // The input result is prerounded, so we don't have to do anything
4646 // special.
4647 Tmp1 = PromoteOp(Node->getOperand(0));
4648 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004649 }
Nate Begemand2558e32005-08-14 01:20:53 +00004650 // If we're promoting a UINT to a larger size, check to see if the new node
4651 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4652 // we can use that instead. This allows us to generate better code for
4653 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4654 // legal, such as PowerPC.
Scott Michelfdc40a02009-02-17 22:15:04 +00004655 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00004656 !TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NVT) &&
4657 (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT) ||
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004658 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Dale Johannesen8a782a22009-02-02 22:12:50 +00004659 Result = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Tmp1);
Nate Begemand2558e32005-08-14 01:20:53 +00004660 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00004661 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Nate Begemand2558e32005-08-14 01:20:53 +00004662 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004663 break;
4664
Chris Lattner2c8086f2005-04-02 05:00:07 +00004665 case ISD::FABS:
4666 case ISD::FNEG:
4667 Tmp1 = PromoteOp(Node->getOperand(0));
4668 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004669 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner2c8086f2005-04-02 05:00:07 +00004670 // NOTE: we do not have to do any extra rounding here for
4671 // NoExcessFPPrecision, because we know the input will have the appropriate
4672 // precision, and these operations don't modify precision at all.
4673 break;
4674
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004675 case ISD::FLOG:
4676 case ISD::FLOG2:
4677 case ISD::FLOG10:
4678 case ISD::FEXP:
4679 case ISD::FEXP2:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004680 case ISD::FSQRT:
4681 case ISD::FSIN:
4682 case ISD::FCOS:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00004683 case ISD::FTRUNC:
4684 case ISD::FFLOOR:
4685 case ISD::FCEIL:
4686 case ISD::FRINT:
4687 case ISD::FNEARBYINT:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004688 Tmp1 = PromoteOp(Node->getOperand(0));
4689 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004690 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004691 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004692 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004693 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004694 break;
4695
Evan Cheng9d24ac52008-09-09 23:35:53 +00004696 case ISD::FPOW:
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004697 case ISD::FPOWI: {
Evan Cheng9d24ac52008-09-09 23:35:53 +00004698 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004699 // directly as well, which may be better.
4700 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng9d24ac52008-09-09 23:35:53 +00004701 Tmp2 = Node->getOperand(1);
4702 if (Node->getOpcode() == ISD::FPOW)
4703 Tmp2 = PromoteOp(Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004704 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004705 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004706 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004707 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004708 DAG.getValueType(VT));
4709 break;
4710 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004711
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004712 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004713 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004714 Tmp2 = PromoteOp(Node->getOperand(2));
4715 Tmp3 = PromoteOp(Node->getOperand(3));
Scott Michelfdc40a02009-02-17 22:15:04 +00004716 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
4717 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004718 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004719 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004720 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004721 // Remember that we legalized the chain.
4722 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4723 break;
4724 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004725 case ISD::ATOMIC_LOAD_ADD:
4726 case ISD::ATOMIC_LOAD_SUB:
4727 case ISD::ATOMIC_LOAD_AND:
4728 case ISD::ATOMIC_LOAD_OR:
4729 case ISD::ATOMIC_LOAD_XOR:
4730 case ISD::ATOMIC_LOAD_NAND:
4731 case ISD::ATOMIC_LOAD_MIN:
4732 case ISD::ATOMIC_LOAD_MAX:
4733 case ISD::ATOMIC_LOAD_UMIN:
4734 case ISD::ATOMIC_LOAD_UMAX:
4735 case ISD::ATOMIC_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004736 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004737 Tmp2 = PromoteOp(Node->getOperand(2));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004738 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00004739 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004740 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004741 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004742 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004743 // Remember that we legalized the chain.
4744 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4745 break;
4746 }
4747
Chris Lattner03c85462005-01-15 05:21:40 +00004748 case ISD::AND:
4749 case ISD::OR:
4750 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004751 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004752 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004753 case ISD::MUL:
4754 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004755 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004756 // that too is okay if they are integer operations.
4757 Tmp1 = PromoteOp(Node->getOperand(0));
4758 Tmp2 = PromoteOp(Node->getOperand(1));
4759 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004760 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004761 break;
4762 case ISD::FADD:
4763 case ISD::FSUB:
4764 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004765 Tmp1 = PromoteOp(Node->getOperand(0));
4766 Tmp2 = PromoteOp(Node->getOperand(1));
4767 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004768 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00004769
Chris Lattner01b3d732005-09-28 22:28:18 +00004770 // Floating point operations will give excess precision that we may not be
4771 // able to tolerate. If we DO allow excess precision, just leave it,
4772 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004773 // FIXME: Why would we need to round FP ops more than integer ones?
4774 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004775 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004776 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004777 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004778 break;
4779
Chris Lattner8b6fa222005-01-15 22:16:26 +00004780 case ISD::SDIV:
4781 case ISD::SREM:
4782 // These operators require that their input be sign extended.
4783 Tmp1 = PromoteOp(Node->getOperand(0));
4784 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004785 if (NVT.isInteger()) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00004786 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Chris Lattner15e4b012005-07-10 00:07:11 +00004787 DAG.getValueType(VT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004788 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Chris Lattner15e4b012005-07-10 00:07:11 +00004789 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004790 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00004791 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004792
4793 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004794 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004795 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004796 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004797 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004798 case ISD::FDIV:
4799 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004800 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004801 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004802 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004803 case Expand: assert(0 && "not implemented");
4804 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4805 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004806 }
4807 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004808 case Expand: assert(0 && "not implemented");
4809 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4810 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004811 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00004812 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00004813
Chris Lattner01b3d732005-09-28 22:28:18 +00004814 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004815 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004816 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner01b3d732005-09-28 22:28:18 +00004817 DAG.getValueType(VT));
4818 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004819
4820 case ISD::UDIV:
4821 case ISD::UREM:
4822 // These operators require that their input be zero extended.
4823 Tmp1 = PromoteOp(Node->getOperand(0));
4824 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004825 assert(NVT.isInteger() && "Operators don't apply to FP!");
Dale Johannesen8a782a22009-02-02 22:12:50 +00004826 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4827 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
4828 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004829 break;
4830
4831 case ISD::SHL:
4832 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004833 Result = DAG.getNode(ISD::SHL, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004834 break;
4835 case ISD::SRA:
4836 // The input value must be properly sign extended.
4837 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004838 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Chris Lattner15e4b012005-07-10 00:07:11 +00004839 DAG.getValueType(VT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004840 Result = DAG.getNode(ISD::SRA, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004841 break;
4842 case ISD::SRL:
4843 // The input value must be properly zero extended.
4844 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004845 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4846 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004847 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004848
4849 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004850 Tmp1 = Node->getOperand(0); // Get the chain.
4851 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004852 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00004853 Tmp3 = DAG.getVAArg(VT, dl, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004854 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004855 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004856 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenc460ae92009-02-04 00:13:36 +00004857 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004858 // Increment the pointer, VAList, to the next vaarg
Scott Michelfdc40a02009-02-17 22:15:04 +00004859 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004860 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004861 TLI.getPointerTy()));
4862 // Store the incremented VAList to the legalized pointer
Dale Johannesen8a782a22009-02-02 22:12:50 +00004863 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004864 // Load the actual argument out of the pointer VAList
Dale Johannesen8a782a22009-02-02 22:12:50 +00004865 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004866 }
4867 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004868 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004869 break;
4870
Evan Cheng466685d2006-10-09 20:57:25 +00004871 case ISD::LOAD: {
4872 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004873 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4874 ? ISD::EXTLOAD : LD->getExtensionType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00004875 Result = DAG.getExtLoad(ExtType, dl, NVT,
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004876 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004877 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004878 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004879 LD->isVolatile(),
4880 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004881 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004882 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004883 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004884 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004885 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004886 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4887 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004888
Duncan Sands83ec4b62008-06-06 12:08:01 +00004889 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004890 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004891 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4892 // Ensure that the resulting node is at least the same size as the operands'
4893 // value types, because we cannot assume that TLI.getSetCCValueType() is
4894 // constant.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004895 Result = DAG.getNode(ISD::SELECT, dl, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004896 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004897 }
Nate Begeman9373a812005-08-10 20:51:12 +00004898 case ISD::SELECT_CC:
4899 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4900 Tmp3 = PromoteOp(Node->getOperand(3)); // False
Dale Johannesen8a782a22009-02-02 22:12:50 +00004901 Result = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004902 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004903 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004904 case ISD::BSWAP:
4905 Tmp1 = Node->getOperand(0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004906 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
4907 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4908 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004909 DAG.getConstant(NVT.getSizeInBits() -
4910 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004911 TLI.getShiftAmountTy()));
4912 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004913 case ISD::CTPOP:
4914 case ISD::CTTZ:
4915 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004916 // Zero extend the argument
Dale Johannesen8a782a22009-02-02 22:12:50 +00004917 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004918 // Perform the larger operation, then subtract if needed.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004919 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004920 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004921 case ISD::CTPOP:
4922 Result = Tmp1;
4923 break;
4924 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004925 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004926 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004927 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004928 ISD::SETEQ);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004929 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004930 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004931 break;
4932 case ISD::CTLZ:
4933 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00004934 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004935 DAG.getConstant(NVT.getSizeInBits() -
4936 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004937 break;
4938 }
4939 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004940 case ISD::EXTRACT_SUBVECTOR:
4941 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004942 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004943 case ISD::EXTRACT_VECTOR_ELT:
4944 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4945 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004946 }
4947
Gabor Greifba36cb52008-08-28 21:40:38 +00004948 assert(Result.getNode() && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004949
4950 // Make sure the result is itself legal.
4951 Result = LegalizeOp(Result);
Scott Michelfdc40a02009-02-17 22:15:04 +00004952
Chris Lattner456a93a2006-01-28 07:39:30 +00004953 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004954 AddPromotedOperand(Op, Result);
4955 return Result;
4956}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004957
Dan Gohman7f321562007-06-25 16:23:39 +00004958/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4959/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4960/// based on the vector type. The return type of this matches the element type
4961/// of the vector, which may not be legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00004962SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004963 // We know that operand #0 is the Vec vector. If the index is a constant
4964 // or if the invec is a supported hardware type, we can use it. Otherwise,
4965 // lower to a store then an indexed load.
Dan Gohman475871a2008-07-27 21:46:04 +00004966 SDValue Vec = Op.getOperand(0);
4967 SDValue Idx = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004968 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00004969
Duncan Sands83ec4b62008-06-06 12:08:01 +00004970 MVT TVT = Vec.getValueType();
4971 unsigned NumElems = TVT.getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00004972
Dan Gohman7f321562007-06-25 16:23:39 +00004973 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4974 default: assert(0 && "This action is not supported yet!");
4975 case TargetLowering::Custom: {
4976 Vec = LegalizeOp(Vec);
4977 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004978 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004979 if (Tmp3.getNode())
Dan Gohman7f321562007-06-25 16:23:39 +00004980 return Tmp3;
4981 break;
4982 }
4983 case TargetLowering::Legal:
4984 if (isTypeLegal(TVT)) {
4985 Vec = LegalizeOp(Vec);
4986 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004987 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004988 }
4989 break;
Mon P Wang0c397192008-10-30 08:01:45 +00004990 case TargetLowering::Promote:
4991 assert(TVT.isVector() && "not vector type");
4992 // fall thru to expand since vectors are by default are promote
Dan Gohman7f321562007-06-25 16:23:39 +00004993 case TargetLowering::Expand:
4994 break;
4995 }
4996
4997 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004998 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004999 Op = ScalarizeVectorOp(Vec);
5000 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00005001 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00005002 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005003 SDValue Lo, Hi;
Chris Lattner15972212006-03-31 17:55:51 +00005004 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005005 if (CIdx->getZExtValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00005006 Vec = Lo;
5007 } else {
5008 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005009 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00005010 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00005011 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005012
Chris Lattner15972212006-03-31 17:55:51 +00005013 // It's now an extract from the appropriate high or low part. Recurse.
5014 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005015 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00005016 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00005017 // Store the value to a temporary stack slot, then LOAD the scalar
5018 // element back out.
Dan Gohman475871a2008-07-27 21:46:04 +00005019 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dale Johannesenbb5da912009-02-02 20:41:04 +00005020 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, NULL, 0);
Dan Gohman7f321562007-06-25 16:23:39 +00005021
5022 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005023 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +00005024 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Dan Gohman7f321562007-06-25 16:23:39 +00005025 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005026
Duncan Sands8e4eb092008-06-08 20:54:56 +00005027 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Dale Johannesenbb5da912009-02-02 20:41:04 +00005028 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005029 else
Dale Johannesenbb5da912009-02-02 20:41:04 +00005030 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005031
Dale Johannesenbb5da912009-02-02 20:41:04 +00005032 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
Dan Gohman7f321562007-06-25 16:23:39 +00005033
Dale Johannesenbb5da912009-02-02 20:41:04 +00005034 Op = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00005035 }
Dan Gohman7f321562007-06-25 16:23:39 +00005036 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00005037}
5038
Dan Gohman7f321562007-06-25 16:23:39 +00005039/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00005040/// we assume the operation can be split if it is not already legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005041SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohman65956352007-06-13 15:12:02 +00005042 // We know that operand #0 is the Vec vector. For now we assume the index
5043 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman475871a2008-07-27 21:46:04 +00005044 SDValue Vec = Op.getOperand(0);
5045 SDValue Idx = LegalizeOp(Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005046
Duncan Sands83ec4b62008-06-06 12:08:01 +00005047 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00005048
Duncan Sands83ec4b62008-06-06 12:08:01 +00005049 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00005050 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00005051 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00005052 }
5053
5054 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005055 SDValue Lo, Hi;
Dan Gohman65956352007-06-13 15:12:02 +00005056 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005057 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohman65956352007-06-13 15:12:02 +00005058 Vec = Lo;
5059 } else {
5060 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005061 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
5062 Idx.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00005063 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005064
Dan Gohman65956352007-06-13 15:12:02 +00005065 // It's now an extract from the appropriate high or low part. Recurse.
5066 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005067 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00005068}
5069
Nate Begeman750ac1b2006-02-01 07:19:44 +00005070/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
5071/// with condition CC on the current target. This usually involves legalizing
5072/// or promoting the arguments. In the case where LHS and RHS must be expanded,
5073/// there may be no choice but to create a new SetCC node to represent the
5074/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman475871a2008-07-27 21:46:04 +00005075/// LHS, and the SDValue returned in RHS has a nil SDNode value.
5076void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
5077 SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005078 SDValue &CC,
5079 DebugLoc dl) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005080 SDValue Tmp1, Tmp2, Tmp3, Result;
5081
Nate Begeman750ac1b2006-02-01 07:19:44 +00005082 switch (getTypeAction(LHS.getValueType())) {
5083 case Legal:
5084 Tmp1 = LegalizeOp(LHS); // LHS
5085 Tmp2 = LegalizeOp(RHS); // RHS
5086 break;
5087 case Promote:
5088 Tmp1 = PromoteOp(LHS); // LHS
5089 Tmp2 = PromoteOp(RHS); // RHS
5090
5091 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005092 if (LHS.getValueType().isInteger()) {
5093 MVT VT = LHS.getValueType();
5094 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005095
5096 // Otherwise, we have to insert explicit sign or zero extends. Note
5097 // that we could insert sign extends for ALL conditions, but zero extend
5098 // is cheaper on many machines (an AND instead of two shifts), so prefer
5099 // it.
5100 switch (cast<CondCodeSDNode>(CC)->get()) {
5101 default: assert(0 && "Unknown integer comparison!");
5102 case ISD::SETEQ:
5103 case ISD::SETNE:
5104 case ISD::SETUGE:
5105 case ISD::SETUGT:
5106 case ISD::SETULE:
5107 case ISD::SETULT:
5108 // ALL of these operations will work if we either sign or zero extend
5109 // the operands (including the unsigned comparisons!). Zero extend is
5110 // usually a simpler/cheaper operation, so prefer it.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005111 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
5112 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005113 break;
5114 case ISD::SETGE:
5115 case ISD::SETGT:
5116 case ISD::SETLT:
5117 case ISD::SETLE:
Dale Johannesenbb5da912009-02-02 20:41:04 +00005118 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005119 DAG.getValueType(VT));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005120 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005121 DAG.getValueType(VT));
Evan Chengefa53392008-10-13 18:46:18 +00005122 Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
5123 Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
Nate Begeman750ac1b2006-02-01 07:19:44 +00005124 break;
5125 }
5126 }
5127 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005128 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005129 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00005130 if (VT == MVT::f32 || VT == MVT::f64) {
5131 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00005132 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00005133 switch (cast<CondCodeSDNode>(CC)->get()) {
5134 case ISD::SETEQ:
5135 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00005136 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005137 break;
5138 case ISD::SETNE:
5139 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00005140 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005141 break;
5142 case ISD::SETGE:
5143 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00005144 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005145 break;
5146 case ISD::SETLT:
5147 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00005148 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005149 break;
5150 case ISD::SETLE:
5151 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00005152 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005153 break;
5154 case ISD::SETGT:
5155 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00005156 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005157 break;
5158 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00005159 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5160 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005161 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00005162 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005163 break;
5164 default:
Evan Cheng56966222007-01-12 02:11:51 +00005165 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005166 switch (cast<CondCodeSDNode>(CC)->get()) {
5167 case ISD::SETONE:
5168 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00005169 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005170 // Fallthrough
5171 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00005172 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005173 break;
5174 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00005175 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005176 break;
5177 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00005178 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005179 break;
5180 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00005181 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005182 break;
Evan Cheng56966222007-01-12 02:11:51 +00005183 case ISD::SETUEQ:
5184 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00005185 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005186 default: assert(0 && "Unsupported FP setcc!");
5187 }
5188 }
Duncan Sandsf9516202008-06-30 10:19:09 +00005189
Dan Gohman475871a2008-07-27 21:46:04 +00005190 SDValue Dummy;
5191 SDValue Ops[2] = { LHS, RHS };
Dale Johannesenbb5da912009-02-02 20:41:04 +00005192 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005193 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00005194 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00005195 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00005196 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Dale Johannesenbb5da912009-02-02 20:41:04 +00005197 Tmp1 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005198 TLI.getSetCCResultType(Tmp1.getValueType()),
5199 Tmp1, Tmp2, CC);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005200 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005201 false /*sign irrelevant*/, Dummy);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005202 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005203 TLI.getSetCCResultType(LHS.getValueType()), LHS,
5204 Tmp2, DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005205 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman475871a2008-07-27 21:46:04 +00005206 Tmp2 = SDValue();
Evan Cheng2b49c502006-12-15 02:59:56 +00005207 }
Evan Cheng21cacc42008-07-07 07:18:09 +00005208 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00005209 RHS = Tmp2;
5210 return;
5211 }
5212
Dan Gohman475871a2008-07-27 21:46:04 +00005213 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Nate Begeman750ac1b2006-02-01 07:19:44 +00005214 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00005215 ExpandOp(RHS, RHSLo, RHSHi);
5216 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5217
5218 if (VT==MVT::ppcf128) {
5219 // FIXME: This generated code sucks. We want to generate
Dale Johannesene2f20832008-09-12 00:30:56 +00005220 // FCMPU crN, hi1, hi2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005221 // BNE crN, L:
Dale Johannesene2f20832008-09-12 00:30:56 +00005222 // FCMPU crN, lo1, lo2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005223 // The following can be improved, but not that much.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005224 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005225 LHSHi, RHSHi, ISD::SETOEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005226 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005227 LHSLo, RHSLo, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005228 Tmp3 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5229 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005230 LHSHi, RHSHi, ISD::SETUNE);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005231 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005232 LHSHi, RHSHi, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005233 Tmp1 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5234 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman475871a2008-07-27 21:46:04 +00005235 Tmp2 = SDValue();
Dale Johannesen638ccd52007-10-06 01:24:11 +00005236 break;
5237 }
5238
5239 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005240 case ISD::SETEQ:
5241 case ISD::SETNE:
5242 if (RHSLo == RHSHi)
5243 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
5244 if (RHSCST->isAllOnesValue()) {
5245 // Comparison to -1.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005246 Tmp1 = DAG.getNode(ISD::AND, dl,LHSLo.getValueType(), LHSLo, LHSHi);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005247 Tmp2 = RHSLo;
5248 break;
5249 }
5250
Dale Johannesenbb5da912009-02-02 20:41:04 +00005251 Tmp1 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
5252 Tmp2 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
5253 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005254 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
5255 break;
5256 default:
5257 // If this is a comparison of the sign bit, just look at the top part.
5258 // X > -1, x < 0
5259 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
Scott Michelfdc40a02009-02-17 22:15:04 +00005260 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00005261 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00005262 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
5263 CST->isAllOnesValue())) { // X > -1
5264 Tmp1 = LHSHi;
5265 Tmp2 = RHSHi;
5266 break;
5267 }
5268
5269 // FIXME: This generated code sucks.
5270 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00005271 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005272 default: assert(0 && "Unknown integer setcc!");
5273 case ISD::SETLT:
5274 case ISD::SETULT: LowCC = ISD::SETULT; break;
5275 case ISD::SETGT:
5276 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
5277 case ISD::SETLE:
5278 case ISD::SETULE: LowCC = ISD::SETULE; break;
5279 case ISD::SETGE:
5280 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
5281 }
5282
5283 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
5284 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
5285 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
5286
5287 // NOTE: on targets without efficient SELECT of bools, we can always use
5288 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00005289 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Duncan Sands5480c042009-01-01 15:52:00 +00005290 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005291 LHSLo, RHSLo, LowCC, false, DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005292 if (!Tmp1.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005293 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005294 LHSLo, RHSLo, LowCC);
5295 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005296 LHSHi, RHSHi, CCCode, false, DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005297 if (!Tmp2.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005298 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005299 TLI.getSetCCResultType(LHSHi.getValueType()),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005300 LHSHi, RHSHi, CC);
Scott Michelfdc40a02009-02-17 22:15:04 +00005301
Gabor Greifba36cb52008-08-28 21:40:38 +00005302 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
5303 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman002e5d02008-03-13 22:13:53 +00005304 if ((Tmp1C && Tmp1C->isNullValue()) ||
5305 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00005306 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
5307 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00005308 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00005309 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
5310 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
5311 // low part is known false, returns high part.
5312 // For LE / GE, if high part is known false, ignore the low part.
5313 // For LT / GT, if high part is known true, ignore the low part.
5314 Tmp1 = Tmp2;
Dan Gohman475871a2008-07-27 21:46:04 +00005315 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005316 } else {
Duncan Sands5480c042009-01-01 15:52:00 +00005317 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
5318 LHSHi, RHSHi, ISD::SETEQ, false,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005319 DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005320 if (!Result.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005321 Result=DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005322 LHSHi, RHSHi, ISD::SETEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005323 Result = LegalizeOp(DAG.getNode(ISD::SELECT, dl, Tmp1.getValueType(),
Evan Cheng2e677812007-02-08 22:16:19 +00005324 Result, Tmp1, Tmp2));
5325 Tmp1 = Result;
Dan Gohman475871a2008-07-27 21:46:04 +00005326 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005327 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005328 }
5329 }
Evan Cheng2b49c502006-12-15 02:59:56 +00005330 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005331 LHS = Tmp1;
5332 RHS = Tmp2;
5333}
5334
Evan Cheng7f042682008-10-15 02:05:31 +00005335/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
5336/// condition code CC on the current target. This routine assumes LHS and rHS
5337/// have already been legalized by LegalizeSetCCOperands. It expands SETCC with
5338/// illegal condition code into AND / OR of multiple SETCC values.
5339void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT,
5340 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005341 SDValue &CC,
5342 DebugLoc dl) {
Evan Cheng7f042682008-10-15 02:05:31 +00005343 MVT OpVT = LHS.getValueType();
5344 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5345 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
5346 default: assert(0 && "Unknown condition code action!");
5347 case TargetLowering::Legal:
5348 // Nothing to do.
5349 break;
5350 case TargetLowering::Expand: {
5351 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
5352 unsigned Opc = 0;
5353 switch (CCCode) {
5354 default: assert(0 && "Don't know how to expand this condition!"); abort();
Dan Gohmane7d238e2008-10-21 03:12:54 +00005355 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
5356 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5357 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5358 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5359 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5360 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5361 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5362 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5363 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5364 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5365 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5366 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng7f042682008-10-15 02:05:31 +00005367 // FIXME: Implement more expansions.
5368 }
5369
Dale Johannesenbb5da912009-02-02 20:41:04 +00005370 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
5371 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
5372 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00005373 RHS = SDValue();
5374 CC = SDValue();
5375 break;
5376 }
5377 }
5378}
5379
Chris Lattner1401d152008-01-16 07:45:30 +00005380/// EmitStackConvert - Emit a store/load combination to the stack. This stores
5381/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
5382/// a load from the stack slot to DestVT, extending it if needed.
5383/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005384SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
5385 MVT SlotVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005386 MVT DestVT,
5387 DebugLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00005388 // Create the stack frame object.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005389 unsigned SrcAlign =
5390 TLI.getTargetData()->getPrefTypeAlignment(SrcOp.getValueType().
5391 getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00005392 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00005393
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005394 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005395 int SPFI = StackPtrFI->getIndex();
Dan Gohman15b38302009-01-29 21:02:43 +00005396 const Value *SV = PseudoSourceValue::getFixedStack(SPFI);
5397
Duncan Sands83ec4b62008-06-06 12:08:01 +00005398 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
5399 unsigned SlotSize = SlotVT.getSizeInBits();
5400 unsigned DestSize = DestVT.getSizeInBits();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005401 unsigned DestAlign =
5402 TLI.getTargetData()->getPrefTypeAlignment(DestVT.getTypeForMVT());
Scott Michelfdc40a02009-02-17 22:15:04 +00005403
Chris Lattner1401d152008-01-16 07:45:30 +00005404 // Emit a store to the stack slot. Use a truncstore if the input value is
5405 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00005406 SDValue Store;
Scott Michelfdc40a02009-02-17 22:15:04 +00005407
Chris Lattner1401d152008-01-16 07:45:30 +00005408 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005409 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005410 SV, 0, SlotVT, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005411 else {
5412 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00005413 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005414 SV, 0, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005415 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005416
Chris Lattner35481892005-12-23 00:16:34 +00005417 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00005418 if (SlotSize == DestSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005419 return DAG.getLoad(DestVT, dl, Store, FIPtr, SV, 0, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00005420
Chris Lattner1401d152008-01-16 07:45:30 +00005421 assert(SlotSize < DestSize && "Unknown extension!");
Dale Johannesen8a782a22009-02-02 22:12:50 +00005422 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr, SV, 0, SlotVT,
Mon P Wang364d73d2008-07-05 20:40:31 +00005423 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00005424}
5425
Dan Gohman475871a2008-07-27 21:46:04 +00005426SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005427 DebugLoc dl = Node->getDebugLoc();
Chris Lattner4352cc92006-04-04 17:23:26 +00005428 // Create a vector sized/aligned stack slot, store the value to element #0,
5429 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00005430 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00005431
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005432 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005433 int SPFI = StackPtrFI->getIndex();
5434
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00005435 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
5436 StackPtr,
5437 PseudoSourceValue::getFixedStack(SPFI), 0,
5438 Node->getValueType(0).getVectorElementType());
Dale Johannesen8a782a22009-02-02 22:12:50 +00005439 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00005440 PseudoSourceValue::getFixedStack(SPFI), 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00005441}
5442
5443
Chris Lattnerce872152006-03-19 06:31:19 +00005444/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00005445/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00005446SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005447 unsigned NumElems = Node->getNumOperands();
5448 SDValue SplatValue = Node->getOperand(0);
5449 DebugLoc dl = Node->getDebugLoc();
5450 MVT VT = Node->getValueType(0);
5451 MVT OpVT = SplatValue.getValueType();
5452 MVT EltVT = VT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005453
5454 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00005455 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattnerce872152006-03-19 06:31:19 +00005456 bool isOnlyLowElement = true;
Scott Michelfdc40a02009-02-17 22:15:04 +00005457
Dan Gohman475871a2008-07-27 21:46:04 +00005458 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005459 // and use a bitmask instead of a list of elements.
Nate Begeman9008ca62009-04-27 18:41:29 +00005460 // FIXME: this doesn't treat <0, u, 0, u> for example, as a splat.
Dan Gohman475871a2008-07-27 21:46:04 +00005461 std::map<SDValue, std::vector<unsigned> > Values;
Evan Cheng033e6812006-03-24 01:17:21 +00005462 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005463 bool isConstant = true;
5464 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
5465 SplatValue.getOpcode() != ISD::UNDEF)
5466 isConstant = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005467
Evan Cheng033e6812006-03-24 01:17:21 +00005468 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005469 SDValue V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00005470 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00005471 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00005472 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00005473 if (SplatValue != V)
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005474 SplatValue = SDValue(0, 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005475
5476 // If this isn't a constant element or an undef, we can't use a constant
5477 // pool load.
5478 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
5479 V.getOpcode() != ISD::UNDEF)
5480 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00005481 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005482
Chris Lattnerce872152006-03-19 06:31:19 +00005483 if (isOnlyLowElement) {
5484 // If the low element is an undef too, then this whole things is an undef.
5485 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005486 return DAG.getUNDEF(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005487 // Otherwise, turn this into a scalar_to_vector node.
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005488 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Chris Lattnerce872152006-03-19 06:31:19 +00005489 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005490
Chris Lattner2eb86532006-03-24 07:29:17 +00005491 // If all elements are constants, create a load from the constant pool.
5492 if (isConstant) {
Chris Lattner2eb86532006-03-24 07:29:17 +00005493 std::vector<Constant*> CV;
5494 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005495 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00005496 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005497 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00005498 } else if (ConstantSDNode *V =
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005499 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005500 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00005501 } else {
5502 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005503 const Type *OpNTy = OpVT.getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00005504 CV.push_back(UndefValue::get(OpNTy));
5505 }
5506 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00005507 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00005508 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00005509 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00005510 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005511 PseudoSourceValue::getConstantPool(), 0,
5512 false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00005513 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005514
Gabor Greifba36cb52008-08-28 21:40:38 +00005515 if (SplatValue.getNode()) { // Splat of one value?
Chris Lattner87100e02006-03-20 01:52:29 +00005516 // Build the shuffle constant vector: <0, 0, 0, 0>
Nate Begeman9008ca62009-04-27 18:41:29 +00005517 SmallVector<int, 8> ZeroVec(NumElems, 0);
Chris Lattner87100e02006-03-20 01:52:29 +00005518
5519 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Nate Begeman9008ca62009-04-27 18:41:29 +00005520 if (TLI.isShuffleMaskLegal(ZeroVec, Node->getValueType(0))) {
Chris Lattner87100e02006-03-20 01:52:29 +00005521 // Get the splatted value into the low element of a vector register.
Scott Michelfdc40a02009-02-17 22:15:04 +00005522 SDValue LowValVec =
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005523 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, SplatValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00005524
Chris Lattner87100e02006-03-20 01:52:29 +00005525 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Nate Begeman9008ca62009-04-27 18:41:29 +00005526 return DAG.getVectorShuffle(VT, dl, LowValVec, DAG.getUNDEF(VT),
5527 &ZeroVec[0]);
Chris Lattner87100e02006-03-20 01:52:29 +00005528 }
5529 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005530
Evan Cheng033e6812006-03-24 01:17:21 +00005531 // If there are only two unique elements, we may be able to turn this into a
5532 // vector shuffle.
5533 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005534 // Get the two values in deterministic order.
Dan Gohman475871a2008-07-27 21:46:04 +00005535 SDValue Val1 = Node->getOperand(1);
5536 SDValue Val2;
5537 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005538 if (MI->first != Val1)
5539 Val2 = MI->first;
5540 else
5541 Val2 = (++MI)->first;
Scott Michelfdc40a02009-02-17 22:15:04 +00005542
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005543 // If Val1 is an undef, make sure it ends up as Val2, to ensure that our
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005544 // vector shuffle has the undef vector on the RHS.
5545 if (Val1.getOpcode() == ISD::UNDEF)
5546 std::swap(Val1, Val2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005547
Evan Cheng033e6812006-03-24 01:17:21 +00005548 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Nate Begeman9008ca62009-04-27 18:41:29 +00005549 SmallVector<int, 8> ShuffleMask(NumElems, -1);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005550
5551 // Set elements of the shuffle mask for Val1.
5552 std::vector<unsigned> &Val1Elts = Values[Val1];
5553 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005554 ShuffleMask[Val1Elts[i]] = 0;
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005555
5556 // Set elements of the shuffle mask for Val2.
5557 std::vector<unsigned> &Val2Elts = Values[Val2];
5558 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5559 if (Val2.getOpcode() != ISD::UNDEF)
Nate Begeman9008ca62009-04-27 18:41:29 +00005560 ShuffleMask[Val2Elts[i]] = NumElems;
Evan Cheng033e6812006-03-24 01:17:21 +00005561
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005562 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005563 if (TLI.isOperationLegalOrCustom(ISD::SCALAR_TO_VECTOR, VT) &&
Nate Begeman9008ca62009-04-27 18:41:29 +00005564 TLI.isShuffleMaskLegal(ShuffleMask, VT)) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005565 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Val1);
5566 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Val2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005567 return DAG.getVectorShuffle(VT, dl, Val1, Val2, &ShuffleMask[0]);
Evan Cheng033e6812006-03-24 01:17:21 +00005568 }
5569 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005570
Chris Lattnerce872152006-03-19 06:31:19 +00005571 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5572 // aligned object on the stack, store each element into it, then load
5573 // the result as a vector.
Chris Lattnerce872152006-03-19 06:31:19 +00005574 // Create the stack frame object.
Dan Gohman475871a2008-07-27 21:46:04 +00005575 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohman15b38302009-01-29 21:02:43 +00005576 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
5577 const Value *SV = PseudoSourceValue::getFixedStack(FI);
5578
Chris Lattnerce872152006-03-19 06:31:19 +00005579 // Emit a store of each element to the stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00005580 SmallVector<SDValue, 8> Stores;
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005581 unsigned TypeByteSize = OpVT.getSizeInBits() / 8;
Chris Lattnerce872152006-03-19 06:31:19 +00005582 // Store (in the right endianness) the elements to memory.
5583 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5584 // Ignore undef elements.
5585 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00005586
Chris Lattner841c8822006-03-22 01:46:54 +00005587 unsigned Offset = TypeByteSize*i;
Scott Michelfdc40a02009-02-17 22:15:04 +00005588
Dan Gohman475871a2008-07-27 21:46:04 +00005589 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Dale Johannesen8a782a22009-02-02 22:12:50 +00005590 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005591
Dale Johannesen8a782a22009-02-02 22:12:50 +00005592 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(i),
5593 Idx, SV, Offset));
Chris Lattnerce872152006-03-19 06:31:19 +00005594 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005595
Dan Gohman475871a2008-07-27 21:46:04 +00005596 SDValue StoreChain;
Chris Lattnerce872152006-03-19 06:31:19 +00005597 if (!Stores.empty()) // Not all undef elements?
Dale Johannesen8a782a22009-02-02 22:12:50 +00005598 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005599 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005600 else
5601 StoreChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005602
Chris Lattnerce872152006-03-19 06:31:19 +00005603 // Result is a load from the stack slot.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005604 return DAG.getLoad(VT, dl, StoreChain, FIPtr, SV, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005605}
5606
Chris Lattner5b359c62005-04-02 04:00:59 +00005607void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman475871a2008-07-27 21:46:04 +00005608 SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005609 SDValue &Lo, SDValue &Hi,
5610 DebugLoc dl) {
Chris Lattner5b359c62005-04-02 04:00:59 +00005611 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00005612 SDValue LHSL, LHSH;
Chris Lattner5b359c62005-04-02 04:00:59 +00005613 ExpandOp(Op, LHSL, LHSH);
5614
Dan Gohman475871a2008-07-27 21:46:04 +00005615 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005616 MVT VT = LHSL.getValueType();
Dan Gohmanfc166572009-04-09 23:54:40 +00005617 Lo = DAG.getNode(NodeOp, dl, DAG.getVTList(VT, VT), Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005618 Hi = Lo.getValue(1);
5619}
5620
5621
Chris Lattnere34b3962005-01-19 04:19:40 +00005622/// ExpandShift - Try to find a clever way to expand this shift operation out to
5623/// smaller elements. If we can't find a way that is more efficient than a
5624/// libcall on this target, return false. Otherwise, return true with the
5625/// low-parts expanded into Lo and Hi.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005626bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005627 SDValue &Lo, SDValue &Hi,
5628 DebugLoc dl) {
Chris Lattnere34b3962005-01-19 04:19:40 +00005629 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5630 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005631
Duncan Sands83ec4b62008-06-06 12:08:01 +00005632 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman475871a2008-07-27 21:46:04 +00005633 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005634 MVT ShTy = ShAmt.getValueType();
5635 unsigned ShBits = ShTy.getSizeInBits();
5636 unsigned VTBits = Op.getValueType().getSizeInBits();
5637 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005638
Chris Lattner7a3c8552007-10-14 20:35:12 +00005639 // Handle the case when Amt is an immediate.
Gabor Greifba36cb52008-08-28 21:40:38 +00005640 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005641 unsigned Cst = CN->getZExtValue();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005642 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005643 SDValue InL, InH;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005644 ExpandOp(Op, InL, InH);
5645 switch(Opc) {
5646 case ISD::SHL:
5647 if (Cst > VTBits) {
5648 Lo = DAG.getConstant(0, NVT);
5649 Hi = DAG.getConstant(0, NVT);
5650 } else if (Cst > NVTBits) {
5651 Lo = DAG.getConstant(0, NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00005652 Hi = DAG.getNode(ISD::SHL, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005653 NVT, InL, DAG.getConstant(Cst-NVTBits, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005654 } else if (Cst == NVTBits) {
5655 Lo = DAG.getConstant(0, NVT);
5656 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005657 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005658 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, DAG.getConstant(Cst, ShTy));
5659 Hi = DAG.getNode(ISD::OR, dl, NVT,
5660 DAG.getNode(ISD::SHL, dl, NVT, InH, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005661 DAG.getNode(ISD::SRL, dl, NVT, InL,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005662 DAG.getConstant(NVTBits-Cst, ShTy)));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005663 }
5664 return true;
5665 case ISD::SRL:
5666 if (Cst > VTBits) {
5667 Lo = DAG.getConstant(0, NVT);
5668 Hi = DAG.getConstant(0, NVT);
5669 } else if (Cst > NVTBits) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005670 Lo = DAG.getNode(ISD::SRL, dl, NVT,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005671 InH, DAG.getConstant(Cst-NVTBits, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005672 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005673 } else if (Cst == NVTBits) {
5674 Lo = InH;
5675 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005676 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005677 Lo = DAG.getNode(ISD::OR, dl, NVT,
5678 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005679 DAG.getNode(ISD::SHL, dl, NVT, InH,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005680 DAG.getConstant(NVTBits-Cst, ShTy)));
5681 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005682 }
5683 return true;
5684 case ISD::SRA:
5685 if (Cst > VTBits) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005686 Hi = Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005687 DAG.getConstant(NVTBits-1, ShTy));
5688 } else if (Cst > NVTBits) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005689 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005690 DAG.getConstant(Cst-NVTBits, ShTy));
Dale Johannesen8a782a22009-02-02 22:12:50 +00005691 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005692 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005693 } else if (Cst == NVTBits) {
5694 Lo = InH;
Dale Johannesen8a782a22009-02-02 22:12:50 +00005695 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005696 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005697 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005698 Lo = DAG.getNode(ISD::OR, dl, NVT,
5699 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005700 DAG.getNode(ISD::SHL, dl,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005701 NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5702 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005703 }
5704 return true;
5705 }
5706 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005707
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005708 // Okay, the shift amount isn't constant. However, if we can tell that it is
5709 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005710 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5711 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005712 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00005713
Dan Gohman9e255b72008-02-22 01:12:31 +00005714 // If we know that if any of the high bits of the shift amount are one, then
5715 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005716 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005717 // Mask out the high bit, which we know is set.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005718 Amt = DAG.getNode(ISD::AND, dl, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005719 DAG.getConstant(~Mask, Amt.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00005720
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005721 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005722 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005723 ExpandOp(Op, InL, InH);
5724 switch(Opc) {
5725 case ISD::SHL:
5726 Lo = DAG.getConstant(0, NVT); // Low part is zero.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005727 Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005728 return true;
5729 case ISD::SRL:
5730 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005731 Lo = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); // Lo part from Hi part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005732 return true;
5733 case ISD::SRA:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005734 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, // Sign extend high part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005735 DAG.getConstant(NVTBits-1, Amt.getValueType()));
Dale Johannesen8a782a22009-02-02 22:12:50 +00005736 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); // Lo part from Hi part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005737 return true;
5738 }
5739 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005740
Dan Gohman9e255b72008-02-22 01:12:31 +00005741 // If we know that the high bits of the shift amount are all zero, then we can
5742 // do this as a couple of simple shifts.
5743 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005744 // Compute 32-amt.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005745 SDValue Amt2 = DAG.getNode(ISD::SUB, dl, Amt.getValueType(),
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005746 DAG.getConstant(NVTBits, Amt.getValueType()),
5747 Amt);
Scott Michelfdc40a02009-02-17 22:15:04 +00005748
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005749 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005750 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005751 ExpandOp(Op, InL, InH);
5752 switch(Opc) {
5753 case ISD::SHL:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005754 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt);
5755 Hi = DAG.getNode(ISD::OR, dl, NVT,
5756 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt),
5757 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005758 return true;
5759 case ISD::SRL:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005760 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt);
5761 Lo = DAG.getNode(ISD::OR, dl, NVT,
5762 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5763 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005764 return true;
5765 case ISD::SRA:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005766 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt);
5767 Lo = DAG.getNode(ISD::OR, dl, NVT,
5768 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5769 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005770 return true;
5771 }
5772 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005773
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005774 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005775}
Chris Lattner77e77a62005-01-21 06:05:23 +00005776
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005777
Chris Lattner77e77a62005-01-21 06:05:23 +00005778// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5779// does not fit into a register, return the lo part and set the hi part to the
5780// by-reg argument. If it does fit into a single register, return the result
5781// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00005782SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5783 bool isSigned, SDValue &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005784 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
Scott Michelfdc40a02009-02-17 22:15:04 +00005785 // The input chain to this libcall is the entry node of the function.
Chris Lattner6831a812006-02-13 09:18:02 +00005786 // Legalizing the call will automatically add the previous call to the
5787 // dependence.
Dan Gohman475871a2008-07-27 21:46:04 +00005788 SDValue InChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005789
Chris Lattner77e77a62005-01-21 06:05:23 +00005790 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005791 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005792 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005793 MVT ArgVT = Node->getOperand(i).getValueType();
5794 const Type *ArgTy = ArgVT.getTypeForMVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00005795 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005796 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005797 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005798 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005799 }
Bill Wendling056292f2008-09-16 21:48:12 +00005800 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00005801 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005802
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005803 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005804 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005805 std::pair<SDValue, SDValue> CallInfo =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005806 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005807 CallingConv::C, false, Callee, Args, DAG,
5808 Node->getDebugLoc());
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005809
Chris Lattner6831a812006-02-13 09:18:02 +00005810 // Legalize the call sequence, starting with the chain. This will advance
5811 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5812 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5813 LegalizeOp(CallInfo.second);
Dan Gohman475871a2008-07-27 21:46:04 +00005814 SDValue Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005815 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005816 default: assert(0 && "Unknown thing");
5817 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005818 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005819 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005820 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005821 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005822 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005823 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005824 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005825}
5826
Dan Gohman7f8613e2008-08-14 20:04:46 +00005827/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5828///
5829SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005830LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op,
5831 DebugLoc dl) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00005832 bool isCustom = false;
5833 SDValue Tmp1;
5834 switch (getTypeAction(Op.getValueType())) {
5835 case Legal:
5836 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5837 Op.getValueType())) {
5838 default: assert(0 && "Unknown operation action!");
5839 case TargetLowering::Custom:
5840 isCustom = true;
5841 // FALLTHROUGH
5842 case TargetLowering::Legal:
5843 Tmp1 = LegalizeOp(Op);
Gabor Greifba36cb52008-08-28 21:40:38 +00005844 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005845 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5846 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005847 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005848 DestTy, Tmp1);
5849 if (isCustom) {
5850 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005851 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005852 }
5853 break;
5854 case TargetLowering::Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005855 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005856 break;
5857 case TargetLowering::Promote:
Dale Johannesenaf435272009-02-02 19:03:57 +00005858 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005859 break;
5860 }
5861 break;
5862 case Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005863 Result = ExpandIntToFP(isSigned, DestTy, Op, dl) ;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005864 break;
5865 case Promote:
5866 Tmp1 = PromoteOp(Op);
5867 if (isSigned) {
Dale Johannesenaf435272009-02-02 19:03:57 +00005868 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp1.getValueType(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005869 Tmp1, DAG.getValueType(Op.getValueType()));
Dan Gohman7f8613e2008-08-14 20:04:46 +00005870 } else {
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005871 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, Op.getValueType());
Dan Gohman7f8613e2008-08-14 20:04:46 +00005872 }
Gabor Greifba36cb52008-08-28 21:40:38 +00005873 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005874 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5875 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005876 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005877 DestTy, Tmp1);
5878 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5879 break;
5880 }
5881 return Result;
5882}
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005883
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005884/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5885///
Dan Gohman475871a2008-07-27 21:46:04 +00005886SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005887ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005888 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005889 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005890
Dan Gohman7f8613e2008-08-14 20:04:46 +00005891 // Expand unsupported int-to-fp vector casts by unrolling them.
5892 if (DestTy.isVector()) {
5893 if (!ExpandSource)
5894 return LegalizeOp(UnrollVectorOp(Source));
5895 MVT DestEltTy = DestTy.getVectorElementType();
5896 if (DestTy.getVectorNumElements() == 1) {
5897 SDValue Scalar = ScalarizeVectorOp(Source);
5898 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00005899 DestEltTy, Scalar, dl);
Evan Chenga87008d2009-02-25 22:49:59 +00005900 return DAG.getNode(ISD::BUILD_VECTOR, dl, DestTy, Result);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005901 }
5902 SDValue Lo, Hi;
5903 SplitVectorOp(Source, Lo, Hi);
5904 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5905 DestTy.getVectorNumElements() / 2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005906 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +00005907 Lo, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00005908 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +00005909 Hi, dl);
5910 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, DestTy, LoResult,
Evan Chengefa53392008-10-13 18:46:18 +00005911 HiResult));
Dan Gohman7f8613e2008-08-14 20:04:46 +00005912 }
5913
Evan Cheng9845eb52008-04-01 02:18:22 +00005914 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5915 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005916 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005917 // incoming integer is set. To handle this, we dynamically test to see if
5918 // it is set, and, if so, add a fudge factor.
Dan Gohman475871a2008-07-27 21:46:04 +00005919 SDValue Hi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005920 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005921 SDValue Lo;
Dan Gohman034f60e2008-03-11 01:59:03 +00005922 ExpandOp(Source, Lo, Hi);
Dale Johannesenaf435272009-02-02 19:03:57 +00005923 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, Lo, Hi);
Dan Gohman034f60e2008-03-11 01:59:03 +00005924 } else {
5925 // The comparison for the sign bit will use the entire operand.
5926 Hi = Source;
5927 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005928
Dale Johannesen53997b02008-11-04 20:52:49 +00005929 // Check to see if the target has a custom way to lower this. If so, use
5930 // it. (Note we've already expanded the operand in this case.)
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005931 switch (TLI.getOperationAction(ISD::UINT_TO_FP, SourceVT)) {
5932 default: assert(0 && "This action not implemented for this operation!");
5933 case TargetLowering::Legal:
5934 case TargetLowering::Expand:
5935 break; // This case is handled below.
5936 case TargetLowering::Custom: {
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005937 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::UINT_TO_FP, dl, DestTy,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005938 Source), DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005939 if (NV.getNode())
5940 return LegalizeOp(NV);
5941 break; // The target decided this was legal after all
5942 }
5943 }
5944
Chris Lattner66de05b2005-05-13 04:45:13 +00005945 // If this is unsigned, and not supported, first perform the conversion to
5946 // signed, then adjust the result if the sign bit is set.
Dale Johannesenaf435272009-02-02 19:03:57 +00005947 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source, dl);
Chris Lattner66de05b2005-05-13 04:45:13 +00005948
Scott Michelfdc40a02009-02-17 22:15:04 +00005949 SDValue SignSet = DAG.getSetCC(dl,
Dale Johannesenaf435272009-02-02 19:03:57 +00005950 TLI.getSetCCResultType(Hi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005951 Hi, DAG.getConstant(0, Hi.getValueType()),
5952 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00005953 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00005954 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattnere9c35e72005-04-13 05:09:42 +00005955 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005956 uint64_t FF = 0x5f800000ULL;
5957 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattnerd2e936a2009-03-08 01:47:41 +00005958 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005959
Dan Gohman475871a2008-07-27 21:46:04 +00005960 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00005961 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00005962 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00005963 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00005964 SDValue FudgeInReg;
Chris Lattnere9c35e72005-04-13 05:09:42 +00005965 if (DestTy == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00005966 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005967 PseudoSourceValue::getConstantPool(), 0,
5968 false, Alignment);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005969 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005970 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesenaf435272009-02-02 19:03:57 +00005971 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, dl, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005972 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005973 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00005974 MVT::f32, false, Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00005975 else
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005976 assert(0 && "Unexpected conversion");
5977
Duncan Sands83ec4b62008-06-06 12:08:01 +00005978 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005979 if (SCVT != DestTy) {
5980 // Destination type needs to be expanded as well. The FADD now we are
5981 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005982 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5983 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dale Johannesenaf435272009-02-02 19:03:57 +00005984 SignedConv = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005985 SignedConv, SignedConv.getValue(1));
5986 }
Dale Johannesenaf435272009-02-02 19:03:57 +00005987 SignedConv = DAG.getNode(ISD::BIT_CONVERT, dl, DestTy, SignedConv);
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005988 }
Dale Johannesenaf435272009-02-02 19:03:57 +00005989 return DAG.getNode(ISD::FADD, dl, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005990 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005991
Chris Lattnera88a2602005-05-14 05:33:54 +00005992 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005993 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00005994 default: assert(0 && "This action not implemented for this operation!");
5995 case TargetLowering::Legal:
5996 case TargetLowering::Expand:
5997 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005998 case TargetLowering::Custom: {
Dale Johannesenaf435272009-02-02 19:03:57 +00005999 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, dl, DestTy,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006000 Source), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006001 if (NV.getNode())
Chris Lattner07dffd62005-08-26 00:14:16 +00006002 return LegalizeOp(NV);
6003 break; // The target decided this was legal after all
6004 }
Chris Lattnera88a2602005-05-14 05:33:54 +00006005 }
6006
Chris Lattner13689e22005-05-12 07:00:44 +00006007 // Expand the source, then glue it back together for the call. We must expand
6008 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00006009 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00006010 SDValue SrcLo, SrcHi;
Dan Gohman034f60e2008-03-11 01:59:03 +00006011 ExpandOp(Source, SrcLo, SrcHi);
Dale Johannesenaf435272009-02-02 19:03:57 +00006012 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, SrcLo, SrcHi);
Dan Gohman034f60e2008-03-11 01:59:03 +00006013 }
Chris Lattner13689e22005-05-12 07:00:44 +00006014
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006015 RTLIB::Libcall LC = isSigned ?
6016 RTLIB::getSINTTOFP(SourceVT, DestTy) :
6017 RTLIB::getUINTTOFP(SourceVT, DestTy);
6018 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
6019
Dale Johannesenaf435272009-02-02 19:03:57 +00006020 Source = DAG.getNode(ISD::SINT_TO_FP, dl, DestTy, Source);
Dan Gohman475871a2008-07-27 21:46:04 +00006021 SDValue HiPart;
Gabor Greifba36cb52008-08-28 21:40:38 +00006022 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
6023 if (Result.getValueType() != DestTy && HiPart.getNode())
Dale Johannesenaf435272009-02-02 19:03:57 +00006024 Result = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy, Result, HiPart);
Dan Gohmana2e94852008-03-10 23:03:31 +00006025 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00006026}
Misha Brukmanedf128a2005-04-21 22:36:52 +00006027
Chris Lattner22cde6a2006-01-28 08:25:58 +00006028/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
6029/// INT_TO_FP operation of the specified operand when the target requests that
6030/// we expand it. At this point, we know that the result and operand types are
6031/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00006032SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
6033 SDValue Op0,
Dale Johannesenaf435272009-02-02 19:03:57 +00006034 MVT DestVT,
6035 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006036 if (Op0.getValueType() == MVT::i32) {
6037 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00006038
Chris Lattner23594d42008-01-16 07:03:22 +00006039 // Get the stack frame index of a 8 byte buffer.
Dan Gohman475871a2008-07-27 21:46:04 +00006040 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00006041
Chris Lattner22cde6a2006-01-28 08:25:58 +00006042 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00006043 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00006044 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00006045 SDValue Hi = StackSlot;
Scott Michelfdc40a02009-02-17 22:15:04 +00006046 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006047 TLI.getPointerTy(), StackSlot, WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00006048 if (TLI.isLittleEndian())
6049 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00006050
Chris Lattner22cde6a2006-01-28 08:25:58 +00006051 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00006052 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006053 if (isSigned) {
6054 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman475871a2008-07-27 21:46:04 +00006055 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dale Johannesenaf435272009-02-02 19:03:57 +00006056 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006057 } else {
6058 Op0Mapped = Op0;
6059 }
6060 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00006061 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006062 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006063 // initial hi portion of constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00006064 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006065 // store the hi of the constructed double - biased exponent
Dale Johannesenaf435272009-02-02 19:03:57 +00006066 SDValue Store2=DAG.getStore(Store1, dl, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006067 // load the constructed double
Dale Johannesenaf435272009-02-02 19:03:57 +00006068 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006069 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00006070 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006071 BitsToDouble(0x4330000080000000ULL) :
6072 BitsToDouble(0x4330000000000000ULL),
Chris Lattner22cde6a2006-01-28 08:25:58 +00006073 MVT::f64);
6074 // subtract the bias
Dale Johannesenaf435272009-02-02 19:03:57 +00006075 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006076 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00006077 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006078 // handle final rounding
6079 if (DestVT == MVT::f64) {
6080 // do nothing
6081 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006082 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006083 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00006084 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00006085 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006086 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006087 }
6088 return Result;
6089 }
6090 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesenaf435272009-02-02 19:03:57 +00006091 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006092
Dale Johannesenaf435272009-02-02 19:03:57 +00006093 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00006094 Op0, DAG.getConstant(0, Op0.getValueType()),
6095 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00006096 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00006097 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattner22cde6a2006-01-28 08:25:58 +00006098 SignSet, Four, Zero);
6099
6100 // If the sign bit of the integer is set, the large number will be treated
6101 // as a negative number. To counteract this, the dynamic code adds an
6102 // offset depending on the data type.
6103 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006104 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006105 default: assert(0 && "Unsupported integer type!");
6106 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
6107 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
6108 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
6109 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
6110 }
6111 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattnerd2e936a2009-03-08 01:47:41 +00006112 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006113
Dan Gohman475871a2008-07-27 21:46:04 +00006114 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00006115 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00006116 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00006117 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00006118 SDValue FudgeInReg;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006119 if (DestVT == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00006120 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00006121 PseudoSourceValue::getConstantPool(), 0,
6122 false, Alignment);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006123 else {
Dan Gohman69de1932008-02-06 22:27:42 +00006124 FudgeInReg =
Dale Johannesenaf435272009-02-02 19:03:57 +00006125 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
Dan Gohman69de1932008-02-06 22:27:42 +00006126 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00006127 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00006128 MVT::f32, false, Alignment));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006129 }
6130
Dale Johannesenaf435272009-02-02 19:03:57 +00006131 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006132}
6133
6134/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
6135/// *INT_TO_FP operation of the specified operand when the target requests that
6136/// we promote it. At this point, we know that the result and operand types are
6137/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
6138/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00006139SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
6140 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006141 bool isSigned,
6142 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006143 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006144 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006145
6146 unsigned OpToUse = 0;
6147
6148 // Scan for the appropriate larger type to use.
6149 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006150 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
6151 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006152
6153 // If the target supports SINT_TO_FP of this type, use it.
6154 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
6155 default: break;
6156 case TargetLowering::Legal:
6157 if (!TLI.isTypeLegal(NewInTy))
6158 break; // Can't use this datatype.
6159 // FALL THROUGH.
6160 case TargetLowering::Custom:
6161 OpToUse = ISD::SINT_TO_FP;
6162 break;
6163 }
6164 if (OpToUse) break;
6165 if (isSigned) continue;
6166
6167 // If the target supports UINT_TO_FP of this type, use it.
6168 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
6169 default: break;
6170 case TargetLowering::Legal:
6171 if (!TLI.isTypeLegal(NewInTy))
6172 break; // Can't use this datatype.
6173 // FALL THROUGH.
6174 case TargetLowering::Custom:
6175 OpToUse = ISD::UINT_TO_FP;
6176 break;
6177 }
6178 if (OpToUse) break;
6179
6180 // Otherwise, try a larger type.
6181 }
6182
6183 // Okay, we found the operation and type to use. Zero extend our input to the
6184 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00006185 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00006186 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00006187 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006188}
6189
6190/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
6191/// FP_TO_*INT operation of the specified operand when the target requests that
6192/// we promote it. At this point, we know that the result and operand types are
6193/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
6194/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00006195SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
6196 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006197 bool isSigned,
6198 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006199 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006200 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006201
6202 unsigned OpToUse = 0;
6203
6204 // Scan for the appropriate larger type to use.
6205 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006206 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
6207 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006208
6209 // If the target supports FP_TO_SINT returning this type, use it.
6210 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
6211 default: break;
6212 case TargetLowering::Legal:
6213 if (!TLI.isTypeLegal(NewOutTy))
6214 break; // Can't use this datatype.
6215 // FALL THROUGH.
6216 case TargetLowering::Custom:
6217 OpToUse = ISD::FP_TO_SINT;
6218 break;
6219 }
6220 if (OpToUse) break;
6221
6222 // If the target supports FP_TO_UINT of this type, use it.
6223 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
6224 default: break;
6225 case TargetLowering::Legal:
6226 if (!TLI.isTypeLegal(NewOutTy))
6227 break; // Can't use this datatype.
6228 // FALL THROUGH.
6229 case TargetLowering::Custom:
6230 OpToUse = ISD::FP_TO_UINT;
6231 break;
6232 }
6233 if (OpToUse) break;
6234
6235 // Otherwise, try a larger type.
6236 }
6237
Scott Michelfdc40a02009-02-17 22:15:04 +00006238
Chris Lattner27a6c732007-11-24 07:07:01 +00006239 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00006240 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00006241
Chris Lattner27a6c732007-11-24 07:07:01 +00006242 // If the operation produces an invalid type, it must be custom lowered. Use
6243 // the target lowering hooks to expand it. Just keep the low part of the
6244 // expanded operation, we know that we're truncating anyway.
6245 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands1607f052008-12-01 11:39:25 +00006246 SmallVector<SDValue, 2> Results;
6247 TLI.ReplaceNodeResults(Operation.getNode(), Results, DAG);
6248 assert(Results.size() == 1 && "Incorrect FP_TO_XINT lowering!");
6249 Operation = Results[0];
Chris Lattner27a6c732007-11-24 07:07:01 +00006250 }
Duncan Sands126d9072008-07-04 11:47:58 +00006251
Chris Lattner27a6c732007-11-24 07:07:01 +00006252 // Truncate the result of the extended FP_TO_*INT operation to the desired
6253 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00006254 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006255}
6256
6257/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
6258///
Dale Johannesen8a782a22009-02-02 22:12:50 +00006259SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006260 MVT VT = Op.getValueType();
6261 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman475871a2008-07-27 21:46:04 +00006262 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006263 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006264 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
6265 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006266 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6267 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6268 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006269 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006270 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6271 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6272 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6273 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6274 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
6275 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
6276 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6277 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6278 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006279 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006280 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
6281 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
6282 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6283 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6284 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6285 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6286 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
6287 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
6288 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
6289 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
6290 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
6291 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
6292 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
6293 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
6294 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
6295 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
6296 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6297 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6298 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
6299 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
6300 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006301 }
6302}
6303
6304/// ExpandBitCount - Expand the specified bitcount instruction into operations.
6305///
Scott Michelfdc40a02009-02-17 22:15:04 +00006306SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen8a782a22009-02-02 22:12:50 +00006307 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006308 switch (Opc) {
6309 default: assert(0 && "Cannot expand this yet!");
6310 case ISD::CTPOP: {
6311 static const uint64_t mask[6] = {
6312 0x5555555555555555ULL, 0x3333333333333333ULL,
6313 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
6314 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
6315 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00006316 MVT VT = Op.getValueType();
6317 MVT ShVT = TLI.getShiftAmountTy();
6318 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006319 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
6320 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006321 unsigned EltSize = VT.isVector() ?
6322 VT.getVectorElementType().getSizeInBits() : len;
6323 SDValue Tmp2 = DAG.getConstant(APInt(EltSize, mask[i]), VT);
Dan Gohman475871a2008-07-27 21:46:04 +00006324 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00006325 Op = DAG.getNode(ISD::ADD, dl, VT,
Dale Johannesene72c5962009-02-06 21:55:48 +00006326 DAG.getNode(ISD::AND, dl, VT, Op, Tmp2),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006327 DAG.getNode(ISD::AND, dl, VT,
6328 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3),
6329 Tmp2));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006330 }
6331 return Op;
6332 }
6333 case ISD::CTLZ: {
6334 // for now, we do this:
6335 // x = x | (x >> 1);
6336 // x = x | (x >> 2);
6337 // ...
6338 // x = x | (x >>16);
6339 // x = x | (x >>32); // for 64-bit input
6340 // return popcount(~x);
6341 //
6342 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006343 MVT VT = Op.getValueType();
6344 MVT ShVT = TLI.getShiftAmountTy();
6345 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006346 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006347 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00006348 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00006349 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006350 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00006351 Op = DAG.getNOT(dl, Op, VT);
6352 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006353 }
6354 case ISD::CTTZ: {
6355 // for now, we use: { return popcount(~x & (x - 1)); }
6356 // unless the target has ctlz but not ctpop, in which case we use:
6357 // { return 32 - nlz(~x & (x-1)); }
6358 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006359 MVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006360 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
6361 DAG.getNOT(dl, Op, VT),
6362 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00006363 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006364 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006365 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
6366 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00006367 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006368 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006369 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
6370 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006371 }
6372 }
6373}
Chris Lattnere34b3962005-01-19 04:19:40 +00006374
Dan Gohman475871a2008-07-27 21:46:04 +00006375/// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattner3e928bb2005-01-07 07:47:09 +00006376/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman929d3eb2008-10-01 15:07:49 +00006377/// LegalizedNodes map is filled in for any results that are not expanded, the
Chris Lattner3e928bb2005-01-07 07:47:09 +00006378/// ExpandedNodes map is filled in for any results that are expanded, and the
6379/// Lo/Hi values are returned.
Dan Gohman475871a2008-07-27 21:46:04 +00006380void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00006381 MVT VT = Op.getValueType();
6382 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greifba36cb52008-08-28 21:40:38 +00006383 SDNode *Node = Op.getNode();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006384 DebugLoc dl = Node->getDebugLoc();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006385 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00006386 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00006387 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006388
Chris Lattner6fdcb252005-09-02 20:32:45 +00006389 // See if we already expanded it.
Dan Gohman475871a2008-07-27 21:46:04 +00006390 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00006391 = ExpandedNodes.find(Op);
6392 if (I != ExpandedNodes.end()) {
6393 Lo = I->second.first;
6394 Hi = I->second.second;
6395 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006396 }
6397
Chris Lattner3e928bb2005-01-07 07:47:09 +00006398 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006399 case ISD::CopyFromReg:
6400 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006401 case ISD::FP_ROUND_INREG:
Scott Michelfdc40a02009-02-17 22:15:04 +00006402 if (VT == MVT::ppcf128 &&
6403 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006404 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006405 SDValue SrcLo, SrcHi, Src;
Dale Johannesenfcf4d242007-10-11 23:32:15 +00006406 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006407 Src = DAG.getNode(ISD::BUILD_PAIR, dl, VT, SrcLo, SrcHi);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006408 SDValue Result =
6409 TLI.LowerOperation(DAG.getNode(ISD::FP_ROUND_INREG, dl, VT, Src,
6410 Op.getOperand(1)), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006411 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
6412 Lo = Result.getNode()->getOperand(0);
6413 Hi = Result.getNode()->getOperand(1);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006414 break;
6415 }
6416 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00006417 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006418#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006419 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006420#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00006421 assert(0 && "Do not know how to expand this operator!");
6422 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00006423 case ISD::EXTRACT_ELEMENT:
6424 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006425 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman1953ecb2008-02-27 01:52:30 +00006426 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00006427 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00006428 case ISD::EXTRACT_VECTOR_ELT:
Dale Johannesen25f1d082007-10-31 00:32:36 +00006429 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
6430 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
6431 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006432 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00006433 Lo = DAG.getUNDEF(NVT);
6434 Hi = DAG.getUNDEF(NVT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006435 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006436 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006437 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00006438 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
6439 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
6440 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006441 break;
6442 }
Evan Cheng00495212006-12-12 21:32:44 +00006443 case ISD::ConstantFP: {
6444 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00006445 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen7111b022008-10-09 18:53:47 +00006446 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesena471c2e2007-10-11 18:07:22 +00006447 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
6448 MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00006449 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
Dale Johannesena471c2e2007-10-11 18:07:22 +00006450 MVT::f64);
6451 break;
6452 }
Evan Cheng279101e2006-12-12 22:19:28 +00006453 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00006454 if (getTypeAction(Lo.getValueType()) == Expand)
6455 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006456 break;
6457 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006458 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006459 // Return the operands.
6460 Lo = Node->getOperand(0);
6461 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006462 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006463
Chris Lattner27a6c732007-11-24 07:07:01 +00006464 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00006465 if (Node->getNumValues() == 1) {
6466 ExpandOp(Op.getOperand(0), Lo, Hi);
6467 break;
6468 }
Chris Lattner27a6c732007-11-24 07:07:01 +00006469 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif99a6cb92008-08-26 22:36:50 +00006470 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattner27a6c732007-11-24 07:07:01 +00006471 Op.getValue(1).getValueType() == MVT::Other &&
6472 "unhandled MERGE_VALUES");
6473 ExpandOp(Op.getOperand(0), Lo, Hi);
6474 // Remember that we legalized the chain.
6475 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
6476 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006477
Chris Lattner58f79632005-12-12 22:27:43 +00006478 case ISD::SIGN_EXTEND_INREG:
6479 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00006480 // sext_inreg the low part if needed.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006481 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Lo, Node->getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006482
Chris Lattner4bdd2752006-10-06 17:34:12 +00006483 // The high part gets the sign extension from the lo-part. This handles
6484 // things like sextinreg V:i64 from i8.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006485 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006486 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00006487 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00006488 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006489
Nate Begemand88fc032006-01-14 03:14:10 +00006490 case ISD::BSWAP: {
6491 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006492 SDValue TempLo = DAG.getNode(ISD::BSWAP, dl, NVT, Hi);
6493 Hi = DAG.getNode(ISD::BSWAP, dl, NVT, Lo);
Nate Begemand88fc032006-01-14 03:14:10 +00006494 Lo = TempLo;
6495 break;
6496 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006497
Chris Lattneredb1add2005-05-11 04:51:16 +00006498 case ISD::CTPOP:
6499 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006500 Lo = DAG.getNode(ISD::ADD, dl, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
6501 DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
6502 DAG.getNode(ISD::CTPOP, dl, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00006503 Hi = DAG.getConstant(0, NVT);
6504 break;
6505
Chris Lattner39a8f332005-05-12 19:05:01 +00006506 case ISD::CTLZ: {
6507 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006508 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006509 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006510 SDValue HLZ = DAG.getNode(ISD::CTLZ, dl, NVT, Hi);
6511 SDValue TopNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), HLZ,
6512 BitsC, ISD::SETNE);
6513 SDValue LowPart = DAG.getNode(ISD::CTLZ, dl, NVT, Lo);
6514 LowPart = DAG.getNode(ISD::ADD, dl, NVT, LowPart, BitsC);
Chris Lattner39a8f332005-05-12 19:05:01 +00006515
Dale Johannesen8a782a22009-02-02 22:12:50 +00006516 Lo = DAG.getNode(ISD::SELECT, dl, NVT, TopNotZero, HLZ, LowPart);
Chris Lattner39a8f332005-05-12 19:05:01 +00006517 Hi = DAG.getConstant(0, NVT);
6518 break;
6519 }
6520
6521 case ISD::CTTZ: {
6522 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006523 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006524 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006525 SDValue LTZ = DAG.getNode(ISD::CTTZ, dl, NVT, Lo);
6526 SDValue BotNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), LTZ,
6527 BitsC, ISD::SETNE);
6528 SDValue HiPart = DAG.getNode(ISD::CTTZ, dl, NVT, Hi);
6529 HiPart = DAG.getNode(ISD::ADD, dl, NVT, HiPart, BitsC);
Chris Lattner39a8f332005-05-12 19:05:01 +00006530
Dale Johannesen8a782a22009-02-02 22:12:50 +00006531 Lo = DAG.getNode(ISD::SELECT, dl, NVT, BotNotZero, LTZ, HiPart);
Chris Lattner39a8f332005-05-12 19:05:01 +00006532 Hi = DAG.getConstant(0, NVT);
6533 break;
6534 }
Chris Lattneredb1add2005-05-11 04:51:16 +00006535
Nate Begemanacc398c2006-01-25 18:21:52 +00006536 case ISD::VAARG: {
Dan Gohman475871a2008-07-27 21:46:04 +00006537 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6538 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Dale Johannesenc460ae92009-02-04 00:13:36 +00006539 Lo = DAG.getVAArg(NVT, dl, Ch, Ptr, Node->getOperand(2));
6540 Hi = DAG.getVAArg(NVT, dl, Lo.getValue(1), Ptr, Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00006541
6542 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00006543 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00006544 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00006545 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00006546 std::swap(Lo, Hi);
6547 break;
6548 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006549
Chris Lattner3e928bb2005-01-07 07:47:09 +00006550 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00006551 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00006552 SDValue Ch = LD->getChain(); // Legalize the chain.
6553 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Evan Cheng466685d2006-10-09 20:57:25 +00006554 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f8613e2008-08-14 20:04:46 +00006555 const Value *SV = LD->getSrcValue();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006556 int SVOffset = LD->getSrcValueOffset();
6557 unsigned Alignment = LD->getAlignment();
6558 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006559
Evan Cheng466685d2006-10-09 20:57:25 +00006560 if (ExtType == ISD::NON_EXTLOAD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006561 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006562 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00006563 if (VT == MVT::f32 || VT == MVT::f64) {
6564 // f32->i32 or f64->i64 one to one expansion.
6565 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006566 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00006567 // Recursively expand the new load.
6568 if (getTypeAction(NVT) == Expand)
6569 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006570 break;
6571 }
Chris Lattnerec39a452005-01-19 18:02:17 +00006572
Evan Cheng466685d2006-10-09 20:57:25 +00006573 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006574 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Dale Johannesen8a782a22009-02-02 22:12:50 +00006575 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006576 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006577 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006578 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006579 Hi = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006580 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00006581
Evan Cheng466685d2006-10-09 20:57:25 +00006582 // Build a factor node to remember that this load is independent of the
6583 // other one.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006584 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006585 Hi.getValue(1));
Evan Cheng466685d2006-10-09 20:57:25 +00006586
6587 // Remember that we legalized the chain.
6588 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00006589 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00006590 std::swap(Lo, Hi);
6591 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006592 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00006593
Dale Johannesenb6210fc2007-10-19 20:29:00 +00006594 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6595 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00006596 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dale Johannesen8a782a22009-02-02 22:12:50 +00006597 SDValue Load = DAG.getLoad(EVT, dl, Ch, Ptr, SV,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006598 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00006599 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006600 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Dale Johannesen8a782a22009-02-02 22:12:50 +00006601 ExpandOp(DAG.getNode(ISD::FP_EXTEND, dl, VT, Load), Lo, Hi);
Evan Cheng548f6112006-12-13 03:19:57 +00006602 break;
6603 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006604
Evan Cheng466685d2006-10-09 20:57:25 +00006605 if (EVT == NVT)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006606 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006607 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006608 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00006609 Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006610 SVOffset, EVT, isVolatile,
6611 Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00006612
Evan Cheng466685d2006-10-09 20:57:25 +00006613 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006614 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng466685d2006-10-09 20:57:25 +00006615
6616 if (ExtType == ISD::SEXTLOAD) {
6617 // The high part is obtained by SRA'ing all but one of the bits of the
6618 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006619 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006620 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Evan Cheng466685d2006-10-09 20:57:25 +00006621 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6622 } else if (ExtType == ISD::ZEXTLOAD) {
6623 // The high part is just a zero.
6624 Hi = DAG.getConstant(0, NVT);
6625 } else /* if (ExtType == ISD::EXTLOAD) */ {
6626 // The high part is undefined.
Dale Johannesene8d72302009-02-06 23:05:02 +00006627 Hi = DAG.getUNDEF(NVT);
Evan Cheng466685d2006-10-09 20:57:25 +00006628 }
6629 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006630 break;
6631 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006632 case ISD::AND:
6633 case ISD::OR:
6634 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman475871a2008-07-27 21:46:04 +00006635 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006636 ExpandOp(Node->getOperand(0), LL, LH);
6637 ExpandOp(Node->getOperand(1), RL, RH);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006638 Lo = DAG.getNode(Node->getOpcode(), dl, NVT, LL, RL);
6639 Hi = DAG.getNode(Node->getOpcode(), dl, NVT, LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006640 break;
6641 }
6642 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006643 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006644 ExpandOp(Node->getOperand(1), LL, LH);
6645 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006646 if (getTypeAction(NVT) == Expand)
6647 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006648 Lo = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006649 if (VT != MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006650 Hi = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006651 break;
6652 }
Nate Begeman9373a812005-08-10 20:51:12 +00006653 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006654 SDValue TL, TH, FL, FH;
Nate Begeman9373a812005-08-10 20:51:12 +00006655 ExpandOp(Node->getOperand(2), TL, TH);
6656 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006657 if (getTypeAction(NVT) == Expand)
6658 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006659 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Nate Begeman9373a812005-08-10 20:51:12 +00006660 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006661 if (VT != MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006662 Hi = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Evan Cheng19103b12006-12-15 22:42:55 +00006663 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006664 break;
6665 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006666 case ISD::ANY_EXTEND:
6667 // The low part is any extension of the input (which degenerates to a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006668 Lo = DAG.getNode(ISD::ANY_EXTEND, dl, NVT, Node->getOperand(0));
Chris Lattner8137c9e2006-01-28 05:07:51 +00006669 // The high part is undefined.
Dale Johannesene8d72302009-02-06 23:05:02 +00006670 Hi = DAG.getUNDEF(NVT);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006671 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006672 case ISD::SIGN_EXTEND: {
6673 // The low part is just a sign extension of the input (which degenerates to
6674 // a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006675 Lo = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006676
Chris Lattner3e928bb2005-01-07 07:47:09 +00006677 // The high part is obtained by SRA'ing all but one of the bits of the lo
6678 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006679 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006680 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Chris Lattner8137c9e2006-01-28 05:07:51 +00006681 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006682 break;
6683 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006684 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006685 // The low part is just a zero extension of the input (which degenerates to
6686 // a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006687 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006688
Chris Lattner3e928bb2005-01-07 07:47:09 +00006689 // The high part is just a zero.
6690 Hi = DAG.getConstant(0, NVT);
6691 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006692
Chris Lattner4c948eb2007-02-13 23:55:16 +00006693 case ISD::TRUNCATE: {
6694 // The input value must be larger than this value. Expand *it*.
Dan Gohman475871a2008-07-27 21:46:04 +00006695 SDValue NewLo;
Chris Lattner4c948eb2007-02-13 23:55:16 +00006696 ExpandOp(Node->getOperand(0), NewLo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00006697
Chris Lattner4c948eb2007-02-13 23:55:16 +00006698 // The low part is now either the right size, or it is closer. If not the
6699 // right size, make an illegal truncate so we recursively expand it.
6700 if (NewLo.getValueType() != Node->getValueType(0))
Dale Johannesen8a782a22009-02-02 22:12:50 +00006701 NewLo = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), NewLo);
Chris Lattner4c948eb2007-02-13 23:55:16 +00006702 ExpandOp(NewLo, Lo, Hi);
6703 break;
6704 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006705
Chris Lattner35481892005-12-23 00:16:34 +00006706 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006707 SDValue Tmp;
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006708 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6709 // If the target wants to, allow it to lower this itself.
6710 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6711 case Expand: assert(0 && "cannot expand FP!");
6712 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6713 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6714 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00006715 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp), DAG);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006716 }
6717
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006718 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006719 if (VT == MVT::f32 || VT == MVT::f64) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006720 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006721 if (getTypeAction(NVT) == Expand)
6722 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006723 break;
6724 }
6725
6726 // If source operand will be expanded to the same type as VT, i.e.
6727 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006728 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006729 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6730 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006731 break;
6732 }
6733
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006734 // Turn this into a load/store pair by default.
Gabor Greifba36cb52008-08-28 21:40:38 +00006735 if (Tmp.getNode() == 0)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006736 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00006737
Chris Lattner35481892005-12-23 00:16:34 +00006738 ExpandOp(Tmp, Lo, Hi);
6739 break;
6740 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006741
Chris Lattner27a6c732007-11-24 07:07:01 +00006742 case ISD::READCYCLECOUNTER: {
Scott Michelfdc40a02009-02-17 22:15:04 +00006743 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
Chris Lattner308575b2005-11-20 22:56:56 +00006744 TargetLowering::Custom &&
6745 "Must custom expand ReadCycleCounter");
Dan Gohman475871a2008-07-27 21:46:04 +00006746 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006747 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattner27a6c732007-11-24 07:07:01 +00006748 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006749 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006750 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006751 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006752 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006753
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006754 case ISD::ATOMIC_CMP_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006755 // This operation does not need a loop.
6756 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6757 assert(Tmp.getNode() && "Node must be custom expanded!");
6758 ExpandOp(Tmp.getValue(0), Lo, Hi);
6759 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6760 LegalizeOp(Tmp.getValue(1)));
6761 break;
6762 }
6763
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006764 case ISD::ATOMIC_LOAD_ADD:
6765 case ISD::ATOMIC_LOAD_SUB:
6766 case ISD::ATOMIC_LOAD_AND:
6767 case ISD::ATOMIC_LOAD_OR:
6768 case ISD::ATOMIC_LOAD_XOR:
6769 case ISD::ATOMIC_LOAD_NAND:
6770 case ISD::ATOMIC_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006771 // These operations require a loop to be generated. We can't do that yet,
6772 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006773 SDValue In2Lo, In2Hi, In2;
6774 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006775 In2 = DAG.getNode(ISD::BUILD_PAIR, dl, VT, In2Lo, In2Hi);
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006776 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00006777 SDValue Replace =
Dale Johannesen8a782a22009-02-02 22:12:50 +00006778 DAG.getAtomic(Op.getOpcode(), dl, Anode->getMemoryVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006779 Op.getOperand(0), Op.getOperand(1), In2,
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006780 Anode->getSrcValue(), Anode->getAlignment());
6781 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006782 ExpandOp(Result.getValue(0), Lo, Hi);
6783 // Remember that we legalized the chain.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006784 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Result.getValue(1)));
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006785 break;
6786 }
6787
Chris Lattner4e6c7462005-01-08 19:27:05 +00006788 // These operators cannot be expanded directly, emit them as calls to
6789 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006790 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006791 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006792 SDValue Op;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006793 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6794 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006795 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6796 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006797 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006798
Dale Johannesen8a782a22009-02-02 22:12:50 +00006799 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op), DAG);
Chris Lattnerf20d1832005-07-30 01:40:57 +00006800
Chris Lattner80a3e942005-07-29 00:33:32 +00006801 // Now that the custom expander is done, expand the result, which is still
6802 // VT.
Gabor Greifba36cb52008-08-28 21:40:38 +00006803 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006804 ExpandOp(Op, Lo, Hi);
6805 break;
6806 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006807 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006808
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006809 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6810 VT);
6811 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6812 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006813 break;
Evan Cheng56966222007-01-12 02:11:51 +00006814 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006815
Evan Cheng56966222007-01-12 02:11:51 +00006816 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006817 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006818 SDValue Op;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006819 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6820 case Expand: assert(0 && "cannot expand FP!");
6821 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6822 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6823 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006824
Dale Johannesen8a782a22009-02-02 22:12:50 +00006825 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, dl, VT, Op), DAG);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006826
6827 // Now that the custom expander is done, expand the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00006828 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006829 ExpandOp(Op, Lo, Hi);
6830 break;
6831 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006832 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006833
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006834 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6835 VT);
6836 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6837 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006838 break;
Evan Cheng56966222007-01-12 02:11:51 +00006839 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006840
Evan Cheng05a2d562006-01-09 18:31:59 +00006841 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006842 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006843 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006844 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006845 SDValue Op = DAG.getNode(ISD::SHL, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006846 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006847 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006848 // Now that the custom expander is done, expand the result, which is
6849 // still VT.
6850 ExpandOp(Op, Lo, Hi);
6851 break;
6852 }
6853 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006854
6855 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
Chris Lattner79980b02006-09-13 03:50:39 +00006856 // this X << 1 as X+X.
6857 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006858 if (ShAmt->getAPIntValue() == 1 &&
Scott Michelfdc40a02009-02-17 22:15:04 +00006859 TLI.isOperationLegalOrCustom(ISD::ADDC, NVT) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006860 TLI.isOperationLegalOrCustom(ISD::ADDE, NVT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006861 SDValue LoOps[2], HiOps[3];
Chris Lattner79980b02006-09-13 03:50:39 +00006862 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6863 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6864 LoOps[1] = LoOps[0];
Dale Johannesen8a782a22009-02-02 22:12:50 +00006865 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Chris Lattner79980b02006-09-13 03:50:39 +00006866
6867 HiOps[1] = HiOps[0];
6868 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006869 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Chris Lattner79980b02006-09-13 03:50:39 +00006870 break;
6871 }
6872 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006873
Chris Lattnere34b3962005-01-19 04:19:40 +00006874 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006875 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006876 break;
Chris Lattner47599822005-04-02 03:38:53 +00006877
6878 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006879 TargetLowering::LegalizeAction Action =
6880 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6881 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6882 Action == TargetLowering::Custom) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006883 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006884 ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006885 break;
6886 }
6887
Chris Lattnere34b3962005-01-19 04:19:40 +00006888 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006889 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006890 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006891 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006892
Evan Cheng05a2d562006-01-09 18:31:59 +00006893 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006894 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006895 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006896 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dale Johannesene72c5962009-02-06 21:55:48 +00006897 SDValue Op = DAG.getNode(ISD::SRA, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006898 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006899 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006900 // Now that the custom expander is done, expand the result, which is
6901 // still VT.
6902 ExpandOp(Op, Lo, Hi);
6903 break;
6904 }
6905 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006906
Chris Lattnere34b3962005-01-19 04:19:40 +00006907 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006908 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006909 break;
Chris Lattner47599822005-04-02 03:38:53 +00006910
6911 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006912 TargetLowering::LegalizeAction Action =
6913 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6914 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6915 Action == TargetLowering::Custom) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006916 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006917 ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006918 break;
6919 }
6920
Chris Lattnere34b3962005-01-19 04:19:40 +00006921 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006922 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006923 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006924 }
6925
6926 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006927 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006928 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006929 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006930 SDValue Op = DAG.getNode(ISD::SRL, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006931 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006932 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006933 // Now that the custom expander is done, expand the result, which is
6934 // still VT.
6935 ExpandOp(Op, Lo, Hi);
6936 break;
6937 }
6938 }
6939
Chris Lattnere34b3962005-01-19 04:19:40 +00006940 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006941 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006942 break;
Chris Lattner47599822005-04-02 03:38:53 +00006943
6944 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006945 TargetLowering::LegalizeAction Action =
6946 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6947 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6948 Action == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006949 ExpandShiftParts(ISD::SRL_PARTS,
6950 Node->getOperand(0), ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006951 break;
6952 }
6953
Chris Lattnere34b3962005-01-19 04:19:40 +00006954 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006955 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006956 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006957 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006958
Misha Brukmanedf128a2005-04-21 22:36:52 +00006959 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006960 case ISD::SUB: {
6961 // If the target wants to custom expand this, let them.
6962 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6963 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006964 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006965 if (Result.getNode()) {
Duncan Sands69bfb152008-06-22 09:42:16 +00006966 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006967 break;
6968 }
6969 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006970 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006971 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006972 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6973 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Dan Gohman475871a2008-07-27 21:46:04 +00006974 SDValue LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006975 LoOps[0] = LHSL;
6976 LoOps[1] = RHSL;
6977 HiOps[0] = LHSH;
6978 HiOps[1] = RHSH;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006979
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006980 //cascaded check to see if any smaller size has a a carry flag.
6981 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
6982 bool hasCarry = false;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006983 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
6984 MVT AVT = MVT::getIntegerVT(BitSize);
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006985 if (TLI.isOperationLegalOrCustom(OpV, AVT)) {
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006986 hasCarry = true;
6987 break;
6988 }
6989 }
6990
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006991 if(hasCarry) {
Evan Cheng637ed032008-12-12 18:49:09 +00006992 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Andrew Lenharth40d51392008-10-07 14:15:42 +00006993 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006994 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00006995 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006996 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Andrew Lenharth40d51392008-10-07 14:15:42 +00006997 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006998 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00006999 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007000 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007001 }
7002 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007003 } else {
Andrew Lenharth40d51392008-10-07 14:15:42 +00007004 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007005 Lo = DAG.getNode(ISD::ADD, dl, NVT, LoOps, 2);
7006 Hi = DAG.getNode(ISD::ADD, dl, NVT, HiOps, 2);
7007 SDValue Cmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007008 Lo, LoOps[0], ISD::SETULT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007009 SDValue Carry1 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp1,
Scott Michelfdc40a02009-02-17 22:15:04 +00007010 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007011 DAG.getConstant(0, NVT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00007012 SDValue Cmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007013 Lo, LoOps[1], ISD::SETULT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007014 SDValue Carry2 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp2,
Scott Michelfdc40a02009-02-17 22:15:04 +00007015 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007016 Carry1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007017 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, Carry2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007018 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007019 Lo = DAG.getNode(ISD::SUB, dl, NVT, LoOps, 2);
7020 Hi = DAG.getNode(ISD::SUB, dl, NVT, HiOps, 2);
7021 SDValue Cmp = DAG.getSetCC(dl, NVT, LoOps[0], LoOps[1], ISD::SETULT);
7022 SDValue Borrow = DAG.getNode(ISD::SELECT, dl, NVT, Cmp,
Scott Michelfdc40a02009-02-17 22:15:04 +00007023 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007024 DAG.getConstant(0, NVT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00007025 Hi = DAG.getNode(ISD::SUB, dl, NVT, Hi, Borrow);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007026 }
7027 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007028 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00007029 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007030
Chris Lattnerb429f732007-05-17 18:15:41 +00007031 case ISD::ADDC:
7032 case ISD::SUBC: {
7033 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007034 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007035 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7036 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7037 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007038 SDValue LoOps[2] = { LHSL, RHSL };
7039 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michelfdc40a02009-02-17 22:15:04 +00007040
Chris Lattnerb429f732007-05-17 18:15:41 +00007041 if (Node->getOpcode() == ISD::ADDC) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007042 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Chris Lattnerb429f732007-05-17 18:15:41 +00007043 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007044 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007045 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007046 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Chris Lattnerb429f732007-05-17 18:15:41 +00007047 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007048 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007049 }
7050 // Remember that we legalized the flag.
7051 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7052 break;
7053 }
7054 case ISD::ADDE:
7055 case ISD::SUBE: {
7056 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007057 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007058 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7059 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7060 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007061 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
7062 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michelfdc40a02009-02-17 22:15:04 +00007063
Dale Johannesen8a782a22009-02-02 22:12:50 +00007064 Lo = DAG.getNode(Node->getOpcode(), dl, VTList, LoOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007065 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007066 Hi = DAG.getNode(Node->getOpcode(), dl, VTList, HiOps, 3);
Scott Michelfdc40a02009-02-17 22:15:04 +00007067
Chris Lattnerb429f732007-05-17 18:15:41 +00007068 // Remember that we legalized the flag.
7069 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7070 break;
7071 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007072 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007073 // If the target wants to custom expand this, let them.
7074 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00007075 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007076 if (New.getNode()) {
Chris Lattner8829dc82006-09-16 05:08:34 +00007077 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007078 break;
7079 }
7080 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007081
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007082 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, NVT);
7083 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, NVT);
7084 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, NVT);
7085 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00007086 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman475871a2008-07-27 21:46:04 +00007087 SDValue LL, LH, RL, RH;
Nate Begemanc7c16572005-04-11 03:01:51 +00007088 ExpandOp(Node->getOperand(0), LL, LH);
7089 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007090 unsigned OuterBitSize = Op.getValueSizeInBits();
7091 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00007092 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
7093 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00007094 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
7095 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
7096 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00007097 // The inputs are both zero-extended.
7098 if (HasUMUL_LOHI) {
7099 // We can emit a umul_lohi.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007100 Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007101 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007102 break;
7103 }
7104 if (HasMULHU) {
7105 // We can emit a mulhu+mul.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007106 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7107 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
Dan Gohman525178c2007-10-08 18:33:35 +00007108 break;
7109 }
Dan Gohman525178c2007-10-08 18:33:35 +00007110 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007111 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00007112 // The input values are both sign-extended.
7113 if (HasSMUL_LOHI) {
7114 // We can emit a smul_lohi.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007115 Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007116 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007117 break;
7118 }
7119 if (HasMULHS) {
7120 // We can emit a mulhs+mul.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007121 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7122 Hi = DAG.getNode(ISD::MULHS, dl, NVT, LL, RL);
Dan Gohman525178c2007-10-08 18:33:35 +00007123 break;
7124 }
7125 }
7126 if (HasUMUL_LOHI) {
7127 // Lo,Hi = umul LHS, RHS.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007128 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, dl,
Dan Gohman525178c2007-10-08 18:33:35 +00007129 DAG.getVTList(NVT, NVT), LL, RL);
7130 Lo = UMulLOHI;
7131 Hi = UMulLOHI.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007132 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7133 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7134 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7135 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00007136 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00007137 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007138 if (HasMULHU) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007139 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7140 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
7141 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7142 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7143 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7144 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007145 break;
7146 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007147 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00007148
Dan Gohman525178c2007-10-08 18:33:35 +00007149 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00007150 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00007151 break;
7152 }
Evan Cheng56966222007-01-12 02:11:51 +00007153 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007154 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007155 break;
7156 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007157 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007158 break;
7159 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007160 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007161 break;
7162 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007163 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007164 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00007165
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007166 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00007167 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
7168 RTLIB::ADD_F64,
7169 RTLIB::ADD_F80,
7170 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007171 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007172 break;
7173 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00007174 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
7175 RTLIB::SUB_F64,
7176 RTLIB::SUB_F80,
7177 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007178 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007179 break;
7180 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00007181 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
7182 RTLIB::MUL_F64,
7183 RTLIB::MUL_F80,
7184 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007185 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007186 break;
7187 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007188 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
7189 RTLIB::DIV_F64,
7190 RTLIB::DIV_F80,
7191 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007192 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007193 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007194 case ISD::FP_EXTEND: {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007195 if (VT == MVT::ppcf128) {
7196 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
7197 Node->getOperand(0).getValueType()==MVT::f64);
7198 const uint64_t zero = 0;
7199 if (Node->getOperand(0).getValueType()==MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00007200 Hi = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Node->getOperand(0));
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007201 else
7202 Hi = Node->getOperand(0);
7203 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7204 break;
7205 }
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007206 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
7207 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
7208 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007209 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007210 }
7211 case ISD::FP_ROUND: {
7212 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
7213 VT);
7214 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
7215 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007216 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007217 }
Evan Cheng4b887022008-09-09 23:02:14 +00007218 case ISD::FSQRT:
7219 case ISD::FSIN:
Scott Michelfdc40a02009-02-17 22:15:04 +00007220 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007221 case ISD::FLOG:
7222 case ISD::FLOG2:
7223 case ISD::FLOG10:
7224 case ISD::FEXP:
7225 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007226 case ISD::FTRUNC:
7227 case ISD::FFLOOR:
7228 case ISD::FCEIL:
7229 case ISD::FRINT:
7230 case ISD::FNEARBYINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00007231 case ISD::FPOW:
7232 case ISD::FPOWI: {
Evan Cheng56966222007-01-12 02:11:51 +00007233 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007234 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00007235 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00007236 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
7237 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007238 break;
7239 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00007240 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
7241 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007242 break;
7243 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00007244 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
7245 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007246 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007247 case ISD::FLOG:
7248 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
7249 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
7250 break;
7251 case ISD::FLOG2:
7252 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
7253 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
7254 break;
7255 case ISD::FLOG10:
7256 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
7257 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
7258 break;
7259 case ISD::FEXP:
7260 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
7261 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
7262 break;
7263 case ISD::FEXP2:
7264 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
7265 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
7266 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007267 case ISD::FTRUNC:
7268 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
7269 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
7270 break;
7271 case ISD::FFLOOR:
7272 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
7273 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
7274 break;
7275 case ISD::FCEIL:
7276 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
7277 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
7278 break;
7279 case ISD::FRINT:
7280 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
7281 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
7282 break;
7283 case ISD::FNEARBYINT:
7284 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
7285 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
7286 break;
Evan Cheng4b887022008-09-09 23:02:14 +00007287 case ISD::FPOW:
7288 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
7289 RTLIB::POW_PPCF128);
7290 break;
7291 case ISD::FPOWI:
7292 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
7293 RTLIB::POWI_PPCF128);
7294 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007295 default: assert(0 && "Unreachable!");
7296 }
Duncan Sands460a14e2008-04-12 17:14:18 +00007297 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00007298 break;
7299 }
Evan Cheng966bf242006-12-16 00:52:40 +00007300 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007301 if (VT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00007302 SDValue Tmp;
Dale Johannesenf6467742007-10-12 19:02:17 +00007303 ExpandOp(Node->getOperand(0), Lo, Tmp);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007304 Hi = DAG.getNode(ISD::FABS, dl, NVT, Tmp);
Dale Johannesenf6467742007-10-12 19:02:17 +00007305 // lo = hi==fabs(hi) ? lo : -lo;
Dale Johannesen8a782a22009-02-02 22:12:50 +00007306 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Hi, Tmp,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007307 Lo, DAG.getNode(ISD::FNEG, dl, NVT, Lo),
7308 DAG.getCondCode(ISD::SETEQ));
Dale Johannesenf6467742007-10-12 19:02:17 +00007309 break;
7310 }
Dan Gohman475871a2008-07-27 21:46:04 +00007311 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007312 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
7313 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007314 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7315 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7316 Lo = DAG.getNode(ISD::AND, dl, NVT, Lo, Mask);
Evan Cheng966bf242006-12-16 00:52:40 +00007317 if (getTypeAction(NVT) == Expand)
7318 ExpandOp(Lo, Lo, Hi);
7319 break;
7320 }
7321 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007322 if (VT == MVT::ppcf128) {
7323 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007324 Lo = DAG.getNode(ISD::FNEG, dl, MVT::f64, Lo);
7325 Hi = DAG.getNode(ISD::FNEG, dl, MVT::f64, Hi);
Dale Johannesenf6467742007-10-12 19:02:17 +00007326 break;
7327 }
Dan Gohman475871a2008-07-27 21:46:04 +00007328 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007329 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
7330 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007331 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7332 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7333 Lo = DAG.getNode(ISD::XOR, dl, NVT, Lo, Mask);
Evan Cheng966bf242006-12-16 00:52:40 +00007334 if (getTypeAction(NVT) == Expand)
7335 ExpandOp(Lo, Lo, Hi);
7336 break;
7337 }
Evan Cheng912095b2007-01-04 21:56:39 +00007338 case ISD::FCOPYSIGN: {
7339 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
7340 if (getTypeAction(NVT) == Expand)
7341 ExpandOp(Lo, Lo, Hi);
7342 break;
7343 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007344 case ISD::SINT_TO_FP:
7345 case ISD::UINT_TO_FP: {
7346 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007347 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00007348
7349 // Promote the operand if needed. Do this before checking for
7350 // ppcf128 so conversions of i16 and i8 work.
7351 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman475871a2008-07-27 21:46:04 +00007352 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesencf498192008-03-18 17:28:38 +00007353 Tmp = isSigned
Dale Johannesen8a782a22009-02-02 22:12:50 +00007354 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp.getValueType(), Tmp,
Dale Johannesencf498192008-03-18 17:28:38 +00007355 DAG.getValueType(SrcVT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00007356 : DAG.getZeroExtendInReg(Tmp, dl, SrcVT);
Gabor Greifba36cb52008-08-28 21:40:38 +00007357 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesencf498192008-03-18 17:28:38 +00007358 SrcVT = Node->getOperand(0).getValueType();
7359 }
7360
Dan Gohmana2e94852008-03-10 23:03:31 +00007361 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007362 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007363 if (isSigned) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007364 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007365 Node->getOperand(0)));
7366 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7367 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007368 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Scott Michelfdc40a02009-02-17 22:15:04 +00007369 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007370 Node->getOperand(0)));
7371 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007372 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007373 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen8a782a22009-02-02 22:12:50 +00007374 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl,
7375 MVT::ppcf128, Node->getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00007376 DAG.getConstant(0, MVT::i32),
Dale Johannesen8a782a22009-02-02 22:12:50 +00007377 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007378 DAG.getConstantFP
7379 (APFloat(APInt(128, 2, TwoE32)),
7380 MVT::ppcf128)),
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007381 Hi,
7382 DAG.getCondCode(ISD::SETLT)),
7383 Lo, Hi);
7384 }
7385 break;
7386 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00007387 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
7388 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007389 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen8a782a22009-02-02 22:12:50 +00007390 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::ppcf128,
7391 Node->getOperand(0)), Lo, Hi);
7392 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007393 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
Dale Johannesen8a782a22009-02-02 22:12:50 +00007394 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl, MVT::ppcf128,
7395 Node->getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00007396 DAG.getConstant(0, MVT::i64),
Dale Johannesen8a782a22009-02-02 22:12:50 +00007397 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007398 DAG.getConstantFP
7399 (APFloat(APInt(128, 2, TwoE64)),
7400 MVT::ppcf128)),
Dale Johannesen6e63e092007-10-12 17:52:03 +00007401 Hi,
7402 DAG.getCondCode(ISD::SETLT)),
7403 Lo, Hi);
7404 break;
7405 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007406
Dan Gohmana2e94852008-03-10 23:03:31 +00007407 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00007408 Node->getOperand(0), dl);
Evan Cheng110cf482008-04-01 01:50:16 +00007409 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00007410 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00007411 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00007412 break;
7413 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00007414 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00007415
Chris Lattner83397362005-12-21 18:02:52 +00007416 // Make sure the resultant values have been legalized themselves, unless this
7417 // is a type that requires multi-step expansion.
7418 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
7419 Lo = LegalizeOp(Lo);
Gabor Greifba36cb52008-08-28 21:40:38 +00007420 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00007421 // Don't legalize the high part if it is expanded to a single node.
7422 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00007423 }
Evan Cheng05a2d562006-01-09 18:31:59 +00007424
7425 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00007426 bool isNew =
7427 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00007428 assert(isNew && "Value already expanded?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007429 isNew = isNew;
Chris Lattner3e928bb2005-01-07 07:47:09 +00007430}
7431
Dan Gohman7f321562007-06-25 16:23:39 +00007432/// SplitVectorOp - Given an operand of vector type, break it down into
7433/// two smaller values, still of vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00007434void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
7435 SDValue &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007436 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007437 SDNode *Node = Op.getNode();
Dale Johannesenbb5da912009-02-02 20:41:04 +00007438 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007439 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00007440 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00007441
Duncan Sands83ec4b62008-06-06 12:08:01 +00007442 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00007443
7444 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
7445 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
7446
Duncan Sands83ec4b62008-06-06 12:08:01 +00007447 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
7448 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007449
Chris Lattnerc7029802006-03-18 01:44:44 +00007450 // See if we already split it.
Dan Gohman475871a2008-07-27 21:46:04 +00007451 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattnerc7029802006-03-18 01:44:44 +00007452 = SplitNodes.find(Op);
7453 if (I != SplitNodes.end()) {
7454 Lo = I->second.first;
7455 Hi = I->second.second;
7456 return;
7457 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007458
Chris Lattnerc7029802006-03-18 01:44:44 +00007459 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007460 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007461#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007462 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007463#endif
7464 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007465 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00007466 Lo = DAG.getUNDEF(NewVT_Lo);
7467 Hi = DAG.getUNDEF(NewVT_Hi);
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007468 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007469 case ISD::BUILD_PAIR:
7470 Lo = Node->getOperand(0);
7471 Hi = Node->getOperand(1);
7472 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00007473 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00007474 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
7475 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007476 unsigned Index = Idx->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007477 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman68679912008-04-25 18:07:40 +00007478 if (Index < NewNumElts_Lo)
Dale Johannesenc6be1102009-02-02 22:49:46 +00007479 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Lo, Lo, ScalarOp,
Nate Begeman68679912008-04-25 18:07:40 +00007480 DAG.getIntPtrConstant(Index));
7481 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00007482 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Hi, Hi, ScalarOp,
Nate Begeman68679912008-04-25 18:07:40 +00007483 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
7484 break;
7485 }
Dan Gohman475871a2008-07-27 21:46:04 +00007486 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007487 Node->getOperand(1),
7488 Node->getOperand(2), dl);
Nate Begeman68679912008-04-25 18:07:40 +00007489 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00007490 break;
7491 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00007492 case ISD::VECTOR_SHUFFLE: {
7493 // Build the low part.
Dan Gohman475871a2008-07-27 21:46:04 +00007494 SDValue Mask = Node->getOperand(2);
7495 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007496 MVT PtrVT = TLI.getPointerTy();
Scott Michelfdc40a02009-02-17 22:15:04 +00007497
7498 // Insert all of the elements from the input that are needed. We use
Chris Lattner6c9c6802007-11-19 21:16:54 +00007499 // buildvector of extractelement here because the input vectors will have
7500 // to be legalized, so this makes the code simpler.
7501 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007502 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007503 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007504 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman5922f562008-03-14 00:53:31 +00007505 continue;
7506 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007507 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007508 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007509 if (Idx >= NumElements) {
7510 InVec = Node->getOperand(1);
7511 Idx -= NumElements;
7512 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00007513 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner6c9c6802007-11-19 21:16:54 +00007514 DAG.getConstant(Idx, PtrVT)));
7515 }
Evan Chenga87008d2009-02-25 22:49:59 +00007516 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007517 Ops.clear();
Scott Michelfdc40a02009-02-17 22:15:04 +00007518
Chris Lattner6c9c6802007-11-19 21:16:54 +00007519 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007520 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007521 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007522 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman5922f562008-03-14 00:53:31 +00007523 continue;
7524 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007525 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007526 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007527 if (Idx >= NumElements) {
7528 InVec = Node->getOperand(1);
7529 Idx -= NumElements;
7530 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00007531 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner6c9c6802007-11-19 21:16:54 +00007532 DAG.getConstant(Idx, PtrVT)));
7533 }
Evan Chenga87008d2009-02-25 22:49:59 +00007534 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007535 break;
7536 }
Dan Gohman7f321562007-06-25 16:23:39 +00007537 case ISD::BUILD_VECTOR: {
Scott Michelfdc40a02009-02-17 22:15:04 +00007538 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007539 Node->op_begin()+NewNumElts_Lo);
Evan Chenga87008d2009-02-25 22:49:59 +00007540 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007541
Scott Michelfdc40a02009-02-17 22:15:04 +00007542 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007543 Node->op_end());
Evan Chenga87008d2009-02-25 22:49:59 +00007544 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007545 break;
7546 }
Dan Gohman7f321562007-06-25 16:23:39 +00007547 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00007548 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00007549 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7550 if (NewNumSubvectors == 1) {
7551 Lo = Node->getOperand(0);
7552 Hi = Node->getOperand(1);
7553 } else {
Mon P Wangaeb06d22008-11-10 04:46:22 +00007554 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
7555 Node->op_begin()+NewNumSubvectors);
Scott Michelfdc40a02009-02-17 22:15:04 +00007556 Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Lo,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007557 &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00007558
Mon P Wangaeb06d22008-11-10 04:46:22 +00007559 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007560 Node->op_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00007561 Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Hi,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007562 &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00007563 }
Dan Gohman65956352007-06-13 15:12:02 +00007564 break;
7565 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00007566 case ISD::EXTRACT_SUBVECTOR: {
7567 SDValue Vec = Op.getOperand(0);
7568 SDValue Idx = Op.getOperand(1);
7569 MVT IdxVT = Idx.getValueType();
7570
Dale Johannesenc6be1102009-02-02 22:49:46 +00007571 Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Lo, Vec, Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007572 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
7573 if (CIdx) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007574 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec,
Mon P Wangaeb06d22008-11-10 04:46:22 +00007575 DAG.getConstant(CIdx->getZExtValue() + NewNumElts_Lo,
7576 IdxVT));
7577 } else {
Dale Johannesenc6be1102009-02-02 22:49:46 +00007578 Idx = DAG.getNode(ISD::ADD, dl, IdxVT, Idx,
Mon P Wangaeb06d22008-11-10 04:46:22 +00007579 DAG.getConstant(NewNumElts_Lo, IdxVT));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007580 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec, Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007581 }
7582 break;
7583 }
Dan Gohmanc6230962007-10-17 14:48:28 +00007584 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007585 SDValue Cond = Node->getOperand(0);
Dan Gohmanc6230962007-10-17 14:48:28 +00007586
Dan Gohman475871a2008-07-27 21:46:04 +00007587 SDValue LL, LH, RL, RH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007588 SplitVectorOp(Node->getOperand(1), LL, LH);
7589 SplitVectorOp(Node->getOperand(2), RL, RH);
7590
Duncan Sands83ec4b62008-06-06 12:08:01 +00007591 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00007592 // Handle a vector merge.
Dan Gohman475871a2008-07-27 21:46:04 +00007593 SDValue CL, CH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007594 SplitVectorOp(Cond, CL, CH);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007595 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, CL, LL, RL);
7596 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007597 } else {
7598 // Handle a simple select with vector operands.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007599 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, Cond, LL, RL);
7600 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007601 }
7602 break;
7603 }
Chris Lattner80c1a562008-06-30 02:43:01 +00007604 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007605 SDValue CondLHS = Node->getOperand(0);
7606 SDValue CondRHS = Node->getOperand(1);
7607 SDValue CondCode = Node->getOperand(4);
Scott Michelfdc40a02009-02-17 22:15:04 +00007608
Dan Gohman475871a2008-07-27 21:46:04 +00007609 SDValue LL, LH, RL, RH;
Chris Lattner80c1a562008-06-30 02:43:01 +00007610 SplitVectorOp(Node->getOperand(2), LL, LH);
7611 SplitVectorOp(Node->getOperand(3), RL, RH);
Scott Michelfdc40a02009-02-17 22:15:04 +00007612
Chris Lattner80c1a562008-06-30 02:43:01 +00007613 // Handle a simple select with vector operands.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007614 Lo = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Lo, CondLHS, CondRHS,
Chris Lattner80c1a562008-06-30 02:43:01 +00007615 LL, RL, CondCode);
Scott Michelfdc40a02009-02-17 22:15:04 +00007616 Hi = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Hi, CondLHS, CondRHS,
Chris Lattner80c1a562008-06-30 02:43:01 +00007617 LH, RH, CondCode);
7618 break;
7619 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00007620 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007621 SDValue LL, LH, RL, RH;
Nate Begemanb43e9c12008-05-12 19:40:03 +00007622 SplitVectorOp(Node->getOperand(0), LL, LH);
7623 SplitVectorOp(Node->getOperand(1), RL, RH);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007624 Lo = DAG.getNode(ISD::VSETCC, dl, NewVT_Lo, LL, RL, Node->getOperand(2));
7625 Hi = DAG.getNode(ISD::VSETCC, dl, NewVT_Hi, LH, RH, Node->getOperand(2));
Nate Begemanb43e9c12008-05-12 19:40:03 +00007626 break;
7627 }
Dan Gohman7f321562007-06-25 16:23:39 +00007628 case ISD::ADD:
7629 case ISD::SUB:
7630 case ISD::MUL:
7631 case ISD::FADD:
7632 case ISD::FSUB:
7633 case ISD::FMUL:
7634 case ISD::SDIV:
7635 case ISD::UDIV:
7636 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00007637 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007638 case ISD::AND:
7639 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00007640 case ISD::XOR:
7641 case ISD::UREM:
7642 case ISD::SREM:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00007643 case ISD::FREM:
7644 case ISD::SHL:
7645 case ISD::SRA:
7646 case ISD::SRL: {
Dan Gohman475871a2008-07-27 21:46:04 +00007647 SDValue LL, LH, RL, RH;
Chris Lattnerc7029802006-03-18 01:44:44 +00007648 SplitVectorOp(Node->getOperand(0), LL, LH);
7649 SplitVectorOp(Node->getOperand(1), RL, RH);
Scott Michelfdc40a02009-02-17 22:15:04 +00007650
Dale Johannesenc6be1102009-02-02 22:49:46 +00007651 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, LL, RL);
7652 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00007653 break;
7654 }
Dan Gohman7f8613e2008-08-14 20:04:46 +00007655 case ISD::FP_ROUND:
Dan Gohman82669522007-10-11 23:57:53 +00007656 case ISD::FPOWI: {
Dan Gohman475871a2008-07-27 21:46:04 +00007657 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007658 SplitVectorOp(Node->getOperand(0), L, H);
7659
Dale Johannesenc6be1102009-02-02 22:49:46 +00007660 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L, Node->getOperand(1));
7661 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00007662 break;
7663 }
7664 case ISD::CTTZ:
7665 case ISD::CTLZ:
7666 case ISD::CTPOP:
7667 case ISD::FNEG:
7668 case ISD::FABS:
7669 case ISD::FSQRT:
7670 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00007671 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007672 case ISD::FLOG:
7673 case ISD::FLOG2:
7674 case ISD::FLOG10:
7675 case ISD::FEXP:
7676 case ISD::FEXP2:
Nate Begemanb348d182007-11-17 03:58:34 +00007677 case ISD::FP_TO_SINT:
7678 case ISD::FP_TO_UINT:
7679 case ISD::SINT_TO_FP:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007680 case ISD::UINT_TO_FP:
7681 case ISD::TRUNCATE:
7682 case ISD::ANY_EXTEND:
7683 case ISD::SIGN_EXTEND:
7684 case ISD::ZERO_EXTEND:
7685 case ISD::FP_EXTEND: {
Dan Gohman475871a2008-07-27 21:46:04 +00007686 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007687 SplitVectorOp(Node->getOperand(0), L, H);
7688
Dale Johannesenc6be1102009-02-02 22:49:46 +00007689 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L);
7690 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00007691 break;
7692 }
Mon P Wang77cdf302008-11-10 20:54:11 +00007693 case ISD::CONVERT_RNDSAT: {
7694 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
7695 SDValue L, H;
7696 SplitVectorOp(Node->getOperand(0), L, H);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007697 SDValue DTyOpL = DAG.getValueType(NewVT_Lo);
7698 SDValue DTyOpH = DAG.getValueType(NewVT_Hi);
7699 SDValue STyOpL = DAG.getValueType(L.getValueType());
7700 SDValue STyOpH = DAG.getValueType(H.getValueType());
Mon P Wang77cdf302008-11-10 20:54:11 +00007701
7702 SDValue RndOp = Node->getOperand(3);
7703 SDValue SatOp = Node->getOperand(4);
7704
Dale Johannesenc460ae92009-02-04 00:13:36 +00007705 Lo = DAG.getConvertRndSat(NewVT_Lo, dl, L, DTyOpL, STyOpL,
Mon P Wang77cdf302008-11-10 20:54:11 +00007706 RndOp, SatOp, CvtCode);
Dale Johannesenc460ae92009-02-04 00:13:36 +00007707 Hi = DAG.getConvertRndSat(NewVT_Hi, dl, H, DTyOpH, STyOpH,
Mon P Wang77cdf302008-11-10 20:54:11 +00007708 RndOp, SatOp, CvtCode);
7709 break;
7710 }
Dan Gohman7f321562007-06-25 16:23:39 +00007711 case ISD::LOAD: {
7712 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007713 SDValue Ch = LD->getChain();
7714 SDValue Ptr = LD->getBasePtr();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007715 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007716 const Value *SV = LD->getSrcValue();
7717 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007718 MVT MemoryVT = LD->getMemoryVT();
Dan Gohman7f321562007-06-25 16:23:39 +00007719 unsigned Alignment = LD->getAlignment();
7720 bool isVolatile = LD->isVolatile();
7721
Dan Gohman7f8613e2008-08-14 20:04:46 +00007722 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesene8d72302009-02-06 23:05:02 +00007723 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Dan Gohman7f8613e2008-08-14 20:04:46 +00007724
7725 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7726 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7727 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7728
Dale Johannesenc6be1102009-02-02 22:49:46 +00007729 Lo = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007730 NewVT_Lo, Ch, Ptr, Offset,
7731 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7732 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Dale Johannesenc6be1102009-02-02 22:49:46 +00007733 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00007734 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00007735 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00007736 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007737 Hi = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007738 NewVT_Hi, Ch, Ptr, Offset,
7739 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00007740
Chris Lattnerc7029802006-03-18 01:44:44 +00007741 // Build a factor node to remember that this load is independent of the
7742 // other one.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007743 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007744 Hi.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00007745
Chris Lattnerc7029802006-03-18 01:44:44 +00007746 // Remember that we legalized the chain.
7747 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00007748 break;
7749 }
Dan Gohman7f321562007-06-25 16:23:39 +00007750 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00007751 // We know the result is a vector. The input may be either a vector or a
7752 // scalar value.
Dan Gohman475871a2008-07-27 21:46:04 +00007753 SDValue InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007754 if (!InOp.getValueType().isVector() ||
7755 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00007756 // The input is a scalar or single-element vector.
7757 // Lower to a store/load so that it can be split.
7758 // FIXME: this could be improved probably.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007759 unsigned LdAlign = TLI.getTargetData()->
7760 getPrefTypeAlignment(Op.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00007761 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greifba36cb52008-08-28 21:40:38 +00007762 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Chris Lattner7692eb42006-03-23 21:16:34 +00007763
Dale Johannesenc6be1102009-02-02 22:49:46 +00007764 SDValue St = DAG.getStore(DAG.getEntryNode(), dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007765 InOp, Ptr,
7766 PseudoSourceValue::getFixedStack(FI), 0);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007767 InOp = DAG.getLoad(Op.getValueType(), dl, St, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007768 PseudoSourceValue::getFixedStack(FI), 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00007769 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007770 // Split the vector and convert each of the pieces now.
7771 SplitVectorOp(InOp, Lo, Hi);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007772 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Lo, Lo);
7773 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007774 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007775 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007776 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007777
Chris Lattnerc7029802006-03-18 01:44:44 +00007778 // Remember in a map if the values will be reused later.
Scott Michelfdc40a02009-02-17 22:15:04 +00007779 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007780 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007781 assert(isNew && "Value already split?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007782 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00007783}
7784
7785
Dan Gohman89b20c02007-06-27 14:06:22 +00007786/// ScalarizeVectorOp - Given an operand of single-element vector type
7787/// (e.g. v1f32), convert it into the equivalent operation that returns a
7788/// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +00007789SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007790 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007791 SDNode *Node = Op.getNode();
Dale Johannesenc6be1102009-02-02 22:49:46 +00007792 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007793 MVT NewVT = Op.getValueType().getVectorElementType();
7794 assert(Op.getValueType().getVectorNumElements() == 1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007795
Dan Gohman7f321562007-06-25 16:23:39 +00007796 // See if we already scalarized it.
Dan Gohman475871a2008-07-27 21:46:04 +00007797 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohman7f321562007-06-25 16:23:39 +00007798 if (I != ScalarizedNodes.end()) return I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00007799
Dan Gohman475871a2008-07-27 21:46:04 +00007800 SDValue Result;
Chris Lattnerc7029802006-03-18 01:44:44 +00007801 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007802 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007803#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007804 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007805#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007806 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7807 case ISD::ADD:
7808 case ISD::FADD:
7809 case ISD::SUB:
7810 case ISD::FSUB:
7811 case ISD::MUL:
7812 case ISD::FMUL:
7813 case ISD::SDIV:
7814 case ISD::UDIV:
7815 case ISD::FDIV:
7816 case ISD::SREM:
7817 case ISD::UREM:
7818 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007819 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007820 case ISD::AND:
7821 case ISD::OR:
7822 case ISD::XOR:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007823 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007824 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007825 ScalarizeVectorOp(Node->getOperand(0)),
7826 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007827 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007828 case ISD::FNEG:
7829 case ISD::FABS:
7830 case ISD::FSQRT:
7831 case ISD::FSIN:
7832 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007833 case ISD::FLOG:
7834 case ISD::FLOG2:
7835 case ISD::FLOG10:
7836 case ISD::FEXP:
7837 case ISD::FEXP2:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007838 case ISD::FP_TO_SINT:
7839 case ISD::FP_TO_UINT:
7840 case ISD::SINT_TO_FP:
7841 case ISD::UINT_TO_FP:
7842 case ISD::SIGN_EXTEND:
7843 case ISD::ZERO_EXTEND:
7844 case ISD::ANY_EXTEND:
7845 case ISD::TRUNCATE:
7846 case ISD::FP_EXTEND:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007847 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007848 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007849 ScalarizeVectorOp(Node->getOperand(0)));
7850 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00007851 case ISD::CONVERT_RNDSAT: {
7852 SDValue Op0 = ScalarizeVectorOp(Node->getOperand(0));
Dale Johannesenc460ae92009-02-04 00:13:36 +00007853 Result = DAG.getConvertRndSat(NewVT, dl, Op0,
Mon P Wang77cdf302008-11-10 20:54:11 +00007854 DAG.getValueType(NewVT),
7855 DAG.getValueType(Op0.getValueType()),
7856 Node->getOperand(3),
7857 Node->getOperand(4),
7858 cast<CvtRndSatSDNode>(Node)->getCvtCode());
7859 break;
7860 }
Dan Gohman9e04c822007-10-12 14:13:46 +00007861 case ISD::FPOWI:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007862 case ISD::FP_ROUND:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007863 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007864 NewVT,
Dan Gohman9e04c822007-10-12 14:13:46 +00007865 ScalarizeVectorOp(Node->getOperand(0)),
7866 Node->getOperand(1));
7867 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007868 case ISD::LOAD: {
7869 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007870 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7871 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman7f8613e2008-08-14 20:04:46 +00007872 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007873 const Value *SV = LD->getSrcValue();
7874 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007875 MVT MemoryVT = LD->getMemoryVT();
7876 unsigned Alignment = LD->getAlignment();
7877 bool isVolatile = LD->isVolatile();
7878
7879 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesene8d72302009-02-06 23:05:02 +00007880 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Scott Michelfdc40a02009-02-17 22:15:04 +00007881
Dale Johannesenc6be1102009-02-02 22:49:46 +00007882 Result = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007883 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7884 MemoryVT.getVectorElementType(),
7885 isVolatile, Alignment);
Dan Gohman7f321562007-06-25 16:23:39 +00007886
Chris Lattnerc7029802006-03-18 01:44:44 +00007887 // Remember that we legalized the chain.
7888 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7889 break;
7890 }
Dan Gohman7f321562007-06-25 16:23:39 +00007891 case ISD::BUILD_VECTOR:
7892 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007893 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007894 case ISD::INSERT_VECTOR_ELT:
7895 // Returning the inserted scalar element.
7896 Result = Node->getOperand(1);
7897 break;
7898 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007899 assert(Node->getOperand(0).getValueType() == NewVT &&
7900 "Concat of non-legal vectors not yet supported!");
7901 Result = Node->getOperand(0);
7902 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007903 case ISD::VECTOR_SHUFFLE: {
7904 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman475871a2008-07-27 21:46:04 +00007905 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007906 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohman7f321562007-06-25 16:23:39 +00007907 Result = ScalarizeVectorOp(Node->getOperand(1));
7908 else
7909 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007910 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007911 }
7912 case ISD::EXTRACT_SUBVECTOR:
Scott Michelfdc40a02009-02-17 22:15:04 +00007913 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007914 Node->getOperand(0), Node->getOperand(1));
Dan Gohman65956352007-06-13 15:12:02 +00007915 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007916 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007917 SDValue Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007918 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007919 Op0 = ScalarizeVectorOp(Op0);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007920 Result = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007921 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007922 }
Dan Gohman7f321562007-06-25 16:23:39 +00007923 case ISD::SELECT:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007924 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007925 ScalarizeVectorOp(Op.getOperand(1)),
7926 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007927 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007928 case ISD::SELECT_CC:
Scott Michelfdc40a02009-02-17 22:15:04 +00007929 Result = DAG.getNode(ISD::SELECT_CC, dl, NewVT, Node->getOperand(0),
Chris Lattner80c1a562008-06-30 02:43:01 +00007930 Node->getOperand(1),
7931 ScalarizeVectorOp(Op.getOperand(2)),
7932 ScalarizeVectorOp(Op.getOperand(3)),
7933 Node->getOperand(4));
7934 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007935 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007936 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7937 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007938 Result = DAG.getNode(ISD::SETCC, dl,
7939 TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00007940 Op0, Op1, Op.getOperand(2));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007941 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Result,
Nate Begeman0d1704b2008-05-12 23:09:43 +00007942 DAG.getConstant(-1ULL, NewVT),
7943 DAG.getConstant(0ULL, NewVT));
7944 break;
7945 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007946 }
7947
7948 if (TLI.isTypeLegal(NewVT))
7949 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007950 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7951 assert(isNew && "Value already scalarized?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007952 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00007953 return Result;
7954}
7955
Chris Lattner3e928bb2005-01-07 07:47:09 +00007956
Mon P Wang0c397192008-10-30 08:01:45 +00007957SDValue SelectionDAGLegalize::WidenVectorOp(SDValue Op, MVT WidenVT) {
7958 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(Op);
7959 if (I != WidenNodes.end()) return I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00007960
Mon P Wang0c397192008-10-30 08:01:45 +00007961 MVT VT = Op.getValueType();
7962 assert(VT.isVector() && "Cannot widen non-vector type!");
7963
7964 SDValue Result;
7965 SDNode *Node = Op.getNode();
Dale Johannesenc6be1102009-02-02 22:49:46 +00007966 DebugLoc dl = Node->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00007967 MVT EVT = VT.getVectorElementType();
7968
7969 unsigned NumElts = VT.getVectorNumElements();
7970 unsigned NewNumElts = WidenVT.getVectorNumElements();
7971 assert(NewNumElts > NumElts && "Cannot widen to smaller type!");
7972 assert(NewNumElts < 17);
7973
7974 // When widen is called, it is assumed that it is more efficient to use a
7975 // wide type. The default action is to widen to operation to a wider legal
7976 // vector type and then do the operation if it is legal by calling LegalizeOp
7977 // again. If there is no vector equivalent, we will unroll the operation, do
7978 // it, and rebuild the vector. If most of the operations are vectorizible to
7979 // the legal type, the resulting code will be more efficient. If this is not
7980 // the case, the resulting code will preform badly as we end up generating
7981 // code to pack/unpack the results. It is the function that calls widen
Mon P Wangf007a8b2008-11-06 05:31:54 +00007982 // that is responsible for seeing this doesn't happen.
Mon P Wang0c397192008-10-30 08:01:45 +00007983 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007984 default:
Mon P Wang0c397192008-10-30 08:01:45 +00007985#ifndef NDEBUG
7986 Node->dump(&DAG);
7987#endif
7988 assert(0 && "Unexpected operation in WidenVectorOp!");
7989 break;
7990 case ISD::CopyFromReg:
Mon P Wang49292f12008-11-15 06:05:52 +00007991 assert(0 && "CopyFromReg doesn't need widening!");
Mon P Wang0c397192008-10-30 08:01:45 +00007992 case ISD::Constant:
7993 case ISD::ConstantFP:
7994 // To build a vector of these elements, clients should call BuildVector
7995 // and with each element instead of creating a node with a vector type
7996 assert(0 && "Unexpected operation in WidenVectorOp!");
7997 case ISD::VAARG:
7998 // Variable Arguments with vector types doesn't make any sense to me
7999 assert(0 && "Unexpected operation in WidenVectorOp!");
8000 break;
Mon P Wang49292f12008-11-15 06:05:52 +00008001 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00008002 Result = DAG.getUNDEF(WidenVT);
Mon P Wang49292f12008-11-15 06:05:52 +00008003 break;
Mon P Wang0c397192008-10-30 08:01:45 +00008004 case ISD::BUILD_VECTOR: {
8005 // Build a vector with undefined for the new nodes
8006 SDValueVector NewOps(Node->op_begin(), Node->op_end());
8007 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesene8d72302009-02-06 23:05:02 +00008008 NewOps.push_back(DAG.getUNDEF(EVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008009 }
Evan Chenga87008d2009-02-25 22:49:59 +00008010 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT,
8011 &NewOps[0], NewOps.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008012 break;
8013 }
8014 case ISD::INSERT_VECTOR_ELT: {
8015 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008016 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, WidenVT, Tmp1,
Mon P Wang0c397192008-10-30 08:01:45 +00008017 Node->getOperand(1), Node->getOperand(2));
8018 break;
8019 }
8020 case ISD::VECTOR_SHUFFLE: {
8021 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8022 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
Nate Begeman9008ca62009-04-27 18:41:29 +00008023 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Node);
8024 SmallVector<int, 8> NewMask;
Mon P Wang0c397192008-10-30 08:01:45 +00008025 for (unsigned i = 0; i < NumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008026 int Idx = SVOp->getMaskElt(i);
8027 if (Idx < (int)NumElts)
8028 NewMask.push_back(Idx);
8029 else
8030 NewMask.push_back(Idx + NewNumElts - NumElts);
Mon P Wang0c397192008-10-30 08:01:45 +00008031 }
Nate Begeman9008ca62009-04-27 18:41:29 +00008032 for (unsigned i = NumElts; i < NewNumElts; ++i)
8033 NewMask.push_back(-1);
8034
8035 Result = DAG.getVectorShuffle(WidenVT, dl, Tmp1, Tmp2, &NewMask[0]);
Mon P Wang0c397192008-10-30 08:01:45 +00008036 break;
8037 }
8038 case ISD::LOAD: {
8039 // If the load widen returns true, we can use a single load for the
8040 // vector. Otherwise, it is returning a token factor for multiple
8041 // loads.
8042 SDValue TFOp;
8043 if (LoadWidenVectorOp(Result, TFOp, Op, WidenVT))
8044 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(1)));
8045 else
8046 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(0)));
8047 break;
8048 }
8049
8050 case ISD::BIT_CONVERT: {
8051 SDValue Tmp1 = Node->getOperand(0);
8052 // Converts between two different types so we need to determine
8053 // the correct widen type for the input operand.
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008054 MVT InVT = Tmp1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008055 unsigned WidenSize = WidenVT.getSizeInBits();
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008056 if (InVT.isVector()) {
8057 MVT InEltVT = InVT.getVectorElementType();
8058 unsigned InEltSize = InEltVT.getSizeInBits();
8059 assert(WidenSize % InEltSize == 0 &&
8060 "can not widen bit convert that are not multiple of element type");
8061 MVT NewInWidenVT = MVT::getVectorVT(InEltVT, WidenSize / InEltSize);
8062 Tmp1 = WidenVectorOp(Tmp1, NewInWidenVT);
8063 assert(Tmp1.getValueType().getSizeInBits() == WidenVT.getSizeInBits());
Dale Johannesenc6be1102009-02-02 22:49:46 +00008064 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Tmp1);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008065 } else {
8066 // If the result size is a multiple of the input size, widen the input
8067 // and then convert.
8068 unsigned InSize = InVT.getSizeInBits();
8069 assert(WidenSize % InSize == 0 &&
8070 "can not widen bit convert that are not multiple of element type");
8071 unsigned NewNumElts = WidenSize / InSize;
8072 SmallVector<SDValue, 16> Ops(NewNumElts);
Dale Johannesene8d72302009-02-06 23:05:02 +00008073 SDValue UndefVal = DAG.getUNDEF(InVT);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008074 Ops[0] = Tmp1;
8075 for (unsigned i = 1; i < NewNumElts; ++i)
8076 Ops[i] = UndefVal;
Mon P Wang0c397192008-10-30 08:01:45 +00008077
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008078 MVT NewInVT = MVT::getVectorVT(InVT, NewNumElts);
Evan Chenga87008d2009-02-25 22:49:59 +00008079 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, NewInVT, &Ops[0], NewNumElts);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008080 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008081 }
8082 break;
8083 }
8084
8085 case ISD::SINT_TO_FP:
8086 case ISD::UINT_TO_FP:
8087 case ISD::FP_TO_SINT:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008088 case ISD::FP_TO_UINT:
8089 case ISD::FP_ROUND: {
Mon P Wang0c397192008-10-30 08:01:45 +00008090 SDValue Tmp1 = Node->getOperand(0);
8091 // Converts between two different types so we need to determine
8092 // the correct widen type for the input operand.
8093 MVT TVT = Tmp1.getValueType();
8094 assert(TVT.isVector() && "can not widen non vector type");
8095 MVT TEVT = TVT.getVectorElementType();
8096 MVT TWidenVT = MVT::getVectorVT(TEVT, NewNumElts);
8097 Tmp1 = WidenVectorOp(Tmp1, TWidenVT);
8098 assert(Tmp1.getValueType().getVectorNumElements() == NewNumElts);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008099 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008100 break;
8101 }
8102
8103 case ISD::FP_EXTEND:
8104 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
8105 case ISD::TRUNCATE:
8106 case ISD::SIGN_EXTEND:
8107 case ISD::ZERO_EXTEND:
8108 case ISD::ANY_EXTEND:
Mon P Wang0c397192008-10-30 08:01:45 +00008109 case ISD::SIGN_EXTEND_INREG:
8110 case ISD::FABS:
8111 case ISD::FNEG:
8112 case ISD::FSQRT:
8113 case ISD::FSIN:
Mon P Wang49292f12008-11-15 06:05:52 +00008114 case ISD::FCOS:
8115 case ISD::CTPOP:
8116 case ISD::CTTZ:
8117 case ISD::CTLZ: {
Mon P Wang0c397192008-10-30 08:01:45 +00008118 // Unary op widening
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008119 SDValue Tmp1;
Mon P Wang0c397192008-10-30 08:01:45 +00008120 Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8121 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008122 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008123 break;
8124 }
Mon P Wang77cdf302008-11-10 20:54:11 +00008125 case ISD::CONVERT_RNDSAT: {
8126 SDValue RndOp = Node->getOperand(3);
8127 SDValue SatOp = Node->getOperand(4);
Mon P Wang77cdf302008-11-10 20:54:11 +00008128 SDValue SrcOp = Node->getOperand(0);
8129
8130 // Converts between two different types so we need to determine
8131 // the correct widen type for the input operand.
8132 MVT SVT = SrcOp.getValueType();
8133 assert(SVT.isVector() && "can not widen non vector type");
8134 MVT SEVT = SVT.getVectorElementType();
8135 MVT SWidenVT = MVT::getVectorVT(SEVT, NewNumElts);
8136
8137 SrcOp = WidenVectorOp(SrcOp, SWidenVT);
8138 assert(SrcOp.getValueType() == WidenVT);
8139 SDValue DTyOp = DAG.getValueType(WidenVT);
8140 SDValue STyOp = DAG.getValueType(SrcOp.getValueType());
8141 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
8142
Dale Johannesenc460ae92009-02-04 00:13:36 +00008143 Result = DAG.getConvertRndSat(WidenVT, dl, SrcOp, DTyOp, STyOp,
Mon P Wang77cdf302008-11-10 20:54:11 +00008144 RndOp, SatOp, CvtCode);
Mon P Wang77cdf302008-11-10 20:54:11 +00008145 break;
8146 }
Mon P Wang0c397192008-10-30 08:01:45 +00008147 case ISD::FPOW:
Scott Michelfdc40a02009-02-17 22:15:04 +00008148 case ISD::FPOWI:
Mon P Wang0c397192008-10-30 08:01:45 +00008149 case ISD::ADD:
8150 case ISD::SUB:
8151 case ISD::MUL:
8152 case ISD::MULHS:
8153 case ISD::MULHU:
8154 case ISD::AND:
8155 case ISD::OR:
8156 case ISD::XOR:
8157 case ISD::FADD:
8158 case ISD::FSUB:
8159 case ISD::FMUL:
8160 case ISD::SDIV:
8161 case ISD::SREM:
8162 case ISD::FDIV:
8163 case ISD::FREM:
8164 case ISD::FCOPYSIGN:
8165 case ISD::UDIV:
8166 case ISD::UREM:
8167 case ISD::BSWAP: {
8168 // Binary op widening
Mon P Wang0c397192008-10-30 08:01:45 +00008169 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8170 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8171 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008172 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008173 break;
8174 }
8175
8176 case ISD::SHL:
8177 case ISD::SRA:
8178 case ISD::SRL: {
Mon P Wang0c397192008-10-30 08:01:45 +00008179 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8180 assert(Tmp1.getValueType() == WidenVT);
Mon P Wangfb13f002008-12-02 07:35:08 +00008181 SDValue ShOp = Node->getOperand(1);
8182 MVT ShVT = ShOp.getValueType();
8183 MVT NewShVT = MVT::getVectorVT(ShVT.getVectorElementType(),
8184 WidenVT.getVectorNumElements());
8185 ShOp = WidenVectorOp(ShOp, NewShVT);
8186 assert(ShOp.getValueType() == NewShVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008187 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, ShOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008188 break;
8189 }
Mon P Wangfb13f002008-12-02 07:35:08 +00008190
Mon P Wang0c397192008-10-30 08:01:45 +00008191 case ISD::EXTRACT_VECTOR_ELT: {
8192 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8193 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008194 Result = DAG.getNode(Node->getOpcode(), dl, EVT, Tmp1, Node->getOperand(1));
Mon P Wang0c397192008-10-30 08:01:45 +00008195 break;
8196 }
8197 case ISD::CONCAT_VECTORS: {
8198 // We concurrently support only widen on a multiple of the incoming vector.
8199 // We could widen on a multiple of the incoming operand if necessary.
8200 unsigned NumConcat = NewNumElts / NumElts;
8201 assert(NewNumElts % NumElts == 0 && "Can widen only a multiple of vector");
Dale Johannesene8d72302009-02-06 23:05:02 +00008202 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang0c397192008-10-30 08:01:45 +00008203 SmallVector<SDValue, 8> MOps;
8204 MOps.push_back(Op);
8205 for (unsigned i = 1; i != NumConcat; ++i) {
8206 MOps.push_back(UndefVal);
8207 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00008208 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008209 &MOps[0], MOps.size()));
8210 break;
8211 }
8212 case ISD::EXTRACT_SUBVECTOR: {
Mon P Wang49292f12008-11-15 06:05:52 +00008213 SDValue Tmp1 = Node->getOperand(0);
8214 SDValue Idx = Node->getOperand(1);
8215 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
8216 if (CIdx && CIdx->getZExtValue() == 0) {
8217 // Since we are access the start of the vector, the incoming
8218 // vector type might be the proper.
8219 MVT Tmp1VT = Tmp1.getValueType();
8220 if (Tmp1VT == WidenVT)
8221 return Tmp1;
8222 else {
8223 unsigned Tmp1VTNumElts = Tmp1VT.getVectorNumElements();
8224 if (Tmp1VTNumElts < NewNumElts)
8225 Result = WidenVectorOp(Tmp1, WidenVT);
8226 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00008227 Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, WidenVT, Tmp1, Idx);
Mon P Wang49292f12008-11-15 06:05:52 +00008228 }
8229 } else if (NewNumElts % NumElts == 0) {
8230 // Widen the extracted subvector.
8231 unsigned NumConcat = NewNumElts / NumElts;
Dale Johannesene8d72302009-02-06 23:05:02 +00008232 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang49292f12008-11-15 06:05:52 +00008233 SmallVector<SDValue, 8> MOps;
8234 MOps.push_back(Op);
8235 for (unsigned i = 1; i != NumConcat; ++i) {
8236 MOps.push_back(UndefVal);
8237 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00008238 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang49292f12008-11-15 06:05:52 +00008239 &MOps[0], MOps.size()));
8240 } else {
8241 assert(0 && "can not widen extract subvector");
8242 // This could be implemented using insert and build vector but I would
8243 // like to see when this happens.
8244 }
Mon P Wang0c397192008-10-30 08:01:45 +00008245 break;
8246 }
8247
8248 case ISD::SELECT: {
Mon P Wang0c397192008-10-30 08:01:45 +00008249 // Determine new condition widen type and widen
8250 SDValue Cond1 = Node->getOperand(0);
8251 MVT CondVT = Cond1.getValueType();
8252 assert(CondVT.isVector() && "can not widen non vector type");
8253 MVT CondEVT = CondVT.getVectorElementType();
8254 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8255 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8256 assert(Cond1.getValueType() == CondWidenVT && "Condition not widen");
8257
8258 SDValue Tmp1 = WidenVectorOp(Node->getOperand(1), WidenVT);
8259 SDValue Tmp2 = WidenVectorOp(Node->getOperand(2), WidenVT);
8260 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008261 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008262 break;
8263 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008264
Mon P Wang0c397192008-10-30 08:01:45 +00008265 case ISD::SELECT_CC: {
Mon P Wang0c397192008-10-30 08:01:45 +00008266 // Determine new condition widen type and widen
8267 SDValue Cond1 = Node->getOperand(0);
8268 SDValue Cond2 = Node->getOperand(1);
8269 MVT CondVT = Cond1.getValueType();
8270 assert(CondVT.isVector() && "can not widen non vector type");
8271 assert(CondVT == Cond2.getValueType() && "mismatch lhs/rhs");
8272 MVT CondEVT = CondVT.getVectorElementType();
8273 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8274 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8275 Cond2 = WidenVectorOp(Cond2, CondWidenVT);
8276 assert(Cond1.getValueType() == CondWidenVT &&
8277 Cond2.getValueType() == CondWidenVT && "condition not widen");
8278
8279 SDValue Tmp1 = WidenVectorOp(Node->getOperand(2), WidenVT);
8280 SDValue Tmp2 = WidenVectorOp(Node->getOperand(3), WidenVT);
8281 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT &&
8282 "operands not widen");
Dale Johannesenc6be1102009-02-02 22:49:46 +00008283 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Cond2, Tmp1,
Mon P Wang0c397192008-10-30 08:01:45 +00008284 Tmp2, Node->getOperand(4));
Mon P Wang0c397192008-10-30 08:01:45 +00008285 break;
Mon P Wang2eb13c32008-10-30 18:21:52 +00008286 }
8287 case ISD::VSETCC: {
8288 // Determine widen for the operand
8289 SDValue Tmp1 = Node->getOperand(0);
8290 MVT TmpVT = Tmp1.getValueType();
8291 assert(TmpVT.isVector() && "can not widen non vector type");
8292 MVT TmpEVT = TmpVT.getVectorElementType();
8293 MVT TmpWidenVT = MVT::getVectorVT(TmpEVT, NewNumElts);
8294 Tmp1 = WidenVectorOp(Tmp1, TmpWidenVT);
8295 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), TmpWidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008296 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2,
Mon P Wang2eb13c32008-10-30 18:21:52 +00008297 Node->getOperand(2));
Mon P Wang0c397192008-10-30 08:01:45 +00008298 break;
8299 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008300 case ISD::ATOMIC_CMP_SWAP:
8301 case ISD::ATOMIC_LOAD_ADD:
8302 case ISD::ATOMIC_LOAD_SUB:
8303 case ISD::ATOMIC_LOAD_AND:
8304 case ISD::ATOMIC_LOAD_OR:
8305 case ISD::ATOMIC_LOAD_XOR:
8306 case ISD::ATOMIC_LOAD_NAND:
8307 case ISD::ATOMIC_LOAD_MIN:
8308 case ISD::ATOMIC_LOAD_MAX:
8309 case ISD::ATOMIC_LOAD_UMIN:
8310 case ISD::ATOMIC_LOAD_UMAX:
8311 case ISD::ATOMIC_SWAP: {
Mon P Wang0c397192008-10-30 08:01:45 +00008312 // For now, we assume that using vectors for these operations don't make
8313 // much sense so we just split it. We return an empty result
8314 SDValue X, Y;
8315 SplitVectorOp(Op, X, Y);
8316 return Result;
8317 break;
8318 }
8319
8320 } // end switch (Node->getOpcode())
8321
Scott Michelfdc40a02009-02-17 22:15:04 +00008322 assert(Result.getNode() && "Didn't set a result!");
Mon P Wang0c397192008-10-30 08:01:45 +00008323 if (Result != Op)
8324 Result = LegalizeOp(Result);
8325
Mon P Wangf007a8b2008-11-06 05:31:54 +00008326 AddWidenedOperand(Op, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008327 return Result;
8328}
8329
8330// Utility function to find a legal vector type and its associated element
8331// type from a preferred width and whose vector type must be the same size
8332// as the VVT.
8333// TLI: Target lowering used to determine legal types
8334// Width: Preferred width of element type
8335// VVT: Vector value type whose size we must match.
8336// Returns VecEVT and EVT - the vector type and its associated element type
Dan Gohman0d137d72009-01-15 16:43:02 +00008337static void FindWidenVecType(const TargetLowering &TLI, unsigned Width, MVT VVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008338 MVT& EVT, MVT& VecEVT) {
8339 // We start with the preferred width, make it a power of 2 and see if
8340 // we can find a vector type of that width. If not, we reduce it by
8341 // another power of 2. If we have widen the type, a vector of bytes should
8342 // always be legal.
8343 assert(TLI.isTypeLegal(VVT));
8344 unsigned EWidth = Width + 1;
8345 do {
8346 assert(EWidth > 0);
8347 EWidth = (1 << Log2_32(EWidth-1));
8348 EVT = MVT::getIntegerVT(EWidth);
8349 unsigned NumEVT = VVT.getSizeInBits()/EWidth;
8350 VecEVT = MVT::getVectorVT(EVT, NumEVT);
8351 } while (!TLI.isTypeLegal(VecEVT) ||
8352 VVT.getSizeInBits() != VecEVT.getSizeInBits());
8353}
8354
8355SDValue SelectionDAGLegalize::genWidenVectorLoads(SDValueVector& LdChain,
8356 SDValue Chain,
8357 SDValue BasePtr,
8358 const Value *SV,
8359 int SVOffset,
8360 unsigned Alignment,
8361 bool isVolatile,
8362 unsigned LdWidth,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008363 MVT ResType,
8364 DebugLoc dl) {
Mon P Wang0c397192008-10-30 08:01:45 +00008365 // We assume that we have good rules to handle loading power of two loads so
8366 // we break down the operations to power of 2 loads. The strategy is to
8367 // load the largest power of 2 that we can easily transform to a legal vector
8368 // and then insert into that vector, and the cast the result into the legal
8369 // vector that we want. This avoids unnecessary stack converts.
8370 // TODO: If the Ldwidth is legal, alignment is the same as the LdWidth, and
8371 // the load is nonvolatile, we an use a wider load for the value.
8372 // Find a vector length we can load a large chunk
8373 MVT EVT, VecEVT;
8374 unsigned EVTWidth;
8375 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8376 EVTWidth = EVT.getSizeInBits();
8377
Dale Johannesenc6be1102009-02-02 22:49:46 +00008378 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV, SVOffset,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008379 isVolatile, Alignment);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008380 SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecEVT, LdOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008381 LdChain.push_back(LdOp.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00008382
Mon P Wang0c397192008-10-30 08:01:45 +00008383 // Check if we can load the element with one instruction
8384 if (LdWidth == EVTWidth) {
Dale Johannesenc6be1102009-02-02 22:49:46 +00008385 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008386 }
8387
8388 // The vector element order is endianness dependent.
8389 unsigned Idx = 1;
8390 LdWidth -= EVTWidth;
8391 unsigned Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008392
Mon P Wang0c397192008-10-30 08:01:45 +00008393 while (LdWidth > 0) {
8394 unsigned Increment = EVTWidth / 8;
8395 Offset += Increment;
Dale Johannesenc6be1102009-02-02 22:49:46 +00008396 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang0c397192008-10-30 08:01:45 +00008397 DAG.getIntPtrConstant(Increment));
8398
8399 if (LdWidth < EVTWidth) {
8400 // Our current type we are using is too large, use a smaller size by
8401 // using a smaller power of 2
8402 unsigned oEVTWidth = EVTWidth;
8403 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8404 EVTWidth = EVT.getSizeInBits();
8405 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008406 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008407 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008408 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008409
Dale Johannesenc6be1102009-02-02 22:49:46 +00008410 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008411 SVOffset+Offset, isVolatile,
8412 MinAlign(Alignment, Offset));
Mon P Wang0c397192008-10-30 08:01:45 +00008413 LdChain.push_back(LdOp.getValue(1));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008414 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecEVT, VecOp, LdOp,
Mon P Wang0c397192008-10-30 08:01:45 +00008415 DAG.getIntPtrConstant(Idx++));
Scott Michelfdc40a02009-02-17 22:15:04 +00008416
Mon P Wang0c397192008-10-30 08:01:45 +00008417 LdWidth -= EVTWidth;
8418 }
8419
Dale Johannesenc6be1102009-02-02 22:49:46 +00008420 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008421}
8422
8423bool SelectionDAGLegalize::LoadWidenVectorOp(SDValue& Result,
8424 SDValue& TFOp,
8425 SDValue Op,
8426 MVT NVT) {
8427 // TODO: Add support for ConcatVec and the ability to load many vector
8428 // types (e.g., v4i8). This will not work when a vector register
8429 // to memory mapping is strange (e.g., vector elements are not
8430 // stored in some sequential order).
8431
Scott Michelfdc40a02009-02-17 22:15:04 +00008432 // It must be true that the widen vector type is bigger than where
Mon P Wang0c397192008-10-30 08:01:45 +00008433 // we need to load from.
8434 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
8435 MVT LdVT = LD->getMemoryVT();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008436 DebugLoc dl = LD->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008437 assert(LdVT.isVector() && NVT.isVector());
8438 assert(LdVT.getVectorElementType() == NVT.getVectorElementType());
Scott Michelfdc40a02009-02-17 22:15:04 +00008439
Mon P Wang0c397192008-10-30 08:01:45 +00008440 // Load information
8441 SDValue Chain = LD->getChain();
8442 SDValue BasePtr = LD->getBasePtr();
8443 int SVOffset = LD->getSrcValueOffset();
8444 unsigned Alignment = LD->getAlignment();
8445 bool isVolatile = LD->isVolatile();
8446 const Value *SV = LD->getSrcValue();
8447 unsigned int LdWidth = LdVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00008448
Mon P Wang0c397192008-10-30 08:01:45 +00008449 // Load value as a large register
8450 SDValueVector LdChain;
8451 Result = genWidenVectorLoads(LdChain, Chain, BasePtr, SV, SVOffset,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008452 Alignment, isVolatile, LdWidth, NVT, dl);
Mon P Wang0c397192008-10-30 08:01:45 +00008453
8454 if (LdChain.size() == 1) {
8455 TFOp = LdChain[0];
8456 return true;
8457 }
8458 else {
Scott Michelfdc40a02009-02-17 22:15:04 +00008459 TFOp=DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008460 &LdChain[0], LdChain.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008461 return false;
8462 }
8463}
8464
8465
8466void SelectionDAGLegalize::genWidenVectorStores(SDValueVector& StChain,
8467 SDValue Chain,
8468 SDValue BasePtr,
8469 const Value *SV,
8470 int SVOffset,
8471 unsigned Alignment,
8472 bool isVolatile,
Mon P Wang49292f12008-11-15 06:05:52 +00008473 SDValue ValOp,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008474 unsigned StWidth,
8475 DebugLoc dl) {
Mon P Wang0c397192008-10-30 08:01:45 +00008476 // Breaks the stores into a series of power of 2 width stores. For any
8477 // width, we convert the vector to the vector of element size that we
8478 // want to store. This avoids requiring a stack convert.
Scott Michelfdc40a02009-02-17 22:15:04 +00008479
Mon P Wang0c397192008-10-30 08:01:45 +00008480 // Find a width of the element type we can store with
8481 MVT VVT = ValOp.getValueType();
8482 MVT EVT, VecEVT;
8483 unsigned EVTWidth;
8484 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8485 EVTWidth = EVT.getSizeInBits();
8486
Dale Johannesenc6be1102009-02-02 22:49:46 +00008487 SDValue VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, ValOp);
8488 SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wange0b436a2008-11-06 22:52:21 +00008489 DAG.getIntPtrConstant(0));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008490 SDValue StOp = DAG.getStore(Chain, dl, EOp, BasePtr, SV, SVOffset,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008491 isVolatile, Alignment);
Mon P Wang0c397192008-10-30 08:01:45 +00008492 StChain.push_back(StOp);
8493
8494 // Check if we are done
8495 if (StWidth == EVTWidth) {
8496 return;
8497 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008498
Mon P Wang0c397192008-10-30 08:01:45 +00008499 unsigned Idx = 1;
8500 StWidth -= EVTWidth;
8501 unsigned Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008502
Mon P Wang0c397192008-10-30 08:01:45 +00008503 while (StWidth > 0) {
8504 unsigned Increment = EVTWidth / 8;
8505 Offset += Increment;
Dale Johannesenc6be1102009-02-02 22:49:46 +00008506 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang0c397192008-10-30 08:01:45 +00008507 DAG.getIntPtrConstant(Increment));
Scott Michelfdc40a02009-02-17 22:15:04 +00008508
Mon P Wang0c397192008-10-30 08:01:45 +00008509 if (StWidth < EVTWidth) {
8510 // Our current type we are using is too large, use a smaller size by
8511 // using a smaller power of 2
8512 unsigned oEVTWidth = EVTWidth;
8513 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8514 EVTWidth = EVT.getSizeInBits();
8515 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008516 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008517 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008518 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008519
Dale Johannesenc6be1102009-02-02 22:49:46 +00008520 EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang49292f12008-11-15 06:05:52 +00008521 DAG.getIntPtrConstant(Idx++));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008522 StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr, SV,
Mon P Wang0c397192008-10-30 08:01:45 +00008523 SVOffset + Offset, isVolatile,
8524 MinAlign(Alignment, Offset)));
8525 StWidth -= EVTWidth;
8526 }
8527}
8528
8529
8530SDValue SelectionDAGLegalize::StoreWidenVectorOp(StoreSDNode *ST,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008531 SDValue Chain,
8532 SDValue BasePtr) {
Mon P Wang0c397192008-10-30 08:01:45 +00008533 // TODO: It might be cleaner if we can use SplitVector and have more legal
8534 // vector types that can be stored into memory (e.g., v4xi8 can
8535 // be stored as a word). This will not work when a vector register
8536 // to memory mapping is strange (e.g., vector elements are not
8537 // stored in some sequential order).
Scott Michelfdc40a02009-02-17 22:15:04 +00008538
Mon P Wang0c397192008-10-30 08:01:45 +00008539 MVT StVT = ST->getMemoryVT();
8540 SDValue ValOp = ST->getValue();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008541 DebugLoc dl = ST->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008542
8543 // Check if we have widen this node with another value
8544 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(ValOp);
8545 if (I != WidenNodes.end())
8546 ValOp = I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00008547
Mon P Wang0c397192008-10-30 08:01:45 +00008548 MVT VVT = ValOp.getValueType();
8549
8550 // It must be true that we the widen vector type is bigger than where
8551 // we need to store.
8552 assert(StVT.isVector() && VVT.isVector());
Dan Gohmanf83c81a2009-01-28 03:10:52 +00008553 assert(StVT.bitsLT(VVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008554 assert(StVT.getVectorElementType() == VVT.getVectorElementType());
8555
8556 // Store value
8557 SDValueVector StChain;
8558 genWidenVectorStores(StChain, Chain, BasePtr, ST->getSrcValue(),
8559 ST->getSrcValueOffset(), ST->getAlignment(),
Dale Johannesenc6be1102009-02-02 22:49:46 +00008560 ST->isVolatile(), ValOp, StVT.getSizeInBits(), dl);
Mon P Wang0c397192008-10-30 08:01:45 +00008561 if (StChain.size() == 1)
8562 return StChain[0];
Scott Michelfdc40a02009-02-17 22:15:04 +00008563 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00008564 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
8565 &StChain[0], StChain.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008566}
8567
8568
Chris Lattner3e928bb2005-01-07 07:47:09 +00008569// SelectionDAG::Legalize - This is the entry point for the file.
8570//
Bill Wendling5aa49772009-02-24 02:35:30 +00008571void SelectionDAG::Legalize(bool TypesNeedLegalizing, bool Fast) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00008572 /// run - This is the main entry point to this class.
8573 ///
Bill Wendling5aa49772009-02-24 02:35:30 +00008574 SelectionDAGLegalize(*this, TypesNeedLegalizing, Fast).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00008575}
8576