blob: b49fa9be5331bf9b9f9021e17a72642cd42a8d1e [file] [log] [blame]
Chris Lattnerdc750592005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukman835702a2005-04-21 22:36:52 +00002//
Chris Lattnerdc750592005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukman835702a2005-04-21 22:36:52 +00007//
Chris Lattnerdc750592005-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 Lattnerdc750592005-01-07 07:47:09 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner99222f72005-01-15 07:15:18 +000016#include "llvm/CodeGen/MachineFrameInfo.h"
Jim Laskey70323a82006-12-14 19:17:33 +000017#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000018#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman2d489b52008-02-06 22:27:42 +000019#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Cheng631ccc62007-08-16 23:50:06 +000020#include "llvm/Target/TargetFrameInfo.h"
Chris Lattnerdc750592005-01-07 07:47:09 +000021#include "llvm/Target/TargetLowering.h"
Chris Lattner85d70c62005-01-11 05:57:22 +000022#include "llvm/Target/TargetData.h"
Evan Cheng84a28d42006-10-30 08:00:44 +000023#include "llvm/Target/TargetMachine.h"
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +000024#include "llvm/Target/TargetOptions.h"
Dan Gohman544ab2c2008-04-12 04:36:06 +000025#include "llvm/Target/TargetSubtarget.h"
Chris Lattner2e77db62005-05-13 18:50:42 +000026#include "llvm/CallingConv.h"
Chris Lattnerdc750592005-01-07 07:47:09 +000027#include "llvm/Constants.h"
Reid Spencera94d3942007-01-19 21:13:56 +000028#include "llvm/DerivedTypes.h"
Chris Lattneref598052006-04-02 03:07:27 +000029#include "llvm/Support/CommandLine.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000030#include "llvm/Support/Compiler.h"
Duncan Sands1826ded2007-10-28 12:59:45 +000031#include "llvm/Support/MathExtras.h"
Chris Lattnere83030b2007-02-03 01:12:36 +000032#include "llvm/ADT/DenseMap.h"
Chris Lattner97af9d52006-08-08 01:09:31 +000033#include "llvm/ADT/SmallVector.h"
Chris Lattnerebeb48d2007-02-04 00:27:56 +000034#include "llvm/ADT/SmallPtrSet.h"
Evan Cheng1d2e9952006-03-24 01:17:21 +000035#include <map>
Chris Lattnerdc750592005-01-07 07:47:09 +000036using namespace llvm;
37
Chris Lattneref598052006-04-02 03:07:27 +000038#ifndef NDEBUG
39static cl::opt<bool>
40ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
41 cl::desc("Pop up a window to show dags before legalize"));
42#else
43static const bool ViewLegalizeDAGs = 0;
44#endif
45
Chris Lattnerdc750592005-01-07 07:47:09 +000046//===----------------------------------------------------------------------===//
47/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
48/// hacks on it until the target machine can handle it. This involves
49/// eliminating value sizes the machine cannot handle (promoting small sizes to
50/// large sizes or splitting up large values into small values) as well as
51/// eliminating operations the machine cannot handle.
52///
53/// This code also does a small amount of optimization and recognition of idioms
54/// as part of its processing. For example, if a target does not support a
55/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
56/// will attempt merge setcc and brc instructions into brcc's.
57///
58namespace {
Chris Lattner54a34cd2006-06-28 21:58:30 +000059class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattnerdc750592005-01-07 07:47:09 +000060 TargetLowering &TLI;
61 SelectionDAG &DAG;
62
Chris Lattner462505f2006-02-13 09:18:02 +000063 // Libcall insertion helpers.
64
65 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
66 /// legalized. We use this to ensure that calls are properly serialized
67 /// against each other, including inserted libcalls.
68 SDOperand LastCALLSEQ_END;
69
70 /// IsLegalizingCall - This member is used *only* for purposes of providing
71 /// helpful assertions that a libcall isn't created while another call is
72 /// being legalized (which could lead to non-serialized call sequences).
73 bool IsLegalizingCall;
74
Chris Lattnerdc750592005-01-07 07:47:09 +000075 enum LegalizeAction {
Chris Lattner2c748af2006-01-29 08:42:06 +000076 Legal, // The target natively supports this operation.
77 Promote, // This operation should be executed in a larger type.
Chris Lattneraa2372562006-05-24 17:04:05 +000078 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattnerdc750592005-01-07 07:47:09 +000079 };
Chris Lattner462505f2006-02-13 09:18:02 +000080
Chris Lattnerdc750592005-01-07 07:47:09 +000081 /// ValueTypeActions - This is a bitvector that contains two bits for each
82 /// value type, where the two bits correspond to the LegalizeAction enum.
83 /// This can be queried with "getTypeAction(VT)".
Chris Lattner2c748af2006-01-29 08:42:06 +000084 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattnerdc750592005-01-07 07:47:09 +000085
Chris Lattnerdc750592005-01-07 07:47:09 +000086 /// LegalizedNodes - For nodes that are of legal width, and that have more
87 /// than one use, this map indicates what regularized operand to use. This
88 /// allows us to avoid legalizing the same thing more than once.
Roman Levensteina3ee1a32008-04-16 16:15:27 +000089 DenseMap<SDOperand, SDOperand> LegalizedNodes;
Chris Lattnerdc750592005-01-07 07:47:09 +000090
Chris Lattner1f2c9d82005-01-15 05:21:40 +000091 /// PromotedNodes - For nodes that are below legal width, and that have more
92 /// than one use, this map indicates what promoted value to use. This allows
93 /// us to avoid promoting the same thing more than once.
Roman Levensteina3ee1a32008-04-16 16:15:27 +000094 DenseMap<SDOperand, SDOperand> PromotedNodes;
Chris Lattner1f2c9d82005-01-15 05:21:40 +000095
Chris Lattner32206f52006-03-18 01:44:44 +000096 /// ExpandedNodes - For nodes that need to be expanded this map indicates
97 /// which which operands are the expanded version of the input. This allows
98 /// us to avoid expanding the same node more than once.
Roman Levensteina3ee1a32008-04-16 16:15:27 +000099 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
Chris Lattnerdc750592005-01-07 07:47:09 +0000100
Chris Lattner32206f52006-03-18 01:44:44 +0000101 /// SplitNodes - For vector nodes that need to be split, this map indicates
102 /// which which operands are the split version of the input. This allows us
103 /// to avoid splitting the same node more than once.
104 std::map<SDOperand, std::pair<SDOperand, SDOperand> > SplitNodes;
105
Dan Gohmana8665142007-06-25 16:23:39 +0000106 /// ScalarizedNodes - For nodes that need to be converted from vector types to
107 /// scalar types, this contains the mapping of ones we have already
Chris Lattner32206f52006-03-18 01:44:44 +0000108 /// processed to the result.
Dan Gohmana8665142007-06-25 16:23:39 +0000109 std::map<SDOperand, SDOperand> ScalarizedNodes;
Chris Lattner32206f52006-03-18 01:44:44 +0000110
Chris Lattnerea4ca942005-01-07 22:28:47 +0000111 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner2af3ee42005-12-20 00:53:54 +0000112 LegalizedNodes.insert(std::make_pair(From, To));
113 // If someone requests legalization of the new node, return itself.
114 if (From != To)
115 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattnerea4ca942005-01-07 22:28:47 +0000116 }
Chris Lattner1f2c9d82005-01-15 05:21:40 +0000117 void AddPromotedOperand(SDOperand From, SDOperand To) {
Dan Gohman38740a92008-07-07 17:46:23 +0000118 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
Chris Lattner1f2c9d82005-01-15 05:21:40 +0000119 assert(isNew && "Got into the map somehow?");
Chris Lattner2af3ee42005-12-20 00:53:54 +0000120 // If someone requests legalization of the new node, return itself.
121 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner1f2c9d82005-01-15 05:21:40 +0000122 }
Chris Lattnerea4ca942005-01-07 22:28:47 +0000123
Chris Lattnerdc750592005-01-07 07:47:09 +0000124public:
Dan Gohman56e3f632008-07-07 18:00:37 +0000125 explicit SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattnerdc750592005-01-07 07:47:09 +0000126
Chris Lattnerdc750592005-01-07 07:47:09 +0000127 /// getTypeAction - Return how we should legalize values of this type, either
128 /// it is already legal or we need to expand it into multiple registers of
129 /// smaller integer type, or we need to promote it to a larger type.
Duncan Sands13237ac2008-06-06 12:08:01 +0000130 LegalizeAction getTypeAction(MVT VT) const {
Chris Lattner2c748af2006-01-29 08:42:06 +0000131 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattnerdc750592005-01-07 07:47:09 +0000132 }
133
134 /// isTypeLegal - Return true if this type is legal on this target.
135 ///
Duncan Sands13237ac2008-06-06 12:08:01 +0000136 bool isTypeLegal(MVT VT) const {
Chris Lattnerdc750592005-01-07 07:47:09 +0000137 return getTypeAction(VT) == Legal;
138 }
139
Chris Lattnerdc750592005-01-07 07:47:09 +0000140 void LegalizeDAG();
141
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000142private:
Dan Gohmana8665142007-06-25 16:23:39 +0000143 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattner32206f52006-03-18 01:44:44 +0000144 /// appropriate for its type.
145 void HandleOp(SDOperand Op);
146
147 /// LegalizeOp - We know that the specified value has a legal type.
148 /// Recursively ensure that the operands have legal types, then return the
149 /// result.
Chris Lattnerdc750592005-01-07 07:47:09 +0000150 SDOperand LegalizeOp(SDOperand O);
Chris Lattner32206f52006-03-18 01:44:44 +0000151
Dan Gohman2a7de412007-10-11 23:57:53 +0000152 /// UnrollVectorOp - We know that the given vector has a legal type, however
153 /// the operation it performs is not legal and is an operation that we have
154 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
155 /// operating on each element individually.
156 SDOperand UnrollVectorOp(SDOperand O);
Nate Begeman6f94f612008-04-25 18:07:40 +0000157
158 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
159 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
160 /// is necessary to spill the vector being inserted into to memory, perform
161 /// the insert there, and then read the result back.
162 SDOperand PerformInsertVectorEltInMemory(SDOperand Vec, SDOperand Val,
163 SDOperand Idx);
Dan Gohman2a7de412007-10-11 23:57:53 +0000164
Chris Lattner32206f52006-03-18 01:44:44 +0000165 /// PromoteOp - Given an operation that produces a value in an invalid type,
166 /// promote it to compute the value into a larger type. The produced value
167 /// will have the correct bits for the low portion of the register, but no
168 /// guarantee is made about the top bits: it may be zero, sign-extended, or
169 /// garbage.
Chris Lattner1f2c9d82005-01-15 05:21:40 +0000170 SDOperand PromoteOp(SDOperand O);
Chris Lattnerdc750592005-01-07 07:47:09 +0000171
Chris Lattner32206f52006-03-18 01:44:44 +0000172 /// ExpandOp - Expand the specified SDOperand into its two component pieces
173 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
174 /// the LegalizeNodes map is filled in for any results that are not expanded,
175 /// the ExpandedNodes map is filled in for any results that are expanded, and
176 /// the Lo/Hi values are returned. This applies to integer types and Vector
177 /// types.
178 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
179
Dan Gohmana8665142007-06-25 16:23:39 +0000180 /// SplitVectorOp - Given an operand of vector type, break it down into
181 /// two smaller values.
Chris Lattner32206f52006-03-18 01:44:44 +0000182 void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
183
Dan Gohmanf4e86da2007-06-27 14:06:22 +0000184 /// ScalarizeVectorOp - Given an operand of single-element vector type
185 /// (e.g. v1f32), convert it into the equivalent operation that returns a
186 /// scalar (e.g. f32) value.
Dan Gohmana8665142007-06-25 16:23:39 +0000187 SDOperand ScalarizeVectorOp(SDOperand O);
Chris Lattner32206f52006-03-18 01:44:44 +0000188
Duncan Sandsb0e39382008-07-21 10:20:31 +0000189 /// isShuffleLegal - Return non-null if a vector shuffle is legal with the
Chris Lattner6be79822006-04-04 17:23:26 +0000190 /// specified mask and type. Targets can specify exactly which masks they
191 /// support and the code generator is tasked with not creating illegal masks.
192 ///
193 /// Note that this will also return true for shuffles that are promoted to a
194 /// different type.
195 ///
196 /// If this is a legal shuffle, this method returns the (possibly promoted)
197 /// build_vector Mask. If it's not a legal shuffle, it returns null.
Duncan Sands13237ac2008-06-06 12:08:01 +0000198 SDNode *isShuffleLegal(MVT VT, SDOperand Mask) const;
Chris Lattner6be79822006-04-04 17:23:26 +0000199
Chris Lattner4488f0c2006-07-26 23:55:56 +0000200 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattnerebeb48d2007-02-04 00:27:56 +0000201 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner462505f2006-02-13 09:18:02 +0000202
Nate Begeman7e7f4392006-02-01 07:19:44 +0000203 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
204
Duncan Sands844d55a2008-04-12 17:14:18 +0000205 SDOperand ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
Chris Lattneraac464e2005-01-21 06:05:23 +0000206 SDOperand &Hi);
Duncan Sands13237ac2008-06-06 12:08:01 +0000207 SDOperand ExpandIntToFP(bool isSigned, MVT DestTy, SDOperand Source);
Chris Lattnere3e847b2005-07-16 00:19:57 +0000208
Duncan Sands13237ac2008-06-06 12:08:01 +0000209 SDOperand EmitStackConvert(SDOperand SrcOp, MVT SlotVT, MVT DestVT);
Chris Lattner9cdc5a02006-03-19 06:31:19 +0000210 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner6be79822006-04-04 17:23:26 +0000211 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Duncan Sands13237ac2008-06-06 12:08:01 +0000212 SDOperand ExpandLegalINT_TO_FP(bool isSigned, SDOperand LegalOp, MVT DestVT);
213 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT DestVT, bool isSigned);
214 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT DestVT, bool isSigned);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +0000215
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000216 SDOperand ExpandBSWAP(SDOperand Op);
217 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattner2a7f8a92005-01-19 04:19:40 +0000218 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
219 SDOperand &Lo, SDOperand &Hi);
Chris Lattner4157c412005-04-02 04:00:59 +0000220 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
221 SDOperand &Lo, SDOperand &Hi);
Chris Lattnera5bf1032005-05-12 04:49:08 +0000222
Dan Gohmana8665142007-06-25 16:23:39 +0000223 SDOperand ExpandEXTRACT_SUBVECTOR(SDOperand Op);
Chris Lattner42a5fca2006-04-02 05:06:04 +0000224 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattnerdc750592005-01-07 07:47:09 +0000225};
226}
227
Chris Lattner6be79822006-04-04 17:23:26 +0000228/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
229/// specified mask and type. Targets can specify exactly which masks they
230/// support and the code generator is tasked with not creating illegal masks.
231///
232/// Note that this will also return true for shuffles that are promoted to a
233/// different type.
Duncan Sands13237ac2008-06-06 12:08:01 +0000234SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDOperand Mask) const {
Chris Lattner6be79822006-04-04 17:23:26 +0000235 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
236 default: return 0;
237 case TargetLowering::Legal:
238 case TargetLowering::Custom:
239 break;
240 case TargetLowering::Promote: {
241 // If this is promoted to a different type, convert the shuffle mask and
242 // ask if it is legal in the promoted type!
Duncan Sands13237ac2008-06-06 12:08:01 +0000243 MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
Duncan Sandsb0e39382008-07-21 10:20:31 +0000244 MVT EltVT = NVT.getVectorElementType();
Chris Lattner6be79822006-04-04 17:23:26 +0000245
246 // If we changed # elements, change the shuffle mask.
247 unsigned NumEltsGrowth =
Duncan Sands13237ac2008-06-06 12:08:01 +0000248 NVT.getVectorNumElements() / VT.getVectorNumElements();
Chris Lattner6be79822006-04-04 17:23:26 +0000249 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
250 if (NumEltsGrowth > 1) {
251 // Renumber the elements.
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000252 SmallVector<SDOperand, 8> Ops;
Chris Lattner6be79822006-04-04 17:23:26 +0000253 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
254 SDOperand InOp = Mask.getOperand(i);
255 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
256 if (InOp.getOpcode() == ISD::UNDEF)
Duncan Sandsb0e39382008-07-21 10:20:31 +0000257 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
Chris Lattner6be79822006-04-04 17:23:26 +0000258 else {
259 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
Duncan Sandsb0e39382008-07-21 10:20:31 +0000260 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, EltVT));
Chris Lattner6be79822006-04-04 17:23:26 +0000261 }
262 }
263 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +0000264 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner6be79822006-04-04 17:23:26 +0000265 }
266 VT = NVT;
267 break;
268 }
269 }
270 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
271}
272
Chris Lattner4add7e32005-01-23 04:42:50 +0000273SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
274 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
275 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman89b049a2005-11-29 05:45:29 +0000276 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattnerdc750592005-01-07 07:47:09 +0000277 "Too many value types for ValueTypeActions to hold!");
Chris Lattnerdc750592005-01-07 07:47:09 +0000278}
279
Chris Lattnere31adc82007-06-18 21:28:10 +0000280/// ComputeTopDownOrdering - Compute a top-down ordering of the dag, where Order
281/// contains all of a nodes operands before it contains the node.
282static void ComputeTopDownOrdering(SelectionDAG &DAG,
283 SmallVector<SDNode*, 64> &Order) {
284
285 DenseMap<SDNode*, unsigned> Visited;
286 std::vector<SDNode*> Worklist;
287 Worklist.reserve(128);
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000288
Chris Lattnere31adc82007-06-18 21:28:10 +0000289 // Compute ordering from all of the leaves in the graphs, those (like the
290 // entry node) that have no operands.
291 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
292 E = DAG.allnodes_end(); I != E; ++I) {
293 if (I->getNumOperands() == 0) {
294 Visited[I] = 0 - 1U;
295 Worklist.push_back(I);
296 }
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000297 }
298
Chris Lattnere31adc82007-06-18 21:28:10 +0000299 while (!Worklist.empty()) {
300 SDNode *N = Worklist.back();
301 Worklist.pop_back();
302
303 if (++Visited[N] != N->getNumOperands())
304 continue; // Haven't visited all operands yet
305
306 Order.push_back(N);
307
308 // Now that we have N in, add anything that uses it if all of their operands
309 // are now done.
310 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
311 UI != E; ++UI)
Roman Levenstein51f532f2008-04-07 10:06:32 +0000312 Worklist.push_back(UI->getUser());
Chris Lattnere31adc82007-06-18 21:28:10 +0000313 }
314
315 assert(Order.size() == Visited.size() &&
Dan Gohman3792c472008-06-20 17:15:19 +0000316 Order.size() == DAG.allnodes_size() &&
Chris Lattnere31adc82007-06-18 21:28:10 +0000317 "Error: DAG is cyclic!");
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000318}
319
Chris Lattner44fe26f2005-07-29 00:11:56 +0000320
Chris Lattnerdc750592005-01-07 07:47:09 +0000321void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner462505f2006-02-13 09:18:02 +0000322 LastCALLSEQ_END = DAG.getEntryNode();
323 IsLegalizingCall = false;
324
Chris Lattner9cfccfb2005-10-02 17:49:46 +0000325 // The legalize process is inherently a bottom-up recursive process (users
326 // legalize their uses before themselves). Given infinite stack space, we
327 // could just start legalizing on the root and traverse the whole graph. In
328 // practice however, this causes us to run out of stack space on large basic
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000329 // blocks. To avoid this problem, compute an ordering of the nodes where each
330 // node is only legalized after all of its operands are legalized.
Chris Lattner94c44c92007-02-04 01:20:02 +0000331 SmallVector<SDNode*, 64> Order;
Chris Lattnere31adc82007-06-18 21:28:10 +0000332 ComputeTopDownOrdering(DAG, Order);
Chris Lattner9cfccfb2005-10-02 17:49:46 +0000333
Chris Lattner32206f52006-03-18 01:44:44 +0000334 for (unsigned i = 0, e = Order.size(); i != e; ++i)
335 HandleOp(SDOperand(Order[i], 0));
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000336
337 // Finally, it's possible the root changed. Get the new root.
Chris Lattnerdc750592005-01-07 07:47:09 +0000338 SDOperand OldRoot = DAG.getRoot();
Chris Lattner4bbbb9e2005-10-06 01:20:27 +0000339 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
340 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattnerdc750592005-01-07 07:47:09 +0000341
342 ExpandedNodes.clear();
343 LegalizedNodes.clear();
Chris Lattner87a769c2005-01-16 01:11:45 +0000344 PromotedNodes.clear();
Chris Lattner32206f52006-03-18 01:44:44 +0000345 SplitNodes.clear();
Dan Gohmana8665142007-06-25 16:23:39 +0000346 ScalarizedNodes.clear();
Chris Lattnerdc750592005-01-07 07:47:09 +0000347
348 // Remove dead nodes now.
Chris Lattner8927c872006-08-04 17:45:20 +0000349 DAG.RemoveDeadNodes();
Chris Lattnerdc750592005-01-07 07:47:09 +0000350}
351
Chris Lattner462505f2006-02-13 09:18:02 +0000352
353/// FindCallEndFromCallStart - Given a chained node that is part of a call
354/// sequence, find the CALLSEQ_END node that terminates the call sequence.
355static SDNode *FindCallEndFromCallStart(SDNode *Node) {
356 if (Node->getOpcode() == ISD::CALLSEQ_END)
357 return Node;
358 if (Node->use_empty())
359 return 0; // No CallSeqEnd
360
361 // The chain is usually at the end.
362 SDOperand TheChain(Node, Node->getNumValues()-1);
363 if (TheChain.getValueType() != MVT::Other) {
364 // Sometimes it's at the beginning.
365 TheChain = SDOperand(Node, 0);
366 if (TheChain.getValueType() != MVT::Other) {
367 // Otherwise, hunt for it.
368 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
369 if (Node->getValueType(i) == MVT::Other) {
370 TheChain = SDOperand(Node, i);
371 break;
372 }
373
374 // Otherwise, we walked into a node without a chain.
375 if (TheChain.getValueType() != MVT::Other)
376 return 0;
377 }
378 }
379
380 for (SDNode::use_iterator UI = Node->use_begin(),
381 E = Node->use_end(); UI != E; ++UI) {
382
383 // Make sure to only follow users of our token chain.
Roman Levenstein51f532f2008-04-07 10:06:32 +0000384 SDNode *User = UI->getUser();
Chris Lattner462505f2006-02-13 09:18:02 +0000385 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
386 if (User->getOperand(i) == TheChain)
387 if (SDNode *Result = FindCallEndFromCallStart(User))
388 return Result;
389 }
390 return 0;
391}
392
393/// FindCallStartFromCallEnd - Given a chained node that is part of a call
394/// sequence, find the CALLSEQ_START node that initiates the call sequence.
395static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
396 assert(Node && "Didn't find callseq_start for a call??");
397 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
398
399 assert(Node->getOperand(0).getValueType() == MVT::Other &&
400 "Node doesn't have a token chain argument!");
401 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
402}
403
404/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
405/// see if any uses can reach Dest. If no dest operands can get to dest,
406/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattner4488f0c2006-07-26 23:55:56 +0000407///
408/// Keep track of the nodes we fine that actually do lead to Dest in
409/// NodesLeadingTo. This avoids retraversing them exponential number of times.
410///
411bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattnerebeb48d2007-02-04 00:27:56 +0000412 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner462505f2006-02-13 09:18:02 +0000413 if (N == Dest) return true; // N certainly leads to Dest :)
414
Chris Lattner4488f0c2006-07-26 23:55:56 +0000415 // If we've already processed this node and it does lead to Dest, there is no
416 // need to reprocess it.
417 if (NodesLeadingTo.count(N)) return true;
418
Chris Lattner462505f2006-02-13 09:18:02 +0000419 // If the first result of this node has been already legalized, then it cannot
420 // reach N.
421 switch (getTypeAction(N->getValueType(0))) {
422 case Legal:
423 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
424 break;
425 case Promote:
426 if (PromotedNodes.count(SDOperand(N, 0))) return false;
427 break;
428 case Expand:
429 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
430 break;
431 }
432
433 // Okay, this node has not already been legalized. Check and legalize all
434 // operands. If none lead to Dest, then we can legalize this node.
435 bool OperandsLeadToDest = false;
436 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
437 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattner4488f0c2006-07-26 23:55:56 +0000438 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner462505f2006-02-13 09:18:02 +0000439
Chris Lattner4488f0c2006-07-26 23:55:56 +0000440 if (OperandsLeadToDest) {
441 NodesLeadingTo.insert(N);
442 return true;
443 }
Chris Lattner462505f2006-02-13 09:18:02 +0000444
445 // Okay, this node looks safe, legalize it and return false.
Chris Lattner916ae072006-04-17 22:10:08 +0000446 HandleOp(SDOperand(N, 0));
Chris Lattner462505f2006-02-13 09:18:02 +0000447 return false;
448}
449
Dan Gohmana8665142007-06-25 16:23:39 +0000450/// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattner32206f52006-03-18 01:44:44 +0000451/// appropriate for its type.
452void SelectionDAGLegalize::HandleOp(SDOperand Op) {
Duncan Sands13237ac2008-06-06 12:08:01 +0000453 MVT VT = Op.getValueType();
Dan Gohmana8665142007-06-25 16:23:39 +0000454 switch (getTypeAction(VT)) {
Chris Lattner32206f52006-03-18 01:44:44 +0000455 default: assert(0 && "Bad type action!");
Dan Gohmana8665142007-06-25 16:23:39 +0000456 case Legal: (void)LegalizeOp(Op); break;
457 case Promote: (void)PromoteOp(Op); break;
Chris Lattner32206f52006-03-18 01:44:44 +0000458 case Expand:
Duncan Sands13237ac2008-06-06 12:08:01 +0000459 if (!VT.isVector()) {
Dan Gohmana8665142007-06-25 16:23:39 +0000460 // If this is an illegal scalar, expand it into its two component
461 // pieces.
Chris Lattner32206f52006-03-18 01:44:44 +0000462 SDOperand X, Y;
Chris Lattner2ed652f2007-08-25 01:00:22 +0000463 if (Op.getOpcode() == ISD::TargetConstant)
464 break; // Allow illegal target nodes.
Chris Lattner32206f52006-03-18 01:44:44 +0000465 ExpandOp(Op, X, Y);
Duncan Sands13237ac2008-06-06 12:08:01 +0000466 } else if (VT.getVectorNumElements() == 1) {
Dan Gohmana8665142007-06-25 16:23:39 +0000467 // If this is an illegal single element vector, convert it to a
468 // scalar operation.
469 (void)ScalarizeVectorOp(Op);
Chris Lattner32206f52006-03-18 01:44:44 +0000470 } else {
Dan Gohmana8665142007-06-25 16:23:39 +0000471 // Otherwise, this is an illegal multiple element vector.
472 // Split it in half and legalize both parts.
473 SDOperand X, Y;
474 SplitVectorOp(Op, X, Y);
Chris Lattner32206f52006-03-18 01:44:44 +0000475 }
476 break;
477 }
478}
Chris Lattner462505f2006-02-13 09:18:02 +0000479
Evan Cheng22cf8992006-12-13 20:57:08 +0000480/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
481/// a load from the constant pool.
482static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng3766fc602006-12-12 22:19:28 +0000483 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng47833a12006-12-12 21:32:44 +0000484 bool Extend = false;
485
486 // If a FP immediate is precise when represented as a float and if the
487 // target can do an extending load from float to double, we put it into
488 // the constant pool as a float, even if it's is statically typed as a
Chris Lattner3dc38992008-03-05 06:46:58 +0000489 // double. This shrinks FP constants and canonicalizes them for targets where
490 // an FP extending load is the same cost as a normal load (such as on the x87
491 // fp stack or PPC FP unit).
Duncan Sands13237ac2008-06-06 12:08:01 +0000492 MVT VT = CFP->getValueType(0);
Chris Lattner3b187622008-04-20 00:41:09 +0000493 ConstantFP *LLVMC = ConstantFP::get(CFP->getValueAPF());
Evan Cheng22cf8992006-12-13 20:57:08 +0000494 if (!UseCP) {
Dale Johannesen98d3a082007-09-14 22:26:36 +0000495 if (VT!=MVT::f64 && VT!=MVT::f32)
496 assert(0 && "Invalid type expansion");
Dan Gohman10f7d852008-03-11 00:11:06 +0000497 return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt(),
Evan Cheng38caf772008-03-04 08:05:30 +0000498 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng3766fc602006-12-12 22:19:28 +0000499 }
500
Duncan Sands13237ac2008-06-06 12:08:01 +0000501 MVT OrigVT = VT;
502 MVT SVT = VT;
Evan Cheng38caf772008-03-04 08:05:30 +0000503 while (SVT != MVT::f32) {
Duncan Sands13237ac2008-06-06 12:08:01 +0000504 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Cheng38caf772008-03-04 08:05:30 +0000505 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
506 // Only do this if the target has a native EXTLOAD instruction from
507 // smaller type.
Evan Cheng0a62cb42008-03-05 01:30:59 +0000508 TLI.isLoadXLegal(ISD::EXTLOAD, SVT) &&
Chris Lattner3dc38992008-03-05 06:46:58 +0000509 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands13237ac2008-06-06 12:08:01 +0000510 const Type *SType = SVT.getTypeForMVT();
Evan Cheng38caf772008-03-04 08:05:30 +0000511 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
512 VT = SVT;
513 Extend = true;
514 }
Evan Cheng47833a12006-12-12 21:32:44 +0000515 }
516
517 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng38caf772008-03-04 08:05:30 +0000518 if (Extend)
519 return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(),
Dan Gohman16d4bc32008-02-07 18:41:25 +0000520 CPIdx, PseudoSourceValue::getConstantPool(),
Evan Cheng38caf772008-03-04 08:05:30 +0000521 0, VT);
522 return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
523 PseudoSourceValue::getConstantPool(), 0);
Evan Cheng47833a12006-12-12 21:32:44 +0000524}
525
Chris Lattner462505f2006-02-13 09:18:02 +0000526
Evan Cheng003feb02007-01-04 21:56:39 +0000527/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
528/// operations.
529static
Duncan Sands13237ac2008-06-06 12:08:01 +0000530SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
Evan Cheng003feb02007-01-04 21:56:39 +0000531 SelectionDAG &DAG, TargetLowering &TLI) {
Duncan Sands13237ac2008-06-06 12:08:01 +0000532 MVT VT = Node->getValueType(0);
533 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohmana8665142007-06-25 16:23:39 +0000534 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
535 "fcopysign expansion only supported for f32 and f64");
Duncan Sands13237ac2008-06-06 12:08:01 +0000536 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng3b841dd2007-01-05 21:31:51 +0000537
Evan Cheng003feb02007-01-04 21:56:39 +0000538 // First get the sign bit of second operand.
Evan Cheng3b841dd2007-01-05 21:31:51 +0000539 SDOperand Mask1 = (SrcVT == MVT::f64)
Evan Cheng003feb02007-01-04 21:56:39 +0000540 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
541 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng3b841dd2007-01-05 21:31:51 +0000542 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Evan Cheng003feb02007-01-04 21:56:39 +0000543 SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng3b841dd2007-01-05 21:31:51 +0000544 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng003feb02007-01-04 21:56:39 +0000545 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands13237ac2008-06-06 12:08:01 +0000546 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng003feb02007-01-04 21:56:39 +0000547 if (SizeDiff > 0) {
548 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
549 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
550 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
Chris Lattner87909d02008-07-10 23:46:13 +0000551 } else if (SizeDiff < 0) {
552 SignBit = DAG.getNode(ISD::ZERO_EXTEND, NVT, SignBit);
553 SignBit = DAG.getNode(ISD::SHL, NVT, SignBit,
554 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
555 }
Evan Cheng3b841dd2007-01-05 21:31:51 +0000556
557 // Clear the sign bit of first operand.
558 SDOperand Mask2 = (VT == MVT::f64)
559 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
560 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
561 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Evan Cheng003feb02007-01-04 21:56:39 +0000562 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng3b841dd2007-01-05 21:31:51 +0000563 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
564
565 // Or the value with the sign bit.
Evan Cheng003feb02007-01-04 21:56:39 +0000566 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
567 return Result;
568}
569
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000570/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
571static
572SDOperand ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
573 TargetLowering &TLI) {
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000574 SDOperand Chain = ST->getChain();
575 SDOperand Ptr = ST->getBasePtr();
576 SDOperand Val = ST->getValue();
Duncan Sands13237ac2008-06-06 12:08:01 +0000577 MVT VT = Val.getValueType();
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000578 int Alignment = ST->getAlignment();
579 int SVOffset = ST->getSrcValueOffset();
Duncan Sands13237ac2008-06-06 12:08:01 +0000580 if (ST->getMemoryVT().isFloatingPoint() ||
581 ST->getMemoryVT().isVector()) {
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000582 // Expand to a bitconvert of the value to the integer type of the
583 // same size, then a (misaligned) int store.
Duncan Sands13237ac2008-06-06 12:08:01 +0000584 MVT intVT;
585 if (VT.is128BitVector() || VT == MVT::ppcf128 || VT == MVT::f128)
Dale Johannesenbf76a082008-02-27 22:36:00 +0000586 intVT = MVT::i128;
Duncan Sands13237ac2008-06-06 12:08:01 +0000587 else if (VT.is64BitVector() || VT==MVT::f64)
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000588 intVT = MVT::i64;
589 else if (VT==MVT::f32)
590 intVT = MVT::i32;
591 else
Dale Johannesenc4c3de22008-02-28 18:36:51 +0000592 assert(0 && "Unaligned store of unsupported type");
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000593
594 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
595 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
596 SVOffset, ST->isVolatile(), Alignment);
597 }
Duncan Sands13237ac2008-06-06 12:08:01 +0000598 assert(ST->getMemoryVT().isInteger() &&
599 !ST->getMemoryVT().isVector() &&
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000600 "Unaligned store of unknown type.");
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000601 // Get the half-size VT
Duncan Sands13237ac2008-06-06 12:08:01 +0000602 MVT NewStoredVT =
603 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
604 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000605 int IncrementSize = NumBits / 8;
606
607 // Divide the stored value in two parts.
608 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
609 SDOperand Lo = Val;
610 SDOperand Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
611
612 // Store the two parts
613 SDOperand Store1, Store2;
614 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
615 ST->getSrcValue(), SVOffset, NewStoredVT,
616 ST->isVolatile(), Alignment);
617 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
618 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sands1826ded2007-10-28 12:59:45 +0000619 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000620 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
621 ST->getSrcValue(), SVOffset + IncrementSize,
622 NewStoredVT, ST->isVolatile(), Alignment);
623
624 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
625}
626
627/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
628static
629SDOperand ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
630 TargetLowering &TLI) {
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000631 int SVOffset = LD->getSrcValueOffset();
632 SDOperand Chain = LD->getChain();
633 SDOperand Ptr = LD->getBasePtr();
Duncan Sands13237ac2008-06-06 12:08:01 +0000634 MVT VT = LD->getValueType(0);
635 MVT LoadedVT = LD->getMemoryVT();
636 if (VT.isFloatingPoint() || VT.isVector()) {
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000637 // Expand to a (misaligned) integer load of the same size,
Dale Johannesenbf76a082008-02-27 22:36:00 +0000638 // then bitconvert to floating point or vector.
Duncan Sands13237ac2008-06-06 12:08:01 +0000639 MVT intVT;
640 if (LoadedVT.is128BitVector() ||
Dale Johannesen208cc8f2008-03-01 03:40:57 +0000641 LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128)
Dale Johannesenbf76a082008-02-27 22:36:00 +0000642 intVT = MVT::i128;
Duncan Sands13237ac2008-06-06 12:08:01 +0000643 else if (LoadedVT.is64BitVector() || LoadedVT == MVT::f64)
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000644 intVT = MVT::i64;
Chris Lattner09c03932007-11-19 21:38:03 +0000645 else if (LoadedVT == MVT::f32)
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000646 intVT = MVT::i32;
647 else
Dale Johannesenbf76a082008-02-27 22:36:00 +0000648 assert(0 && "Unaligned load of unsupported type");
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000649
650 SDOperand newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
651 SVOffset, LD->isVolatile(),
652 LD->getAlignment());
653 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
Duncan Sands13237ac2008-06-06 12:08:01 +0000654 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000655 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
656
657 SDOperand Ops[] = { Result, Chain };
Duncan Sands739a0542008-07-02 17:40:58 +0000658 return DAG.getMergeValues(Ops, 2);
Dale Johannesen29e6ac42007-09-08 19:29:23 +0000659 }
Duncan Sands13237ac2008-06-06 12:08:01 +0000660 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattner09c03932007-11-19 21:38:03 +0000661 "Unaligned load of unsupported type.");
662
Dale Johannesenbf76a082008-02-27 22:36:00 +0000663 // Compute the new VT that is half the size of the old one. This is an
664 // integer MVT.
Duncan Sands13237ac2008-06-06 12:08:01 +0000665 unsigned NumBits = LoadedVT.getSizeInBits();
666 MVT NewLoadedVT;
667 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattner09c03932007-11-19 21:38:03 +0000668 NumBits >>= 1;
669
670 unsigned Alignment = LD->getAlignment();
671 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000672 ISD::LoadExtType HiExtType = LD->getExtensionType();
673
674 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
675 if (HiExtType == ISD::NON_EXTLOAD)
676 HiExtType = ISD::ZEXTLOAD;
677
678 // Load the value in two parts
679 SDOperand Lo, Hi;
680 if (TLI.isLittleEndian()) {
681 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
682 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
683 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
684 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
685 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
686 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sands1826ded2007-10-28 12:59:45 +0000687 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000688 } else {
689 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
690 NewLoadedVT,LD->isVolatile(), Alignment);
691 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
692 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
693 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
694 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sands1826ded2007-10-28 12:59:45 +0000695 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000696 }
697
698 // aggregate the two parts
699 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
700 SDOperand Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
701 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
702
703 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
704 Hi.getValue(1));
705
706 SDOperand Ops[] = { Result, TF };
Duncan Sands739a0542008-07-02 17:40:58 +0000707 return DAG.getMergeValues(Ops, 2);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +0000708}
Evan Cheng003feb02007-01-04 21:56:39 +0000709
Dan Gohman2a7de412007-10-11 23:57:53 +0000710/// UnrollVectorOp - We know that the given vector has a legal type, however
711/// the operation it performs is not legal and is an operation that we have
712/// no way of lowering. "Unroll" the vector, splitting out the scalars and
713/// operating on each element individually.
714SDOperand SelectionDAGLegalize::UnrollVectorOp(SDOperand Op) {
Duncan Sands13237ac2008-06-06 12:08:01 +0000715 MVT VT = Op.getValueType();
Dan Gohman2a7de412007-10-11 23:57:53 +0000716 assert(isTypeLegal(VT) &&
717 "Caller should expand or promote operands that are not legal!");
718 assert(Op.Val->getNumValues() == 1 &&
719 "Can't unroll a vector with multiple results!");
Duncan Sands13237ac2008-06-06 12:08:01 +0000720 unsigned NE = VT.getVectorNumElements();
721 MVT EltVT = VT.getVectorElementType();
Dan Gohman2a7de412007-10-11 23:57:53 +0000722
723 SmallVector<SDOperand, 8> Scalars;
724 SmallVector<SDOperand, 4> Operands(Op.getNumOperands());
725 for (unsigned i = 0; i != NE; ++i) {
726 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
727 SDOperand Operand = Op.getOperand(j);
Duncan Sands13237ac2008-06-06 12:08:01 +0000728 MVT OperandVT = Operand.getValueType();
729 if (OperandVT.isVector()) {
Dan Gohman2a7de412007-10-11 23:57:53 +0000730 // A vector operand; extract a single element.
Duncan Sands13237ac2008-06-06 12:08:01 +0000731 MVT OperandEltVT = OperandVT.getVectorElementType();
Dan Gohman2a7de412007-10-11 23:57:53 +0000732 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
733 OperandEltVT,
734 Operand,
735 DAG.getConstant(i, MVT::i32));
736 } else {
737 // A scalar operand; just use it as is.
738 Operands[j] = Operand;
739 }
740 }
741 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
742 &Operands[0], Operands.size()));
743 }
744
745 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
746}
747
Duncan Sands53c954f2008-01-10 10:28:30 +0000748/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands13237ac2008-06-06 12:08:01 +0000749static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands53c954f2008-01-10 10:28:30 +0000750 RTLIB::Libcall Call_F32,
751 RTLIB::Libcall Call_F64,
752 RTLIB::Libcall Call_F80,
753 RTLIB::Libcall Call_PPCF128) {
754 return
755 VT == MVT::f32 ? Call_F32 :
756 VT == MVT::f64 ? Call_F64 :
757 VT == MVT::f80 ? Call_F80 :
758 VT == MVT::ppcf128 ? Call_PPCF128 :
759 RTLIB::UNKNOWN_LIBCALL;
760}
761
Nate Begeman6f94f612008-04-25 18:07:40 +0000762/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
763/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
764/// is necessary to spill the vector being inserted into to memory, perform
765/// the insert there, and then read the result back.
766SDOperand SelectionDAGLegalize::
767PerformInsertVectorEltInMemory(SDOperand Vec, SDOperand Val, SDOperand Idx) {
768 SDOperand Tmp1 = Vec;
769 SDOperand Tmp2 = Val;
770 SDOperand Tmp3 = Idx;
771
772 // If the target doesn't support this, we have to spill the input vector
773 // to a temporary stack slot, update the element, then reload it. This is
774 // badness. We could also load the value into a vector register (either
775 // with a "move to register" or "extload into register" instruction, then
776 // permute it into place, if the idx is a constant and if the idx is
777 // supported by the target.
Duncan Sands13237ac2008-06-06 12:08:01 +0000778 MVT VT = Tmp1.getValueType();
779 MVT EltVT = VT.getVectorElementType();
780 MVT IdxVT = Tmp3.getValueType();
781 MVT PtrVT = TLI.getPointerTy();
Nate Begeman6f94f612008-04-25 18:07:40 +0000782 SDOperand StackPtr = DAG.CreateStackTemporary(VT);
783
Dan Gohman02c7c6c2008-07-11 22:44:52 +0000784 int SPFI = cast<FrameIndexSDNode>(StackPtr.Val)->getIndex();
Nate Begeman6f94f612008-04-25 18:07:40 +0000785
786 // Store the vector.
787 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
Dan Gohman02c7c6c2008-07-11 22:44:52 +0000788 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000789
790 // Truncate or zero extend offset to target pointer type.
Duncan Sands11dd4242008-06-08 20:54:56 +0000791 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Nate Begeman6f94f612008-04-25 18:07:40 +0000792 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
793 // Add the offset to the index.
Duncan Sands13237ac2008-06-06 12:08:01 +0000794 unsigned EltSize = EltVT.getSizeInBits()/8;
Nate Begeman6f94f612008-04-25 18:07:40 +0000795 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
796 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
797 // Store the scalar value.
798 Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2,
Dan Gohman02c7c6c2008-07-11 22:44:52 +0000799 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman6f94f612008-04-25 18:07:40 +0000800 // Load the updated vector.
Dan Gohman02c7c6c2008-07-11 22:44:52 +0000801 return DAG.getLoad(VT, Ch, StackPtr,
802 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman6f94f612008-04-25 18:07:40 +0000803}
804
Dan Gohmanff727882007-07-13 20:14:11 +0000805/// LegalizeOp - We know that the specified value has a legal type, and
806/// that its operands are legal. Now ensure that the operation itself
807/// is legal, recursively ensuring that the operands' operations remain
808/// legal.
Chris Lattnerdc750592005-01-07 07:47:09 +0000809SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattner2ed652f2007-08-25 01:00:22 +0000810 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
811 return Op;
812
Chris Lattnerf12eb4d2005-08-24 16:35:28 +0000813 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnerc0f31c52005-01-08 20:35:13 +0000814 "Caller should expand or promote operands that are not legal!");
Chris Lattnerb5a78e02005-05-12 16:53:42 +0000815 SDNode *Node = Op.Val;
Chris Lattnerc0f31c52005-01-08 20:35:13 +0000816
Chris Lattnerdc750592005-01-07 07:47:09 +0000817 // If this operation defines any values that cannot be represented in a
Chris Lattnerc0f31c52005-01-08 20:35:13 +0000818 // register on this target, make sure to expand or promote them.
Chris Lattnerb5a78e02005-05-12 16:53:42 +0000819 if (Node->getNumValues() > 1) {
820 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattner32206f52006-03-18 01:44:44 +0000821 if (getTypeAction(Node->getValueType(i)) != Legal) {
822 HandleOp(Op.getValue(i));
Chris Lattnerdc750592005-01-07 07:47:09 +0000823 assert(LegalizedNodes.count(Op) &&
Chris Lattner32206f52006-03-18 01:44:44 +0000824 "Handling didn't add legal operands!");
Chris Lattner1f2c9d82005-01-15 05:21:40 +0000825 return LegalizedNodes[Op];
Chris Lattnerdc750592005-01-07 07:47:09 +0000826 }
827 }
828
Chris Lattnerb5a78e02005-05-12 16:53:42 +0000829 // Note that LegalizeOp may be reentered even from single-use nodes, which
830 // means that we always must cache transformed nodes.
Roman Levensteina3ee1a32008-04-16 16:15:27 +0000831 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner85d70c62005-01-11 05:57:22 +0000832 if (I != LegalizedNodes.end()) return I->second;
Chris Lattnerdc750592005-01-07 07:47:09 +0000833
Nate Begemane5b86d72005-08-10 20:51:12 +0000834 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerdc750592005-01-07 07:47:09 +0000835 SDOperand Result = Op;
Chris Lattner9dcce6d2006-01-28 07:39:30 +0000836 bool isCustom = false;
837
Chris Lattnerdc750592005-01-07 07:47:09 +0000838 switch (Node->getOpcode()) {
Chris Lattnereb637512006-01-28 08:31:04 +0000839 case ISD::FrameIndex:
840 case ISD::EntryToken:
841 case ISD::Register:
842 case ISD::BasicBlock:
843 case ISD::TargetFrameIndex:
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000844 case ISD::TargetJumpTable:
Chris Lattnereb637512006-01-28 08:31:04 +0000845 case ISD::TargetConstant:
Chris Lattner758b0ac2006-01-29 06:26:56 +0000846 case ISD::TargetConstantFP:
Chris Lattnereb637512006-01-28 08:31:04 +0000847 case ISD::TargetConstantPool:
848 case ISD::TargetGlobalAddress:
Lauro Ramos Venancio25188892007-04-20 21:38:10 +0000849 case ISD::TargetGlobalTLSAddress:
Chris Lattnereb637512006-01-28 08:31:04 +0000850 case ISD::TargetExternalSymbol:
851 case ISD::VALUETYPE:
852 case ISD::SRCVALUE:
Dan Gohman2d489b52008-02-06 22:27:42 +0000853 case ISD::MEMOPERAND:
Chris Lattnereb637512006-01-28 08:31:04 +0000854 case ISD::CONDCODE:
Duncan Sandsd97eea32008-03-21 09:14:45 +0000855 case ISD::ARG_FLAGS:
Chris Lattnereb637512006-01-28 08:31:04 +0000856 // Primitives must all be legal.
Duncan Sands052c8432007-10-16 09:07:20 +0000857 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattnereb637512006-01-28 08:31:04 +0000858 "This must be legal!");
859 break;
Chris Lattnerdc750592005-01-07 07:47:09 +0000860 default:
Chris Lattner3eb86932005-05-14 06:34:48 +0000861 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
862 // If this is a target node, legalize it by legalizing the operands then
863 // passing it through.
Chris Lattner97af9d52006-08-08 01:09:31 +0000864 SmallVector<SDOperand, 8> Ops;
Chris Lattner62f1b832006-05-17 18:00:08 +0000865 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattner3eb86932005-05-14 06:34:48 +0000866 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattner62f1b832006-05-17 18:00:08 +0000867
Chris Lattner97af9d52006-08-08 01:09:31 +0000868 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattner3eb86932005-05-14 06:34:48 +0000869
870 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
871 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
872 return Result.getValue(Op.ResNo);
873 }
874 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeyc3d341e2006-07-11 17:58:07 +0000875#ifndef NDEBUG
Dan Gohmanb4c26902007-06-04 16:17:33 +0000876 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +0000877#endif
Chris Lattnerdc750592005-01-07 07:47:09 +0000878 assert(0 && "Do not know how to legalize this operator!");
879 abort();
Lauro Ramos Venancio94314be2007-04-20 23:02:39 +0000880 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattnerdc750592005-01-07 07:47:09 +0000881 case ISD::GlobalAddress:
Lauro Ramos Venancio25188892007-04-20 21:38:10 +0000882 case ISD::GlobalTLSAddress:
Chris Lattner32f20bf2005-01-07 21:45:56 +0000883 case ISD::ExternalSymbol:
Nate Begeman4ca2ea52006-04-22 18:53:45 +0000884 case ISD::ConstantPool:
885 case ISD::JumpTable: // Nothing to do.
Chris Lattner45ca1c02005-11-17 06:41:44 +0000886 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
887 default: assert(0 && "This action is not supported yet!");
Chris Lattnereb637512006-01-28 08:31:04 +0000888 case TargetLowering::Custom:
889 Tmp1 = TLI.LowerOperation(Op, DAG);
890 if (Tmp1.Val) Result = Tmp1;
891 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner45ca1c02005-11-17 06:41:44 +0000892 case TargetLowering::Legal:
Chris Lattner45ca1c02005-11-17 06:41:44 +0000893 break;
894 }
Chris Lattnerdc750592005-01-07 07:47:09 +0000895 break;
Nate Begemaneda59972007-01-29 22:58:52 +0000896 case ISD::FRAMEADDR:
897 case ISD::RETURNADDR:
898 // The only option for these nodes is to custom lower them. If the target
899 // does not custom lower them, then return zero.
900 Tmp1 = TLI.LowerOperation(Op, DAG);
901 if (Tmp1.Val)
902 Result = Tmp1;
903 else
904 Result = DAG.getConstant(0, TLI.getPointerTy());
905 break;
Anton Korobeynikov2bdec2a2007-08-29 23:18:48 +0000906 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands13237ac2008-06-06 12:08:01 +0000907 MVT VT = Node->getValueType(0);
Anton Korobeynikov830b1cb2007-08-29 19:28:29 +0000908 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
909 default: assert(0 && "This action is not supported yet!");
910 case TargetLowering::Custom:
911 Result = TLI.LowerOperation(Op, DAG);
912 if (Result.Val) break;
913 // Fall Thru
914 case TargetLowering::Legal:
915 Result = DAG.getConstant(0, VT);
916 break;
917 }
Anton Korobeynikov2bdec2a2007-08-29 23:18:48 +0000918 }
Anton Korobeynikov830b1cb2007-08-29 19:28:29 +0000919 break;
Jim Laskey7f5872c2007-02-22 15:37:19 +0000920 case ISD::EXCEPTIONADDR: {
921 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands13237ac2008-06-06 12:08:01 +0000922 MVT VT = Node->getValueType(0);
Jim Laskey7f5872c2007-02-22 15:37:19 +0000923 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
924 default: assert(0 && "This action is not supported yet!");
925 case TargetLowering::Expand: {
Jim Laskey644af6b2007-02-28 20:43:58 +0000926 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sands57a60f02007-12-31 18:35:50 +0000927 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Jim Laskey7f5872c2007-02-22 15:37:19 +0000928 }
929 break;
930 case TargetLowering::Custom:
931 Result = TLI.LowerOperation(Op, DAG);
932 if (Result.Val) break;
933 // Fall Thru
Chris Lattner1cbe2082007-04-27 17:12:52 +0000934 case TargetLowering::Legal: {
935 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Duncan Sands739a0542008-07-02 17:40:58 +0000936 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey7f5872c2007-02-22 15:37:19 +0000937 break;
938 }
939 }
Chris Lattner1cbe2082007-04-27 17:12:52 +0000940 }
Duncan Sands57a60f02007-12-31 18:35:50 +0000941 if (Result.Val->getNumValues() == 1) break;
942
943 assert(Result.Val->getNumValues() == 2 &&
944 "Cannot return more than two values!");
945
946 // Since we produced two values, make sure to remember that we
947 // legalized both of them.
948 Tmp1 = LegalizeOp(Result);
949 Tmp2 = LegalizeOp(Result.getValue(1));
950 AddLegalizedOperand(Op.getValue(0), Tmp1);
951 AddLegalizedOperand(Op.getValue(1), Tmp2);
952 return Op.ResNo ? Tmp2 : Tmp1;
Jim Laskey644af6b2007-02-28 20:43:58 +0000953 case ISD::EHSELECTION: {
954 Tmp1 = LegalizeOp(Node->getOperand(0));
955 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands13237ac2008-06-06 12:08:01 +0000956 MVT VT = Node->getValueType(0);
Jim Laskey644af6b2007-02-28 20:43:58 +0000957 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
958 default: assert(0 && "This action is not supported yet!");
959 case TargetLowering::Expand: {
960 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sands57a60f02007-12-31 18:35:50 +0000961 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Jim Laskey644af6b2007-02-28 20:43:58 +0000962 }
963 break;
964 case TargetLowering::Custom:
965 Result = TLI.LowerOperation(Op, DAG);
966 if (Result.Val) break;
967 // Fall Thru
Chris Lattner1cbe2082007-04-27 17:12:52 +0000968 case TargetLowering::Legal: {
969 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Duncan Sands739a0542008-07-02 17:40:58 +0000970 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey644af6b2007-02-28 20:43:58 +0000971 break;
972 }
973 }
Chris Lattner1cbe2082007-04-27 17:12:52 +0000974 }
Duncan Sands57a60f02007-12-31 18:35:50 +0000975 if (Result.Val->getNumValues() == 1) break;
976
977 assert(Result.Val->getNumValues() == 2 &&
978 "Cannot return more than two values!");
979
980 // Since we produced two values, make sure to remember that we
981 // legalized both of them.
982 Tmp1 = LegalizeOp(Result);
983 Tmp2 = LegalizeOp(Result.getValue(1));
984 AddLegalizedOperand(Op.getValue(0), Tmp1);
985 AddLegalizedOperand(Op.getValue(1), Tmp2);
986 return Op.ResNo ? Tmp2 : Tmp1;
Nick Lewyckyd20f4852007-07-14 15:11:14 +0000987 case ISD::EH_RETURN: {
Duncan Sands13237ac2008-06-06 12:08:01 +0000988 MVT VT = Node->getValueType(0);
Anton Korobeynikov383a3242007-07-14 14:06:15 +0000989 // The only "good" option for this node is to custom lower it.
990 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
991 default: assert(0 && "This action is not supported at all!");
992 case TargetLowering::Custom:
993 Result = TLI.LowerOperation(Op, DAG);
994 if (Result.Val) break;
995 // Fall Thru
996 case TargetLowering::Legal:
997 // Target does not know, how to lower this, lower to noop
998 Result = LegalizeOp(Node->getOperand(0));
999 break;
1000 }
Nick Lewyckyd20f4852007-07-14 15:11:14 +00001001 }
Anton Korobeynikov383a3242007-07-14 14:06:15 +00001002 break;
Chris Lattnerd9af1aa2005-09-02 01:15:01 +00001003 case ISD::AssertSext:
1004 case ISD::AssertZext:
1005 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001006 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerd9af1aa2005-09-02 01:15:01 +00001007 break;
Chris Lattner44c28c22005-11-20 22:56:56 +00001008 case ISD::MERGE_VALUES:
Chris Lattnerd02b0542006-01-28 10:58:55 +00001009 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001010 Result = Node->getOperand(Op.ResNo);
1011 break;
Chris Lattner3b8e7192005-01-14 22:38:01 +00001012 case ISD::CopyFromReg:
1013 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnere3c67e92005-12-18 15:27:43 +00001014 Result = Op.getValue(0);
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001015 if (Node->getNumValues() == 2) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001016 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnere3c67e92005-12-18 15:27:43 +00001017 } else {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001018 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerd02b0542006-01-28 10:58:55 +00001019 if (Node->getNumOperands() == 3) {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00001020 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001021 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1022 } else {
1023 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1024 }
Chris Lattnere3c67e92005-12-18 15:27:43 +00001025 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1026 }
Chris Lattnereb6614d2005-01-28 06:27:38 +00001027 // Since CopyFromReg produces two values, make sure to remember that we
1028 // legalized both of them.
1029 AddLegalizedOperand(Op.getValue(0), Result);
1030 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1031 return Result.getValue(Op.ResNo);
Nate Begemancda9aa72005-04-01 22:34:39 +00001032 case ISD::UNDEF: {
Duncan Sands13237ac2008-06-06 12:08:01 +00001033 MVT VT = Op.getValueType();
Nate Begemancda9aa72005-04-01 22:34:39 +00001034 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begeman69d39432005-04-02 00:41:14 +00001035 default: assert(0 && "This action is not supported yet!");
1036 case TargetLowering::Expand:
Duncan Sands13237ac2008-06-06 12:08:01 +00001037 if (VT.isInteger())
Nate Begemancda9aa72005-04-01 22:34:39 +00001038 Result = DAG.getConstant(0, VT);
Duncan Sands13237ac2008-06-06 12:08:01 +00001039 else if (VT.isFloatingPoint())
1040 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf04d37d2007-09-26 17:26:49 +00001041 VT);
Nate Begemancda9aa72005-04-01 22:34:39 +00001042 else
1043 assert(0 && "Unknown value type!");
1044 break;
Nate Begeman69d39432005-04-02 00:41:14 +00001045 case TargetLowering::Legal:
Nate Begemancda9aa72005-04-01 22:34:39 +00001046 break;
1047 }
1048 break;
1049 }
Chris Lattnera4f68052006-03-24 02:26:29 +00001050
Chris Lattnere55d1712006-03-28 00:40:33 +00001051 case ISD::INTRINSIC_W_CHAIN:
1052 case ISD::INTRINSIC_WO_CHAIN:
1053 case ISD::INTRINSIC_VOID: {
Chris Lattner97af9d52006-08-08 01:09:31 +00001054 SmallVector<SDOperand, 8> Ops;
Chris Lattnera4f68052006-03-24 02:26:29 +00001055 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1056 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattner97af9d52006-08-08 01:09:31 +00001057 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner30ee7252006-03-26 09:12:51 +00001058
1059 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattnere55d1712006-03-28 00:40:33 +00001060 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner30ee7252006-03-26 09:12:51 +00001061 TargetLowering::Custom) {
1062 Tmp3 = TLI.LowerOperation(Result, DAG);
1063 if (Tmp3.Val) Result = Tmp3;
Chris Lattnerd5f94c92006-03-27 20:28:29 +00001064 }
1065
1066 if (Result.Val->getNumValues() == 1) break;
1067
1068 // Must have return value and chain result.
1069 assert(Result.Val->getNumValues() == 2 &&
1070 "Cannot return more than two values!");
1071
1072 // Since loads produce two values, make sure to remember that we
1073 // legalized both of them.
1074 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1075 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1076 return Result.getValue(Op.ResNo);
Chris Lattnera4f68052006-03-24 02:26:29 +00001077 }
Chris Lattner435b4022005-11-29 06:21:05 +00001078
Dan Gohman5c73a882008-06-30 20:59:49 +00001079 case ISD::DBG_STOPPOINT:
1080 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner435b4022005-11-29 06:21:05 +00001081 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1082
Dan Gohman5c73a882008-06-30 20:59:49 +00001083 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner435b4022005-11-29 06:21:05 +00001084 case TargetLowering::Promote:
1085 default: assert(0 && "This action is not supported yet!");
Jim Laskey7c462762005-12-16 22:45:29 +00001086 case TargetLowering::Expand: {
Jim Laskeyc56315c2007-01-26 21:22:28 +00001087 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskey762e9ec2006-01-05 01:25:28 +00001088 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Dan Gohmanfb19f942008-07-01 00:05:16 +00001089 bool useLABEL = TLI.isOperationLegal(ISD::DBG_LABEL, MVT::Other);
Jim Laskey762e9ec2006-01-05 01:25:28 +00001090
Dan Gohman5c73a882008-06-30 20:59:49 +00001091 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
Jim Laskeyc56315c2007-01-26 21:22:28 +00001092 if (MMI && (useDEBUG_LOC || useLABEL)) {
Dan Gohman5c73a882008-06-30 20:59:49 +00001093 const CompileUnitDesc *CompileUnit = DSP->getCompileUnit();
1094 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Jim Laskey762e9ec2006-01-05 01:25:28 +00001095
Dan Gohman5c73a882008-06-30 20:59:49 +00001096 unsigned Line = DSP->getLine();
1097 unsigned Col = DSP->getColumn();
Jim Laskey762e9ec2006-01-05 01:25:28 +00001098
1099 if (useDEBUG_LOC) {
Evan Cheng34ef1db2008-07-08 20:06:39 +00001100 SDOperand Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
1101 DAG.getConstant(Col, MVT::i32),
1102 DAG.getConstant(SrcFile, MVT::i32) };
1103 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops, 4);
Jim Laskey762e9ec2006-01-05 01:25:28 +00001104 } else {
Evan Cheng263070e2008-02-01 02:05:57 +00001105 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Dan Gohmanfb19f942008-07-01 00:05:16 +00001106 Result = DAG.getLabel(ISD::DBG_LABEL, Tmp1, ID);
Jim Laskey762e9ec2006-01-05 01:25:28 +00001107 }
Jim Laskey9e296be2005-12-21 20:51:37 +00001108 } else {
1109 Result = Tmp1; // chain
1110 }
Chris Lattner435b4022005-11-29 06:21:05 +00001111 break;
Chris Lattnerc06da622005-12-18 23:54:29 +00001112 }
Evan Cheng34ef1db2008-07-08 20:06:39 +00001113 case TargetLowering::Legal: {
1114 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1115 if (Action == Legal && Tmp1 == Node->getOperand(0))
1116 break;
1117
1118 SmallVector<SDOperand, 8> Ops;
1119 Ops.push_back(Tmp1);
1120 if (Action == Legal) {
1121 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1122 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1123 } else {
1124 // Otherwise promote them.
1125 Ops.push_back(PromoteOp(Node->getOperand(1)));
1126 Ops.push_back(PromoteOp(Node->getOperand(2)));
Chris Lattner435b4022005-11-29 06:21:05 +00001127 }
Evan Cheng34ef1db2008-07-08 20:06:39 +00001128 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1129 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1130 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner435b4022005-11-29 06:21:05 +00001131 break;
1132 }
Evan Cheng34ef1db2008-07-08 20:06:39 +00001133 }
Chris Lattner435b4022005-11-29 06:21:05 +00001134 break;
Evan Chengefd142a2008-02-02 04:07:54 +00001135
1136 case ISD::DECLARE:
1137 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1138 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1139 default: assert(0 && "This action is not supported yet!");
1140 case TargetLowering::Legal:
1141 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1142 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1143 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1144 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1145 break;
Chris Lattner9824ffe2008-02-28 05:53:40 +00001146 case TargetLowering::Expand:
1147 Result = LegalizeOp(Node->getOperand(0));
1148 break;
Evan Chengefd142a2008-02-02 04:07:54 +00001149 }
1150 break;
Jim Laskey7c462762005-12-16 22:45:29 +00001151
1152 case ISD::DEBUG_LOC:
Jim Laskey762e9ec2006-01-05 01:25:28 +00001153 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskey7c462762005-12-16 22:45:29 +00001154 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskey7c462762005-12-16 22:45:29 +00001155 default: assert(0 && "This action is not supported yet!");
Evan Cheng34ef1db2008-07-08 20:06:39 +00001156 case TargetLowering::Legal: {
1157 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskey762e9ec2006-01-05 01:25:28 +00001158 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng34ef1db2008-07-08 20:06:39 +00001159 if (Action == Legal && Tmp1 == Node->getOperand(0))
1160 break;
1161 if (Action == Legal) {
1162 Tmp2 = Node->getOperand(1);
1163 Tmp3 = Node->getOperand(2);
1164 Tmp4 = Node->getOperand(3);
1165 } else {
1166 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1167 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1168 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1169 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00001170 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskey762e9ec2006-01-05 01:25:28 +00001171 break;
1172 }
Evan Cheng34ef1db2008-07-08 20:06:39 +00001173 }
Jim Laskey762e9ec2006-01-05 01:25:28 +00001174 break;
1175
Dan Gohmanfb19f942008-07-01 00:05:16 +00001176 case ISD::DBG_LABEL:
1177 case ISD::EH_LABEL:
1178 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1179 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskey762e9ec2006-01-05 01:25:28 +00001180 default: assert(0 && "This action is not supported yet!");
1181 case TargetLowering::Legal:
1182 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohmanfb19f942008-07-01 00:05:16 +00001183 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskey7c462762005-12-16 22:45:29 +00001184 break;
Chris Lattner567b9252007-03-03 19:21:38 +00001185 case TargetLowering::Expand:
1186 Result = LegalizeOp(Node->getOperand(0));
1187 break;
Jim Laskey7c462762005-12-16 22:45:29 +00001188 }
Nate Begeman5965bd12006-02-17 05:43:56 +00001189 break;
Chris Lattner435b4022005-11-29 06:21:05 +00001190
Evan Cheng95cf6612008-03-08 00:58:38 +00001191 case ISD::PREFETCH:
1192 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1193 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1194 default: assert(0 && "This action is not supported yet!");
1195 case TargetLowering::Legal:
1196 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1197 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1198 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1199 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1200 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1201 break;
1202 case TargetLowering::Expand:
1203 // It's a noop.
1204 Result = LegalizeOp(Node->getOperand(0));
1205 break;
1206 }
1207 break;
1208
Andrew Lenharth9b254ee2008-02-16 01:24:58 +00001209 case ISD::MEMBARRIER: {
1210 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthfedcf472008-02-16 14:46:26 +00001211 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1212 default: assert(0 && "This action is not supported yet!");
1213 case TargetLowering::Legal: {
1214 SDOperand Ops[6];
1215 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sands96658d02008-02-27 08:53:44 +00001216 for (int x = 1; x < 6; ++x) {
1217 Ops[x] = Node->getOperand(x);
1218 if (!isTypeLegal(Ops[x].getValueType()))
1219 Ops[x] = PromoteOp(Ops[x]);
1220 }
Andrew Lenharthfedcf472008-02-16 14:46:26 +00001221 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1222 break;
1223 }
1224 case TargetLowering::Expand:
1225 //There is no libgcc call for this op
1226 Result = Node->getOperand(0); // Noop
1227 break;
1228 }
Andrew Lenharth9b254ee2008-02-16 01:24:58 +00001229 break;
1230 }
1231
Mon P Wang6a490372008-06-25 08:15:39 +00001232 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang3e583932008-05-05 19:05:59 +00001233 unsigned int num_operands = 4;
1234 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Andrew Lenharthd032c332008-03-01 21:52:34 +00001235 SDOperand Ops[4];
Mon P Wang3e583932008-05-05 19:05:59 +00001236 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharthd032c332008-03-01 21:52:34 +00001237 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang3e583932008-05-05 19:05:59 +00001238 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1239
1240 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1241 default: assert(0 && "This action is not supported yet!");
1242 case TargetLowering::Custom:
1243 Result = TLI.LowerOperation(Result, DAG);
1244 break;
1245 case TargetLowering::Legal:
1246 break;
1247 }
1248 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1249 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1250 return Result.getValue(Op.ResNo);
Duncan Sands93e180342008-07-04 11:47:58 +00001251 }
Mon P Wang6a490372008-06-25 08:15:39 +00001252 case ISD::ATOMIC_LOAD_ADD:
1253 case ISD::ATOMIC_LOAD_SUB:
Mon P Wang3e583932008-05-05 19:05:59 +00001254 case ISD::ATOMIC_LOAD_AND:
1255 case ISD::ATOMIC_LOAD_OR:
1256 case ISD::ATOMIC_LOAD_XOR:
Andrew Lenharthf88d50b2008-06-14 05:48:15 +00001257 case ISD::ATOMIC_LOAD_NAND:
Mon P Wang3e583932008-05-05 19:05:59 +00001258 case ISD::ATOMIC_LOAD_MIN:
1259 case ISD::ATOMIC_LOAD_MAX:
1260 case ISD::ATOMIC_LOAD_UMIN:
1261 case ISD::ATOMIC_LOAD_UMAX:
1262 case ISD::ATOMIC_SWAP: {
1263 unsigned int num_operands = 3;
1264 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
1265 SDOperand Ops[3];
1266 for (unsigned int x = 0; x < num_operands; ++x)
1267 Ops[x] = LegalizeOp(Node->getOperand(x));
1268 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands93e180342008-07-04 11:47:58 +00001269
Andrew Lenharthd032c332008-03-01 21:52:34 +00001270 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharth95528942008-02-21 06:45:13 +00001271 default: assert(0 && "This action is not supported yet!");
Andrew Lenharthd032c332008-03-01 21:52:34 +00001272 case TargetLowering::Custom:
1273 Result = TLI.LowerOperation(Result, DAG);
1274 break;
Mon P Wang3e583932008-05-05 19:05:59 +00001275 case TargetLowering::Expand:
Duncan Sands93e180342008-07-04 11:47:58 +00001276 Result = SDOperand(TLI.ReplaceNodeResults(Op.Val, DAG),0);
Mon P Wang3e583932008-05-05 19:05:59 +00001277 break;
Andrew Lenharthd032c332008-03-01 21:52:34 +00001278 case TargetLowering::Legal:
Andrew Lenharth95528942008-02-21 06:45:13 +00001279 break;
1280 }
Andrew Lenharthd032c332008-03-01 21:52:34 +00001281 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1282 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1283 return Result.getValue(Op.ResNo);
Duncan Sands93e180342008-07-04 11:47:58 +00001284 }
Scott Michel9d09c5c2007-08-08 23:23:31 +00001285 case ISD::Constant: {
1286 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1287 unsigned opAction =
1288 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1289
Chris Lattnerdc750592005-01-07 07:47:09 +00001290 // We know we don't need to expand constants here, constants only have one
1291 // value and we check that it is fine above.
1292
Scott Michel9d09c5c2007-08-08 23:23:31 +00001293 if (opAction == TargetLowering::Custom) {
1294 Tmp1 = TLI.LowerOperation(Result, DAG);
1295 if (Tmp1.Val)
1296 Result = Tmp1;
1297 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001298 break;
Scott Michel9d09c5c2007-08-08 23:23:31 +00001299 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001300 case ISD::ConstantFP: {
1301 // Spill FP immediates to the constant pool if the target cannot directly
1302 // codegen them. Targets often have some immediate values that can be
1303 // efficiently generated into an FP register without a load. We explicitly
1304 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattnerdc750592005-01-07 07:47:09 +00001305 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1306
Chris Lattner758b0ac2006-01-29 06:26:56 +00001307 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1308 default: assert(0 && "This action is not supported yet!");
Nate Begeman53e1b3f2008-02-14 08:57:00 +00001309 case TargetLowering::Legal:
1310 break;
Chris Lattner758b0ac2006-01-29 06:26:56 +00001311 case TargetLowering::Custom:
1312 Tmp3 = TLI.LowerOperation(Result, DAG);
1313 if (Tmp3.Val) {
1314 Result = Tmp3;
1315 break;
1316 }
1317 // FALLTHROUGH
Nate Begeman53e1b3f2008-02-14 08:57:00 +00001318 case TargetLowering::Expand: {
1319 // Check to see if this FP immediate is already legal.
1320 bool isLegal = false;
1321 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1322 E = TLI.legal_fpimm_end(); I != E; ++I) {
1323 if (CFP->isExactlyValue(*I)) {
1324 isLegal = true;
1325 break;
1326 }
1327 }
1328 // If this is a legal constant, turn it into a TargetConstantFP node.
1329 if (isLegal)
1330 break;
Evan Cheng3766fc602006-12-12 22:19:28 +00001331 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattnerdc750592005-01-07 07:47:09 +00001332 }
Nate Begeman53e1b3f2008-02-14 08:57:00 +00001333 }
Chris Lattnerdc750592005-01-07 07:47:09 +00001334 break;
1335 }
Chris Lattneraf3aefa2005-11-09 18:48:57 +00001336 case ISD::TokenFactor:
1337 if (Node->getNumOperands() == 2) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001338 Tmp1 = LegalizeOp(Node->getOperand(0));
1339 Tmp2 = LegalizeOp(Node->getOperand(1));
1340 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1341 } else if (Node->getNumOperands() == 3) {
1342 Tmp1 = LegalizeOp(Node->getOperand(0));
1343 Tmp2 = LegalizeOp(Node->getOperand(1));
1344 Tmp3 = LegalizeOp(Node->getOperand(2));
1345 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattneraf3aefa2005-11-09 18:48:57 +00001346 } else {
Chris Lattner97af9d52006-08-08 01:09:31 +00001347 SmallVector<SDOperand, 8> Ops;
Chris Lattneraf3aefa2005-11-09 18:48:57 +00001348 // Legalize the operands.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001349 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1350 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattner97af9d52006-08-08 01:09:31 +00001351 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner05b4e372005-01-13 17:59:25 +00001352 }
Chris Lattner05b4e372005-01-13 17:59:25 +00001353 break;
Chris Lattnerd3b504a2006-04-12 16:20:43 +00001354
1355 case ISD::FORMAL_ARGUMENTS:
Chris Lattneraaa23d92006-05-16 22:53:20 +00001356 case ISD::CALL:
Chris Lattnerd3b504a2006-04-12 16:20:43 +00001357 // The only option for this is to custom lower it.
Chris Lattnera1cec012006-05-17 17:55:45 +00001358 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1359 assert(Tmp3.Val && "Target didn't custom lower this node!");
Dale Johannesen8ee39c62008-03-05 19:14:03 +00001360 // A call within a calling sequence must be legalized to something
1361 // other than the normal CALLSEQ_END. Violating this gets Legalize
1362 // into an infinite loop.
1363 assert ((!IsLegalizingCall ||
1364 Node->getOpcode() != ISD::CALL ||
1365 Tmp3.Val->getOpcode() != ISD::CALLSEQ_END) &&
1366 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendlingf359fed2007-11-13 00:44:25 +00001367
1368 // The number of incoming and outgoing values should match; unless the final
1369 // outgoing value is a flag.
1370 assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() ||
1371 (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 &&
1372 Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) ==
1373 MVT::Flag)) &&
Chris Lattnera1cec012006-05-17 17:55:45 +00001374 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattner5f0edfb2006-05-16 05:49:56 +00001375
Chris Lattneraaa23d92006-05-16 22:53:20 +00001376 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattner5f0edfb2006-05-16 05:49:56 +00001377 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnera1cec012006-05-17 17:55:45 +00001378 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
Bill Wendlingf359fed2007-11-13 00:44:25 +00001379 if (Tmp3.Val->getValueType(i) == MVT::Flag)
1380 continue;
Chris Lattnera1cec012006-05-17 17:55:45 +00001381 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattner5f0edfb2006-05-16 05:49:56 +00001382 if (Op.ResNo == i)
1383 Tmp2 = Tmp1;
1384 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
1385 }
1386 return Tmp2;
Christopher Lamba8fc0e52007-07-26 07:34:40 +00001387 case ISD::EXTRACT_SUBREG: {
1388 Tmp1 = LegalizeOp(Node->getOperand(0));
1389 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1390 assert(idx && "Operand must be a constant");
1391 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1392 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1393 }
1394 break;
1395 case ISD::INSERT_SUBREG: {
1396 Tmp1 = LegalizeOp(Node->getOperand(0));
1397 Tmp2 = LegalizeOp(Node->getOperand(1));
1398 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1399 assert(idx && "Operand must be a constant");
1400 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1401 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1402 }
1403 break;
Chris Lattnerf4e1a532006-03-19 00:52:58 +00001404 case ISD::BUILD_VECTOR:
1405 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner29b23012006-03-19 01:17:20 +00001406 default: assert(0 && "This action is not supported yet!");
1407 case TargetLowering::Custom:
1408 Tmp3 = TLI.LowerOperation(Result, DAG);
1409 if (Tmp3.Val) {
1410 Result = Tmp3;
1411 break;
1412 }
1413 // FALLTHROUGH
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001414 case TargetLowering::Expand:
1415 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerf4e1a532006-03-19 00:52:58 +00001416 break;
Chris Lattner29b23012006-03-19 01:17:20 +00001417 }
Chris Lattner29b23012006-03-19 01:17:20 +00001418 break;
1419 case ISD::INSERT_VECTOR_ELT:
1420 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner29b23012006-03-19 01:17:20 +00001421 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman735ab3c2008-02-13 06:43:04 +00001422
1423 // The type of the value to insert may not be legal, even though the vector
1424 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1425 // here.
1426 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1427 default: assert(0 && "Cannot expand insert element operand");
1428 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1429 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1430 }
Chris Lattner29b23012006-03-19 01:17:20 +00001431 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1432
1433 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1434 Node->getValueType(0))) {
1435 default: assert(0 && "This action is not supported yet!");
1436 case TargetLowering::Legal:
1437 break;
1438 case TargetLowering::Custom:
Nate Begeman5743da52008-01-05 20:47:37 +00001439 Tmp4 = TLI.LowerOperation(Result, DAG);
1440 if (Tmp4.Val) {
1441 Result = Tmp4;
Chris Lattner29b23012006-03-19 01:17:20 +00001442 break;
1443 }
1444 // FALLTHROUGH
1445 case TargetLowering::Expand: {
Chris Lattner326870b2006-04-17 19:21:01 +00001446 // If the insert index is a constant, codegen this as a scalar_to_vector,
1447 // then a shuffle that inserts it into the right position in the vector.
1448 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman735ab3c2008-02-13 06:43:04 +00001449 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1450 // match the element type of the vector being created.
1451 if (Tmp2.getValueType() ==
Duncan Sands13237ac2008-06-06 12:08:01 +00001452 Op.getValueType().getVectorElementType()) {
Nate Begeman735ab3c2008-02-13 06:43:04 +00001453 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
1454 Tmp1.getValueType(), Tmp2);
1455
Duncan Sands13237ac2008-06-06 12:08:01 +00001456 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1457 MVT ShufMaskVT =
1458 MVT::getIntVectorWithNumElements(NumElts);
1459 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Nate Begeman735ab3c2008-02-13 06:43:04 +00001460
1461 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1462 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1463 // elt 0 of the RHS.
1464 SmallVector<SDOperand, 8> ShufOps;
1465 for (unsigned i = 0; i != NumElts; ++i) {
1466 if (i != InsertPos->getValue())
1467 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1468 else
1469 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1470 }
1471 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1472 &ShufOps[0], ShufOps.size());
1473
1474 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1475 Tmp1, ScVec, ShufMask);
1476 Result = LegalizeOp(Result);
1477 break;
Chris Lattner326870b2006-04-17 19:21:01 +00001478 }
Chris Lattner326870b2006-04-17 19:21:01 +00001479 }
Nate Begeman6f94f612008-04-25 18:07:40 +00001480 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
Chris Lattner29b23012006-03-19 01:17:20 +00001481 break;
1482 }
1483 }
1484 break;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001485 case ISD::SCALAR_TO_VECTOR:
Chris Lattner6be79822006-04-04 17:23:26 +00001486 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1487 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1488 break;
1489 }
1490
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001491 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1492 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1493 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1494 Node->getValueType(0))) {
1495 default: assert(0 && "This action is not supported yet!");
1496 case TargetLowering::Legal:
1497 break;
Chris Lattner79fb91c2006-03-19 06:47:21 +00001498 case TargetLowering::Custom:
1499 Tmp3 = TLI.LowerOperation(Result, DAG);
1500 if (Tmp3.Val) {
1501 Result = Tmp3;
1502 break;
1503 }
1504 // FALLTHROUGH
Chris Lattner6be79822006-04-04 17:23:26 +00001505 case TargetLowering::Expand:
1506 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001507 break;
1508 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +00001509 break;
Chris Lattner21e68c82006-03-20 01:52:29 +00001510 case ISD::VECTOR_SHUFFLE:
Chris Lattner21e68c82006-03-20 01:52:29 +00001511 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1512 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1513 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1514
1515 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner6be79822006-04-04 17:23:26 +00001516 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1517 default: assert(0 && "Unknown operation action!");
1518 case TargetLowering::Legal:
1519 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1520 "vector shuffle should not be created if not legal!");
1521 break;
1522 case TargetLowering::Custom:
Evan Cheng9fa89592006-04-05 06:07:11 +00001523 Tmp3 = TLI.LowerOperation(Result, DAG);
1524 if (Tmp3.Val) {
1525 Result = Tmp3;
1526 break;
1527 }
1528 // FALLTHROUGH
1529 case TargetLowering::Expand: {
Duncan Sands13237ac2008-06-06 12:08:01 +00001530 MVT VT = Node->getValueType(0);
1531 MVT EltVT = VT.getVectorElementType();
1532 MVT PtrVT = TLI.getPointerTy();
Evan Cheng9fa89592006-04-05 06:07:11 +00001533 SDOperand Mask = Node->getOperand(2);
1534 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001535 SmallVector<SDOperand,8> Ops;
Evan Cheng9fa89592006-04-05 06:07:11 +00001536 for (unsigned i = 0; i != NumElems; ++i) {
1537 SDOperand Arg = Mask.getOperand(i);
1538 if (Arg.getOpcode() == ISD::UNDEF) {
1539 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1540 } else {
1541 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1542 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1543 if (Idx < NumElems)
1544 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1545 DAG.getConstant(Idx, PtrVT)));
1546 else
1547 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1548 DAG.getConstant(Idx - NumElems, PtrVT)));
1549 }
1550 }
Chris Lattnerc24a1d32006-08-08 02:23:42 +00001551 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner6be79822006-04-04 17:23:26 +00001552 break;
Evan Cheng9fa89592006-04-05 06:07:11 +00001553 }
Chris Lattner6be79822006-04-04 17:23:26 +00001554 case TargetLowering::Promote: {
1555 // Change base type to a different vector type.
Duncan Sands13237ac2008-06-06 12:08:01 +00001556 MVT OVT = Node->getValueType(0);
1557 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner6be79822006-04-04 17:23:26 +00001558
1559 // Cast the two input vectors.
1560 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1561 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1562
1563 // Convert the shuffle mask to the right # elements.
1564 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1565 assert(Tmp3.Val && "Shuffle not legal?");
1566 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1567 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1568 break;
1569 }
Chris Lattner21e68c82006-03-20 01:52:29 +00001570 }
1571 break;
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001572
1573 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohmana8665142007-06-25 16:23:39 +00001574 Tmp1 = Node->getOperand(0);
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001575 Tmp2 = LegalizeOp(Node->getOperand(1));
1576 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmana8665142007-06-25 16:23:39 +00001577 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner7c0cd8c2006-03-21 20:44:12 +00001578 break;
1579
Dan Gohmana8665142007-06-25 16:23:39 +00001580 case ISD::EXTRACT_SUBVECTOR:
1581 Tmp1 = Node->getOperand(0);
1582 Tmp2 = LegalizeOp(Node->getOperand(1));
1583 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1584 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman26455c42007-06-13 15:12:02 +00001585 break;
1586
Chris Lattner462505f2006-02-13 09:18:02 +00001587 case ISD::CALLSEQ_START: {
1588 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1589
1590 // Recursively Legalize all of the inputs of the call end that do not lead
1591 // to this call start. This ensures that any libcalls that need be inserted
1592 // are inserted *before* the CALLSEQ_START.
Chris Lattnerebeb48d2007-02-04 00:27:56 +00001593 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner462505f2006-02-13 09:18:02 +00001594 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattner4488f0c2006-07-26 23:55:56 +00001595 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1596 NodesLeadingTo);
1597 }
Chris Lattner462505f2006-02-13 09:18:02 +00001598
1599 // Now that we legalized all of the inputs (which may have inserted
1600 // libcalls) create the new CALLSEQ_START node.
1601 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1602
1603 // Merge in the last call, to ensure that this call start after the last
1604 // call ended.
Chris Lattner62f1b832006-05-17 18:00:08 +00001605 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnera1cec012006-05-17 17:55:45 +00001606 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1607 Tmp1 = LegalizeOp(Tmp1);
1608 }
Chris Lattner462505f2006-02-13 09:18:02 +00001609
1610 // Do not try to legalize the target-specific arguments (#1+).
1611 if (Tmp1 != Node->getOperand(0)) {
Chris Lattner97af9d52006-08-08 01:09:31 +00001612 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner462505f2006-02-13 09:18:02 +00001613 Ops[0] = Tmp1;
Chris Lattner97af9d52006-08-08 01:09:31 +00001614 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner462505f2006-02-13 09:18:02 +00001615 }
1616
1617 // Remember that the CALLSEQ_START is legalized.
Chris Lattner8e2ee732006-02-14 00:55:02 +00001618 AddLegalizedOperand(Op.getValue(0), Result);
1619 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1620 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1621
Chris Lattner462505f2006-02-13 09:18:02 +00001622 // Now that the callseq_start and all of the non-call nodes above this call
1623 // sequence have been legalized, legalize the call itself. During this
1624 // process, no libcalls can/will be inserted, guaranteeing that no calls
1625 // can overlap.
1626 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner462505f2006-02-13 09:18:02 +00001627 // Note that we are selecting this call!
1628 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1629 IsLegalizingCall = true;
1630
1631 // Legalize the call, starting from the CALLSEQ_END.
1632 LegalizeOp(LastCALLSEQ_END);
1633 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1634 return Result;
1635 }
Chris Lattner2dce7032005-05-12 23:24:06 +00001636 case ISD::CALLSEQ_END:
Chris Lattner462505f2006-02-13 09:18:02 +00001637 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1638 // will cause this node to be legalized as well as handling libcalls right.
1639 if (LastCALLSEQ_END.Val != Node) {
1640 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
Roman Levensteina3ee1a32008-04-16 16:15:27 +00001641 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner462505f2006-02-13 09:18:02 +00001642 assert(I != LegalizedNodes.end() &&
1643 "Legalizing the call start should have legalized this node!");
1644 return I->second;
1645 }
1646
1647 // Otherwise, the call start has been legalized and everything is going
1648 // according to plan. Just legalize ourselves normally here.
Chris Lattnerdc750592005-01-07 07:47:09 +00001649 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerccb44762006-01-29 07:58:15 +00001650 // Do not try to legalize the target-specific arguments (#1+), except for
1651 // an optional flag input.
1652 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1653 if (Tmp1 != Node->getOperand(0)) {
Chris Lattner97af9d52006-08-08 01:09:31 +00001654 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattnerccb44762006-01-29 07:58:15 +00001655 Ops[0] = Tmp1;
Chris Lattner97af9d52006-08-08 01:09:31 +00001656 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerccb44762006-01-29 07:58:15 +00001657 }
1658 } else {
1659 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1660 if (Tmp1 != Node->getOperand(0) ||
1661 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattner97af9d52006-08-08 01:09:31 +00001662 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattnerccb44762006-01-29 07:58:15 +00001663 Ops[0] = Tmp1;
1664 Ops.back() = Tmp2;
Chris Lattner97af9d52006-08-08 01:09:31 +00001665 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerccb44762006-01-29 07:58:15 +00001666 }
Chris Lattnerf9a1e3a2006-01-24 05:48:21 +00001667 }
Chris Lattner8e2ee732006-02-14 00:55:02 +00001668 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner462505f2006-02-13 09:18:02 +00001669 // This finishes up call legalization.
1670 IsLegalizingCall = false;
Chris Lattner8e2ee732006-02-14 00:55:02 +00001671
1672 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1673 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1674 if (Node->getNumValues() == 2)
1675 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1676 return Result.getValue(Op.ResNo);
Evan Cheng7f4ec822006-01-11 22:14:47 +00001677 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands13237ac2008-06-06 12:08:01 +00001678 MVT VT = Node->getValueType(0);
Chris Lattnerec26b482005-01-09 19:03:49 +00001679 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1680 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1681 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001682 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerec26b482005-01-09 19:03:49 +00001683
Chris Lattnerd02b0542006-01-28 10:58:55 +00001684 Tmp1 = Result.getValue(0);
Chris Lattner2d591422006-01-15 08:43:08 +00001685 Tmp2 = Result.getValue(1);
Evan Cheng631ccc62007-08-16 23:50:06 +00001686 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Cheng7f4ec822006-01-11 22:14:47 +00001687 default: assert(0 && "This action is not supported yet!");
Chris Lattner59b82f92006-01-15 08:54:32 +00001688 case TargetLowering::Expand: {
1689 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1690 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1691 " not tell us which reg is the stack pointer!");
1692 SDOperand Chain = Tmp1.getOperand(0);
Bill Wendlingf359fed2007-11-13 00:44:25 +00001693
1694 // Chain the dynamic stack allocation so that it doesn't modify the stack
1695 // pointer when other instructions are using the stack.
1696 Chain = DAG.getCALLSEQ_START(Chain,
1697 DAG.getConstant(0, TLI.getPointerTy()));
1698
Chris Lattner59b82f92006-01-15 08:54:32 +00001699 SDOperand Size = Tmp2.getOperand(1);
Evan Cheng631ccc62007-08-16 23:50:06 +00001700 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT);
1701 Chain = SP.getValue(1);
1702 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1703 unsigned StackAlign =
1704 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1705 if (Align > StackAlign)
Evan Chengcb6d65e2007-08-17 18:02:22 +00001706 SP = DAG.getNode(ISD::AND, VT, SP,
1707 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng631ccc62007-08-16 23:50:06 +00001708 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendlingf359fed2007-11-13 00:44:25 +00001709 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1710
1711 Tmp2 =
1712 DAG.getCALLSEQ_END(Chain,
1713 DAG.getConstant(0, TLI.getPointerTy()),
1714 DAG.getConstant(0, TLI.getPointerTy()),
1715 SDOperand());
1716
Chris Lattnerd02b0542006-01-28 10:58:55 +00001717 Tmp1 = LegalizeOp(Tmp1);
1718 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner59b82f92006-01-15 08:54:32 +00001719 break;
1720 }
1721 case TargetLowering::Custom:
Chris Lattner2d591422006-01-15 08:43:08 +00001722 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1723 if (Tmp3.Val) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00001724 Tmp1 = LegalizeOp(Tmp3);
1725 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Cheng7f4ec822006-01-11 22:14:47 +00001726 }
Chris Lattner59b82f92006-01-15 08:54:32 +00001727 break;
Evan Cheng7f4ec822006-01-11 22:14:47 +00001728 case TargetLowering::Legal:
Chris Lattner59b82f92006-01-15 08:54:32 +00001729 break;
Evan Cheng7f4ec822006-01-11 22:14:47 +00001730 }
Chris Lattner59b82f92006-01-15 08:54:32 +00001731 // Since this op produce two values, make sure to remember that we
1732 // legalized both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001733 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1734 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner59b82f92006-01-15 08:54:32 +00001735 return Op.ResNo ? Tmp2 : Tmp1;
Evan Cheng7f4ec822006-01-11 22:14:47 +00001736 }
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001737 case ISD::INLINEASM: {
Chris Lattner97af9d52006-08-08 01:09:31 +00001738 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001739 bool Changed = false;
1740 // Legalize all of the operands of the inline asm, in case they are nodes
1741 // that need to be expanded or something. Note we skip the asm string and
1742 // all of the TargetConstant flags.
1743 SDOperand Op = LegalizeOp(Ops[0]);
1744 Changed = Op != Ops[0];
1745 Ops[0] = Op;
1746
1747 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1748 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1749 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1750 for (++i; NumVals; ++i, --NumVals) {
1751 SDOperand Op = LegalizeOp(Ops[i]);
1752 if (Op != Ops[i]) {
1753 Changed = true;
1754 Ops[i] = Op;
1755 }
1756 }
Chris Lattner476e67b2006-01-26 22:24:51 +00001757 }
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001758
1759 if (HasInFlag) {
1760 Op = LegalizeOp(Ops.back());
1761 Changed |= Op != Ops.back();
1762 Ops.back() = Op;
1763 }
1764
1765 if (Changed)
Chris Lattner97af9d52006-08-08 01:09:31 +00001766 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner476e67b2006-01-26 22:24:51 +00001767
1768 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001769 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner476e67b2006-01-26 22:24:51 +00001770 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1771 return Result.getValue(Op.ResNo);
Chris Lattner1b8ea1f2006-07-11 01:40:09 +00001772 }
Chris Lattner68a12142005-01-07 22:12:08 +00001773 case ISD::BR:
1774 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001775 // Ensure that libcalls are emitted before a branch.
1776 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1777 Tmp1 = LegalizeOp(Tmp1);
1778 LastCALLSEQ_END = DAG.getEntryNode();
1779
Chris Lattnerd02b0542006-01-28 10:58:55 +00001780 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner68a12142005-01-07 22:12:08 +00001781 break;
Nate Begeman4ca2ea52006-04-22 18:53:45 +00001782 case ISD::BRIND:
1783 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1784 // Ensure that libcalls are emitted before a branch.
1785 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1786 Tmp1 = LegalizeOp(Tmp1);
1787 LastCALLSEQ_END = DAG.getEntryNode();
1788
1789 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1790 default: assert(0 && "Indirect target must be legal type (pointer)!");
1791 case Legal:
1792 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1793 break;
1794 }
1795 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1796 break;
Evan Cheng84a28d42006-10-30 08:00:44 +00001797 case ISD::BR_JT:
1798 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1799 // Ensure that libcalls are emitted before a branch.
1800 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1801 Tmp1 = LegalizeOp(Tmp1);
1802 LastCALLSEQ_END = DAG.getEntryNode();
1803
1804 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1805 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1806
1807 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1808 default: assert(0 && "This action is not supported yet!");
1809 case TargetLowering::Legal: break;
1810 case TargetLowering::Custom:
1811 Tmp1 = TLI.LowerOperation(Result, DAG);
1812 if (Tmp1.Val) Result = Tmp1;
1813 break;
1814 case TargetLowering::Expand: {
1815 SDOperand Chain = Result.getOperand(0);
1816 SDOperand Table = Result.getOperand(1);
1817 SDOperand Index = Result.getOperand(2);
1818
Duncan Sands13237ac2008-06-06 12:08:01 +00001819 MVT PTy = TLI.getPointerTy();
Jim Laskey70323a82006-12-14 19:17:33 +00001820 MachineFunction &MF = DAG.getMachineFunction();
1821 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng84a28d42006-10-30 08:00:44 +00001822 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1823 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskey70323a82006-12-14 19:17:33 +00001824
1825 SDOperand LD;
1826 switch (EntrySize) {
1827 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman2d489b52008-02-06 22:27:42 +00001828 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohman16d4bc32008-02-07 18:41:25 +00001829 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman2d489b52008-02-06 22:27:42 +00001830 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohman16d4bc32008-02-07 18:41:25 +00001831 PseudoSourceValue::getJumpTable(), 0); break;
Jim Laskey70323a82006-12-14 19:17:33 +00001832 }
1833
Evan Cheng797d56f2007-11-09 01:32:10 +00001834 Addr = LD;
Jim Laskey70323a82006-12-14 19:17:33 +00001835 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng84a28d42006-10-30 08:00:44 +00001836 // For PIC, the sequence is:
1837 // BRIND(load(Jumptable + index) + RelocBase)
Evan Cheng797d56f2007-11-09 01:32:10 +00001838 // RelocBase can be JumpTable, GOT or some sort of global base.
1839 if (PTy != MVT::i32)
1840 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1841 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1842 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng84a28d42006-10-30 08:00:44 +00001843 }
Evan Cheng797d56f2007-11-09 01:32:10 +00001844 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng84a28d42006-10-30 08:00:44 +00001845 }
1846 }
1847 break;
Chris Lattnerec3fe7c2005-01-07 08:19:42 +00001848 case ISD::BRCOND:
1849 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001850 // Ensure that libcalls are emitted before a return.
1851 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1852 Tmp1 = LegalizeOp(Tmp1);
1853 LastCALLSEQ_END = DAG.getEntryNode();
1854
Chris Lattnerd65c3f32005-01-18 19:27:06 +00001855 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1856 case Expand: assert(0 && "It's impossible to expand bools");
1857 case Legal:
1858 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1859 break;
Dan Gohman1f372ed2008-02-25 21:11:39 +00001860 case Promote: {
Chris Lattnerd65c3f32005-01-18 19:27:06 +00001861 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerdb189382006-11-27 04:39:56 +00001862
1863 // The top bits of the promoted condition are not necessarily zero, ensure
1864 // that the value is properly zero extended.
Dan Gohman1f372ed2008-02-25 21:11:39 +00001865 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00001866 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman1f372ed2008-02-25 21:11:39 +00001867 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerdb189382006-11-27 04:39:56 +00001868 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattnerd65c3f32005-01-18 19:27:06 +00001869 break;
1870 }
Dan Gohman1f372ed2008-02-25 21:11:39 +00001871 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001872
1873 // Basic block destination (Op#2) is always legal.
Chris Lattnerd02b0542006-01-28 10:58:55 +00001874 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman371e4952005-08-16 19:49:35 +00001875
1876 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1877 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001878 case TargetLowering::Legal: break;
1879 case TargetLowering::Custom:
1880 Tmp1 = TLI.LowerOperation(Result, DAG);
1881 if (Tmp1.Val) Result = Tmp1;
1882 break;
Nate Begeman371e4952005-08-16 19:49:35 +00001883 case TargetLowering::Expand:
1884 // Expand brcond's setcc into its constituent parts and create a BR_CC
1885 // Node.
1886 if (Tmp2.getOpcode() == ISD::SETCC) {
1887 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1888 Tmp2.getOperand(0), Tmp2.getOperand(1),
1889 Node->getOperand(2));
1890 } else {
1891 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1892 DAG.getCondCode(ISD::SETNE), Tmp2,
1893 DAG.getConstant(0, Tmp2.getValueType()),
1894 Node->getOperand(2));
1895 }
1896 break;
Nate Begeman371e4952005-08-16 19:49:35 +00001897 }
1898 break;
1899 case ISD::BR_CC:
1900 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00001901 // Ensure that libcalls are emitted before a branch.
1902 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1903 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman7e7f4392006-02-01 07:19:44 +00001904 Tmp2 = Node->getOperand(2); // LHS
1905 Tmp3 = Node->getOperand(3); // RHS
1906 Tmp4 = Node->getOperand(1); // CC
1907
1908 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Chengadc80f92006-12-18 22:55:34 +00001909 LastCALLSEQ_END = DAG.getEntryNode();
1910
Nate Begeman7e7f4392006-02-01 07:19:44 +00001911 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1912 // the LHS is a legal SETCC itself. In this case, we need to compare
1913 // the result against zero to select between true and false values.
1914 if (Tmp3.Val == 0) {
1915 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1916 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattnerbf0bd992005-12-17 23:46:46 +00001917 }
Nate Begeman7e7f4392006-02-01 07:19:44 +00001918
1919 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1920 Node->getOperand(4));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001921
Chris Lattnerbf0bd992005-12-17 23:46:46 +00001922 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1923 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001924 case TargetLowering::Legal: break;
1925 case TargetLowering::Custom:
1926 Tmp4 = TLI.LowerOperation(Result, DAG);
1927 if (Tmp4.Val) Result = Tmp4;
Chris Lattnerbf0bd992005-12-17 23:46:46 +00001928 break;
Nate Begeman371e4952005-08-16 19:49:35 +00001929 }
Chris Lattnerec3fe7c2005-01-07 08:19:42 +00001930 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00001931 case ISD::LOAD: {
Evan Chenge71fe34d2006-10-09 20:57:25 +00001932 LoadSDNode *LD = cast<LoadSDNode>(Node);
1933 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1934 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth4a73c2c2005-04-27 20:10:01 +00001935
Evan Chenge71fe34d2006-10-09 20:57:25 +00001936 ISD::LoadExtType ExtType = LD->getExtensionType();
1937 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands13237ac2008-06-06 12:08:01 +00001938 MVT VT = Node->getValueType(0);
Evan Chenge71fe34d2006-10-09 20:57:25 +00001939 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1940 Tmp3 = Result.getValue(0);
1941 Tmp4 = Result.getValue(1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001942
Evan Chenge71fe34d2006-10-09 20:57:25 +00001943 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1944 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +00001945 case TargetLowering::Legal:
1946 // If this is an unaligned load and the target doesn't support it,
1947 // expand it.
1948 if (!TLI.allowsUnalignedMemoryAccesses()) {
1949 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands13237ac2008-06-06 12:08:01 +00001950 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +00001951 if (LD->getAlignment() < ABIAlignment){
1952 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1953 TLI);
1954 Tmp3 = Result.getOperand(0);
1955 Tmp4 = Result.getOperand(1);
Dale Johannesen29e6ac42007-09-08 19:29:23 +00001956 Tmp3 = LegalizeOp(Tmp3);
1957 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +00001958 }
1959 }
1960 break;
Evan Chenge71fe34d2006-10-09 20:57:25 +00001961 case TargetLowering::Custom:
1962 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1963 if (Tmp1.Val) {
1964 Tmp3 = LegalizeOp(Tmp1);
1965 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00001966 }
Evan Chenge71fe34d2006-10-09 20:57:25 +00001967 break;
1968 case TargetLowering::Promote: {
1969 // Only promote a load of vector type to another.
Duncan Sands13237ac2008-06-06 12:08:01 +00001970 assert(VT.isVector() && "Cannot promote this load!");
Evan Chenge71fe34d2006-10-09 20:57:25 +00001971 // Change base type to a different vector type.
Duncan Sands13237ac2008-06-06 12:08:01 +00001972 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Chenge71fe34d2006-10-09 20:57:25 +00001973
1974 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohman2af30632007-07-09 22:18:38 +00001975 LD->getSrcValueOffset(),
1976 LD->isVolatile(), LD->getAlignment());
Evan Chenge71fe34d2006-10-09 20:57:25 +00001977 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1978 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerd02b0542006-01-28 10:58:55 +00001979 break;
Andrew Lenharthb5597e32005-06-30 19:22:37 +00001980 }
Evan Chenge71fe34d2006-10-09 20:57:25 +00001981 }
1982 // Since loads produce two values, make sure to remember that we
1983 // legalized both of them.
1984 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1985 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1986 return Op.ResNo ? Tmp4 : Tmp3;
1987 } else {
Duncan Sands13237ac2008-06-06 12:08:01 +00001988 MVT SrcVT = LD->getMemoryVT();
1989 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sands95d46ef2008-01-23 20:39:46 +00001990 int SVOffset = LD->getSrcValueOffset();
1991 unsigned Alignment = LD->getAlignment();
1992 bool isVolatile = LD->isVolatile();
1993
Duncan Sands13237ac2008-06-06 12:08:01 +00001994 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sands95d46ef2008-01-23 20:39:46 +00001995 // Some targets pretend to have an i1 loading operation, and actually
1996 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1997 // bits are guaranteed to be zero; it helps the optimizers understand
1998 // that these bits are zero. It is also useful for EXTLOAD, since it
1999 // tells the optimizers that those bits are undefined. It would be
2000 // nice to have an effective generic way of getting these benefits...
2001 // Until such a way is found, don't insist on promoting i1 here.
2002 (SrcVT != MVT::i1 ||
2003 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
2004 // Promote to a byte-sized load if not loading an integral number of
2005 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands13237ac2008-06-06 12:08:01 +00002006 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2007 MVT NVT = MVT::getIntegerVT(NewWidth);
Duncan Sands95d46ef2008-01-23 20:39:46 +00002008 SDOperand Ch;
2009
2010 // The extra bits are guaranteed to be zero, since we stored them that
2011 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2012
2013 ISD::LoadExtType NewExtType =
2014 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2015
2016 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
2017 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2018 NVT, isVolatile, Alignment);
2019
2020 Ch = Result.getValue(1); // The chain.
2021
2022 if (ExtType == ISD::SEXTLOAD)
2023 // Having the top bits zero doesn't help when sign extending.
2024 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2025 Result, DAG.getValueType(SrcVT));
2026 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2027 // All the top bits are guaranteed to be zero - inform the optimizers.
2028 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2029 DAG.getValueType(SrcVT));
2030
2031 Tmp1 = LegalizeOp(Result);
2032 Tmp2 = LegalizeOp(Ch);
2033 } else if (SrcWidth & (SrcWidth - 1)) {
2034 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands13237ac2008-06-06 12:08:01 +00002035 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sands95d46ef2008-01-23 20:39:46 +00002036 "Unsupported extload!");
2037 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2038 assert(RoundWidth < SrcWidth);
2039 unsigned ExtraWidth = SrcWidth - RoundWidth;
2040 assert(ExtraWidth < RoundWidth);
2041 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2042 "Load size not an integral number of bytes!");
Duncan Sands13237ac2008-06-06 12:08:01 +00002043 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2044 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Duncan Sands95d46ef2008-01-23 20:39:46 +00002045 SDOperand Lo, Hi, Ch;
2046 unsigned IncrementSize;
2047
2048 if (TLI.isLittleEndian()) {
2049 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2050 // Load the bottom RoundWidth bits.
2051 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2052 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2053 Alignment);
2054
2055 // Load the remaining ExtraWidth bits.
2056 IncrementSize = RoundWidth / 8;
2057 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2058 DAG.getIntPtrConstant(IncrementSize));
2059 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2060 LD->getSrcValue(), SVOffset + IncrementSize,
2061 ExtraVT, isVolatile,
2062 MinAlign(Alignment, IncrementSize));
2063
2064 // Build a factor node to remember that this load is independent of the
2065 // other one.
2066 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2067 Hi.getValue(1));
2068
2069 // Move the top bits to the right place.
2070 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2071 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2072
2073 // Join the hi and lo parts.
2074 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +00002075 } else {
Duncan Sands95d46ef2008-01-23 20:39:46 +00002076 // Big endian - avoid unaligned loads.
2077 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2078 // Load the top RoundWidth bits.
2079 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2080 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2081 Alignment);
2082
2083 // Load the remaining ExtraWidth bits.
2084 IncrementSize = RoundWidth / 8;
2085 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2086 DAG.getIntPtrConstant(IncrementSize));
2087 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2088 LD->getSrcValue(), SVOffset + IncrementSize,
2089 ExtraVT, isVolatile,
2090 MinAlign(Alignment, IncrementSize));
2091
2092 // Build a factor node to remember that this load is independent of the
2093 // other one.
2094 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2095 Hi.getValue(1));
2096
2097 // Move the top bits to the right place.
2098 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2099 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2100
2101 // Join the hi and lo parts.
2102 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2103 }
2104
2105 Tmp1 = LegalizeOp(Result);
2106 Tmp2 = LegalizeOp(Ch);
2107 } else {
2108 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
2109 default: assert(0 && "This action is not supported yet!");
2110 case TargetLowering::Custom:
2111 isCustom = true;
2112 // FALLTHROUGH
2113 case TargetLowering::Legal:
2114 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2115 Tmp1 = Result.getValue(0);
2116 Tmp2 = Result.getValue(1);
2117
2118 if (isCustom) {
2119 Tmp3 = TLI.LowerOperation(Result, DAG);
2120 if (Tmp3.Val) {
2121 Tmp1 = LegalizeOp(Tmp3);
2122 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2123 }
2124 } else {
2125 // If this is an unaligned load and the target doesn't support it,
2126 // expand it.
2127 if (!TLI.allowsUnalignedMemoryAccesses()) {
2128 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands13237ac2008-06-06 12:08:01 +00002129 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sands95d46ef2008-01-23 20:39:46 +00002130 if (LD->getAlignment() < ABIAlignment){
2131 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
2132 TLI);
2133 Tmp1 = Result.getOperand(0);
2134 Tmp2 = Result.getOperand(1);
2135 Tmp1 = LegalizeOp(Tmp1);
2136 Tmp2 = LegalizeOp(Tmp2);
2137 }
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +00002138 }
2139 }
Duncan Sands95d46ef2008-01-23 20:39:46 +00002140 break;
2141 case TargetLowering::Expand:
2142 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2143 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
2144 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
2145 LD->getSrcValueOffset(),
2146 LD->isVolatile(), LD->getAlignment());
2147 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2148 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2149 Tmp2 = LegalizeOp(Load.getValue(1));
2150 break;
2151 }
2152 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2153 // Turn the unsupported load into an EXTLOAD followed by an explicit
2154 // zero/sign extend inreg.
2155 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2156 Tmp1, Tmp2, LD->getSrcValue(),
2157 LD->getSrcValueOffset(), SrcVT,
2158 LD->isVolatile(), LD->getAlignment());
2159 SDOperand ValRes;
2160 if (ExtType == ISD::SEXTLOAD)
2161 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2162 Result, DAG.getValueType(SrcVT));
2163 else
2164 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2165 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2166 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Chenge71fe34d2006-10-09 20:57:25 +00002167 break;
2168 }
Evan Chenge71fe34d2006-10-09 20:57:25 +00002169 }
Duncan Sands95d46ef2008-01-23 20:39:46 +00002170
Evan Chenge71fe34d2006-10-09 20:57:25 +00002171 // Since loads produce two values, make sure to remember that we legalized
2172 // both of them.
2173 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2174 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2175 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattnera3b7ef02005-04-10 22:54:25 +00002176 }
Chris Lattnera3b7ef02005-04-10 22:54:25 +00002177 }
Nate Begeman5172ce62005-10-19 00:06:56 +00002178 case ISD::EXTRACT_ELEMENT: {
Duncan Sands13237ac2008-06-06 12:08:01 +00002179 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5172ce62005-10-19 00:06:56 +00002180 switch (getTypeAction(OpTy)) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00002181 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5172ce62005-10-19 00:06:56 +00002182 case Legal:
2183 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
2184 // 1 -> Hi
2185 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
Duncan Sands13237ac2008-06-06 12:08:01 +00002186 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5172ce62005-10-19 00:06:56 +00002187 TLI.getShiftAmountTy()));
2188 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2189 } else {
2190 // 0 -> Lo
2191 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2192 Node->getOperand(0));
2193 }
Nate Begeman5172ce62005-10-19 00:06:56 +00002194 break;
2195 case Expand:
2196 // Get both the low and high parts.
2197 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2198 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
2199 Result = Tmp2; // 1 -> Hi
2200 else
2201 Result = Tmp1; // 0 -> Lo
2202 break;
2203 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002204 break;
Nate Begeman5172ce62005-10-19 00:06:56 +00002205 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002206
2207 case ISD::CopyToReg:
2208 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukman835702a2005-04-21 22:36:52 +00002209
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00002210 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattner33182322005-08-16 21:55:35 +00002211 "Register type must be legal!");
Chris Lattnere3c67e92005-12-18 15:27:43 +00002212 // Legalize the incoming value (must be a legal type).
Chris Lattner33182322005-08-16 21:55:35 +00002213 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00002214 if (Node->getNumValues() == 1) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00002215 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattnere3c67e92005-12-18 15:27:43 +00002216 } else {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00002217 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerd02b0542006-01-28 10:58:55 +00002218 if (Node->getNumOperands() == 4) {
Chris Lattnerebcfa0c22005-12-18 15:36:21 +00002219 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002220 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2221 Tmp3);
2222 } else {
2223 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattnere3c67e92005-12-18 15:27:43 +00002224 }
2225
2226 // Since this produces two values, make sure to remember that we legalized
2227 // both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00002228 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnere3c67e92005-12-18 15:27:43 +00002229 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002230 return Result;
Chris Lattnere3c67e92005-12-18 15:27:43 +00002231 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002232 break;
2233
2234 case ISD::RET:
2235 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner462505f2006-02-13 09:18:02 +00002236
2237 // Ensure that libcalls are emitted before a return.
2238 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2239 Tmp1 = LegalizeOp(Tmp1);
2240 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattner2eb22ee2006-04-11 01:31:51 +00002241
Chris Lattnerdc750592005-01-07 07:47:09 +00002242 switch (Node->getNumOperands()) {
Evan Chenga2e99532006-05-26 23:09:09 +00002243 case 3: // ret val
Evan Cheng7256b0a2006-04-11 06:33:39 +00002244 Tmp2 = Node->getOperand(1);
Evan Chenga2e99532006-05-26 23:09:09 +00002245 Tmp3 = Node->getOperand(2); // Signness
Chris Lattner2eb22ee2006-04-11 01:31:51 +00002246 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattnerdc750592005-01-07 07:47:09 +00002247 case Legal:
Evan Chenga2e99532006-05-26 23:09:09 +00002248 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattnerdc750592005-01-07 07:47:09 +00002249 break;
Chris Lattner2eb22ee2006-04-11 01:31:51 +00002250 case Expand:
Duncan Sands13237ac2008-06-06 12:08:01 +00002251 if (!Tmp2.getValueType().isVector()) {
Chris Lattner2eb22ee2006-04-11 01:31:51 +00002252 SDOperand Lo, Hi;
2253 ExpandOp(Tmp2, Lo, Hi);
Chris Lattner13780ac2007-03-06 20:01:06 +00002254
2255 // Big endian systems want the hi reg first.
Duncan Sands7377f5f2008-02-11 10:37:04 +00002256 if (TLI.isBigEndian())
Chris Lattner13780ac2007-03-06 20:01:06 +00002257 std::swap(Lo, Hi);
2258
Evan Cheng3432ab92006-12-11 19:27:14 +00002259 if (Hi.Val)
2260 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2261 else
2262 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattner451b0992006-08-21 20:24:53 +00002263 Result = LegalizeOp(Result);
Chris Lattner2eb22ee2006-04-11 01:31:51 +00002264 } else {
2265 SDNode *InVal = Tmp2.Val;
Dale Johannesen771188c2007-10-20 00:07:52 +00002266 int InIx = Tmp2.ResNo;
Duncan Sands13237ac2008-06-06 12:08:01 +00002267 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2268 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Chris Lattner2eb22ee2006-04-11 01:31:51 +00002269
Dan Gohmana8665142007-06-25 16:23:39 +00002270 // Figure out if there is a simple type corresponding to this Vector
Reid Spencer09575ba2007-02-15 03:39:18 +00002271 // type. If so, convert to the vector type.
Duncan Sands13237ac2008-06-06 12:08:01 +00002272 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmana8665142007-06-25 16:23:39 +00002273 if (TLI.isTypeLegal(TVT)) {
Reid Spencer09575ba2007-02-15 03:39:18 +00002274 // Turn this into a return of the vector type.
Dan Gohmana8665142007-06-25 16:23:39 +00002275 Tmp2 = LegalizeOp(Tmp2);
Evan Chenga2e99532006-05-26 23:09:09 +00002276 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner2eb22ee2006-04-11 01:31:51 +00002277 } else if (NumElems == 1) {
2278 // Turn this into a return of the scalar type.
Dan Gohmana8665142007-06-25 16:23:39 +00002279 Tmp2 = ScalarizeVectorOp(Tmp2);
2280 Tmp2 = LegalizeOp(Tmp2);
Evan Chenga2e99532006-05-26 23:09:09 +00002281 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner6cf3bbb2006-04-11 02:00:08 +00002282
2283 // FIXME: Returns of gcc generic vectors smaller than a legal type
2284 // should be returned in integer registers!
2285
Chris Lattner2eb22ee2006-04-11 01:31:51 +00002286 // The scalarized value type may not be legal, e.g. it might require
2287 // promotion or expansion. Relegalize the return.
2288 Result = LegalizeOp(Result);
2289 } else {
Chris Lattner6cf3bbb2006-04-11 02:00:08 +00002290 // FIXME: Returns of gcc generic vectors larger than a legal vector
2291 // type should be returned by reference!
Chris Lattner2eb22ee2006-04-11 01:31:51 +00002292 SDOperand Lo, Hi;
2293 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattner296a83c2007-02-01 04:55:59 +00002294 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattner2eb22ee2006-04-11 01:31:51 +00002295 Result = LegalizeOp(Result);
2296 }
2297 }
Misha Brukman835702a2005-04-21 22:36:52 +00002298 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00002299 case Promote:
Chris Lattner4d978642005-01-15 22:16:26 +00002300 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Chenga2e99532006-05-26 23:09:09 +00002301 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerd02b0542006-01-28 10:58:55 +00002302 Result = LegalizeOp(Result);
Chris Lattner4d978642005-01-15 22:16:26 +00002303 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00002304 }
2305 break;
2306 case 1: // ret void
Chris Lattnerd02b0542006-01-28 10:58:55 +00002307 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerdc750592005-01-07 07:47:09 +00002308 break;
2309 default: { // ret <values>
Chris Lattner97af9d52006-08-08 01:09:31 +00002310 SmallVector<SDOperand, 8> NewValues;
Chris Lattnerdc750592005-01-07 07:47:09 +00002311 NewValues.push_back(Tmp1);
Evan Chenga2e99532006-05-26 23:09:09 +00002312 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattnerdc750592005-01-07 07:47:09 +00002313 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2314 case Legal:
Chris Lattner7e6eeba2005-01-08 19:27:05 +00002315 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Chenga2e99532006-05-26 23:09:09 +00002316 NewValues.push_back(Node->getOperand(i+1));
Chris Lattnerdc750592005-01-07 07:47:09 +00002317 break;
2318 case Expand: {
2319 SDOperand Lo, Hi;
Duncan Sands13237ac2008-06-06 12:08:01 +00002320 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattner6cf3bbb2006-04-11 02:00:08 +00002321 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattnerdc750592005-01-07 07:47:09 +00002322 ExpandOp(Node->getOperand(i), Lo, Hi);
2323 NewValues.push_back(Lo);
Evan Chenga2e99532006-05-26 23:09:09 +00002324 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng3432ab92006-12-11 19:27:14 +00002325 if (Hi.Val) {
2326 NewValues.push_back(Hi);
2327 NewValues.push_back(Node->getOperand(i+1));
2328 }
Misha Brukman835702a2005-04-21 22:36:52 +00002329 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00002330 }
2331 case Promote:
Chris Lattner4d978642005-01-15 22:16:26 +00002332 assert(0 && "Can't promote multiple return value yet!");
Chris Lattnerdc750592005-01-07 07:47:09 +00002333 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002334
2335 if (NewValues.size() == Node->getNumOperands())
Chris Lattner97af9d52006-08-08 01:09:31 +00002336 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerd02b0542006-01-28 10:58:55 +00002337 else
Chris Lattner97af9d52006-08-08 01:09:31 +00002338 Result = DAG.getNode(ISD::RET, MVT::Other,
2339 &NewValues[0], NewValues.size());
Chris Lattnerdc750592005-01-07 07:47:09 +00002340 break;
2341 }
2342 }
Evan Chengf35b1c82006-01-06 00:41:43 +00002343
Chris Lattner4d1ea712006-01-29 21:02:23 +00002344 if (Result.getOpcode() == ISD::RET) {
2345 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2346 default: assert(0 && "This action is not supported yet!");
2347 case TargetLowering::Legal: break;
2348 case TargetLowering::Custom:
2349 Tmp1 = TLI.LowerOperation(Result, DAG);
2350 if (Tmp1.Val) Result = Tmp1;
2351 break;
2352 }
Evan Chengf35b1c82006-01-06 00:41:43 +00002353 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002354 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00002355 case ISD::STORE: {
Evan Chengab51cf22006-10-13 21:14:26 +00002356 StoreSDNode *ST = cast<StoreSDNode>(Node);
2357 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2358 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohman2af30632007-07-09 22:18:38 +00002359 int SVOffset = ST->getSrcValueOffset();
2360 unsigned Alignment = ST->getAlignment();
2361 bool isVolatile = ST->isVolatile();
Chris Lattnerdc750592005-01-07 07:47:09 +00002362
Evan Chengab51cf22006-10-13 21:14:26 +00002363 if (!ST->isTruncatingStore()) {
Chris Lattner6ba11fb2006-12-12 04:18:56 +00002364 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2365 // FIXME: We shouldn't do this for TargetConstantFP's.
2366 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2367 // to phase ordering between legalized code and the dag combiner. This
2368 // probably means that we need to integrate dag combiner and legalizer
2369 // together.
Dale Johannesen98d3a082007-09-14 22:26:36 +00002370 // We generally can't do this one for long doubles.
Chris Lattner5e6fe052007-10-13 06:35:54 +00002371 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattnerb193517e2007-10-15 05:46:06 +00002372 if (CFP->getValueType(0) == MVT::f32 &&
2373 getTypeAction(MVT::i32) == Legal) {
Dan Gohman10f7d852008-03-11 00:11:06 +00002374 Tmp3 = DAG.getConstant(CFP->getValueAPF().
2375 convertToAPInt().zextOrTrunc(32),
Dale Johannesen245dceb2007-09-11 18:32:33 +00002376 MVT::i32);
Dale Johannesen98d3a082007-09-14 22:26:36 +00002377 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2378 SVOffset, isVolatile, Alignment);
2379 break;
2380 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattnerb193517e2007-10-15 05:46:06 +00002381 // If this target supports 64-bit registers, do a single 64-bit store.
2382 if (getTypeAction(MVT::i64) == Legal) {
2383 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
Dan Gohman10f7d852008-03-11 00:11:06 +00002384 zextOrTrunc(64), MVT::i64);
Chris Lattnerb193517e2007-10-15 05:46:06 +00002385 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2386 SVOffset, isVolatile, Alignment);
2387 break;
Duncan Sands8651e9c2008-06-13 19:07:40 +00002388 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattnerb193517e2007-10-15 05:46:06 +00002389 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2390 // stores. If the target supports neither 32- nor 64-bits, this
2391 // xform is certainly not worth it.
Dan Gohman10f7d852008-03-11 00:11:06 +00002392 const APInt &IntVal =CFP->getValueAPF().convertToAPInt();
2393 SDOperand Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2394 SDOperand Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands7377f5f2008-02-11 10:37:04 +00002395 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattnerb193517e2007-10-15 05:46:06 +00002396
2397 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2398 SVOffset, isVolatile, Alignment);
2399 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner72733e52008-01-17 07:00:52 +00002400 DAG.getIntPtrConstant(4));
Chris Lattnerb193517e2007-10-15 05:46:06 +00002401 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sands1826ded2007-10-28 12:59:45 +00002402 isVolatile, MinAlign(Alignment, 4U));
Chris Lattnerb193517e2007-10-15 05:46:06 +00002403
2404 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2405 break;
2406 }
Chris Lattner6ba11fb2006-12-12 04:18:56 +00002407 }
Chris Lattner6ba11fb2006-12-12 04:18:56 +00002408 }
2409
Dan Gohman47a7d6f2008-01-30 00:15:11 +00002410 switch (getTypeAction(ST->getMemoryVT())) {
Evan Chengab51cf22006-10-13 21:14:26 +00002411 case Legal: {
2412 Tmp3 = LegalizeOp(ST->getValue());
2413 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2414 ST->getOffset());
Evan Cheng31d15fa2005-12-23 07:29:34 +00002415
Duncan Sands13237ac2008-06-06 12:08:01 +00002416 MVT VT = Tmp3.getValueType();
Evan Chengab51cf22006-10-13 21:14:26 +00002417 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2418 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +00002419 case TargetLowering::Legal:
2420 // If this is an unaligned store and the target doesn't support it,
2421 // expand it.
2422 if (!TLI.allowsUnalignedMemoryAccesses()) {
2423 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands13237ac2008-06-06 12:08:01 +00002424 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +00002425 if (ST->getAlignment() < ABIAlignment)
2426 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2427 TLI);
2428 }
2429 break;
Evan Chengab51cf22006-10-13 21:14:26 +00002430 case TargetLowering::Custom:
2431 Tmp1 = TLI.LowerOperation(Result, DAG);
2432 if (Tmp1.Val) Result = Tmp1;
2433 break;
2434 case TargetLowering::Promote:
Duncan Sands13237ac2008-06-06 12:08:01 +00002435 assert(VT.isVector() && "Unknown legal promote case!");
Evan Chengab51cf22006-10-13 21:14:26 +00002436 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2437 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2438 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohman2af30632007-07-09 22:18:38 +00002439 ST->getSrcValue(), SVOffset, isVolatile,
2440 Alignment);
Evan Chengab51cf22006-10-13 21:14:26 +00002441 break;
2442 }
2443 break;
2444 }
2445 case Promote:
2446 // Truncate the value and store the result.
2447 Tmp3 = PromoteOp(ST->getValue());
2448 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohman47a7d6f2008-01-30 00:15:11 +00002449 SVOffset, ST->getMemoryVT(),
Dan Gohman2af30632007-07-09 22:18:38 +00002450 isVolatile, Alignment);
Evan Chengab51cf22006-10-13 21:14:26 +00002451 break;
2452
2453 case Expand:
2454 unsigned IncrementSize = 0;
2455 SDOperand Lo, Hi;
2456
2457 // If this is a vector type, then we have to calculate the increment as
2458 // the product of the element size in bytes, and the number of elements
2459 // in the high half of the vector.
Duncan Sands13237ac2008-06-06 12:08:01 +00002460 if (ST->getValue().getValueType().isVector()) {
Evan Chengab51cf22006-10-13 21:14:26 +00002461 SDNode *InVal = ST->getValue().Val;
Dale Johannesen771188c2007-10-20 00:07:52 +00002462 int InIx = ST->getValue().ResNo;
Duncan Sands13237ac2008-06-06 12:08:01 +00002463 MVT InVT = InVal->getValueType(InIx);
2464 unsigned NumElems = InVT.getVectorNumElements();
2465 MVT EVT = InVT.getVectorElementType();
Evan Chengab51cf22006-10-13 21:14:26 +00002466
Dan Gohmana8665142007-06-25 16:23:39 +00002467 // Figure out if there is a simple type corresponding to this Vector
Reid Spencer09575ba2007-02-15 03:39:18 +00002468 // type. If so, convert to the vector type.
Duncan Sands13237ac2008-06-06 12:08:01 +00002469 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmana8665142007-06-25 16:23:39 +00002470 if (TLI.isTypeLegal(TVT)) {
Reid Spencer09575ba2007-02-15 03:39:18 +00002471 // Turn this into a normal store of the vector type.
Dan Gohmana36ade52008-02-15 18:11:59 +00002472 Tmp3 = LegalizeOp(ST->getValue());
Evan Chengab51cf22006-10-13 21:14:26 +00002473 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohman2af30632007-07-09 22:18:38 +00002474 SVOffset, isVolatile, Alignment);
Evan Chengab51cf22006-10-13 21:14:26 +00002475 Result = LegalizeOp(Result);
2476 break;
2477 } else if (NumElems == 1) {
2478 // Turn this into a normal store of the scalar type.
Dan Gohmana36ade52008-02-15 18:11:59 +00002479 Tmp3 = ScalarizeVectorOp(ST->getValue());
Evan Chengab51cf22006-10-13 21:14:26 +00002480 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohman2af30632007-07-09 22:18:38 +00002481 SVOffset, isVolatile, Alignment);
Evan Chengab51cf22006-10-13 21:14:26 +00002482 // The scalarized value type may not be legal, e.g. it might require
2483 // promotion or expansion. Relegalize the scalar store.
2484 Result = LegalizeOp(Result);
2485 break;
2486 } else {
Dan Gohmana36ade52008-02-15 18:11:59 +00002487 SplitVectorOp(ST->getValue(), Lo, Hi);
Duncan Sands13237ac2008-06-06 12:08:01 +00002488 IncrementSize = Lo.Val->getValueType(0).getVectorNumElements() *
2489 EVT.getSizeInBits()/8;
Evan Chengab51cf22006-10-13 21:14:26 +00002490 }
2491 } else {
Dan Gohmana36ade52008-02-15 18:11:59 +00002492 ExpandOp(ST->getValue(), Lo, Hi);
Duncan Sands13237ac2008-06-06 12:08:01 +00002493 IncrementSize = Hi.Val ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Chengab51cf22006-10-13 21:14:26 +00002494
Duncan Sands7377f5f2008-02-11 10:37:04 +00002495 if (TLI.isBigEndian())
Evan Chengab51cf22006-10-13 21:14:26 +00002496 std::swap(Lo, Hi);
2497 }
2498
2499 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohman2af30632007-07-09 22:18:38 +00002500 SVOffset, isVolatile, Alignment);
Evan Cheng0076ca02006-12-12 19:53:13 +00002501
2502 if (Hi.Val == NULL) {
2503 // Must be int <-> float one-to-one expansion.
2504 Result = Lo;
2505 break;
2506 }
2507
Evan Chengab51cf22006-10-13 21:14:26 +00002508 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner72733e52008-01-17 07:00:52 +00002509 DAG.getIntPtrConstant(IncrementSize));
Evan Chengab51cf22006-10-13 21:14:26 +00002510 assert(isTypeLegal(Tmp2.getValueType()) &&
2511 "Pointers must be legal!");
Dan Gohman2af30632007-07-09 22:18:38 +00002512 SVOffset += IncrementSize;
Duncan Sands1826ded2007-10-28 12:59:45 +00002513 Alignment = MinAlign(Alignment, IncrementSize);
Evan Chengab51cf22006-10-13 21:14:26 +00002514 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohman2af30632007-07-09 22:18:38 +00002515 SVOffset, isVolatile, Alignment);
Evan Chengab51cf22006-10-13 21:14:26 +00002516 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2517 break;
2518 }
2519 } else {
Chris Lattner1ea55cf2008-01-17 19:59:44 +00002520 switch (getTypeAction(ST->getValue().getValueType())) {
2521 case Legal:
2522 Tmp3 = LegalizeOp(ST->getValue());
2523 break;
2524 case Promote:
2525 // We can promote the value, the truncstore will still take care of it.
2526 Tmp3 = PromoteOp(ST->getValue());
2527 break;
2528 case Expand:
2529 // Just store the low part. This may become a non-trunc store, so make
2530 // sure to use getTruncStore, not UpdateNodeOperands below.
2531 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2532 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2533 SVOffset, MVT::i8, isVolatile, Alignment);
2534 }
Evan Chengab51cf22006-10-13 21:14:26 +00002535
Duncan Sands13237ac2008-06-06 12:08:01 +00002536 MVT StVT = ST->getMemoryVT();
2537 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands88de26c2008-01-22 07:17:34 +00002538
Duncan Sands13237ac2008-06-06 12:08:01 +00002539 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands88de26c2008-01-22 07:17:34 +00002540 // Promote to a byte-sized store with upper bits zero if not
2541 // storing an integral number of bytes. For example, promote
2542 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands13237ac2008-06-06 12:08:01 +00002543 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Duncan Sands88de26c2008-01-22 07:17:34 +00002544 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2545 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2546 SVOffset, NVT, isVolatile, Alignment);
2547 } else if (StWidth & (StWidth - 1)) {
2548 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands13237ac2008-06-06 12:08:01 +00002549 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands88de26c2008-01-22 07:17:34 +00002550 "Unsupported truncstore!");
2551 unsigned RoundWidth = 1 << Log2_32(StWidth);
2552 assert(RoundWidth < StWidth);
2553 unsigned ExtraWidth = StWidth - RoundWidth;
2554 assert(ExtraWidth < RoundWidth);
2555 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2556 "Store size not an integral number of bytes!");
Duncan Sands13237ac2008-06-06 12:08:01 +00002557 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2558 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Duncan Sands88de26c2008-01-22 07:17:34 +00002559 SDOperand Lo, Hi;
2560 unsigned IncrementSize;
2561
2562 if (TLI.isLittleEndian()) {
2563 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2564 // Store the bottom RoundWidth bits.
2565 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2566 SVOffset, RoundVT,
2567 isVolatile, Alignment);
2568
2569 // Store the remaining ExtraWidth bits.
2570 IncrementSize = RoundWidth / 8;
2571 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2572 DAG.getIntPtrConstant(IncrementSize));
2573 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2574 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2575 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2576 SVOffset + IncrementSize, ExtraVT, isVolatile,
2577 MinAlign(Alignment, IncrementSize));
2578 } else {
2579 // Big endian - avoid unaligned stores.
2580 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2581 // Store the top RoundWidth bits.
2582 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2583 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2584 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2585 RoundVT, isVolatile, Alignment);
2586
2587 // Store the remaining ExtraWidth bits.
2588 IncrementSize = RoundWidth / 8;
2589 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2590 DAG.getIntPtrConstant(IncrementSize));
2591 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2592 SVOffset + IncrementSize, ExtraVT, isVolatile,
2593 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venancio0db44182007-08-01 19:34:21 +00002594 }
Duncan Sands88de26c2008-01-22 07:17:34 +00002595
2596 // The order of the stores doesn't matter.
2597 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2598 } else {
2599 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2600 Tmp2 != ST->getBasePtr())
2601 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2602 ST->getOffset());
2603
2604 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2605 default: assert(0 && "This action is not supported yet!");
2606 case TargetLowering::Legal:
2607 // If this is an unaligned store and the target doesn't support it,
2608 // expand it.
2609 if (!TLI.allowsUnalignedMemoryAccesses()) {
2610 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands13237ac2008-06-06 12:08:01 +00002611 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands88de26c2008-01-22 07:17:34 +00002612 if (ST->getAlignment() < ABIAlignment)
2613 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2614 TLI);
2615 }
2616 break;
2617 case TargetLowering::Custom:
2618 Result = TLI.LowerOperation(Result, DAG);
2619 break;
2620 case Expand:
2621 // TRUNCSTORE:i16 i32 -> STORE i16
2622 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2623 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2624 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2625 isVolatile, Alignment);
2626 break;
2627 }
Evan Cheng31d15fa2005-12-23 07:29:34 +00002628 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002629 }
2630 break;
Evan Cheng31d15fa2005-12-23 07:29:34 +00002631 }
Andrew Lenharthdec53922005-03-31 21:24:06 +00002632 case ISD::PCMARKER:
2633 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerd02b0542006-01-28 10:58:55 +00002634 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharthdec53922005-03-31 21:24:06 +00002635 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00002636 case ISD::STACKSAVE:
2637 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerd02b0542006-01-28 10:58:55 +00002638 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2639 Tmp1 = Result.getValue(0);
2640 Tmp2 = Result.getValue(1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002641
Chris Lattnerb3266452006-01-13 02:50:02 +00002642 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2643 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002644 case TargetLowering::Legal: break;
2645 case TargetLowering::Custom:
Chris Lattnerd02b0542006-01-28 10:58:55 +00002646 Tmp3 = TLI.LowerOperation(Result, DAG);
2647 if (Tmp3.Val) {
2648 Tmp1 = LegalizeOp(Tmp3);
2649 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattnerb3266452006-01-13 02:50:02 +00002650 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002651 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00002652 case TargetLowering::Expand:
Chris Lattnered9b3e12006-01-13 17:48:44 +00002653 // Expand to CopyFromReg if the target set
2654 // StackPointerRegisterToSaveRestore.
2655 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00002656 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattnered9b3e12006-01-13 17:48:44 +00002657 Node->getValueType(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00002658 Tmp2 = Tmp1.getValue(1);
Chris Lattnered9b3e12006-01-13 17:48:44 +00002659 } else {
Chris Lattnerd02b0542006-01-28 10:58:55 +00002660 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2661 Tmp2 = Node->getOperand(0);
Chris Lattnered9b3e12006-01-13 17:48:44 +00002662 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002663 break;
Chris Lattnerb3266452006-01-13 02:50:02 +00002664 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002665
2666 // Since stacksave produce two values, make sure to remember that we
2667 // legalized both of them.
Chris Lattnerd02b0542006-01-28 10:58:55 +00002668 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2669 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2670 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002671
Chris Lattnerb3266452006-01-13 02:50:02 +00002672 case ISD::STACKRESTORE:
2673 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2674 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerd02b0542006-01-28 10:58:55 +00002675 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattnerb3266452006-01-13 02:50:02 +00002676
2677 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2678 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002679 case TargetLowering::Legal: break;
2680 case TargetLowering::Custom:
2681 Tmp1 = TLI.LowerOperation(Result, DAG);
2682 if (Tmp1.Val) Result = Tmp1;
Chris Lattnerb3266452006-01-13 02:50:02 +00002683 break;
2684 case TargetLowering::Expand:
Chris Lattnered9b3e12006-01-13 17:48:44 +00002685 // Expand to CopyToReg if the target set
2686 // StackPointerRegisterToSaveRestore.
2687 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2688 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2689 } else {
2690 Result = Tmp1;
2691 }
Chris Lattnerb3266452006-01-13 02:50:02 +00002692 break;
2693 }
2694 break;
2695
Andrew Lenharth01aa5632005-11-11 16:47:30 +00002696 case ISD::READCYCLECOUNTER:
2697 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerd02b0542006-01-28 10:58:55 +00002698 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng69739932006-11-29 08:26:18 +00002699 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2700 Node->getValueType(0))) {
2701 default: assert(0 && "This action is not supported yet!");
Evan Chenga743fad2006-11-29 19:13:47 +00002702 case TargetLowering::Legal:
2703 Tmp1 = Result.getValue(0);
2704 Tmp2 = Result.getValue(1);
2705 break;
Evan Cheng69739932006-11-29 08:26:18 +00002706 case TargetLowering::Custom:
2707 Result = TLI.LowerOperation(Result, DAG);
Evan Chenga743fad2006-11-29 19:13:47 +00002708 Tmp1 = LegalizeOp(Result.getValue(0));
2709 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Cheng69739932006-11-29 08:26:18 +00002710 break;
2711 }
Andrew Lenharth73420b32005-12-02 04:56:24 +00002712
2713 // Since rdcc produce two values, make sure to remember that we legalized
2714 // both of them.
Evan Chenga743fad2006-11-29 19:13:47 +00002715 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2716 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerd02b0542006-01-28 10:58:55 +00002717 return Result;
Andrew Lenharth627cbd42005-11-20 21:32:07 +00002718
Chris Lattner39c67442005-01-14 22:08:15 +00002719 case ISD::SELECT:
Chris Lattnerd65c3f32005-01-18 19:27:06 +00002720 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2721 case Expand: assert(0 && "It's impossible to expand bools");
2722 case Legal:
2723 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2724 break;
Dan Gohman1f372ed2008-02-25 21:11:39 +00002725 case Promote: {
Chris Lattnerd65c3f32005-01-18 19:27:06 +00002726 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattner3abb6362006-11-28 01:03:30 +00002727 // Make sure the condition is either zero or one.
Dan Gohman1f372ed2008-02-25 21:11:39 +00002728 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohman309d3d52007-06-22 14:59:07 +00002729 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman1f372ed2008-02-25 21:11:39 +00002730 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattner3abb6362006-11-28 01:03:30 +00002731 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattnerd65c3f32005-01-18 19:27:06 +00002732 break;
2733 }
Dan Gohman1f372ed2008-02-25 21:11:39 +00002734 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002735 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner39c67442005-01-14 22:08:15 +00002736 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner3c0dd462005-01-16 07:29:19 +00002737
Chris Lattnerd02b0542006-01-28 10:58:55 +00002738 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002739
Nate Begeman987121a2005-08-23 04:29:48 +00002740 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner3c0dd462005-01-16 07:29:19 +00002741 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002742 case TargetLowering::Legal: break;
2743 case TargetLowering::Custom: {
2744 Tmp1 = TLI.LowerOperation(Result, DAG);
2745 if (Tmp1.Val) Result = Tmp1;
2746 break;
2747 }
Nate Begemane5b86d72005-08-10 20:51:12 +00002748 case TargetLowering::Expand:
2749 if (Tmp1.getOpcode() == ISD::SETCC) {
2750 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2751 Tmp2, Tmp3,
2752 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2753 } else {
2754 Result = DAG.getSelectCC(Tmp1,
2755 DAG.getConstant(0, Tmp1.getValueType()),
2756 Tmp2, Tmp3, ISD::SETNE);
2757 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00002758 break;
2759 case TargetLowering::Promote: {
Duncan Sands13237ac2008-06-06 12:08:01 +00002760 MVT NVT =
Chris Lattner3c0dd462005-01-16 07:29:19 +00002761 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2762 unsigned ExtOp, TruncOp;
Duncan Sands13237ac2008-06-06 12:08:01 +00002763 if (Tmp2.getValueType().isVector()) {
Evan Chengbe8a8932006-04-12 16:33:18 +00002764 ExtOp = ISD::BIT_CONVERT;
2765 TruncOp = ISD::BIT_CONVERT;
Duncan Sands13237ac2008-06-06 12:08:01 +00002766 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002767 ExtOp = ISD::ANY_EXTEND;
2768 TruncOp = ISD::TRUNCATE;
Chris Lattner3c0dd462005-01-16 07:29:19 +00002769 } else {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002770 ExtOp = ISD::FP_EXTEND;
2771 TruncOp = ISD::FP_ROUND;
Chris Lattner3c0dd462005-01-16 07:29:19 +00002772 }
2773 // Promote each of the values to the new type.
2774 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2775 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2776 // Perform the larger operation, then round down.
2777 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner72733e52008-01-17 07:00:52 +00002778 if (TruncOp != ISD::FP_ROUND)
2779 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2780 else
2781 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2782 DAG.getIntPtrConstant(0));
Chris Lattner3c0dd462005-01-16 07:29:19 +00002783 break;
2784 }
2785 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002786 break;
Nate Begeman7e7f4392006-02-01 07:19:44 +00002787 case ISD::SELECT_CC: {
2788 Tmp1 = Node->getOperand(0); // LHS
2789 Tmp2 = Node->getOperand(1); // RHS
Nate Begemane5b86d72005-08-10 20:51:12 +00002790 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2791 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman7e7f4392006-02-01 07:19:44 +00002792 SDOperand CC = Node->getOperand(4);
Nate Begemane5b86d72005-08-10 20:51:12 +00002793
Nate Begeman7e7f4392006-02-01 07:19:44 +00002794 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2795
2796 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2797 // the LHS is a legal SETCC itself. In this case, we need to compare
2798 // the result against zero to select between true and false values.
2799 if (Tmp2.Val == 0) {
2800 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2801 CC = DAG.getCondCode(ISD::SETNE);
2802 }
2803 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2804
2805 // Everything is legal, see if we should expand this op or something.
2806 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2807 default: assert(0 && "This action is not supported yet!");
2808 case TargetLowering::Legal: break;
2809 case TargetLowering::Custom:
2810 Tmp1 = TLI.LowerOperation(Result, DAG);
2811 if (Tmp1.Val) Result = Tmp1;
Nate Begemane5b86d72005-08-10 20:51:12 +00002812 break;
Nate Begemane5b86d72005-08-10 20:51:12 +00002813 }
2814 break;
Nate Begeman7e7f4392006-02-01 07:19:44 +00002815 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002816 case ISD::SETCC:
Nate Begeman7e7f4392006-02-01 07:19:44 +00002817 Tmp1 = Node->getOperand(0);
2818 Tmp2 = Node->getOperand(1);
2819 Tmp3 = Node->getOperand(2);
2820 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2821
2822 // If we had to Expand the SetCC operands into a SELECT node, then it may
2823 // not always be possible to return a true LHS & RHS. In this case, just
2824 // return the value we legalized, returned in the LHS
2825 if (Tmp2.Val == 0) {
2826 Result = Tmp1;
Chris Lattnerdc750592005-01-07 07:47:09 +00002827 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00002828 }
Nate Begeman987121a2005-08-23 04:29:48 +00002829
Chris Lattnerf263a232006-01-30 22:43:50 +00002830 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002831 default: assert(0 && "Cannot handle this action for SETCC yet!");
2832 case TargetLowering::Custom:
2833 isCustom = true;
2834 // FALLTHROUGH.
2835 case TargetLowering::Legal:
Evan Cheng35fdd5f2006-12-15 02:59:56 +00002836 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002837 if (isCustom) {
Evan Cheng35fdd5f2006-12-15 02:59:56 +00002838 Tmp4 = TLI.LowerOperation(Result, DAG);
2839 if (Tmp4.Val) Result = Tmp4;
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002840 }
Nate Begeman987121a2005-08-23 04:29:48 +00002841 break;
Andrew Lenharth6ee85662005-11-30 17:12:26 +00002842 case TargetLowering::Promote: {
2843 // First step, figure out the appropriate operation to use.
2844 // Allow SETCC to not be supported for all legal data types
2845 // Mostly this targets FP
Duncan Sands13237ac2008-06-06 12:08:01 +00002846 MVT NewInTy = Node->getOperand(0).getValueType();
2847 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharth6ee85662005-11-30 17:12:26 +00002848
2849 // Scan for the appropriate larger type to use.
2850 while (1) {
Duncan Sands13237ac2008-06-06 12:08:01 +00002851 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharth6ee85662005-11-30 17:12:26 +00002852
Duncan Sands13237ac2008-06-06 12:08:01 +00002853 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharth6ee85662005-11-30 17:12:26 +00002854 "Fell off of the edge of the integer world");
Duncan Sands13237ac2008-06-06 12:08:01 +00002855 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharth6ee85662005-11-30 17:12:26 +00002856 "Fell off of the edge of the floating point world");
2857
2858 // If the target supports SETCC of this type, use it.
Chris Lattner1408c052005-12-22 05:23:45 +00002859 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharth6ee85662005-11-30 17:12:26 +00002860 break;
2861 }
Duncan Sands13237ac2008-06-06 12:08:01 +00002862 if (NewInTy.isInteger())
Andrew Lenharth6ee85662005-11-30 17:12:26 +00002863 assert(0 && "Cannot promote Legal Integer SETCC yet");
2864 else {
2865 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2866 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2867 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002868 Tmp1 = LegalizeOp(Tmp1);
2869 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng35fdd5f2006-12-15 02:59:56 +00002870 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng6f86a7d2006-01-17 19:47:13 +00002871 Result = LegalizeOp(Result);
Andrew Lenharth835cbb32005-08-29 20:46:51 +00002872 break;
Andrew Lenharth6ee85662005-11-30 17:12:26 +00002873 }
Nate Begeman987121a2005-08-23 04:29:48 +00002874 case TargetLowering::Expand:
2875 // Expand a setcc node into a select_cc of the same condition, lhs, and
2876 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands13237ac2008-06-06 12:08:01 +00002877 MVT VT = Node->getValueType(0);
Nate Begeman987121a2005-08-23 04:29:48 +00002878 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2879 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng35fdd5f2006-12-15 02:59:56 +00002880 Tmp3);
Nate Begeman987121a2005-08-23 04:29:48 +00002881 break;
2882 }
Chris Lattnerdc750592005-01-07 07:47:09 +00002883 break;
Nate Begemancfcb5602008-05-12 19:40:03 +00002884 case ISD::VSETCC: {
2885 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2886 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
2887 SDOperand CC = Node->getOperand(2);
2888
2889 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
2890
2891 // Everything is legal, see if we should expand this op or something.
2892 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
2893 default: assert(0 && "This action is not supported yet!");
2894 case TargetLowering::Legal: break;
2895 case TargetLowering::Custom:
2896 Tmp1 = TLI.LowerOperation(Result, DAG);
2897 if (Tmp1.Val) Result = Tmp1;
2898 break;
2899 }
2900 break;
2901 }
Chris Lattner5385db52005-05-09 20:23:03 +00002902
Chris Lattner4157c412005-04-02 04:00:59 +00002903 case ISD::SHL_PARTS:
2904 case ISD::SRA_PARTS:
2905 case ISD::SRL_PARTS: {
Chris Lattner97af9d52006-08-08 01:09:31 +00002906 SmallVector<SDOperand, 8> Ops;
Chris Lattnerb3f83b282005-01-20 18:52:28 +00002907 bool Changed = false;
2908 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2909 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2910 Changed |= Ops.back() != Node->getOperand(i);
2911 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002912 if (Changed)
Chris Lattner97af9d52006-08-08 01:09:31 +00002913 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner13fe99c2005-04-02 05:00:07 +00002914
Evan Cheng870e4f82006-01-09 18:31:59 +00002915 switch (TLI.getOperationAction(Node->getOpcode(),
2916 Node->getValueType(0))) {
2917 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002918 case TargetLowering::Legal: break;
2919 case TargetLowering::Custom:
2920 Tmp1 = TLI.LowerOperation(Result, DAG);
2921 if (Tmp1.Val) {
2922 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng870e4f82006-01-09 18:31:59 +00002923 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002924 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng870e4f82006-01-09 18:31:59 +00002925 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2926 if (i == Op.ResNo)
Evan Cheng13e8c9d2006-01-19 04:54:52 +00002927 RetVal = Tmp2;
Evan Cheng870e4f82006-01-09 18:31:59 +00002928 }
Chris Lattnerfb5f4652006-01-10 19:43:26 +00002929 assert(RetVal.Val && "Illegal result number");
Evan Cheng870e4f82006-01-09 18:31:59 +00002930 return RetVal;
2931 }
Evan Cheng870e4f82006-01-09 18:31:59 +00002932 break;
2933 }
2934
Chris Lattner13fe99c2005-04-02 05:00:07 +00002935 // Since these produce multiple values, make sure to remember that we
2936 // legalized all of them.
2937 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2938 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2939 return Result.getValue(Op.ResNo);
Chris Lattnerb3f83b282005-01-20 18:52:28 +00002940 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00002941
2942 // Binary operators
Chris Lattnerdc750592005-01-07 07:47:09 +00002943 case ISD::ADD:
2944 case ISD::SUB:
2945 case ISD::MUL:
Nate Begemanadd0c632005-04-11 03:01:51 +00002946 case ISD::MULHS:
2947 case ISD::MULHU:
Chris Lattnerdc750592005-01-07 07:47:09 +00002948 case ISD::UDIV:
2949 case ISD::SDIV:
Chris Lattnerdc750592005-01-07 07:47:09 +00002950 case ISD::AND:
2951 case ISD::OR:
2952 case ISD::XOR:
Chris Lattner32f20bf2005-01-07 21:45:56 +00002953 case ISD::SHL:
2954 case ISD::SRL:
2955 case ISD::SRA:
Chris Lattner6f3b5772005-09-28 22:28:18 +00002956 case ISD::FADD:
2957 case ISD::FSUB:
2958 case ISD::FMUL:
2959 case ISD::FDIV:
Dan Gohman2a7de412007-10-11 23:57:53 +00002960 case ISD::FPOW:
Chris Lattnerdc750592005-01-07 07:47:09 +00002961 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharth80fe4112005-07-05 19:52:39 +00002962 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2963 case Expand: assert(0 && "Not possible");
2964 case Legal:
2965 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2966 break;
2967 case Promote:
2968 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2969 break;
2970 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00002971
2972 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002973
Andrew Lenharth72594262005-12-24 23:42:32 +00002974 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner87f08092006-04-02 03:57:31 +00002975 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00002976 case TargetLowering::Legal: break;
2977 case TargetLowering::Custom:
2978 Tmp1 = TLI.LowerOperation(Result, DAG);
2979 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth30db2ec2005-12-25 01:07:37 +00002980 break;
Chris Lattner87f08092006-04-02 03:57:31 +00002981 case TargetLowering::Expand: {
Duncan Sands13237ac2008-06-06 12:08:01 +00002982 MVT VT = Op.getValueType();
Dan Gohmana1603612007-10-08 18:33:35 +00002983
2984 // See if multiply or divide can be lowered using two-result operations.
2985 SDVTList VTs = DAG.getVTList(VT, VT);
2986 if (Node->getOpcode() == ISD::MUL) {
2987 // We just need the low half of the multiply; try both the signed
2988 // and unsigned forms. If the target supports both SMUL_LOHI and
2989 // UMUL_LOHI, form a preference by checking which forms of plain
2990 // MULH it supports.
2991 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2992 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2993 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2994 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2995 unsigned OpToUse = 0;
2996 if (HasSMUL_LOHI && !HasMULHS) {
2997 OpToUse = ISD::SMUL_LOHI;
2998 } else if (HasUMUL_LOHI && !HasMULHU) {
2999 OpToUse = ISD::UMUL_LOHI;
3000 } else if (HasSMUL_LOHI) {
3001 OpToUse = ISD::SMUL_LOHI;
3002 } else if (HasUMUL_LOHI) {
3003 OpToUse = ISD::UMUL_LOHI;
3004 }
3005 if (OpToUse) {
3006 Result = SDOperand(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0);
3007 break;
3008 }
3009 }
3010 if (Node->getOpcode() == ISD::MULHS &&
3011 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
3012 Result = SDOperand(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
3013 break;
3014 }
3015 if (Node->getOpcode() == ISD::MULHU &&
3016 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
3017 Result = SDOperand(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
3018 break;
3019 }
3020 if (Node->getOpcode() == ISD::SDIV &&
3021 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3022 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3023 break;
3024 }
3025 if (Node->getOpcode() == ISD::UDIV &&
3026 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3027 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3028 break;
3029 }
3030
Dan Gohman2a7de412007-10-11 23:57:53 +00003031 // Check to see if we have a libcall for this operator.
3032 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3033 bool isSigned = false;
3034 switch (Node->getOpcode()) {
3035 case ISD::UDIV:
3036 case ISD::SDIV:
3037 if (VT == MVT::i32) {
3038 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng31cbddf2007-01-12 02:11:51 +00003039 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman2a7de412007-10-11 23:57:53 +00003040 isSigned = Node->getOpcode() == ISD::SDIV;
3041 }
3042 break;
3043 case ISD::FPOW:
Duncan Sands53c954f2008-01-10 10:28:30 +00003044 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3045 RTLIB::POW_PPCF128);
Dan Gohman2a7de412007-10-11 23:57:53 +00003046 break;
3047 default: break;
3048 }
3049 if (LC != RTLIB::UNKNOWN_LIBCALL) {
3050 SDOperand Dummy;
Duncan Sands844d55a2008-04-12 17:14:18 +00003051 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00003052 break;
3053 }
3054
Duncan Sands13237ac2008-06-06 12:08:01 +00003055 assert(Node->getValueType(0).isVector() &&
Chris Lattner87f08092006-04-02 03:57:31 +00003056 "Cannot expand this binary operator!");
3057 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman2a7de412007-10-11 23:57:53 +00003058 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattner87f08092006-04-02 03:57:31 +00003059 break;
3060 }
Evan Cheng119266e2006-04-12 21:20:24 +00003061 case TargetLowering::Promote: {
3062 switch (Node->getOpcode()) {
3063 default: assert(0 && "Do not know how to promote this BinOp!");
3064 case ISD::AND:
3065 case ISD::OR:
3066 case ISD::XOR: {
Duncan Sands13237ac2008-06-06 12:08:01 +00003067 MVT OVT = Node->getValueType(0);
3068 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3069 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Cheng119266e2006-04-12 21:20:24 +00003070 // Bit convert each of the values to the new type.
3071 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3072 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3073 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3074 // Bit convert the result back the original type.
3075 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3076 break;
3077 }
3078 }
3079 }
Andrew Lenharth72594262005-12-24 23:42:32 +00003080 }
Chris Lattnerdc750592005-01-07 07:47:09 +00003081 break;
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003082
Dan Gohman12334ac2007-10-05 14:17:22 +00003083 case ISD::SMUL_LOHI:
3084 case ISD::UMUL_LOHI:
3085 case ISD::SDIVREM:
3086 case ISD::UDIVREM:
3087 // These nodes will only be produced by target-specific lowering, so
3088 // they shouldn't be here if they aren't legal.
Duncan Sands052c8432007-10-16 09:07:20 +00003089 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohman12334ac2007-10-05 14:17:22 +00003090 "This must be legal!");
Dan Gohmana1603612007-10-08 18:33:35 +00003091
3092 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3093 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3094 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman12334ac2007-10-05 14:17:22 +00003095 break;
3096
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003097 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3098 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3099 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3100 case Expand: assert(0 && "Not possible");
3101 case Legal:
3102 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3103 break;
3104 case Promote:
3105 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3106 break;
3107 }
3108
3109 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3110
3111 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3112 default: assert(0 && "Operation not supported");
3113 case TargetLowering::Custom:
3114 Tmp1 = TLI.LowerOperation(Result, DAG);
3115 if (Tmp1.Val) Result = Tmp1;
Chris Lattner994d8e62006-03-13 06:08:38 +00003116 break;
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003117 case TargetLowering::Legal: break;
Evan Cheng003feb02007-01-04 21:56:39 +00003118 case TargetLowering::Expand: {
Evan Cheng5f80c452007-01-05 23:33:44 +00003119 // If this target supports fabs/fneg natively and select is cheap,
3120 // do this efficiently.
3121 if (!TLI.isSelectExpensive() &&
3122 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3123 TargetLowering::Legal &&
Evan Cheng003feb02007-01-04 21:56:39 +00003124 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng5f80c452007-01-05 23:33:44 +00003125 TargetLowering::Legal) {
Chris Lattner994d8e62006-03-13 06:08:38 +00003126 // Get the sign bit of the RHS.
Duncan Sands13237ac2008-06-06 12:08:01 +00003127 MVT IVT =
Chris Lattner994d8e62006-03-13 06:08:38 +00003128 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
3129 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michela6729e82008-03-10 15:42:14 +00003130 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Chris Lattner994d8e62006-03-13 06:08:38 +00003131 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3132 // Get the absolute value of the result.
3133 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
3134 // Select between the nabs and abs value based on the sign bit of
3135 // the input.
3136 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3137 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3138 AbsVal),
3139 AbsVal);
3140 Result = LegalizeOp(Result);
3141 break;
3142 }
3143
3144 // Otherwise, do bitwise ops!
Duncan Sands13237ac2008-06-06 12:08:01 +00003145 MVT NVT =
Evan Cheng003feb02007-01-04 21:56:39 +00003146 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3147 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3148 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3149 Result = LegalizeOp(Result);
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003150 break;
3151 }
Evan Cheng003feb02007-01-04 21:56:39 +00003152 }
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00003153 break;
3154
Nate Begeman5965bd12006-02-17 05:43:56 +00003155 case ISD::ADDC:
3156 case ISD::SUBC:
3157 Tmp1 = LegalizeOp(Node->getOperand(0));
3158 Tmp2 = LegalizeOp(Node->getOperand(1));
3159 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3160 // Since this produces two values, make sure to remember that we legalized
3161 // both of them.
3162 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3163 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3164 return Result;
Misha Brukman835702a2005-04-21 22:36:52 +00003165
Nate Begeman5965bd12006-02-17 05:43:56 +00003166 case ISD::ADDE:
3167 case ISD::SUBE:
3168 Tmp1 = LegalizeOp(Node->getOperand(0));
3169 Tmp2 = LegalizeOp(Node->getOperand(1));
3170 Tmp3 = LegalizeOp(Node->getOperand(2));
3171 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3172 // Since this produces two values, make sure to remember that we legalized
3173 // both of them.
3174 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3175 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3176 return Result;
Nate Begeman5965bd12006-02-17 05:43:56 +00003177
Nate Begemanbd5f41a2005-10-18 00:27:41 +00003178 case ISD::BUILD_PAIR: {
Duncan Sands13237ac2008-06-06 12:08:01 +00003179 MVT PairTy = Node->getValueType(0);
Nate Begemanbd5f41a2005-10-18 00:27:41 +00003180 // TODO: handle the case where the Lo and Hi operands are not of legal type
3181 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3182 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3183 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003184 case TargetLowering::Promote:
3185 case TargetLowering::Custom:
3186 assert(0 && "Cannot promote/custom this yet!");
Nate Begemanbd5f41a2005-10-18 00:27:41 +00003187 case TargetLowering::Legal:
3188 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3189 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3190 break;
Nate Begemanbd5f41a2005-10-18 00:27:41 +00003191 case TargetLowering::Expand:
3192 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3193 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3194 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
Duncan Sands13237ac2008-06-06 12:08:01 +00003195 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begemanbd5f41a2005-10-18 00:27:41 +00003196 TLI.getShiftAmountTy()));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003197 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begemanbd5f41a2005-10-18 00:27:41 +00003198 break;
3199 }
3200 break;
3201 }
3202
Nate Begeman20b7d2a2005-04-06 00:23:54 +00003203 case ISD::UREM:
3204 case ISD::SREM:
Chris Lattner6f3b5772005-09-28 22:28:18 +00003205 case ISD::FREM:
Nate Begeman20b7d2a2005-04-06 00:23:54 +00003206 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3207 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003208
Nate Begeman20b7d2a2005-04-06 00:23:54 +00003209 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003210 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3211 case TargetLowering::Custom:
3212 isCustom = true;
3213 // FALLTHROUGH
Nate Begeman20b7d2a2005-04-06 00:23:54 +00003214 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00003215 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003216 if (isCustom) {
3217 Tmp1 = TLI.LowerOperation(Result, DAG);
3218 if (Tmp1.Val) Result = Tmp1;
3219 }
Nate Begeman20b7d2a2005-04-06 00:23:54 +00003220 break;
Dan Gohmana1603612007-10-08 18:33:35 +00003221 case TargetLowering::Expand: {
Evan Cheng1fc7c362006-09-18 23:28:33 +00003222 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencere63b6512006-12-31 05:55:36 +00003223 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands13237ac2008-06-06 12:08:01 +00003224 MVT VT = Node->getValueType(0);
Dan Gohmana1603612007-10-08 18:33:35 +00003225
3226 // See if remainder can be lowered using two-result operations.
3227 SDVTList VTs = DAG.getVTList(VT, VT);
3228 if (Node->getOpcode() == ISD::SREM &&
3229 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3230 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3231 break;
3232 }
3233 if (Node->getOpcode() == ISD::UREM &&
3234 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3235 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3236 break;
3237 }
3238
Duncan Sands13237ac2008-06-06 12:08:01 +00003239 if (VT.isInteger()) {
Dan Gohmana1603612007-10-08 18:33:35 +00003240 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00003241 TargetLowering::Legal) {
3242 // X % Y -> X-X/Y*Y
Evan Cheng1fc7c362006-09-18 23:28:33 +00003243 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00003244 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3245 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Duncan Sands13237ac2008-06-06 12:08:01 +00003246 } else if (VT.isVector()) {
Dan Gohman08143e32007-11-05 23:35:22 +00003247 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00003248 } else {
Dan Gohmana1603612007-10-08 18:33:35 +00003249 assert(VT == MVT::i32 &&
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00003250 "Cannot expand this binary operator!");
Evan Cheng31cbddf2007-01-12 02:11:51 +00003251 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3252 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00003253 SDOperand Dummy;
Duncan Sands844d55a2008-04-12 17:14:18 +00003254 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng4bfaf0b2006-09-18 21:49:04 +00003255 }
Dan Gohmanccfc0282007-11-06 22:11:54 +00003256 } else {
Duncan Sands13237ac2008-06-06 12:08:01 +00003257 assert(VT.isFloatingPoint() &&
Dan Gohmanccfc0282007-11-06 22:11:54 +00003258 "remainder op must have integer or floating-point type");
Duncan Sands13237ac2008-06-06 12:08:01 +00003259 if (VT.isVector()) {
Dan Gohman08143e32007-11-05 23:35:22 +00003260 Result = LegalizeOp(UnrollVectorOp(Op));
3261 } else {
3262 // Floating point mod -> fmod libcall.
Duncan Sands53c954f2008-01-10 10:28:30 +00003263 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3264 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman08143e32007-11-05 23:35:22 +00003265 SDOperand Dummy;
Duncan Sands844d55a2008-04-12 17:14:18 +00003266 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman08143e32007-11-05 23:35:22 +00003267 }
Nate Begeman20b7d2a2005-04-06 00:23:54 +00003268 }
3269 break;
3270 }
Dan Gohmana1603612007-10-08 18:33:35 +00003271 }
Nate Begeman20b7d2a2005-04-06 00:23:54 +00003272 break;
Nate Begemane74795c2006-01-25 18:21:52 +00003273 case ISD::VAARG: {
3274 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3275 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3276
Duncan Sands13237ac2008-06-06 12:08:01 +00003277 MVT VT = Node->getValueType(0);
Nate Begemane74795c2006-01-25 18:21:52 +00003278 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3279 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003280 case TargetLowering::Custom:
3281 isCustom = true;
3282 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00003283 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00003284 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3285 Result = Result.getValue(0);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003286 Tmp1 = Result.getValue(1);
3287
3288 if (isCustom) {
3289 Tmp2 = TLI.LowerOperation(Result, DAG);
3290 if (Tmp2.Val) {
3291 Result = LegalizeOp(Tmp2);
3292 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3293 }
3294 }
Nate Begemane74795c2006-01-25 18:21:52 +00003295 break;
3296 case TargetLowering::Expand: {
Dan Gohman2d489b52008-02-06 22:27:42 +00003297 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
3298 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemane74795c2006-01-25 18:21:52 +00003299 // Increment the pointer, VAList, to the next vaarg
3300 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands13237ac2008-06-06 12:08:01 +00003301 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begemane74795c2006-01-25 18:21:52 +00003302 TLI.getPointerTy()));
3303 // Store the incremented VAList to the legalized pointer
Dan Gohman2d489b52008-02-06 22:27:42 +00003304 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemane74795c2006-01-25 18:21:52 +00003305 // Load the actual argument out of the pointer VAList
Evan Chenge71fe34d2006-10-09 20:57:25 +00003306 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003307 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemane74795c2006-01-25 18:21:52 +00003308 Result = LegalizeOp(Result);
3309 break;
3310 }
3311 }
3312 // Since VAARG produces two values, make sure to remember that we
3313 // legalized both of them.
3314 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003315 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3316 return Op.ResNo ? Tmp1 : Result;
Nate Begemane74795c2006-01-25 18:21:52 +00003317 }
3318
3319 case ISD::VACOPY:
3320 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3321 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3322 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3323
3324 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3325 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003326 case TargetLowering::Custom:
3327 isCustom = true;
3328 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00003329 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00003330 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3331 Node->getOperand(3), Node->getOperand(4));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003332 if (isCustom) {
3333 Tmp1 = TLI.LowerOperation(Result, DAG);
3334 if (Tmp1.Val) Result = Tmp1;
3335 }
Nate Begemane74795c2006-01-25 18:21:52 +00003336 break;
3337 case TargetLowering::Expand:
3338 // This defaults to loading a pointer from the input and storing it to the
3339 // output, returning the chain.
Dan Gohman2d489b52008-02-06 22:27:42 +00003340 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3341 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman9752a8f32008-04-17 02:09:26 +00003342 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3343 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Nate Begemane74795c2006-01-25 18:21:52 +00003344 break;
3345 }
3346 break;
3347
3348 case ISD::VAEND:
3349 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3350 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3351
3352 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3353 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003354 case TargetLowering::Custom:
3355 isCustom = true;
3356 // FALLTHROUGH
Nate Begemane74795c2006-01-25 18:21:52 +00003357 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00003358 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003359 if (isCustom) {
3360 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
3361 if (Tmp1.Val) Result = Tmp1;
3362 }
Nate Begemane74795c2006-01-25 18:21:52 +00003363 break;
3364 case TargetLowering::Expand:
3365 Result = Tmp1; // Default to a no-op, return the chain
3366 break;
3367 }
3368 break;
3369
3370 case ISD::VASTART:
3371 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3372 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3373
Chris Lattnerd02b0542006-01-28 10:58:55 +00003374 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3375
Nate Begemane74795c2006-01-25 18:21:52 +00003376 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3377 default: assert(0 && "This action is not supported yet!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003378 case TargetLowering::Legal: break;
3379 case TargetLowering::Custom:
3380 Tmp1 = TLI.LowerOperation(Result, DAG);
3381 if (Tmp1.Val) Result = Tmp1;
Nate Begemane74795c2006-01-25 18:21:52 +00003382 break;
3383 }
3384 break;
3385
Nate Begeman1b8121b2006-01-11 21:21:00 +00003386 case ISD::ROTL:
3387 case ISD::ROTR:
3388 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3389 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerd02b0542006-01-28 10:58:55 +00003390 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michel16627a52007-04-02 21:36:32 +00003391 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3392 default:
3393 assert(0 && "ROTL/ROTR legalize operation not supported");
3394 break;
3395 case TargetLowering::Legal:
3396 break;
3397 case TargetLowering::Custom:
3398 Tmp1 = TLI.LowerOperation(Result, DAG);
3399 if (Tmp1.Val) Result = Tmp1;
3400 break;
3401 case TargetLowering::Promote:
3402 assert(0 && "Do not know how to promote ROTL/ROTR");
3403 break;
3404 case TargetLowering::Expand:
3405 assert(0 && "Do not know how to expand ROTL/ROTR");
3406 break;
3407 }
Nate Begeman1b8121b2006-01-11 21:21:00 +00003408 break;
3409
Nate Begeman2fba8a32006-01-14 03:14:10 +00003410 case ISD::BSWAP:
3411 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3412 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003413 case TargetLowering::Custom:
3414 assert(0 && "Cannot custom legalize this yet!");
3415 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00003416 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003417 break;
3418 case TargetLowering::Promote: {
Duncan Sands13237ac2008-06-06 12:08:01 +00003419 MVT OVT = Tmp1.getValueType();
3420 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3421 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begeman2fba8a32006-01-14 03:14:10 +00003422
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003423 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3424 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3425 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3426 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3427 break;
3428 }
3429 case TargetLowering::Expand:
3430 Result = ExpandBSWAP(Tmp1);
3431 break;
Nate Begeman2fba8a32006-01-14 03:14:10 +00003432 }
3433 break;
3434
Andrew Lenharth5e177822005-05-03 17:19:30 +00003435 case ISD::CTPOP:
3436 case ISD::CTTZ:
3437 case ISD::CTLZ:
3438 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3439 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel34e2d222007-07-30 21:00:31 +00003440 case TargetLowering::Custom:
Andrew Lenharth5e177822005-05-03 17:19:30 +00003441 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00003442 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel34e2d222007-07-30 21:00:31 +00003443 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel5b80ecb2007-08-02 02:22:46 +00003444 TargetLowering::Custom) {
3445 Tmp1 = TLI.LowerOperation(Result, DAG);
3446 if (Tmp1.Val) {
3447 Result = Tmp1;
3448 }
Scott Michel34e2d222007-07-30 21:00:31 +00003449 }
Andrew Lenharth5e177822005-05-03 17:19:30 +00003450 break;
3451 case TargetLowering::Promote: {
Duncan Sands13237ac2008-06-06 12:08:01 +00003452 MVT OVT = Tmp1.getValueType();
3453 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner55e9cde2005-05-11 04:51:16 +00003454
3455 // Zero extend the argument.
Andrew Lenharth5e177822005-05-03 17:19:30 +00003456 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3457 // Perform the larger operation, then subtract if needed.
3458 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003459 switch (Node->getOpcode()) {
Andrew Lenharth5e177822005-05-03 17:19:30 +00003460 case ISD::CTPOP:
3461 Result = Tmp1;
3462 break;
3463 case ISD::CTTZ:
3464 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michela6729e82008-03-10 15:42:14 +00003465 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands13237ac2008-06-06 12:08:01 +00003466 DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattnerd47675e2005-08-09 20:20:18 +00003467 ISD::SETEQ);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003468 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands13237ac2008-06-06 12:08:01 +00003469 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth5e177822005-05-03 17:19:30 +00003470 break;
3471 case ISD::CTLZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003472 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003473 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands13237ac2008-06-06 12:08:01 +00003474 DAG.getConstant(NVT.getSizeInBits() -
3475 OVT.getSizeInBits(), NVT));
Andrew Lenharth5e177822005-05-03 17:19:30 +00003476 break;
3477 }
3478 break;
3479 }
Andrew Lenharth5e177822005-05-03 17:19:30 +00003480 case TargetLowering::Expand:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003481 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth5e177822005-05-03 17:19:30 +00003482 break;
3483 }
3484 break;
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00003485
Chris Lattner13fe99c2005-04-02 05:00:07 +00003486 // Unary operators
3487 case ISD::FABS:
3488 case ISD::FNEG:
Chris Lattner9d6fa982005-04-28 21:44:33 +00003489 case ISD::FSQRT:
3490 case ISD::FSIN:
3491 case ISD::FCOS:
Chris Lattner13fe99c2005-04-02 05:00:07 +00003492 Tmp1 = LegalizeOp(Node->getOperand(0));
3493 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003494 case TargetLowering::Promote:
3495 case TargetLowering::Custom:
Evan Cheng2443ab92006-01-31 18:14:25 +00003496 isCustom = true;
3497 // FALLTHROUGH
Chris Lattner13fe99c2005-04-02 05:00:07 +00003498 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00003499 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng2443ab92006-01-31 18:14:25 +00003500 if (isCustom) {
3501 Tmp1 = TLI.LowerOperation(Result, DAG);
3502 if (Tmp1.Val) Result = Tmp1;
3503 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00003504 break;
Chris Lattner13fe99c2005-04-02 05:00:07 +00003505 case TargetLowering::Expand:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003506 switch (Node->getOpcode()) {
3507 default: assert(0 && "Unreachable!");
3508 case ISD::FNEG:
Chris Lattner13fe99c2005-04-02 05:00:07 +00003509 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3510 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003511 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattner80026402005-04-30 04:43:14 +00003512 break;
Chris Lattner80026402005-04-30 04:43:14 +00003513 case ISD::FABS: {
Chris Lattnera0c72cf2005-04-02 05:26:37 +00003514 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands13237ac2008-06-06 12:08:01 +00003515 MVT VT = Node->getValueType(0);
Chris Lattnera0c72cf2005-04-02 05:26:37 +00003516 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michela6729e82008-03-10 15:42:14 +00003517 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman63eb03f2008-03-14 00:53:31 +00003518 ISD::SETUGT);
Chris Lattnera0c72cf2005-04-02 05:26:37 +00003519 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3520 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattner80026402005-04-30 04:43:14 +00003521 break;
3522 }
3523 case ISD::FSQRT:
3524 case ISD::FSIN:
3525 case ISD::FCOS: {
Duncan Sands13237ac2008-06-06 12:08:01 +00003526 MVT VT = Node->getValueType(0);
Dan Gohman2a7de412007-10-11 23:57:53 +00003527
3528 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands13237ac2008-06-06 12:08:01 +00003529 if (VT.isVector()) {
Dan Gohman2a7de412007-10-11 23:57:53 +00003530 Result = LegalizeOp(UnrollVectorOp(Op));
3531 break;
3532 }
3533
Evan Cheng31cbddf2007-01-12 02:11:51 +00003534 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattner80026402005-04-30 04:43:14 +00003535 switch(Node->getOpcode()) {
Evan Cheng31cbddf2007-01-12 02:11:51 +00003536 case ISD::FSQRT:
Duncan Sands53c954f2008-01-10 10:28:30 +00003537 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3538 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng31cbddf2007-01-12 02:11:51 +00003539 break;
3540 case ISD::FSIN:
Duncan Sands53c954f2008-01-10 10:28:30 +00003541 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3542 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng31cbddf2007-01-12 02:11:51 +00003543 break;
3544 case ISD::FCOS:
Duncan Sands53c954f2008-01-10 10:28:30 +00003545 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3546 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng31cbddf2007-01-12 02:11:51 +00003547 break;
Chris Lattner80026402005-04-30 04:43:14 +00003548 default: assert(0 && "Unreachable!");
3549 }
Nate Begeman77558da2005-08-04 21:43:28 +00003550 SDOperand Dummy;
Duncan Sands844d55a2008-04-12 17:14:18 +00003551 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner80026402005-04-30 04:43:14 +00003552 break;
3553 }
Chris Lattner13fe99c2005-04-02 05:00:07 +00003554 }
3555 break;
3556 }
3557 break;
Chris Lattnerf0359b32006-09-09 06:03:30 +00003558 case ISD::FPOWI: {
Duncan Sands13237ac2008-06-06 12:08:01 +00003559 MVT VT = Node->getValueType(0);
Dan Gohman2a7de412007-10-11 23:57:53 +00003560
3561 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands13237ac2008-06-06 12:08:01 +00003562 if (VT.isVector()) {
Dan Gohman2a7de412007-10-11 23:57:53 +00003563 Result = LegalizeOp(UnrollVectorOp(Op));
3564 break;
3565 }
3566
3567 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands53c954f2008-01-10 10:28:30 +00003568 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3569 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Chris Lattnerf0359b32006-09-09 06:03:30 +00003570 SDOperand Dummy;
Duncan Sands844d55a2008-04-12 17:14:18 +00003571 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf0359b32006-09-09 06:03:30 +00003572 break;
3573 }
Chris Lattner36e663d2005-12-23 00:16:34 +00003574 case ISD::BIT_CONVERT:
Chris Lattner763dfd72006-01-23 07:30:46 +00003575 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner87bc3e72008-01-16 07:45:30 +00003576 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3577 Node->getValueType(0));
Duncan Sands13237ac2008-06-06 12:08:01 +00003578 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohmana8665142007-06-25 16:23:39 +00003579 // The input has to be a vector type, we have to either scalarize it, pack
3580 // it, or convert it based on whether the input vector type is legal.
3581 SDNode *InVal = Node->getOperand(0).Val;
Dale Johannesen771188c2007-10-20 00:07:52 +00003582 int InIx = Node->getOperand(0).ResNo;
Duncan Sands13237ac2008-06-06 12:08:01 +00003583 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3584 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohmana8665142007-06-25 16:23:39 +00003585
3586 // Figure out if there is a simple type corresponding to this Vector
3587 // type. If so, convert to the vector type.
Duncan Sands13237ac2008-06-06 12:08:01 +00003588 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohmana8665142007-06-25 16:23:39 +00003589 if (TLI.isTypeLegal(TVT)) {
Dan Gohman06c60b62007-07-16 14:29:03 +00003590 // Turn this into a bit convert of the vector input.
Dan Gohmana8665142007-06-25 16:23:39 +00003591 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3592 LegalizeOp(Node->getOperand(0)));
3593 break;
3594 } else if (NumElems == 1) {
3595 // Turn this into a bit convert of the scalar input.
3596 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3597 ScalarizeVectorOp(Node->getOperand(0)));
3598 break;
3599 } else {
3600 // FIXME: UNIMP! Store then reload
3601 assert(0 && "Cast from unsupported vector type not implemented yet!");
3602 }
Chris Lattner763dfd72006-01-23 07:30:46 +00003603 } else {
Chris Lattner36e663d2005-12-23 00:16:34 +00003604 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3605 Node->getOperand(0).getValueType())) {
3606 default: assert(0 && "Unknown operation action!");
3607 case TargetLowering::Expand:
Chris Lattner87bc3e72008-01-16 07:45:30 +00003608 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3609 Node->getValueType(0));
Chris Lattner36e663d2005-12-23 00:16:34 +00003610 break;
3611 case TargetLowering::Legal:
3612 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00003613 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner36e663d2005-12-23 00:16:34 +00003614 break;
3615 }
3616 }
3617 break;
Chris Lattnera4f68052006-03-24 02:26:29 +00003618
Chris Lattner13fe99c2005-04-02 05:00:07 +00003619 // Conversion operators. The source and destination have different types.
Chris Lattner2a6db3c2005-01-08 08:08:56 +00003620 case ISD::SINT_TO_FP:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003621 case ISD::UINT_TO_FP: {
3622 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattnerdc750592005-01-07 07:47:09 +00003623 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3624 case Legal:
Jeff Cohen546fd592005-07-30 18:33:25 +00003625 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003626 Node->getOperand(0).getValueType())) {
3627 default: assert(0 && "Unknown operation action!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003628 case TargetLowering::Custom:
3629 isCustom = true;
3630 // FALLTHROUGH
3631 case TargetLowering::Legal:
3632 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00003633 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003634 if (isCustom) {
3635 Tmp1 = TLI.LowerOperation(Result, DAG);
3636 if (Tmp1.Val) Result = Tmp1;
3637 }
3638 break;
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003639 case TargetLowering::Expand:
Jim Laskeyf2516a92005-08-17 00:39:29 +00003640 Result = ExpandLegalINT_TO_FP(isSigned,
3641 LegalizeOp(Node->getOperand(0)),
3642 Node->getValueType(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003643 break;
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003644 case TargetLowering::Promote:
3645 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
3646 Node->getValueType(0),
3647 isSigned);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003648 break;
Andrew Lenharth8d17c702005-11-30 06:43:03 +00003649 }
Chris Lattnerdc750592005-01-07 07:47:09 +00003650 break;
Chris Lattnera65a2f02005-01-07 22:37:48 +00003651 case Expand:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003652 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
3653 Node->getValueType(0), Node->getOperand(0));
3654 break;
3655 case Promote:
Chris Lattnerd02b0542006-01-28 10:58:55 +00003656 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003657 if (isSigned) {
Chris Lattnerd02b0542006-01-28 10:58:55 +00003658 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
3659 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003660 } else {
Chris Lattnerd02b0542006-01-28 10:58:55 +00003661 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
3662 Node->getOperand(0).getValueType());
Chris Lattneraac464e2005-01-21 06:05:23 +00003663 }
Chris Lattnerd02b0542006-01-28 10:58:55 +00003664 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3665 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003666 break;
3667 }
3668 break;
3669 }
3670 case ISD::TRUNCATE:
3671 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3672 case Legal:
3673 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerd02b0542006-01-28 10:58:55 +00003674 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003675 break;
3676 case Expand:
3677 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3678
3679 // Since the result is legal, we should just be able to truncate the low
3680 // part of the source.
3681 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3682 break;
3683 case Promote:
3684 Result = PromoteOp(Node->getOperand(0));
3685 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3686 break;
3687 }
3688 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00003689
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003690 case ISD::FP_TO_SINT:
3691 case ISD::FP_TO_UINT:
3692 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3693 case Legal:
Chris Lattnerf59b2da2005-07-30 00:04:12 +00003694 Tmp1 = LegalizeOp(Node->getOperand(0));
3695
Chris Lattner44fe26f2005-07-29 00:11:56 +00003696 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3697 default: assert(0 && "Unknown operation action!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003698 case TargetLowering::Custom:
3699 isCustom = true;
3700 // FALLTHROUGH
3701 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00003702 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003703 if (isCustom) {
3704 Tmp1 = TLI.LowerOperation(Result, DAG);
3705 if (Tmp1.Val) Result = Tmp1;
3706 }
3707 break;
3708 case TargetLowering::Promote:
3709 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3710 Node->getOpcode() == ISD::FP_TO_SINT);
3711 break;
Chris Lattner44fe26f2005-07-29 00:11:56 +00003712 case TargetLowering::Expand:
Nate Begeman36853ee2005-08-14 01:20:53 +00003713 if (Node->getOpcode() == ISD::FP_TO_UINT) {
3714 SDOperand True, False;
Duncan Sands13237ac2008-06-06 12:08:01 +00003715 MVT VT = Node->getOperand(0).getValueType();
3716 MVT NVT = Node->getValueType(0);
Dale Johannesen7d67e542007-09-19 23:55:34 +00003717 const uint64_t zero[] = {0, 0};
Duncan Sands13237ac2008-06-06 12:08:01 +00003718 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
3719 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohman837a6dc2008-02-29 01:44:25 +00003720 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen7d67e542007-09-19 23:55:34 +00003721 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michela6729e82008-03-10 15:42:14 +00003722 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Nate Begeman36853ee2005-08-14 01:20:53 +00003723 Node->getOperand(0), Tmp2, ISD::SETLT);
3724 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3725 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner6f3b5772005-09-28 22:28:18 +00003726 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begeman36853ee2005-08-14 01:20:53 +00003727 Tmp2));
3728 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohman837a6dc2008-02-29 01:44:25 +00003729 DAG.getConstant(x, NVT));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003730 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3731 break;
Nate Begeman36853ee2005-08-14 01:20:53 +00003732 } else {
3733 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3734 }
3735 break;
Chris Lattnerdff50ca2005-08-26 00:14:16 +00003736 }
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003737 break;
Evan Cheng0a5b805f2006-12-13 01:57:55 +00003738 case Expand: {
Duncan Sands13237ac2008-06-06 12:08:01 +00003739 MVT VT = Op.getValueType();
3740 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesen6472eb62007-10-11 23:32:15 +00003741 // Convert ppcf128 to i32
Dale Johannesen666323e2007-10-10 01:01:31 +00003742 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner72733e52008-01-17 07:00:52 +00003743 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3744 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3745 Node->getOperand(0), DAG.getValueType(MVT::f64));
3746 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3747 DAG.getIntPtrConstant(1));
3748 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3749 } else {
Dale Johannesen6472eb62007-10-11 23:32:15 +00003750 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3751 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3752 Tmp2 = DAG.getConstantFP(apf, OVT);
3753 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3754 // FIXME: generated code sucks.
3755 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3756 DAG.getNode(ISD::ADD, MVT::i32,
3757 DAG.getNode(ISD::FP_TO_SINT, VT,
3758 DAG.getNode(ISD::FSUB, OVT,
3759 Node->getOperand(0), Tmp2)),
3760 DAG.getConstant(0x80000000, MVT::i32)),
3761 DAG.getNode(ISD::FP_TO_SINT, VT,
3762 Node->getOperand(0)),
3763 DAG.getCondCode(ISD::SETGE));
3764 }
Dale Johannesen666323e2007-10-10 01:01:31 +00003765 break;
3766 }
Dan Gohmanf4300952008-03-10 23:03:31 +00003767 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sands77a3d052008-07-17 02:36:29 +00003768 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
3769 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
3770 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Evan Cheng0a5b805f2006-12-13 01:57:55 +00003771 SDOperand Dummy;
Duncan Sands844d55a2008-04-12 17:14:18 +00003772 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng0a5b805f2006-12-13 01:57:55 +00003773 break;
3774 }
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003775 case Promote:
Chris Lattnerd02b0542006-01-28 10:58:55 +00003776 Tmp1 = PromoteOp(Node->getOperand(0));
3777 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3778 Result = LegalizeOp(Result);
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003779 break;
3780 }
3781 break;
Jeff Cohen546fd592005-07-30 18:33:25 +00003782
Chris Lattner91d86242008-01-16 06:57:07 +00003783 case ISD::FP_EXTEND: {
Duncan Sands13237ac2008-06-06 12:08:01 +00003784 MVT DstVT = Op.getValueType();
3785 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner72733e52008-01-17 07:00:52 +00003786 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3787 // The only other way we can lower this is to turn it into a STORE,
3788 // LOAD pair, targetting a temporary location (a stack slot).
3789 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3790 break;
Chris Lattner91d86242008-01-16 06:57:07 +00003791 }
3792 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3793 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3794 case Legal:
3795 Tmp1 = LegalizeOp(Node->getOperand(0));
3796 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3797 break;
3798 case Promote:
3799 Tmp1 = PromoteOp(Node->getOperand(0));
3800 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3801 break;
3802 }
3803 break;
Chris Lattner72733e52008-01-17 07:00:52 +00003804 }
Dale Johannesenba1a98a2007-08-09 01:04:01 +00003805 case ISD::FP_ROUND: {
Duncan Sands13237ac2008-06-06 12:08:01 +00003806 MVT DstVT = Op.getValueType();
3807 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner72733e52008-01-17 07:00:52 +00003808 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3809 if (SrcVT == MVT::ppcf128) {
Dale Johannesen949e5a22008-01-20 01:18:38 +00003810 SDOperand Lo;
3811 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner72733e52008-01-17 07:00:52 +00003812 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen949e5a22008-01-20 01:18:38 +00003813 if (DstVT!=MVT::f64)
3814 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner72733e52008-01-17 07:00:52 +00003815 break;
Dale Johannesenba1a98a2007-08-09 01:04:01 +00003816 }
Chris Lattner72733e52008-01-17 07:00:52 +00003817 // The only other way we can lower this is to turn it into a STORE,
3818 // LOAD pair, targetting a temporary location (a stack slot).
3819 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3820 break;
Dale Johannesena2b3c172007-07-03 00:53:03 +00003821 }
Chris Lattner91d86242008-01-16 06:57:07 +00003822 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3823 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3824 case Legal:
3825 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner72733e52008-01-17 07:00:52 +00003826 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner91d86242008-01-16 06:57:07 +00003827 break;
3828 case Promote:
3829 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner72733e52008-01-17 07:00:52 +00003830 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3831 Node->getOperand(1));
Chris Lattner91d86242008-01-16 06:57:07 +00003832 break;
3833 }
3834 break;
Chris Lattner72733e52008-01-17 07:00:52 +00003835 }
Chris Lattner7753f172005-09-02 00:18:10 +00003836 case ISD::ANY_EXTEND:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003837 case ISD::ZERO_EXTEND:
3838 case ISD::SIGN_EXTEND:
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003839 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003840 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003841 case Legal:
3842 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michelbe940422008-04-30 00:26:38 +00003843 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michela3cefea2008-02-15 23:05:48 +00003844 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3845 TargetLowering::Custom) {
Scott Michelbe940422008-04-30 00:26:38 +00003846 Tmp1 = TLI.LowerOperation(Result, DAG);
3847 if (Tmp1.Val) Result = Tmp1;
Scott Michela3cefea2008-02-15 23:05:48 +00003848 }
Chris Lattnerf99f8f92005-07-28 23:31:12 +00003849 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003850 case Promote:
3851 switch (Node->getOpcode()) {
Chris Lattner7753f172005-09-02 00:18:10 +00003852 case ISD::ANY_EXTEND:
Chris Lattnerd02b0542006-01-28 10:58:55 +00003853 Tmp1 = PromoteOp(Node->getOperand(0));
3854 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner7753f172005-09-02 00:18:10 +00003855 break;
Chris Lattner71d7f6e2005-01-16 00:38:00 +00003856 case ISD::ZERO_EXTEND:
3857 Result = PromoteOp(Node->getOperand(0));
Chris Lattner7753f172005-09-02 00:18:10 +00003858 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner0e852af2005-04-13 02:38:47 +00003859 Result = DAG.getZeroExtendInReg(Result,
3860 Node->getOperand(0).getValueType());
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003861 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003862 case ISD::SIGN_EXTEND:
Chris Lattner71d7f6e2005-01-16 00:38:00 +00003863 Result = PromoteOp(Node->getOperand(0));
Chris Lattner7753f172005-09-02 00:18:10 +00003864 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner71d7f6e2005-01-16 00:38:00 +00003865 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner0b6ba902005-07-10 00:07:11 +00003866 Result,
3867 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner71d7f6e2005-01-16 00:38:00 +00003868 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003869 }
Chris Lattnerdc750592005-01-07 07:47:09 +00003870 }
3871 break;
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003872 case ISD::FP_ROUND_INREG:
Chris Lattner0e852af2005-04-13 02:38:47 +00003873 case ISD::SIGN_EXTEND_INREG: {
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003874 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands13237ac2008-06-06 12:08:01 +00003875 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner99222f72005-01-15 07:15:18 +00003876
3877 // If this operation is not supported, convert it to a shl/shr or load/store
3878 // pair.
Chris Lattner3c0dd462005-01-16 07:29:19 +00003879 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3880 default: assert(0 && "This action not supported for this op yet!");
3881 case TargetLowering::Legal:
Chris Lattnerd02b0542006-01-28 10:58:55 +00003882 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner3c0dd462005-01-16 07:29:19 +00003883 break;
3884 case TargetLowering::Expand:
Chris Lattner99222f72005-01-15 07:15:18 +00003885 // If this is an integer extend and shifts are supported, do that.
Chris Lattner0e852af2005-04-13 02:38:47 +00003886 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner99222f72005-01-15 07:15:18 +00003887 // NOTE: we could fall back on load/store here too for targets without
3888 // SAR. However, it is doubtful that any exist.
Duncan Sands13237ac2008-06-06 12:08:01 +00003889 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
3890 ExtraVT.getSizeInBits();
Chris Lattnerec218372005-01-22 00:31:52 +00003891 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner99222f72005-01-15 07:15:18 +00003892 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3893 Node->getOperand(0), ShiftCst);
3894 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3895 Result, ShiftCst);
3896 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey6a4c6d32006-10-11 17:52:19 +00003897 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner99222f72005-01-15 07:15:18 +00003898 // EXTLOAD pair, targetting a temporary location (a stack slot).
3899
3900 // NOTE: there is a choice here between constantly creating new stack
3901 // slots and always reusing the same one. We currently always create
3902 // new ones, as reuse may inhibit scheduling.
Chris Lattner7ca4d5b2008-01-16 07:51:34 +00003903 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3904 Node->getValueType(0));
Chris Lattner99222f72005-01-15 07:15:18 +00003905 } else {
3906 assert(0 && "Unknown op");
3907 }
Chris Lattner3c0dd462005-01-16 07:29:19 +00003908 break;
Chris Lattner99222f72005-01-15 07:15:18 +00003909 }
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00003910 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00003911 }
Duncan Sands644f9172007-07-27 12:58:54 +00003912 case ISD::TRAMPOLINE: {
3913 SDOperand Ops[6];
3914 for (unsigned i = 0; i != 6; ++i)
3915 Ops[i] = LegalizeOp(Node->getOperand(i));
3916 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3917 // The only option for this node is to custom lower it.
3918 Result = TLI.LowerOperation(Result, DAG);
3919 assert(Result.Val && "Should always custom lower!");
Duncan Sands86e01192007-09-11 14:10:23 +00003920
3921 // Since trampoline produces two values, make sure to remember that we
3922 // legalized both of them.
3923 Tmp1 = LegalizeOp(Result.getValue(1));
3924 Result = LegalizeOp(Result);
3925 AddLegalizedOperand(SDOperand(Node, 0), Result);
3926 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3927 return Op.ResNo ? Tmp1 : Result;
Duncan Sands644f9172007-07-27 12:58:54 +00003928 }
Dan Gohmanfd3e3002008-05-14 00:43:10 +00003929 case ISD::FLT_ROUNDS_: {
Duncan Sands13237ac2008-06-06 12:08:01 +00003930 MVT VT = Node->getValueType(0);
Anton Korobeynikov66b91e66e2007-11-15 23:25:33 +00003931 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3932 default: assert(0 && "This action not supported for this op yet!");
3933 case TargetLowering::Custom:
3934 Result = TLI.LowerOperation(Op, DAG);
3935 if (Result.Val) break;
3936 // Fall Thru
3937 case TargetLowering::Legal:
3938 // If this operation is not supported, lower it to constant 1
3939 Result = DAG.getConstant(1, VT);
3940 break;
3941 }
Dan Gohmanecb77382008-05-12 16:07:15 +00003942 break;
Anton Korobeynikov66b91e66e2007-11-15 23:25:33 +00003943 }
Chris Lattneree8df1f2008-01-15 21:58:08 +00003944 case ISD::TRAP: {
Duncan Sands13237ac2008-06-06 12:08:01 +00003945 MVT VT = Node->getValueType(0);
Anton Korobeynikov6bbbc4c2008-01-15 07:02:33 +00003946 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3947 default: assert(0 && "This action not supported for this op yet!");
Chris Lattneree8df1f2008-01-15 21:58:08 +00003948 case TargetLowering::Legal:
3949 Tmp1 = LegalizeOp(Node->getOperand(0));
3950 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3951 break;
Anton Korobeynikov6bbbc4c2008-01-15 07:02:33 +00003952 case TargetLowering::Custom:
3953 Result = TLI.LowerOperation(Op, DAG);
3954 if (Result.Val) break;
3955 // Fall Thru
Chris Lattneree8df1f2008-01-15 21:58:08 +00003956 case TargetLowering::Expand:
Anton Korobeynikov6bbbc4c2008-01-15 07:02:33 +00003957 // If this operation is not supported, lower it to 'abort()' call
Chris Lattneree8df1f2008-01-15 21:58:08 +00003958 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov6bbbc4c2008-01-15 07:02:33 +00003959 TargetLowering::ArgListTy Args;
3960 std::pair<SDOperand,SDOperand> CallResult =
Duncan Sands4c95dbd2008-02-14 17:28:50 +00003961 TLI.LowerCallTo(Tmp1, Type::VoidTy,
3962 false, false, false, CallingConv::C, false,
Chris Lattnerec224882008-01-15 22:09:33 +00003963 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
3964 Args, DAG);
Anton Korobeynikov6bbbc4c2008-01-15 07:02:33 +00003965 Result = CallResult.second;
3966 break;
3967 }
Chris Lattneree8df1f2008-01-15 21:58:08 +00003968 break;
Anton Korobeynikov6bbbc4c2008-01-15 07:02:33 +00003969 }
Chris Lattner99222f72005-01-15 07:15:18 +00003970 }
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003971
Chris Lattner101ea662006-04-08 04:13:17 +00003972 assert(Result.getValueType() == Op.getValueType() &&
3973 "Bad legalization!");
3974
Chris Lattner9dcce6d2006-01-28 07:39:30 +00003975 // Make sure that the generated code is itself legal.
3976 if (Result != Op)
3977 Result = LegalizeOp(Result);
Chris Lattnerdc750592005-01-07 07:47:09 +00003978
Chris Lattnerb5a78e02005-05-12 16:53:42 +00003979 // Note that LegalizeOp may be reentered even from single-use nodes, which
3980 // means that we always must cache transformed nodes.
3981 AddLegalizedOperand(Op, Result);
Chris Lattnerdc750592005-01-07 07:47:09 +00003982 return Result;
3983}
3984
Chris Lattner4d978642005-01-15 22:16:26 +00003985/// PromoteOp - Given an operation that produces a value in an invalid type,
3986/// promote it to compute the value into a larger type. The produced value will
3987/// have the correct bits for the low portion of the register, but no guarantee
3988/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003989SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
Duncan Sands13237ac2008-06-06 12:08:01 +00003990 MVT VT = Op.getValueType();
3991 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003992 assert(getTypeAction(VT) == Promote &&
3993 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands11dd4242008-06-08 20:54:56 +00003994 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003995 "Cannot promote to smaller type!");
3996
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003997 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00003998 SDOperand Result;
3999 SDNode *Node = Op.Val;
4000
Roman Levensteina3ee1a32008-04-16 16:15:27 +00004001 DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
Chris Lattner1a570f12005-09-02 20:32:45 +00004002 if (I != PromotedNodes.end()) return I->second;
Chris Lattnerb5a78e02005-05-12 16:53:42 +00004003
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004004 switch (Node->getOpcode()) {
Chris Lattner33182322005-08-16 21:55:35 +00004005 case ISD::CopyFromReg:
4006 assert(0 && "CopyFromReg must be legal!");
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004007 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004008#ifndef NDEBUG
Dan Gohmanb4c26902007-06-04 16:17:33 +00004009 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00004010#endif
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004011 assert(0 && "Do not know how to promote this operator!");
4012 abort();
Nate Begemancda9aa72005-04-01 22:34:39 +00004013 case ISD::UNDEF:
4014 Result = DAG.getNode(ISD::UNDEF, NVT);
4015 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004016 case ISD::Constant:
Chris Lattner9a4ad482005-08-30 16:56:19 +00004017 if (VT != MVT::i1)
4018 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4019 else
4020 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004021 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4022 break;
4023 case ISD::ConstantFP:
4024 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4025 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4026 break;
Chris Lattner9f2c4a52005-01-18 17:54:55 +00004027
Chris Lattner2cb338d2005-01-18 02:59:52 +00004028 case ISD::SETCC:
Scott Michela6729e82008-03-10 15:42:14 +00004029 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman63eb03f2008-03-14 00:53:31 +00004030 && "SetCC type is not legal??");
Scott Michela6729e82008-03-10 15:42:14 +00004031 Result = DAG.getNode(ISD::SETCC,
Nate Begeman63eb03f2008-03-14 00:53:31 +00004032 TLI.getSetCCResultType(Node->getOperand(0)),
4033 Node->getOperand(0), Node->getOperand(1),
4034 Node->getOperand(2));
Chris Lattner2cb338d2005-01-18 02:59:52 +00004035 break;
Chris Lattnerd3b504a2006-04-12 16:20:43 +00004036
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004037 case ISD::TRUNCATE:
4038 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4039 case Legal:
4040 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands11dd4242008-06-08 20:54:56 +00004041 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004042 "This truncation doesn't make sense!");
Duncan Sands11dd4242008-06-08 20:54:56 +00004043 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004044 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4045 break;
Chris Lattnerbf8c1ad2005-01-28 22:52:50 +00004046 case Promote:
4047 // The truncation is not required, because we don't guarantee anything
4048 // about high bits anyway.
4049 Result = PromoteOp(Node->getOperand(0));
4050 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004051 case Expand:
Nate Begemancc00a7c2005-04-04 00:57:08 +00004052 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4053 // Truncate the low part of the expanded value to the result type
Chris Lattner4398daf2005-08-01 18:16:37 +00004054 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004055 }
4056 break;
Chris Lattner4d978642005-01-15 22:16:26 +00004057 case ISD::SIGN_EXTEND:
4058 case ISD::ZERO_EXTEND:
Chris Lattner7753f172005-09-02 00:18:10 +00004059 case ISD::ANY_EXTEND:
Chris Lattner4d978642005-01-15 22:16:26 +00004060 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4061 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4062 case Legal:
4063 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004064 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner4d978642005-01-15 22:16:26 +00004065 break;
4066 case Promote:
4067 // Promote the reg if it's smaller.
4068 Result = PromoteOp(Node->getOperand(0));
4069 // The high bits are not guaranteed to be anything. Insert an extend.
4070 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner05596912005-02-04 18:39:19 +00004071 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner0b6ba902005-07-10 00:07:11 +00004072 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner7753f172005-09-02 00:18:10 +00004073 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner0e852af2005-04-13 02:38:47 +00004074 Result = DAG.getZeroExtendInReg(Result,
4075 Node->getOperand(0).getValueType());
Chris Lattner4d978642005-01-15 22:16:26 +00004076 break;
4077 }
4078 break;
Chris Lattner36e663d2005-12-23 00:16:34 +00004079 case ISD::BIT_CONVERT:
Chris Lattner87bc3e72008-01-16 07:45:30 +00004080 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4081 Node->getValueType(0));
Chris Lattner36e663d2005-12-23 00:16:34 +00004082 Result = PromoteOp(Result);
4083 break;
4084
Chris Lattner4d978642005-01-15 22:16:26 +00004085 case ISD::FP_EXTEND:
4086 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4087 case ISD::FP_ROUND:
4088 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4089 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4090 case Promote: assert(0 && "Unreachable with 2 FP types!");
4091 case Legal:
Chris Lattner72733e52008-01-17 07:00:52 +00004092 if (Node->getConstantOperandVal(1) == 0) {
4093 // Input is legal? Do an FP_ROUND_INREG.
4094 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4095 DAG.getValueType(VT));
4096 } else {
4097 // Just remove the truncate, it isn't affecting the value.
4098 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4099 Node->getOperand(1));
4100 }
Chris Lattner4d978642005-01-15 22:16:26 +00004101 break;
4102 }
4103 break;
Chris Lattner4d978642005-01-15 22:16:26 +00004104 case ISD::SINT_TO_FP:
4105 case ISD::UINT_TO_FP:
4106 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4107 case Legal:
Chris Lattneraac464e2005-01-21 06:05:23 +00004108 // No extra round required here.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004109 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner4d978642005-01-15 22:16:26 +00004110 break;
4111
4112 case Promote:
4113 Result = PromoteOp(Node->getOperand(0));
4114 if (Node->getOpcode() == ISD::SINT_TO_FP)
4115 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner0b6ba902005-07-10 00:07:11 +00004116 Result,
4117 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner4d978642005-01-15 22:16:26 +00004118 else
Chris Lattner0e852af2005-04-13 02:38:47 +00004119 Result = DAG.getZeroExtendInReg(Result,
4120 Node->getOperand(0).getValueType());
Chris Lattneraac464e2005-01-21 06:05:23 +00004121 // No extra round required here.
4122 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner4d978642005-01-15 22:16:26 +00004123 break;
4124 case Expand:
Chris Lattneraac464e2005-01-21 06:05:23 +00004125 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4126 Node->getOperand(0));
Chris Lattneraac464e2005-01-21 06:05:23 +00004127 // Round if we cannot tolerate excess precision.
4128 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00004129 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4130 DAG.getValueType(VT));
Chris Lattneraac464e2005-01-21 06:05:23 +00004131 break;
Chris Lattner4d978642005-01-15 22:16:26 +00004132 }
Chris Lattner4d978642005-01-15 22:16:26 +00004133 break;
4134
Chris Lattner268d4572005-12-09 17:32:47 +00004135 case ISD::SIGN_EXTEND_INREG:
4136 Result = PromoteOp(Node->getOperand(0));
4137 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4138 Node->getOperand(1));
4139 break;
Chris Lattner4d978642005-01-15 22:16:26 +00004140 case ISD::FP_TO_SINT:
4141 case ISD::FP_TO_UINT:
4142 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4143 case Legal:
Evan Cheng86000462006-12-16 02:10:30 +00004144 case Expand:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004145 Tmp1 = Node->getOperand(0);
Chris Lattner4d978642005-01-15 22:16:26 +00004146 break;
4147 case Promote:
4148 // The input result is prerounded, so we don't have to do anything
4149 // special.
4150 Tmp1 = PromoteOp(Node->getOperand(0));
4151 break;
Chris Lattner4d978642005-01-15 22:16:26 +00004152 }
Nate Begeman36853ee2005-08-14 01:20:53 +00004153 // If we're promoting a UINT to a larger size, check to see if the new node
4154 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4155 // we can use that instead. This allows us to generate better code for
4156 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4157 // legal, such as PowerPC.
4158 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerf12eb4d2005-08-24 16:35:28 +00004159 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemand8f2a1a2005-10-25 23:47:25 +00004160 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4161 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begeman36853ee2005-08-14 01:20:53 +00004162 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4163 } else {
4164 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4165 }
Chris Lattner4d978642005-01-15 22:16:26 +00004166 break;
4167
Chris Lattner13fe99c2005-04-02 05:00:07 +00004168 case ISD::FABS:
4169 case ISD::FNEG:
4170 Tmp1 = PromoteOp(Node->getOperand(0));
4171 assert(Tmp1.getValueType() == NVT);
4172 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4173 // NOTE: we do not have to do any extra rounding here for
4174 // NoExcessFPPrecision, because we know the input will have the appropriate
4175 // precision, and these operations don't modify precision at all.
4176 break;
4177
Chris Lattner9d6fa982005-04-28 21:44:33 +00004178 case ISD::FSQRT:
4179 case ISD::FSIN:
4180 case ISD::FCOS:
4181 Tmp1 = PromoteOp(Node->getOperand(0));
4182 assert(Tmp1.getValueType() == NVT);
4183 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004184 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00004185 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4186 DAG.getValueType(VT));
Chris Lattner9d6fa982005-04-28 21:44:33 +00004187 break;
4188
Chris Lattnerca401aa2007-03-03 23:43:21 +00004189 case ISD::FPOWI: {
4190 // Promote f32 powi to f64 powi. Note that this could insert a libcall
4191 // directly as well, which may be better.
4192 Tmp1 = PromoteOp(Node->getOperand(0));
4193 assert(Tmp1.getValueType() == NVT);
4194 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
4195 if (NoExcessFPPrecision)
4196 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4197 DAG.getValueType(VT));
4198 break;
4199 }
4200
Mon P Wang6a490372008-06-25 08:15:39 +00004201 case ISD::ATOMIC_CMP_SWAP: {
4202 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharth95528942008-02-21 06:45:13 +00004203 Tmp2 = PromoteOp(Node->getOperand(2));
4204 Tmp3 = PromoteOp(Node->getOperand(3));
Mon P Wang6a490372008-06-25 08:15:39 +00004205 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4206 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanaa01afd2008-06-25 16:07:49 +00004207 AtomNode->getSrcValue(),
Mon P Wang6a490372008-06-25 08:15:39 +00004208 AtomNode->getAlignment());
Andrew Lenharth95528942008-02-21 06:45:13 +00004209 // Remember that we legalized the chain.
4210 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4211 break;
4212 }
Mon P Wang6a490372008-06-25 08:15:39 +00004213 case ISD::ATOMIC_LOAD_ADD:
4214 case ISD::ATOMIC_LOAD_SUB:
Mon P Wang3e583932008-05-05 19:05:59 +00004215 case ISD::ATOMIC_LOAD_AND:
4216 case ISD::ATOMIC_LOAD_OR:
4217 case ISD::ATOMIC_LOAD_XOR:
Andrew Lenharthf88d50b2008-06-14 05:48:15 +00004218 case ISD::ATOMIC_LOAD_NAND:
Mon P Wang3e583932008-05-05 19:05:59 +00004219 case ISD::ATOMIC_LOAD_MIN:
4220 case ISD::ATOMIC_LOAD_MAX:
4221 case ISD::ATOMIC_LOAD_UMIN:
4222 case ISD::ATOMIC_LOAD_UMAX:
Andrew Lenharth95528942008-02-21 06:45:13 +00004223 case ISD::ATOMIC_SWAP: {
Mon P Wang6a490372008-06-25 08:15:39 +00004224 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharth95528942008-02-21 06:45:13 +00004225 Tmp2 = PromoteOp(Node->getOperand(2));
Mon P Wang6a490372008-06-25 08:15:39 +00004226 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4227 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanaa01afd2008-06-25 16:07:49 +00004228 AtomNode->getSrcValue(),
Mon P Wang6a490372008-06-25 08:15:39 +00004229 AtomNode->getAlignment());
Andrew Lenharth95528942008-02-21 06:45:13 +00004230 // Remember that we legalized the chain.
4231 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4232 break;
4233 }
4234
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004235 case ISD::AND:
4236 case ISD::OR:
4237 case ISD::XOR:
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00004238 case ISD::ADD:
Chris Lattner4d978642005-01-15 22:16:26 +00004239 case ISD::SUB:
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00004240 case ISD::MUL:
4241 // The input may have strange things in the top bits of the registers, but
Chris Lattner6f3b5772005-09-28 22:28:18 +00004242 // these operations don't care. They may have weird bits going out, but
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00004243 // that too is okay if they are integer operations.
4244 Tmp1 = PromoteOp(Node->getOperand(0));
4245 Tmp2 = PromoteOp(Node->getOperand(1));
4246 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4247 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner6f3b5772005-09-28 22:28:18 +00004248 break;
4249 case ISD::FADD:
4250 case ISD::FSUB:
4251 case ISD::FMUL:
Chris Lattner6f3b5772005-09-28 22:28:18 +00004252 Tmp1 = PromoteOp(Node->getOperand(0));
4253 Tmp2 = PromoteOp(Node->getOperand(1));
4254 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4255 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4256
4257 // Floating point operations will give excess precision that we may not be
4258 // able to tolerate. If we DO allow excess precision, just leave it,
4259 // otherwise excise it.
Chris Lattner4d978642005-01-15 22:16:26 +00004260 // FIXME: Why would we need to round FP ops more than integer ones?
4261 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner6f3b5772005-09-28 22:28:18 +00004262 if (NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00004263 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4264 DAG.getValueType(VT));
Chris Lattnerc6c9a5b2005-01-15 06:18:18 +00004265 break;
4266
Chris Lattner4d978642005-01-15 22:16:26 +00004267 case ISD::SDIV:
4268 case ISD::SREM:
4269 // These operators require that their input be sign extended.
4270 Tmp1 = PromoteOp(Node->getOperand(0));
4271 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands13237ac2008-06-06 12:08:01 +00004272 if (NVT.isInteger()) {
Chris Lattner0b6ba902005-07-10 00:07:11 +00004273 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4274 DAG.getValueType(VT));
4275 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4276 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00004277 }
4278 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4279
4280 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands13237ac2008-06-06 12:08:01 +00004281 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Chris Lattner0b6ba902005-07-10 00:07:11 +00004282 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4283 DAG.getValueType(VT));
Chris Lattner4d978642005-01-15 22:16:26 +00004284 break;
Chris Lattner6f3b5772005-09-28 22:28:18 +00004285 case ISD::FDIV:
4286 case ISD::FREM:
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00004287 case ISD::FCOPYSIGN:
Chris Lattner6f3b5772005-09-28 22:28:18 +00004288 // These operators require that their input be fp extended.
Nate Begeman1a225d22006-05-09 18:20:51 +00004289 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner72733e52008-01-17 07:00:52 +00004290 case Expand: assert(0 && "not implemented");
4291 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4292 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begeman1a225d22006-05-09 18:20:51 +00004293 }
4294 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner72733e52008-01-17 07:00:52 +00004295 case Expand: assert(0 && "not implemented");
4296 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4297 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begeman1a225d22006-05-09 18:20:51 +00004298 }
Chris Lattner6f3b5772005-09-28 22:28:18 +00004299 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4300
4301 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattner5c1ba2a2006-03-05 05:09:38 +00004302 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner6f3b5772005-09-28 22:28:18 +00004303 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4304 DAG.getValueType(VT));
4305 break;
Chris Lattner4d978642005-01-15 22:16:26 +00004306
4307 case ISD::UDIV:
4308 case ISD::UREM:
4309 // These operators require that their input be zero extended.
4310 Tmp1 = PromoteOp(Node->getOperand(0));
4311 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands13237ac2008-06-06 12:08:01 +00004312 assert(NVT.isInteger() && "Operators don't apply to FP!");
Chris Lattner0e852af2005-04-13 02:38:47 +00004313 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4314 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner4d978642005-01-15 22:16:26 +00004315 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4316 break;
4317
4318 case ISD::SHL:
4319 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004320 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00004321 break;
4322 case ISD::SRA:
4323 // The input value must be properly sign extended.
4324 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0b6ba902005-07-10 00:07:11 +00004325 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4326 DAG.getValueType(VT));
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004327 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00004328 break;
4329 case ISD::SRL:
4330 // The input value must be properly zero extended.
4331 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0e852af2005-04-13 02:38:47 +00004332 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004333 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner4d978642005-01-15 22:16:26 +00004334 break;
Nate Begeman595ec732006-01-28 03:14:31 +00004335
4336 case ISD::VAARG:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004337 Tmp1 = Node->getOperand(0); // Get the chain.
4338 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman595ec732006-01-28 03:14:31 +00004339 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4340 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands93e180342008-07-04 11:47:58 +00004341 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman595ec732006-01-28 03:14:31 +00004342 } else {
Dan Gohman2d489b52008-02-06 22:27:42 +00004343 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
4344 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman595ec732006-01-28 03:14:31 +00004345 // Increment the pointer, VAList, to the next vaarg
4346 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands13237ac2008-06-06 12:08:01 +00004347 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman595ec732006-01-28 03:14:31 +00004348 TLI.getPointerTy()));
4349 // Store the incremented VAList to the legalized pointer
Dan Gohman2d489b52008-02-06 22:27:42 +00004350 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman595ec732006-01-28 03:14:31 +00004351 // Load the actual argument out of the pointer VAList
Evan Chenge71fe34d2006-10-09 20:57:25 +00004352 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman595ec732006-01-28 03:14:31 +00004353 }
4354 // Remember that we legalized the chain.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004355 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman595ec732006-01-28 03:14:31 +00004356 break;
4357
Evan Chenge71fe34d2006-10-09 20:57:25 +00004358 case ISD::LOAD: {
4359 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Chengdc6a3aa2006-10-10 07:51:21 +00004360 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4361 ? ISD::EXTLOAD : LD->getExtensionType();
4362 Result = DAG.getExtLoad(ExtType, NVT,
4363 LD->getChain(), LD->getBasePtr(),
Chris Lattner84384292006-10-10 18:54:19 +00004364 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohman47a7d6f2008-01-30 00:15:11 +00004365 LD->getMemoryVT(),
Dan Gohman2af30632007-07-09 22:18:38 +00004366 LD->isVolatile(),
4367 LD->getAlignment());
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004368 // Remember that we legalized the chain.
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004369 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004370 break;
Evan Chenge71fe34d2006-10-09 20:57:25 +00004371 }
Scott Micheld831cc42008-06-02 22:18:03 +00004372 case ISD::SELECT: {
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004373 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4374 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Micheld831cc42008-06-02 22:18:03 +00004375
Duncan Sands13237ac2008-06-06 12:08:01 +00004376 MVT VT2 = Tmp2.getValueType();
Scott Micheld831cc42008-06-02 22:18:03 +00004377 assert(VT2 == Tmp3.getValueType()
Scott Michela7d86492008-06-03 19:13:20 +00004378 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4379 // Ensure that the resulting node is at least the same size as the operands'
4380 // value types, because we cannot assume that TLI.getSetCCValueType() is
4381 // constant.
4382 Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004383 break;
Scott Micheld831cc42008-06-02 22:18:03 +00004384 }
Nate Begemane5b86d72005-08-10 20:51:12 +00004385 case ISD::SELECT_CC:
4386 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4387 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4388 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004389 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begemane5b86d72005-08-10 20:51:12 +00004390 break;
Nate Begeman2fba8a32006-01-14 03:14:10 +00004391 case ISD::BSWAP:
4392 Tmp1 = Node->getOperand(0);
4393 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4394 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4395 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Duncan Sands13237ac2008-06-06 12:08:01 +00004396 DAG.getConstant(NVT.getSizeInBits() -
4397 VT.getSizeInBits(),
Nate Begeman2fba8a32006-01-14 03:14:10 +00004398 TLI.getShiftAmountTy()));
4399 break;
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00004400 case ISD::CTPOP:
4401 case ISD::CTTZ:
4402 case ISD::CTLZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004403 // Zero extend the argument
4404 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00004405 // Perform the larger operation, then subtract if needed.
4406 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004407 switch(Node->getOpcode()) {
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00004408 case ISD::CTPOP:
4409 Result = Tmp1;
4410 break;
4411 case ISD::CTTZ:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004412 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michela6729e82008-03-10 15:42:14 +00004413 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands13237ac2008-06-06 12:08:01 +00004414 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohman1796f1f2007-05-18 17:52:13 +00004415 ISD::SETEQ);
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00004416 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands13237ac2008-06-06 12:08:01 +00004417 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00004418 break;
4419 case ISD::CTLZ:
4420 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen5f4ef3c2005-07-27 06:12:32 +00004421 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands13237ac2008-06-06 12:08:01 +00004422 DAG.getConstant(NVT.getSizeInBits() -
4423 VT.getSizeInBits(), NVT));
Andrew Lenharthdd426dd2005-05-04 19:11:05 +00004424 break;
4425 }
4426 break;
Dan Gohmana8665142007-06-25 16:23:39 +00004427 case ISD::EXTRACT_SUBVECTOR:
4428 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman26455c42007-06-13 15:12:02 +00004429 break;
Chris Lattner42a5fca2006-04-02 05:06:04 +00004430 case ISD::EXTRACT_VECTOR_ELT:
4431 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4432 break;
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004433 }
4434
4435 assert(Result.Val && "Didn't set a result!");
Chris Lattner9dcce6d2006-01-28 07:39:30 +00004436
4437 // Make sure the result is itself legal.
4438 Result = LegalizeOp(Result);
4439
4440 // Remember that we promoted this!
Chris Lattner1f2c9d82005-01-15 05:21:40 +00004441 AddPromotedOperand(Op, Result);
4442 return Result;
4443}
Chris Lattnerdc750592005-01-07 07:47:09 +00004444
Dan Gohmana8665142007-06-25 16:23:39 +00004445/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4446/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4447/// based on the vector type. The return type of this matches the element type
4448/// of the vector, which may not be legal for the target.
4449SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
Chris Lattner6f423252006-03-31 17:55:51 +00004450 // We know that operand #0 is the Vec vector. If the index is a constant
4451 // or if the invec is a supported hardware type, we can use it. Otherwise,
4452 // lower to a store then an indexed load.
4453 SDOperand Vec = Op.getOperand(0);
Dan Gohmana8665142007-06-25 16:23:39 +00004454 SDOperand Idx = Op.getOperand(1);
Chris Lattner6f423252006-03-31 17:55:51 +00004455
Duncan Sands13237ac2008-06-06 12:08:01 +00004456 MVT TVT = Vec.getValueType();
4457 unsigned NumElems = TVT.getVectorNumElements();
Chris Lattner6f423252006-03-31 17:55:51 +00004458
Dan Gohmana8665142007-06-25 16:23:39 +00004459 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4460 default: assert(0 && "This action is not supported yet!");
4461 case TargetLowering::Custom: {
4462 Vec = LegalizeOp(Vec);
4463 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4464 SDOperand Tmp3 = TLI.LowerOperation(Op, DAG);
4465 if (Tmp3.Val)
4466 return Tmp3;
4467 break;
4468 }
4469 case TargetLowering::Legal:
4470 if (isTypeLegal(TVT)) {
4471 Vec = LegalizeOp(Vec);
4472 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb3fead962007-07-26 03:33:13 +00004473 return Op;
Dan Gohmana8665142007-06-25 16:23:39 +00004474 }
4475 break;
4476 case TargetLowering::Expand:
4477 break;
4478 }
4479
4480 if (NumElems == 1) {
Chris Lattner6f423252006-03-31 17:55:51 +00004481 // This must be an access of the only element. Return it.
Dan Gohmana8665142007-06-25 16:23:39 +00004482 Op = ScalarizeVectorOp(Vec);
4483 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begemanef337672008-01-29 02:24:00 +00004484 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohmana8665142007-06-25 16:23:39 +00004485 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Chris Lattner6f423252006-03-31 17:55:51 +00004486 SDOperand Lo, Hi;
4487 SplitVectorOp(Vec, Lo, Hi);
Nate Begemanef337672008-01-29 02:24:00 +00004488 if (CIdx->getValue() < NumLoElts) {
Chris Lattner6f423252006-03-31 17:55:51 +00004489 Vec = Lo;
4490 } else {
4491 Vec = Hi;
Nate Begemanef337672008-01-29 02:24:00 +00004492 Idx = DAG.getConstant(CIdx->getValue() - NumLoElts,
Dan Gohmana8665142007-06-25 16:23:39 +00004493 Idx.getValueType());
Chris Lattner6f423252006-03-31 17:55:51 +00004494 }
Dan Gohmana8665142007-06-25 16:23:39 +00004495
Chris Lattner6f423252006-03-31 17:55:51 +00004496 // It's now an extract from the appropriate high or low part. Recurse.
4497 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohmana8665142007-06-25 16:23:39 +00004498 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner6f423252006-03-31 17:55:51 +00004499 } else {
Dan Gohmana8665142007-06-25 16:23:39 +00004500 // Store the value to a temporary stack slot, then LOAD the scalar
4501 // element back out.
Chris Lattnerd6f7d442007-10-15 17:48:57 +00004502 SDOperand StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dan Gohmana8665142007-06-25 16:23:39 +00004503 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
4504
4505 // Add the offset to the index.
Duncan Sands13237ac2008-06-06 12:08:01 +00004506 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dan Gohmana8665142007-06-25 16:23:39 +00004507 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4508 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling070aca52007-10-18 08:32:37 +00004509
Duncan Sands11dd4242008-06-08 20:54:56 +00004510 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Chris Lattner064c31e2007-10-19 16:47:35 +00004511 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling070aca52007-10-18 08:32:37 +00004512 else
Chris Lattner064c31e2007-10-19 16:47:35 +00004513 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling070aca52007-10-18 08:32:37 +00004514
Dan Gohmana8665142007-06-25 16:23:39 +00004515 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4516
4517 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner6f423252006-03-31 17:55:51 +00004518 }
Dan Gohmana8665142007-06-25 16:23:39 +00004519 return Op;
Chris Lattner6f423252006-03-31 17:55:51 +00004520}
4521
Dan Gohmana8665142007-06-25 16:23:39 +00004522/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman26455c42007-06-13 15:12:02 +00004523/// we assume the operation can be split if it is not already legal.
Dan Gohmana8665142007-06-25 16:23:39 +00004524SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) {
Dan Gohman26455c42007-06-13 15:12:02 +00004525 // We know that operand #0 is the Vec vector. For now we assume the index
4526 // is a constant and that the extracted result is a supported hardware type.
4527 SDOperand Vec = Op.getOperand(0);
4528 SDOperand Idx = LegalizeOp(Op.getOperand(1));
4529
Duncan Sands13237ac2008-06-06 12:08:01 +00004530 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Dan Gohman26455c42007-06-13 15:12:02 +00004531
Duncan Sands13237ac2008-06-06 12:08:01 +00004532 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman26455c42007-06-13 15:12:02 +00004533 // This must be an access of the desired vector length. Return it.
Dan Gohmana8665142007-06-25 16:23:39 +00004534 return Vec;
Dan Gohman26455c42007-06-13 15:12:02 +00004535 }
4536
4537 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
4538 SDOperand Lo, Hi;
4539 SplitVectorOp(Vec, Lo, Hi);
4540 if (CIdx->getValue() < NumElems/2) {
4541 Vec = Lo;
4542 } else {
4543 Vec = Hi;
4544 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
4545 }
4546
4547 // It's now an extract from the appropriate high or low part. Recurse.
4548 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohmana8665142007-06-25 16:23:39 +00004549 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman26455c42007-06-13 15:12:02 +00004550}
4551
Nate Begeman7e7f4392006-02-01 07:19:44 +00004552/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4553/// with condition CC on the current target. This usually involves legalizing
4554/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4555/// there may be no choice but to create a new SetCC node to represent the
4556/// legalized value of setcc lhs, rhs. In this case, the value is returned in
4557/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
4558void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
4559 SDOperand &RHS,
4560 SDOperand &CC) {
Dale Johannesenf864ac92007-10-06 01:24:11 +00004561 SDOperand Tmp1, Tmp2, Tmp3, Result;
Nate Begeman7e7f4392006-02-01 07:19:44 +00004562
4563 switch (getTypeAction(LHS.getValueType())) {
4564 case Legal:
4565 Tmp1 = LegalizeOp(LHS); // LHS
4566 Tmp2 = LegalizeOp(RHS); // RHS
4567 break;
4568 case Promote:
4569 Tmp1 = PromoteOp(LHS); // LHS
4570 Tmp2 = PromoteOp(RHS); // RHS
4571
4572 // If this is an FP compare, the operands have already been extended.
Duncan Sands13237ac2008-06-06 12:08:01 +00004573 if (LHS.getValueType().isInteger()) {
4574 MVT VT = LHS.getValueType();
4575 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman7e7f4392006-02-01 07:19:44 +00004576
4577 // Otherwise, we have to insert explicit sign or zero extends. Note
4578 // that we could insert sign extends for ALL conditions, but zero extend
4579 // is cheaper on many machines (an AND instead of two shifts), so prefer
4580 // it.
4581 switch (cast<CondCodeSDNode>(CC)->get()) {
4582 default: assert(0 && "Unknown integer comparison!");
4583 case ISD::SETEQ:
4584 case ISD::SETNE:
4585 case ISD::SETUGE:
4586 case ISD::SETUGT:
4587 case ISD::SETULE:
4588 case ISD::SETULT:
4589 // ALL of these operations will work if we either sign or zero extend
4590 // the operands (including the unsigned comparisons!). Zero extend is
4591 // usually a simpler/cheaper operation, so prefer it.
4592 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4593 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4594 break;
4595 case ISD::SETGE:
4596 case ISD::SETGT:
4597 case ISD::SETLT:
4598 case ISD::SETLE:
4599 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4600 DAG.getValueType(VT));
4601 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4602 DAG.getValueType(VT));
4603 break;
4604 }
4605 }
4606 break;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004607 case Expand: {
Duncan Sands13237ac2008-06-06 12:08:01 +00004608 MVT VT = LHS.getValueType();
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004609 if (VT == MVT::f32 || VT == MVT::f64) {
4610 // Expand into one or more soft-fp libcall(s).
Evan Cheng4c609ab2008-07-01 21:35:46 +00004611 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004612 switch (cast<CondCodeSDNode>(CC)->get()) {
4613 case ISD::SETEQ:
4614 case ISD::SETOEQ:
Evan Cheng31cbddf2007-01-12 02:11:51 +00004615 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004616 break;
4617 case ISD::SETNE:
4618 case ISD::SETUNE:
Evan Cheng31cbddf2007-01-12 02:11:51 +00004619 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004620 break;
4621 case ISD::SETGE:
4622 case ISD::SETOGE:
Evan Cheng31cbddf2007-01-12 02:11:51 +00004623 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004624 break;
4625 case ISD::SETLT:
4626 case ISD::SETOLT:
Evan Cheng31cbddf2007-01-12 02:11:51 +00004627 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004628 break;
4629 case ISD::SETLE:
4630 case ISD::SETOLE:
Evan Cheng31cbddf2007-01-12 02:11:51 +00004631 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004632 break;
4633 case ISD::SETGT:
4634 case ISD::SETOGT:
Evan Cheng31cbddf2007-01-12 02:11:51 +00004635 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004636 break;
4637 case ISD::SETUO:
Evan Cheng53026f12007-01-31 09:29:11 +00004638 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4639 break;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004640 case ISD::SETO:
Evan Chengf309d132007-02-03 00:43:46 +00004641 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004642 break;
4643 default:
Evan Cheng31cbddf2007-01-12 02:11:51 +00004644 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004645 switch (cast<CondCodeSDNode>(CC)->get()) {
4646 case ISD::SETONE:
4647 // SETONE = SETOLT | SETOGT
Evan Cheng31cbddf2007-01-12 02:11:51 +00004648 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004649 // Fallthrough
4650 case ISD::SETUGT:
Evan Cheng31cbddf2007-01-12 02:11:51 +00004651 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004652 break;
4653 case ISD::SETUGE:
Evan Cheng31cbddf2007-01-12 02:11:51 +00004654 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004655 break;
4656 case ISD::SETULT:
Evan Cheng31cbddf2007-01-12 02:11:51 +00004657 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004658 break;
4659 case ISD::SETULE:
Evan Cheng31cbddf2007-01-12 02:11:51 +00004660 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004661 break;
Evan Cheng31cbddf2007-01-12 02:11:51 +00004662 case ISD::SETUEQ:
4663 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng31cbddf2007-01-12 02:11:51 +00004664 break;
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004665 default: assert(0 && "Unsupported FP setcc!");
4666 }
4667 }
Duncan Sands1ae6ef82008-06-30 10:19:09 +00004668
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004669 SDOperand Dummy;
Duncan Sands739a0542008-07-02 17:40:58 +00004670 SDOperand Ops[2] = { LHS, RHS };
4671 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2).Val,
Reid Spencer791864c2007-01-03 04:22:32 +00004672 false /*sign irrelevant*/, Dummy);
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004673 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Cheng53026f12007-01-31 09:29:11 +00004674 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng31cbddf2007-01-12 02:11:51 +00004675 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michela6729e82008-03-10 15:42:14 +00004676 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman63eb03f2008-03-14 00:53:31 +00004677 CC);
Duncan Sands739a0542008-07-02 17:40:58 +00004678 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2).Val,
Reid Spencer791864c2007-01-03 04:22:32 +00004679 false /*sign irrelevant*/, Dummy);
Scott Michela6729e82008-03-10 15:42:14 +00004680 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Evan Cheng53026f12007-01-31 09:29:11 +00004681 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004682 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4683 Tmp2 = SDOperand();
4684 }
Evan Chengd8b83e12008-07-07 07:18:09 +00004685 LHS = LegalizeOp(Tmp1);
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004686 RHS = Tmp2;
4687 return;
4688 }
4689
Nate Begeman7e7f4392006-02-01 07:19:44 +00004690 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
4691 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesenf864ac92007-10-06 01:24:11 +00004692 ExpandOp(RHS, RHSLo, RHSHi);
4693 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4694
4695 if (VT==MVT::ppcf128) {
4696 // FIXME: This generated code sucks. We want to generate
4697 // FCMP crN, hi1, hi2
4698 // BNE crN, L:
4699 // FCMP crN, lo1, lo2
4700 // The following can be improved, but not that much.
Scott Michela6729e82008-03-10 15:42:14 +00004701 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETEQ);
4702 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesenf864ac92007-10-06 01:24:11 +00004703 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Scott Michela6729e82008-03-10 15:42:14 +00004704 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETNE);
4705 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesenf864ac92007-10-06 01:24:11 +00004706 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4707 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
4708 Tmp2 = SDOperand();
4709 break;
4710 }
4711
4712 switch (CCCode) {
Nate Begeman7e7f4392006-02-01 07:19:44 +00004713 case ISD::SETEQ:
4714 case ISD::SETNE:
4715 if (RHSLo == RHSHi)
4716 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4717 if (RHSCST->isAllOnesValue()) {
4718 // Comparison to -1.
4719 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4720 Tmp2 = RHSLo;
4721 break;
4722 }
4723
4724 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4725 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4726 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4727 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4728 break;
4729 default:
4730 // If this is a comparison of the sign bit, just look at the top part.
4731 // X > -1, x < 0
4732 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4733 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohmanb72127a2008-03-13 22:13:53 +00004734 CST->isNullValue()) || // X < 0
Nate Begeman7e7f4392006-02-01 07:19:44 +00004735 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4736 CST->isAllOnesValue())) { // X > -1
4737 Tmp1 = LHSHi;
4738 Tmp2 = RHSHi;
4739 break;
4740 }
4741
4742 // FIXME: This generated code sucks.
4743 ISD::CondCode LowCC;
Evan Cheng93049452007-02-08 22:16:19 +00004744 switch (CCCode) {
Nate Begeman7e7f4392006-02-01 07:19:44 +00004745 default: assert(0 && "Unknown integer setcc!");
4746 case ISD::SETLT:
4747 case ISD::SETULT: LowCC = ISD::SETULT; break;
4748 case ISD::SETGT:
4749 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4750 case ISD::SETLE:
4751 case ISD::SETULE: LowCC = ISD::SETULE; break;
4752 case ISD::SETGE:
4753 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4754 }
4755
4756 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4757 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4758 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4759
4760 // NOTE: on targets without efficient SELECT of bools, we can always use
4761 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng93049452007-02-08 22:16:19 +00004762 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michela6729e82008-03-10 15:42:14 +00004763 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman63eb03f2008-03-14 00:53:31 +00004764 LowCC, false, DagCombineInfo);
Evan Cheng93049452007-02-08 22:16:19 +00004765 if (!Tmp1.Val)
Scott Michela6729e82008-03-10 15:42:14 +00004766 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4767 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng93049452007-02-08 22:16:19 +00004768 CCCode, false, DagCombineInfo);
4769 if (!Tmp2.Val)
Scott Michela6729e82008-03-10 15:42:14 +00004770 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman63eb03f2008-03-14 00:53:31 +00004771 RHSHi,CC);
Evan Cheng93049452007-02-08 22:16:19 +00004772
4773 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4774 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
Dan Gohmanb72127a2008-03-13 22:13:53 +00004775 if ((Tmp1C && Tmp1C->isNullValue()) ||
4776 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng93049452007-02-08 22:16:19 +00004777 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4778 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohmanb72127a2008-03-13 22:13:53 +00004779 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng93049452007-02-08 22:16:19 +00004780 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4781 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4782 // low part is known false, returns high part.
4783 // For LE / GE, if high part is known false, ignore the low part.
4784 // For LT / GT, if high part is known true, ignore the low part.
4785 Tmp1 = Tmp2;
4786 Tmp2 = SDOperand();
4787 } else {
Scott Michela6729e82008-03-10 15:42:14 +00004788 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng93049452007-02-08 22:16:19 +00004789 ISD::SETEQ, false, DagCombineInfo);
4790 if (!Result.Val)
Scott Michela6729e82008-03-10 15:42:14 +00004791 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman63eb03f2008-03-14 00:53:31 +00004792 ISD::SETEQ);
Evan Cheng93049452007-02-08 22:16:19 +00004793 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4794 Result, Tmp1, Tmp2));
4795 Tmp1 = Result;
4796 Tmp2 = SDOperand();
4797 }
Nate Begeman7e7f4392006-02-01 07:19:44 +00004798 }
4799 }
Evan Cheng35fdd5f2006-12-15 02:59:56 +00004800 }
Nate Begeman7e7f4392006-02-01 07:19:44 +00004801 LHS = Tmp1;
4802 RHS = Tmp2;
4803}
4804
Chris Lattner87bc3e72008-01-16 07:45:30 +00004805/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4806/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4807/// a load from the stack slot to DestVT, extending it if needed.
4808/// The resultant code need not be legal.
4809SDOperand SelectionDAGLegalize::EmitStackConvert(SDOperand SrcOp,
Duncan Sands13237ac2008-06-06 12:08:01 +00004810 MVT SlotVT,
4811 MVT DestVT) {
Chris Lattner36e663d2005-12-23 00:16:34 +00004812 // Create the stack frame object.
Mon P Wang5c755ff2008-07-05 20:40:31 +00004813 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
4814 SrcOp.getValueType().getTypeForMVT());
4815 SDOperand FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
4816
Dan Gohman54d3b5a2008-02-11 18:58:42 +00004817 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman2d489b52008-02-06 22:27:42 +00004818 int SPFI = StackPtrFI->getIndex();
Mon P Wang5c755ff2008-07-05 20:40:31 +00004819
Duncan Sands13237ac2008-06-06 12:08:01 +00004820 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
4821 unsigned SlotSize = SlotVT.getSizeInBits();
4822 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang5c755ff2008-07-05 20:40:31 +00004823 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
4824 DestVT.getTypeForMVT());
Chris Lattner36e663d2005-12-23 00:16:34 +00004825
Chris Lattner87bc3e72008-01-16 07:45:30 +00004826 // Emit a store to the stack slot. Use a truncstore if the input value is
4827 // later than DestVT.
4828 SDOperand Store;
Mon P Wang5c755ff2008-07-05 20:40:31 +00004829
Chris Lattner87bc3e72008-01-16 07:45:30 +00004830 if (SrcSize > SlotSize)
Dan Gohman2d489b52008-02-06 22:27:42 +00004831 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman02c7c6c2008-07-11 22:44:52 +00004832 PseudoSourceValue::getFixedStack(SPFI), 0,
4833 SlotVT, false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00004834 else {
4835 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman2d489b52008-02-06 22:27:42 +00004836 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman02c7c6c2008-07-11 22:44:52 +00004837 PseudoSourceValue::getFixedStack(SPFI), 0,
Mon P Wang5c755ff2008-07-05 20:40:31 +00004838 false, SrcAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00004839 }
4840
Chris Lattner36e663d2005-12-23 00:16:34 +00004841 // Result is a load from the stack slot.
Chris Lattner87bc3e72008-01-16 07:45:30 +00004842 if (SlotSize == DestSize)
Mon P Wang5c755ff2008-07-05 20:40:31 +00004843 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0, false, DestAlign);
Chris Lattner87bc3e72008-01-16 07:45:30 +00004844
4845 assert(SlotSize < DestSize && "Unknown extension!");
Mon P Wang5c755ff2008-07-05 20:40:31 +00004846 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT,
4847 false, DestAlign);
Chris Lattner36e663d2005-12-23 00:16:34 +00004848}
4849
Chris Lattner6be79822006-04-04 17:23:26 +00004850SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
4851 // Create a vector sized/aligned stack slot, store the value to element #0,
4852 // then load the whole vector back out.
Chris Lattnerd6f7d442007-10-15 17:48:57 +00004853 SDOperand StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman2d489b52008-02-06 22:27:42 +00004854
Dan Gohman54d3b5a2008-02-11 18:58:42 +00004855 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman2d489b52008-02-06 22:27:42 +00004856 int SPFI = StackPtrFI->getIndex();
4857
Evan Chengdf9ac472006-10-05 23:01:46 +00004858 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohman02c7c6c2008-07-11 22:44:52 +00004859 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00004860 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohman02c7c6c2008-07-11 22:44:52 +00004861 PseudoSourceValue::getFixedStack(SPFI), 0);
Chris Lattner6be79822006-04-04 17:23:26 +00004862}
4863
4864
Chris Lattner9cdc5a02006-03-19 06:31:19 +00004865/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman06c60b62007-07-16 14:29:03 +00004866/// support the operation, but do support the resultant vector type.
Chris Lattner9cdc5a02006-03-19 06:31:19 +00004867SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
4868
4869 // If the only non-undef value is the low element, turn this into a
Chris Lattner21e68c82006-03-20 01:52:29 +00004870 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng1d2e9952006-03-24 01:17:21 +00004871 unsigned NumElems = Node->getNumOperands();
Chris Lattner9cdc5a02006-03-19 06:31:19 +00004872 bool isOnlyLowElement = true;
Chris Lattner21e68c82006-03-20 01:52:29 +00004873 SDOperand SplatValue = Node->getOperand(0);
Chris Lattner322c8262008-03-09 00:29:42 +00004874
4875 // FIXME: it would be far nicer to change this into map<SDOperand,uint64_t>
4876 // and use a bitmask instead of a list of elements.
Evan Cheng1d2e9952006-03-24 01:17:21 +00004877 std::map<SDOperand, std::vector<unsigned> > Values;
4878 Values[SplatValue].push_back(0);
Chris Lattner77e271c2006-03-24 07:29:17 +00004879 bool isConstant = true;
4880 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4881 SplatValue.getOpcode() != ISD::UNDEF)
4882 isConstant = false;
4883
Evan Cheng1d2e9952006-03-24 01:17:21 +00004884 for (unsigned i = 1; i < NumElems; ++i) {
4885 SDOperand V = Node->getOperand(i);
Chris Lattner73eb58e2006-04-19 23:17:50 +00004886 Values[V].push_back(i);
Evan Cheng1d2e9952006-03-24 01:17:21 +00004887 if (V.getOpcode() != ISD::UNDEF)
Chris Lattner9cdc5a02006-03-19 06:31:19 +00004888 isOnlyLowElement = false;
Evan Cheng1d2e9952006-03-24 01:17:21 +00004889 if (SplatValue != V)
Chris Lattner21e68c82006-03-20 01:52:29 +00004890 SplatValue = SDOperand(0,0);
Chris Lattner77e271c2006-03-24 07:29:17 +00004891
4892 // If this isn't a constant element or an undef, we can't use a constant
4893 // pool load.
4894 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4895 V.getOpcode() != ISD::UNDEF)
4896 isConstant = false;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00004897 }
4898
4899 if (isOnlyLowElement) {
4900 // If the low element is an undef too, then this whole things is an undef.
4901 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4902 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4903 // Otherwise, turn this into a scalar_to_vector node.
4904 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4905 Node->getOperand(0));
4906 }
4907
Chris Lattner77e271c2006-03-24 07:29:17 +00004908 // If all elements are constants, create a load from the constant pool.
4909 if (isConstant) {
Duncan Sands13237ac2008-06-06 12:08:01 +00004910 MVT VT = Node->getValueType(0);
Chris Lattner77e271c2006-03-24 07:29:17 +00004911 std::vector<Constant*> CV;
4912 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4913 if (ConstantFPSDNode *V =
4914 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Chris Lattner3b187622008-04-20 00:41:09 +00004915 CV.push_back(ConstantFP::get(V->getValueAPF()));
Chris Lattner77e271c2006-03-24 07:29:17 +00004916 } else if (ConstantSDNode *V =
Chris Lattner3b187622008-04-20 00:41:09 +00004917 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
4918 CV.push_back(ConstantInt::get(V->getAPIntValue()));
Chris Lattner77e271c2006-03-24 07:29:17 +00004919 } else {
4920 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner3b187622008-04-20 00:41:09 +00004921 const Type *OpNTy =
Duncan Sands13237ac2008-06-06 12:08:01 +00004922 Node->getOperand(0).getValueType().getTypeForMVT();
Chris Lattner77e271c2006-03-24 07:29:17 +00004923 CV.push_back(UndefValue::get(OpNTy));
4924 }
4925 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00004926 Constant *CP = ConstantVector::get(CV);
Chris Lattner77e271c2006-03-24 07:29:17 +00004927 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman2d489b52008-02-06 22:27:42 +00004928 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman16d4bc32008-02-07 18:41:25 +00004929 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner77e271c2006-03-24 07:29:17 +00004930 }
4931
Chris Lattner21e68c82006-03-20 01:52:29 +00004932 if (SplatValue.Val) { // Splat of one value?
4933 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands13237ac2008-06-06 12:08:01 +00004934 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
4935 SDOperand Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
Evan Cheng1d2e9952006-03-24 01:17:21 +00004936 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004937 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4938 &ZeroVec[0], ZeroVec.size());
Chris Lattner21e68c82006-03-20 01:52:29 +00004939
4940 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner6be79822006-04-04 17:23:26 +00004941 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner21e68c82006-03-20 01:52:29 +00004942 // Get the splatted value into the low element of a vector register.
4943 SDOperand LowValVec =
4944 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
4945
4946 // Return shuffle(LowValVec, undef, <0,0,0,0>)
4947 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
4948 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
4949 SplatMask);
4950 }
4951 }
4952
Evan Cheng1d2e9952006-03-24 01:17:21 +00004953 // If there are only two unique elements, we may be able to turn this into a
4954 // vector shuffle.
4955 if (Values.size() == 2) {
Chris Lattner322c8262008-03-09 00:29:42 +00004956 // Get the two values in deterministic order.
4957 SDOperand Val1 = Node->getOperand(1);
4958 SDOperand Val2;
4959 std::map<SDOperand, std::vector<unsigned> >::iterator MI = Values.begin();
4960 if (MI->first != Val1)
4961 Val2 = MI->first;
4962 else
4963 Val2 = (++MI)->first;
4964
4965 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
4966 // vector shuffle has the undef vector on the RHS.
4967 if (Val1.getOpcode() == ISD::UNDEF)
4968 std::swap(Val1, Val2);
4969
Evan Cheng1d2e9952006-03-24 01:17:21 +00004970 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands13237ac2008-06-06 12:08:01 +00004971 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
4972 MVT MaskEltVT = MaskVT.getVectorElementType();
Evan Cheng1d2e9952006-03-24 01:17:21 +00004973 std::vector<SDOperand> MaskVec(NumElems);
Chris Lattner322c8262008-03-09 00:29:42 +00004974
4975 // Set elements of the shuffle mask for Val1.
4976 std::vector<unsigned> &Val1Elts = Values[Val1];
4977 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
4978 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
4979
4980 // Set elements of the shuffle mask for Val2.
4981 std::vector<unsigned> &Val2Elts = Values[Val2];
4982 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
4983 if (Val2.getOpcode() != ISD::UNDEF)
4984 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
4985 else
4986 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
4987
Chris Lattnerc24a1d32006-08-08 02:23:42 +00004988 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4989 &MaskVec[0], MaskVec.size());
Evan Cheng1d2e9952006-03-24 01:17:21 +00004990
Chris Lattner322c8262008-03-09 00:29:42 +00004991 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Chris Lattner6be79822006-04-04 17:23:26 +00004992 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
4993 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattner322c8262008-03-09 00:29:42 +00004994 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
4995 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
4996 SDOperand Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng1d2e9952006-03-24 01:17:21 +00004997
4998 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattner322c8262008-03-09 00:29:42 +00004999 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Evan Cheng1d2e9952006-03-24 01:17:21 +00005000 }
5001 }
Chris Lattner9cdc5a02006-03-19 06:31:19 +00005002
5003 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5004 // aligned object on the stack, store each element into it, then load
5005 // the result as a vector.
Duncan Sands13237ac2008-06-06 12:08:01 +00005006 MVT VT = Node->getValueType(0);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00005007 // Create the stack frame object.
Chris Lattnerd6f7d442007-10-15 17:48:57 +00005008 SDOperand FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00005009
5010 // Emit a store of each element to the stack slot.
Chris Lattnerc24a1d32006-08-08 02:23:42 +00005011 SmallVector<SDOperand, 8> Stores;
Duncan Sands13237ac2008-06-06 12:08:01 +00005012 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00005013 // Store (in the right endianness) the elements to memory.
5014 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5015 // Ignore undef elements.
5016 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5017
Chris Lattner8fa445a2006-03-22 01:46:54 +00005018 unsigned Offset = TypeByteSize*i;
Chris Lattner9cdc5a02006-03-19 06:31:19 +00005019
5020 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
5021 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5022
Evan Chengdf9ac472006-10-05 23:01:46 +00005023 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Chengab51cf22006-10-13 21:14:26 +00005024 NULL, 0));
Chris Lattner9cdc5a02006-03-19 06:31:19 +00005025 }
5026
5027 SDOperand StoreChain;
5028 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerc24a1d32006-08-08 02:23:42 +00005029 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5030 &Stores[0], Stores.size());
Chris Lattner9cdc5a02006-03-19 06:31:19 +00005031 else
5032 StoreChain = DAG.getEntryNode();
5033
5034 // Result is a load from the stack slot.
Evan Chenge71fe34d2006-10-09 20:57:25 +00005035 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattner9cdc5a02006-03-19 06:31:19 +00005036}
5037
Chris Lattner4157c412005-04-02 04:00:59 +00005038void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
5039 SDOperand Op, SDOperand Amt,
5040 SDOperand &Lo, SDOperand &Hi) {
5041 // Expand the subcomponents.
5042 SDOperand LHSL, LHSH;
5043 ExpandOp(Op, LHSL, LHSH);
5044
Chris Lattnerc24a1d32006-08-08 02:23:42 +00005045 SDOperand Ops[] = { LHSL, LHSH, Amt };
Duncan Sands13237ac2008-06-06 12:08:01 +00005046 MVT VT = LHSL.getValueType();
Chris Lattnerbd887772006-08-14 23:53:35 +00005047 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner4157c412005-04-02 04:00:59 +00005048 Hi = Lo.getValue(1);
5049}
5050
5051
Chris Lattner2a7f8a92005-01-19 04:19:40 +00005052/// ExpandShift - Try to find a clever way to expand this shift operation out to
5053/// smaller elements. If we can't find a way that is more efficient than a
5054/// libcall on this target, return false. Otherwise, return true with the
5055/// low-parts expanded into Lo and Hi.
5056bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
5057 SDOperand &Lo, SDOperand &Hi) {
5058 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5059 "This is not a shift!");
Nate Begemanb0674922005-04-06 21:13:14 +00005060
Duncan Sands13237ac2008-06-06 12:08:01 +00005061 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanb0674922005-04-06 21:13:14 +00005062 SDOperand ShAmt = LegalizeOp(Amt);
Duncan Sands13237ac2008-06-06 12:08:01 +00005063 MVT ShTy = ShAmt.getValueType();
5064 unsigned ShBits = ShTy.getSizeInBits();
5065 unsigned VTBits = Op.getValueType().getSizeInBits();
5066 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanb0674922005-04-06 21:13:14 +00005067
Chris Lattnerfbbe5702007-10-14 20:35:12 +00005068 // Handle the case when Amt is an immediate.
Nate Begemanb0674922005-04-06 21:13:14 +00005069 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
5070 unsigned Cst = CN->getValue();
5071 // Expand the incoming operand to be shifted, so that we have its parts
5072 SDOperand InL, InH;
5073 ExpandOp(Op, InL, InH);
5074 switch(Opc) {
5075 case ISD::SHL:
5076 if (Cst > VTBits) {
5077 Lo = DAG.getConstant(0, NVT);
5078 Hi = DAG.getConstant(0, NVT);
5079 } else if (Cst > NVTBits) {
5080 Lo = DAG.getConstant(0, NVT);
5081 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneredd19702005-04-11 20:08:52 +00005082 } else if (Cst == NVTBits) {
5083 Lo = DAG.getConstant(0, NVT);
5084 Hi = InL;
Nate Begemanb0674922005-04-06 21:13:14 +00005085 } else {
5086 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5087 Hi = DAG.getNode(ISD::OR, NVT,
5088 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5089 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5090 }
5091 return true;
5092 case ISD::SRL:
5093 if (Cst > VTBits) {
5094 Lo = DAG.getConstant(0, NVT);
5095 Hi = DAG.getConstant(0, NVT);
5096 } else if (Cst > NVTBits) {
5097 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5098 Hi = DAG.getConstant(0, NVT);
Chris Lattneredd19702005-04-11 20:08:52 +00005099 } else if (Cst == NVTBits) {
5100 Lo = InH;
5101 Hi = DAG.getConstant(0, NVT);
Nate Begemanb0674922005-04-06 21:13:14 +00005102 } else {
5103 Lo = DAG.getNode(ISD::OR, NVT,
5104 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5105 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5106 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5107 }
5108 return true;
5109 case ISD::SRA:
5110 if (Cst > VTBits) {
Misha Brukman835702a2005-04-21 22:36:52 +00005111 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00005112 DAG.getConstant(NVTBits-1, ShTy));
5113 } else if (Cst > NVTBits) {
Misha Brukman835702a2005-04-21 22:36:52 +00005114 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00005115 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukman835702a2005-04-21 22:36:52 +00005116 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanb0674922005-04-06 21:13:14 +00005117 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneredd19702005-04-11 20:08:52 +00005118 } else if (Cst == NVTBits) {
5119 Lo = InH;
Misha Brukman835702a2005-04-21 22:36:52 +00005120 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneredd19702005-04-11 20:08:52 +00005121 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanb0674922005-04-06 21:13:14 +00005122 } else {
5123 Lo = DAG.getNode(ISD::OR, NVT,
5124 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5125 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5126 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5127 }
5128 return true;
5129 }
5130 }
Chris Lattner875ea0c2006-09-20 03:38:48 +00005131
5132 // Okay, the shift amount isn't constant. However, if we can tell that it is
5133 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman34fc7db2008-02-20 16:57:27 +00005134 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5135 APInt KnownZero, KnownOne;
Dan Gohman309d3d52007-06-22 14:59:07 +00005136 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner875ea0c2006-09-20 03:38:48 +00005137
Dan Gohmanf3057a92008-02-22 01:12:31 +00005138 // If we know that if any of the high bits of the shift amount are one, then
5139 // we can do this as a couple of simple shifts.
Dan Gohman34fc7db2008-02-20 16:57:27 +00005140 if (KnownOne.intersects(Mask)) {
Chris Lattner875ea0c2006-09-20 03:38:48 +00005141 // Mask out the high bit, which we know is set.
5142 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohman34fc7db2008-02-20 16:57:27 +00005143 DAG.getConstant(~Mask, Amt.getValueType()));
Chris Lattner875ea0c2006-09-20 03:38:48 +00005144
5145 // Expand the incoming operand to be shifted, so that we have its parts
5146 SDOperand InL, InH;
5147 ExpandOp(Op, InL, InH);
5148 switch(Opc) {
5149 case ISD::SHL:
5150 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5151 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5152 return true;
5153 case ISD::SRL:
5154 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5155 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5156 return true;
5157 case ISD::SRA:
5158 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5159 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5160 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5161 return true;
5162 }
5163 }
5164
Dan Gohmanf3057a92008-02-22 01:12:31 +00005165 // If we know that the high bits of the shift amount are all zero, then we can
5166 // do this as a couple of simple shifts.
5167 if ((KnownZero & Mask) == Mask) {
Chris Lattner875ea0c2006-09-20 03:38:48 +00005168 // Compute 32-amt.
5169 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
5170 DAG.getConstant(NVTBits, Amt.getValueType()),
5171 Amt);
5172
5173 // Expand the incoming operand to be shifted, so that we have its parts
5174 SDOperand InL, InH;
5175 ExpandOp(Op, InL, InH);
5176 switch(Opc) {
5177 case ISD::SHL:
5178 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5179 Hi = DAG.getNode(ISD::OR, NVT,
5180 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5181 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5182 return true;
5183 case ISD::SRL:
5184 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5185 Lo = DAG.getNode(ISD::OR, NVT,
5186 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5187 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5188 return true;
5189 case ISD::SRA:
5190 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5191 Lo = DAG.getNode(ISD::OR, NVT,
5192 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5193 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5194 return true;
5195 }
5196 }
5197
Nate Begemanb0674922005-04-06 21:13:14 +00005198 return false;
Chris Lattner2a7f8a92005-01-19 04:19:40 +00005199}
Chris Lattneraac464e2005-01-21 06:05:23 +00005200
Chris Lattner4add7e32005-01-23 04:42:50 +00005201
Chris Lattneraac464e2005-01-21 06:05:23 +00005202// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5203// does not fit into a register, return the lo part and set the hi part to the
5204// by-reg argument. If it does fit into a single register, return the result
5205// and leave the Hi part unset.
Duncan Sands844d55a2008-04-12 17:14:18 +00005206SDOperand SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Reid Spencere63b6512006-12-31 05:55:36 +00005207 bool isSigned, SDOperand &Hi) {
Chris Lattner462505f2006-02-13 09:18:02 +00005208 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5209 // The input chain to this libcall is the entry node of the function.
5210 // Legalizing the call will automatically add the previous call to the
5211 // dependence.
5212 SDOperand InChain = DAG.getEntryNode();
5213
Chris Lattneraac464e2005-01-21 06:05:23 +00005214 TargetLowering::ArgListTy Args;
Reid Spencere63b6512006-12-31 05:55:36 +00005215 TargetLowering::ArgListEntry Entry;
Chris Lattneraac464e2005-01-21 06:05:23 +00005216 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands13237ac2008-06-06 12:08:01 +00005217 MVT ArgVT = Node->getOperand(i).getValueType();
5218 const Type *ArgTy = ArgVT.getTypeForMVT();
Reid Spencere63b6512006-12-31 05:55:36 +00005219 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikoved4b3032007-03-07 16:25:09 +00005220 Entry.isSExt = isSigned;
Duncan Sands4c95dbd2008-02-14 17:28:50 +00005221 Entry.isZExt = !isSigned;
Reid Spencere63b6512006-12-31 05:55:36 +00005222 Args.push_back(Entry);
Chris Lattneraac464e2005-01-21 06:05:23 +00005223 }
Duncan Sands844d55a2008-04-12 17:14:18 +00005224 SDOperand Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
5225 TLI.getPointerTy());
Misha Brukman835702a2005-04-21 22:36:52 +00005226
Chris Lattner06bbeb62005-05-11 19:02:11 +00005227 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands13237ac2008-06-06 12:08:01 +00005228 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Chris Lattner06bbeb62005-05-11 19:02:11 +00005229 std::pair<SDOperand,SDOperand> CallInfo =
Duncan Sands4c95dbd2008-02-14 17:28:50 +00005230 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, CallingConv::C,
5231 false, Callee, Args, DAG);
Chris Lattnera5bf1032005-05-12 04:49:08 +00005232
Chris Lattner462505f2006-02-13 09:18:02 +00005233 // Legalize the call sequence, starting with the chain. This will advance
5234 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5235 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5236 LegalizeOp(CallInfo.second);
Chris Lattner63022662005-09-02 20:26:58 +00005237 SDOperand Result;
Chris Lattner06bbeb62005-05-11 19:02:11 +00005238 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattneraac464e2005-01-21 06:05:23 +00005239 default: assert(0 && "Unknown thing");
5240 case Legal:
Chris Lattner9dcce6d2006-01-28 07:39:30 +00005241 Result = CallInfo.first;
Chris Lattner63022662005-09-02 20:26:58 +00005242 break;
Chris Lattneraac464e2005-01-21 06:05:23 +00005243 case Expand:
Chris Lattner63022662005-09-02 20:26:58 +00005244 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner63022662005-09-02 20:26:58 +00005245 break;
Chris Lattneraac464e2005-01-21 06:05:23 +00005246 }
Chris Lattner63022662005-09-02 20:26:58 +00005247 return Result;
Chris Lattneraac464e2005-01-21 06:05:23 +00005248}
5249
Chris Lattner4add7e32005-01-23 04:42:50 +00005250
Evan Chengbf535fc2007-04-27 07:33:31 +00005251/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5252///
Chris Lattneraac464e2005-01-21 06:05:23 +00005253SDOperand SelectionDAGLegalize::
Duncan Sands13237ac2008-06-06 12:08:01 +00005254ExpandIntToFP(bool isSigned, MVT DestTy, SDOperand Source) {
5255 MVT SourceVT = Source.getValueType();
Dan Gohmand6819da2008-03-11 01:59:03 +00005256 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattneraac464e2005-01-21 06:05:23 +00005257
Evan Cheng0bd72c52008-04-01 02:18:22 +00005258 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5259 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohmanda7897c2008-03-05 02:07:31 +00005260 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere69ad5f2005-04-13 05:09:42 +00005261 // incoming integer is set. To handle this, we dynamically test to see if
5262 // it is set, and, if so, add a fudge factor.
Dan Gohmand6819da2008-03-11 01:59:03 +00005263 SDOperand Hi;
5264 if (ExpandSource) {
5265 SDOperand Lo;
5266 ExpandOp(Source, Lo, Hi);
5267 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5268 } else {
5269 // The comparison for the sign bit will use the entire operand.
5270 Hi = Source;
5271 }
Chris Lattnere69ad5f2005-04-13 05:09:42 +00005272
Chris Lattner2a4f7312005-05-13 04:45:13 +00005273 // If this is unsigned, and not supported, first perform the conversion to
5274 // signed, then adjust the result if the sign bit is set.
Dan Gohmand6819da2008-03-11 01:59:03 +00005275 SDOperand SignedConv = ExpandIntToFP(true, DestTy, Source);
Chris Lattner2a4f7312005-05-13 04:45:13 +00005276
Scott Michela6729e82008-03-10 15:42:14 +00005277 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Chris Lattnerd47675e2005-08-09 20:20:18 +00005278 DAG.getConstant(0, Hi.getValueType()),
5279 ISD::SETLT);
Chris Lattner72733e52008-01-17 07:00:52 +00005280 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00005281 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5282 SignSet, Four, Zero);
Chris Lattner26f03172005-05-12 18:52:34 +00005283 uint64_t FF = 0x5f800000ULL;
5284 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohmanda7897c2008-03-05 02:07:31 +00005285 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere69ad5f2005-04-13 05:09:42 +00005286
Chris Lattnerc30405e2005-08-26 17:15:30 +00005287 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere69ad5f2005-04-13 05:09:42 +00005288 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5289 SDOperand FudgeInReg;
5290 if (DestTy == MVT::f32)
Dan Gohman2d489b52008-02-06 22:27:42 +00005291 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman16d4bc32008-02-07 18:41:25 +00005292 PseudoSourceValue::getConstantPool(), 0);
Duncan Sands11dd4242008-06-08 20:54:56 +00005293 else if (DestTy.bitsGT(MVT::f32))
Evan Chengbf535fc2007-04-27 07:33:31 +00005294 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen7f724e92007-09-16 16:51:49 +00005295 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman2d489b52008-02-06 22:27:42 +00005296 CPIdx,
Dan Gohman16d4bc32008-02-07 18:41:25 +00005297 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman2d489b52008-02-06 22:27:42 +00005298 MVT::f32);
Dale Johannesen98d3a082007-09-14 22:26:36 +00005299 else
5300 assert(0 && "Unexpected conversion");
5301
Duncan Sands13237ac2008-06-06 12:08:01 +00005302 MVT SCVT = SignedConv.getValueType();
Evan Chengbf535fc2007-04-27 07:33:31 +00005303 if (SCVT != DestTy) {
5304 // Destination type needs to be expanded as well. The FADD now we are
5305 // constructing will be expanded into a libcall.
Duncan Sands13237ac2008-06-06 12:08:01 +00005306 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5307 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dan Gohmand9d874b2008-03-05 01:08:17 +00005308 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Evan Chengbf535fc2007-04-27 07:33:31 +00005309 SignedConv, SignedConv.getValue(1));
5310 }
5311 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5312 }
Chris Lattner5b2be1f2005-09-29 06:44:39 +00005313 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattneraac464e2005-01-21 06:05:23 +00005314 }
Chris Lattner06bbeb62005-05-11 19:02:11 +00005315
Chris Lattnerd3cc9962005-05-14 05:33:54 +00005316 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand9d874b2008-03-05 01:08:17 +00005317 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnerd3cc9962005-05-14 05:33:54 +00005318 default: assert(0 && "This action not implemented for this operation!");
5319 case TargetLowering::Legal:
5320 case TargetLowering::Expand:
5321 break; // This case is handled below.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00005322 case TargetLowering::Custom: {
5323 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
5324 Source), DAG);
5325 if (NV.Val)
5326 return LegalizeOp(NV);
5327 break; // The target decided this was legal after all
5328 }
Chris Lattnerd3cc9962005-05-14 05:33:54 +00005329 }
5330
Chris Lattner153587e2005-05-12 07:00:44 +00005331 // Expand the source, then glue it back together for the call. We must expand
5332 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohmand6819da2008-03-11 01:59:03 +00005333 if (ExpandSource) {
5334 SDOperand SrcLo, SrcHi;
5335 ExpandOp(Source, SrcLo, SrcHi);
5336 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5337 }
Chris Lattner153587e2005-05-12 07:00:44 +00005338
Duncan Sands77a3d052008-07-17 02:36:29 +00005339 RTLIB::Libcall LC = isSigned ?
5340 RTLIB::getSINTTOFP(SourceVT, DestTy) :
5341 RTLIB::getUINTTOFP(SourceVT, DestTy);
5342 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
5343
Chris Lattner462505f2006-02-13 09:18:02 +00005344 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohmanf4300952008-03-10 23:03:31 +00005345 SDOperand HiPart;
Duncan Sands844d55a2008-04-12 17:14:18 +00005346 SDOperand Result = ExpandLibCall(LC, Source.Val, isSigned, HiPart);
Evan Cheng86e476b2008-04-01 01:50:16 +00005347 if (Result.getValueType() != DestTy && HiPart.Val)
Dan Gohmanf4300952008-03-10 23:03:31 +00005348 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5349 return Result;
Chris Lattneraac464e2005-01-21 06:05:23 +00005350}
Misha Brukman835702a2005-04-21 22:36:52 +00005351
Chris Lattner689bdcc2006-01-28 08:25:58 +00005352/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5353/// INT_TO_FP operation of the specified operand when the target requests that
5354/// we expand it. At this point, we know that the result and operand types are
5355/// legal for the target.
5356SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5357 SDOperand Op0,
Duncan Sands13237ac2008-06-06 12:08:01 +00005358 MVT DestVT) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00005359 if (Op0.getValueType() == MVT::i32) {
5360 // simple 32-bit [signed|unsigned] integer to float/double expansion
5361
Chris Lattnera2c7ff32008-01-16 07:03:22 +00005362 // Get the stack frame index of a 8 byte buffer.
5363 SDOperand StackSlot = DAG.CreateStackTemporary(MVT::f64);
5364
Chris Lattner689bdcc2006-01-28 08:25:58 +00005365 // word offset constant for Hi/Lo address computation
5366 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
5367 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner9ea1b3f2006-03-23 05:29:04 +00005368 SDOperand Hi = StackSlot;
5369 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
5370 if (TLI.isLittleEndian())
5371 std::swap(Hi, Lo);
5372
Chris Lattner689bdcc2006-01-28 08:25:58 +00005373 // if signed map to unsigned space
5374 SDOperand Op0Mapped;
5375 if (isSigned) {
5376 // constant used to invert sign bit (signed to unsigned mapping)
5377 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
5378 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5379 } else {
5380 Op0Mapped = Op0;
5381 }
5382 // store the lo of the constructed double - based on integer input
Evan Chengdf9ac472006-10-05 23:01:46 +00005383 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Chengab51cf22006-10-13 21:14:26 +00005384 Op0Mapped, Lo, NULL, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00005385 // initial hi portion of constructed double
5386 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
5387 // store the hi of the constructed double - biased exponent
Evan Chengab51cf22006-10-13 21:14:26 +00005388 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00005389 // load the constructed double
Evan Chenge71fe34d2006-10-09 20:57:25 +00005390 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00005391 // FP constant to bias correct the final result
5392 SDOperand Bias = DAG.getConstantFP(isSigned ?
5393 BitsToDouble(0x4330000080000000ULL)
5394 : BitsToDouble(0x4330000000000000ULL),
5395 MVT::f64);
5396 // subtract the bias
5397 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
5398 // final result
5399 SDOperand Result;
5400 // handle final rounding
5401 if (DestVT == MVT::f64) {
5402 // do nothing
5403 Result = Sub;
Duncan Sands11dd4242008-06-08 20:54:56 +00005404 } else if (DestVT.bitsLT(MVT::f64)) {
Chris Lattner72733e52008-01-17 07:00:52 +00005405 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5406 DAG.getIntPtrConstant(0));
Duncan Sands11dd4242008-06-08 20:54:56 +00005407 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen7f724e92007-09-16 16:51:49 +00005408 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner689bdcc2006-01-28 08:25:58 +00005409 }
5410 return Result;
5411 }
5412 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
5413 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
5414
Scott Michela6729e82008-03-10 15:42:14 +00005415 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Chris Lattner689bdcc2006-01-28 08:25:58 +00005416 DAG.getConstant(0, Op0.getValueType()),
5417 ISD::SETLT);
Chris Lattner72733e52008-01-17 07:00:52 +00005418 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattner689bdcc2006-01-28 08:25:58 +00005419 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5420 SignSet, Four, Zero);
5421
5422 // If the sign bit of the integer is set, the large number will be treated
5423 // as a negative number. To counteract this, the dynamic code adds an
5424 // offset depending on the data type.
5425 uint64_t FF;
Duncan Sands13237ac2008-06-06 12:08:01 +00005426 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00005427 default: assert(0 && "Unsupported integer type!");
5428 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5429 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5430 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5431 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5432 }
5433 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencere63b6512006-12-31 05:55:36 +00005434 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner689bdcc2006-01-28 08:25:58 +00005435
5436 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
5437 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5438 SDOperand FudgeInReg;
5439 if (DestVT == MVT::f32)
Dan Gohman2d489b52008-02-06 22:27:42 +00005440 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman16d4bc32008-02-07 18:41:25 +00005441 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner689bdcc2006-01-28 08:25:58 +00005442 else {
Dan Gohman2d489b52008-02-06 22:27:42 +00005443 FudgeInReg =
5444 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5445 DAG.getEntryNode(), CPIdx,
Dan Gohman16d4bc32008-02-07 18:41:25 +00005446 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman2d489b52008-02-06 22:27:42 +00005447 MVT::f32));
Chris Lattner689bdcc2006-01-28 08:25:58 +00005448 }
5449
5450 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5451}
5452
5453/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5454/// *INT_TO_FP operation of the specified operand when the target requests that
5455/// we promote it. At this point, we know that the result and operand types are
5456/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5457/// operation that takes a larger input.
5458SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
Duncan Sands13237ac2008-06-06 12:08:01 +00005459 MVT DestVT,
Chris Lattner689bdcc2006-01-28 08:25:58 +00005460 bool isSigned) {
5461 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands13237ac2008-06-06 12:08:01 +00005462 MVT NewInTy = LegalOp.getValueType();
Chris Lattner689bdcc2006-01-28 08:25:58 +00005463
5464 unsigned OpToUse = 0;
5465
5466 // Scan for the appropriate larger type to use.
5467 while (1) {
Duncan Sands13237ac2008-06-06 12:08:01 +00005468 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
5469 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00005470
5471 // If the target supports SINT_TO_FP of this type, use it.
5472 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5473 default: break;
5474 case TargetLowering::Legal:
5475 if (!TLI.isTypeLegal(NewInTy))
5476 break; // Can't use this datatype.
5477 // FALL THROUGH.
5478 case TargetLowering::Custom:
5479 OpToUse = ISD::SINT_TO_FP;
5480 break;
5481 }
5482 if (OpToUse) break;
5483 if (isSigned) continue;
5484
5485 // If the target supports UINT_TO_FP of this type, use it.
5486 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5487 default: break;
5488 case TargetLowering::Legal:
5489 if (!TLI.isTypeLegal(NewInTy))
5490 break; // Can't use this datatype.
5491 // FALL THROUGH.
5492 case TargetLowering::Custom:
5493 OpToUse = ISD::UINT_TO_FP;
5494 break;
5495 }
5496 if (OpToUse) break;
5497
5498 // Otherwise, try a larger type.
5499 }
5500
5501 // Okay, we found the operation and type to use. Zero extend our input to the
5502 // desired type then run the operation on it.
5503 return DAG.getNode(OpToUse, DestVT,
5504 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5505 NewInTy, LegalOp));
5506}
5507
5508/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5509/// FP_TO_*INT operation of the specified operand when the target requests that
5510/// we promote it. At this point, we know that the result and operand types are
5511/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5512/// operation that returns a larger result.
5513SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
Duncan Sands13237ac2008-06-06 12:08:01 +00005514 MVT DestVT,
Chris Lattner689bdcc2006-01-28 08:25:58 +00005515 bool isSigned) {
5516 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands13237ac2008-06-06 12:08:01 +00005517 MVT NewOutTy = DestVT;
Chris Lattner689bdcc2006-01-28 08:25:58 +00005518
5519 unsigned OpToUse = 0;
5520
5521 // Scan for the appropriate larger type to use.
5522 while (1) {
Duncan Sands13237ac2008-06-06 12:08:01 +00005523 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
5524 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner689bdcc2006-01-28 08:25:58 +00005525
5526 // If the target supports FP_TO_SINT returning this type, use it.
5527 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5528 default: break;
5529 case TargetLowering::Legal:
5530 if (!TLI.isTypeLegal(NewOutTy))
5531 break; // Can't use this datatype.
5532 // FALL THROUGH.
5533 case TargetLowering::Custom:
5534 OpToUse = ISD::FP_TO_SINT;
5535 break;
5536 }
5537 if (OpToUse) break;
5538
5539 // If the target supports FP_TO_UINT of this type, use it.
5540 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5541 default: break;
5542 case TargetLowering::Legal:
5543 if (!TLI.isTypeLegal(NewOutTy))
5544 break; // Can't use this datatype.
5545 // FALL THROUGH.
5546 case TargetLowering::Custom:
5547 OpToUse = ISD::FP_TO_UINT;
5548 break;
5549 }
5550 if (OpToUse) break;
5551
5552 // Otherwise, try a larger type.
5553 }
5554
Chris Lattnerf81d5882007-11-24 07:07:01 +00005555
5556 // Okay, we found the operation and type to use.
5557 SDOperand Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
Duncan Sands93e180342008-07-04 11:47:58 +00005558
Chris Lattnerf81d5882007-11-24 07:07:01 +00005559 // If the operation produces an invalid type, it must be custom lowered. Use
5560 // the target lowering hooks to expand it. Just keep the low part of the
5561 // expanded operation, we know that we're truncating anyway.
5562 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands93e180342008-07-04 11:47:58 +00005563 Operation = SDOperand(TLI.ReplaceNodeResults(Operation.Val, DAG), 0);
Chris Lattnerf81d5882007-11-24 07:07:01 +00005564 assert(Operation.Val && "Didn't return anything");
5565 }
Duncan Sands93e180342008-07-04 11:47:58 +00005566
Chris Lattnerf81d5882007-11-24 07:07:01 +00005567 // Truncate the result of the extended FP_TO_*INT operation to the desired
5568 // size.
5569 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner689bdcc2006-01-28 08:25:58 +00005570}
5571
5572/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5573///
5574SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
Duncan Sands13237ac2008-06-06 12:08:01 +00005575 MVT VT = Op.getValueType();
5576 MVT SHVT = TLI.getShiftAmountTy();
Chris Lattner689bdcc2006-01-28 08:25:58 +00005577 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands13237ac2008-06-06 12:08:01 +00005578 switch (VT.getSimpleVT()) {
Chris Lattner689bdcc2006-01-28 08:25:58 +00005579 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5580 case MVT::i16:
5581 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5582 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5583 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5584 case MVT::i32:
5585 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5586 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5587 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5588 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5589 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5590 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5591 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5592 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5593 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5594 case MVT::i64:
5595 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5596 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5597 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5598 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5599 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5600 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5601 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5602 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5603 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5604 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5605 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5606 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5607 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5608 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5609 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5610 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5611 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5612 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5613 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5614 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5615 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5616 }
5617}
5618
5619/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5620///
5621SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
5622 switch (Opc) {
5623 default: assert(0 && "Cannot expand this yet!");
5624 case ISD::CTPOP: {
5625 static const uint64_t mask[6] = {
5626 0x5555555555555555ULL, 0x3333333333333333ULL,
5627 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5628 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5629 };
Duncan Sands13237ac2008-06-06 12:08:01 +00005630 MVT VT = Op.getValueType();
5631 MVT ShVT = TLI.getShiftAmountTy();
5632 unsigned len = VT.getSizeInBits();
Chris Lattner689bdcc2006-01-28 08:25:58 +00005633 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5634 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
5635 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
5636 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5637 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5638 DAG.getNode(ISD::AND, VT,
5639 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5640 }
5641 return Op;
5642 }
5643 case ISD::CTLZ: {
5644 // for now, we do this:
5645 // x = x | (x >> 1);
5646 // x = x | (x >> 2);
5647 // ...
5648 // x = x | (x >>16);
5649 // x = x | (x >>32); // for 64-bit input
5650 // return popcount(~x);
5651 //
5652 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands13237ac2008-06-06 12:08:01 +00005653 MVT VT = Op.getValueType();
5654 MVT ShVT = TLI.getShiftAmountTy();
5655 unsigned len = VT.getSizeInBits();
Chris Lattner689bdcc2006-01-28 08:25:58 +00005656 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5657 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5658 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5659 }
5660 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5661 return DAG.getNode(ISD::CTPOP, VT, Op);
5662 }
5663 case ISD::CTTZ: {
5664 // for now, we use: { return popcount(~x & (x - 1)); }
5665 // unless the target has ctlz but not ctpop, in which case we use:
5666 // { return 32 - nlz(~x & (x-1)); }
5667 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands13237ac2008-06-06 12:08:01 +00005668 MVT VT = Op.getValueType();
Chris Lattner689bdcc2006-01-28 08:25:58 +00005669 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
5670 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
5671 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5672 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5673 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5674 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5675 TLI.isOperationLegal(ISD::CTLZ, VT))
5676 return DAG.getNode(ISD::SUB, VT,
Duncan Sands13237ac2008-06-06 12:08:01 +00005677 DAG.getConstant(VT.getSizeInBits(), VT),
Chris Lattner689bdcc2006-01-28 08:25:58 +00005678 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5679 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5680 }
5681 }
5682}
Chris Lattner2a7f8a92005-01-19 04:19:40 +00005683
Chris Lattnerdc750592005-01-07 07:47:09 +00005684/// ExpandOp - Expand the specified SDOperand into its two component pieces
5685/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5686/// LegalizeNodes map is filled in for any results that are not expanded, the
5687/// ExpandedNodes map is filled in for any results that are expanded, and the
5688/// Lo/Hi values are returned.
5689void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
Duncan Sands13237ac2008-06-06 12:08:01 +00005690 MVT VT = Op.getValueType();
5691 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattnerdc750592005-01-07 07:47:09 +00005692 SDNode *Node = Op.Val;
5693 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands11dd4242008-06-08 20:54:56 +00005694 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands13237ac2008-06-06 12:08:01 +00005695 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattnerdc750592005-01-07 07:47:09 +00005696
Chris Lattner1a570f12005-09-02 20:32:45 +00005697 // See if we already expanded it.
Roman Levensteina3ee1a32008-04-16 16:15:27 +00005698 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
Chris Lattner1a570f12005-09-02 20:32:45 +00005699 = ExpandedNodes.find(Op);
5700 if (I != ExpandedNodes.end()) {
5701 Lo = I->second.first;
5702 Hi = I->second.second;
5703 return;
Chris Lattnerdc750592005-01-07 07:47:09 +00005704 }
5705
Chris Lattnerdc750592005-01-07 07:47:09 +00005706 switch (Node->getOpcode()) {
Chris Lattner44cab002006-01-21 04:27:00 +00005707 case ISD::CopyFromReg:
5708 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen666323e2007-10-10 01:01:31 +00005709 case ISD::FP_ROUND_INREG:
5710 if (VT == MVT::ppcf128 &&
5711 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5712 TargetLowering::Custom) {
Dale Johannesen6472eb62007-10-11 23:32:15 +00005713 SDOperand SrcLo, SrcHi, Src;
5714 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5715 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
5716 SDOperand Result = TLI.LowerOperation(
5717 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Dale Johannesen666323e2007-10-10 01:01:31 +00005718 assert(Result.Val->getOpcode() == ISD::BUILD_PAIR);
5719 Lo = Result.Val->getOperand(0);
5720 Hi = Result.Val->getOperand(1);
5721 break;
5722 }
5723 // fall through
Chris Lattner44cab002006-01-21 04:27:00 +00005724 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00005725#ifndef NDEBUG
Dan Gohmanb4c26902007-06-04 16:17:33 +00005726 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00005727#endif
Chris Lattnerdc750592005-01-07 07:47:09 +00005728 assert(0 && "Do not know how to expand this operator!");
5729 abort();
Dan Gohman66272a52008-02-27 01:52:30 +00005730 case ISD::EXTRACT_ELEMENT:
5731 ExpandOp(Node->getOperand(0), Lo, Hi);
5732 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
5733 return ExpandOp(Hi, Lo, Hi);
Dan Gohmane5e32ec2008-02-27 19:44:57 +00005734 return ExpandOp(Lo, Lo, Hi);
Dale Johannesenb066c1f2007-10-31 00:32:36 +00005735 case ISD::EXTRACT_VECTOR_ELT:
5736 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5737 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5738 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5739 return ExpandOp(Lo, Lo, Hi);
Nate Begemancda9aa72005-04-01 22:34:39 +00005740 case ISD::UNDEF:
5741 Lo = DAG.getNode(ISD::UNDEF, NVT);
5742 Hi = DAG.getNode(ISD::UNDEF, NVT);
5743 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00005744 case ISD::Constant: {
Duncan Sands13237ac2008-06-06 12:08:01 +00005745 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohmanf2bbfa32008-03-03 22:20:46 +00005746 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5747 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5748 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattnerdc750592005-01-07 07:47:09 +00005749 break;
5750 }
Evan Cheng47833a12006-12-12 21:32:44 +00005751 case ISD::ConstantFP: {
5752 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesen007aa372007-10-11 18:07:22 +00005753 if (CFP->getValueType(0) == MVT::ppcf128) {
5754 APInt api = CFP->getValueAPF().convertToAPInt();
5755 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5756 MVT::f64);
5757 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5758 MVT::f64);
5759 break;
5760 }
Evan Cheng3766fc602006-12-12 22:19:28 +00005761 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng22cf8992006-12-13 20:57:08 +00005762 if (getTypeAction(Lo.getValueType()) == Expand)
5763 ExpandOp(Lo, Lo, Hi);
Evan Cheng47833a12006-12-12 21:32:44 +00005764 break;
5765 }
Chris Lattner32e08b72005-03-28 22:03:13 +00005766 case ISD::BUILD_PAIR:
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00005767 // Return the operands.
5768 Lo = Node->getOperand(0);
5769 Hi = Node->getOperand(1);
Chris Lattner32e08b72005-03-28 22:03:13 +00005770 break;
Chris Lattnerf81d5882007-11-24 07:07:01 +00005771
5772 case ISD::MERGE_VALUES:
Chris Lattnercab915f2007-11-24 19:12:15 +00005773 if (Node->getNumValues() == 1) {
5774 ExpandOp(Op.getOperand(0), Lo, Hi);
5775 break;
5776 }
Chris Lattnerf81d5882007-11-24 07:07:01 +00005777 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
5778 assert(Op.ResNo == 0 && Node->getNumValues() == 2 &&
5779 Op.getValue(1).getValueType() == MVT::Other &&
5780 "unhandled MERGE_VALUES");
5781 ExpandOp(Op.getOperand(0), Lo, Hi);
5782 // Remember that we legalized the chain.
5783 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5784 break;
Chris Lattnerb42ce7c2005-12-12 22:27:43 +00005785
5786 case ISD::SIGN_EXTEND_INREG:
5787 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattnerf5839a02006-10-06 17:34:12 +00005788 // sext_inreg the low part if needed.
5789 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5790
5791 // The high part gets the sign extension from the lo-part. This handles
5792 // things like sextinreg V:i64 from i8.
Chris Lattnerb42ce7c2005-12-12 22:27:43 +00005793 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
Duncan Sands13237ac2008-06-06 12:08:01 +00005794 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattnerb42ce7c2005-12-12 22:27:43 +00005795 TLI.getShiftAmountTy()));
Chris Lattnerb42ce7c2005-12-12 22:27:43 +00005796 break;
Chris Lattner32e08b72005-03-28 22:03:13 +00005797
Nate Begeman2fba8a32006-01-14 03:14:10 +00005798 case ISD::BSWAP: {
5799 ExpandOp(Node->getOperand(0), Lo, Hi);
5800 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
5801 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5802 Lo = TempLo;
5803 break;
5804 }
5805
Chris Lattner55e9cde2005-05-11 04:51:16 +00005806 case ISD::CTPOP:
5807 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner3740f392005-05-11 05:09:47 +00005808 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5809 DAG.getNode(ISD::CTPOP, NVT, Lo),
5810 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattner55e9cde2005-05-11 04:51:16 +00005811 Hi = DAG.getConstant(0, NVT);
5812 break;
5813
Chris Lattnercf5f6b02005-05-12 19:05:01 +00005814 case ISD::CTLZ: {
5815 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner0bfd1772005-05-12 19:27:51 +00005816 ExpandOp(Node->getOperand(0), Lo, Hi);
Duncan Sands13237ac2008-06-06 12:08:01 +00005817 SDOperand BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00005818 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Scott Michela6729e82008-03-10 15:42:14 +00005819 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Chris Lattnerd47675e2005-08-09 20:20:18 +00005820 ISD::SETNE);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00005821 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
5822 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5823
5824 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5825 Hi = DAG.getConstant(0, NVT);
5826 break;
5827 }
5828
5829 case ISD::CTTZ: {
5830 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner0bfd1772005-05-12 19:27:51 +00005831 ExpandOp(Node->getOperand(0), Lo, Hi);
Duncan Sands13237ac2008-06-06 12:08:01 +00005832 SDOperand BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00005833 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Scott Michela6729e82008-03-10 15:42:14 +00005834 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Chris Lattnerd47675e2005-08-09 20:20:18 +00005835 ISD::SETNE);
Chris Lattnercf5f6b02005-05-12 19:05:01 +00005836 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
5837 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5838
5839 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5840 Hi = DAG.getConstant(0, NVT);
5841 break;
5842 }
Chris Lattner55e9cde2005-05-11 04:51:16 +00005843
Nate Begemane74795c2006-01-25 18:21:52 +00005844 case ISD::VAARG: {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00005845 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5846 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemane74795c2006-01-25 18:21:52 +00005847 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5848 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5849
5850 // Remember that we legalized the chain.
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00005851 Hi = LegalizeOp(Hi);
Nate Begemane74795c2006-01-25 18:21:52 +00005852 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands7377f5f2008-02-11 10:37:04 +00005853 if (TLI.isBigEndian())
Nate Begemane74795c2006-01-25 18:21:52 +00005854 std::swap(Lo, Hi);
5855 break;
5856 }
5857
Chris Lattnerdc750592005-01-07 07:47:09 +00005858 case ISD::LOAD: {
Evan Chenge71fe34d2006-10-09 20:57:25 +00005859 LoadSDNode *LD = cast<LoadSDNode>(Node);
5860 SDOperand Ch = LD->getChain(); // Legalize the chain.
5861 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
5862 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman2af30632007-07-09 22:18:38 +00005863 int SVOffset = LD->getSrcValueOffset();
5864 unsigned Alignment = LD->getAlignment();
5865 bool isVolatile = LD->isVolatile();
Chris Lattnerdc750592005-01-07 07:47:09 +00005866
Evan Chenge71fe34d2006-10-09 20:57:25 +00005867 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohman2af30632007-07-09 22:18:38 +00005868 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5869 isVolatile, Alignment);
Evan Cheng47833a12006-12-12 21:32:44 +00005870 if (VT == MVT::f32 || VT == MVT::f64) {
5871 // f32->i32 or f64->i64 one to one expansion.
5872 // Remember that we legalized the chain.
5873 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng22cf8992006-12-13 20:57:08 +00005874 // Recursively expand the new load.
5875 if (getTypeAction(NVT) == Expand)
5876 ExpandOp(Lo, Lo, Hi);
Evan Cheng47833a12006-12-12 21:32:44 +00005877 break;
5878 }
Chris Lattner0d03eb42005-01-19 18:02:17 +00005879
Evan Chenge71fe34d2006-10-09 20:57:25 +00005880 // Increment the pointer to the other half.
Duncan Sands13237ac2008-06-06 12:08:01 +00005881 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Evan Chenge71fe34d2006-10-09 20:57:25 +00005882 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner72733e52008-01-17 07:00:52 +00005883 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmana8665142007-06-25 16:23:39 +00005884 SVOffset += IncrementSize;
Duncan Sands1826ded2007-10-28 12:59:45 +00005885 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman2af30632007-07-09 22:18:38 +00005886 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5887 isVolatile, Alignment);
Misha Brukman835702a2005-04-21 22:36:52 +00005888
Evan Chenge71fe34d2006-10-09 20:57:25 +00005889 // Build a factor node to remember that this load is independent of the
5890 // other one.
5891 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5892 Hi.getValue(1));
5893
5894 // Remember that we legalized the chain.
5895 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands7377f5f2008-02-11 10:37:04 +00005896 if (TLI.isBigEndian())
Evan Chenge71fe34d2006-10-09 20:57:25 +00005897 std::swap(Lo, Hi);
5898 } else {
Duncan Sands13237ac2008-06-06 12:08:01 +00005899 MVT EVT = LD->getMemoryVT();
Evan Chenge370e0e2006-12-13 03:19:57 +00005900
Dale Johannesen6802d0c2007-10-19 20:29:00 +00005901 if ((VT == MVT::f64 && EVT == MVT::f32) ||
5902 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Chenge370e0e2006-12-13 03:19:57 +00005903 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
5904 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohman2af30632007-07-09 22:18:38 +00005905 SVOffset, isVolatile, Alignment);
Evan Chenge370e0e2006-12-13 03:19:57 +00005906 // Remember that we legalized the chain.
5907 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
5908 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
5909 break;
5910 }
Evan Chenge71fe34d2006-10-09 20:57:25 +00005911
5912 if (EVT == NVT)
5913 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohman2af30632007-07-09 22:18:38 +00005914 SVOffset, isVolatile, Alignment);
Evan Chenge71fe34d2006-10-09 20:57:25 +00005915 else
5916 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohman2af30632007-07-09 22:18:38 +00005917 SVOffset, EVT, isVolatile,
5918 Alignment);
Evan Chenge71fe34d2006-10-09 20:57:25 +00005919
5920 // Remember that we legalized the chain.
5921 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
5922
5923 if (ExtType == ISD::SEXTLOAD) {
5924 // The high part is obtained by SRA'ing all but one of the bits of the
5925 // lo part.
Duncan Sands13237ac2008-06-06 12:08:01 +00005926 unsigned LoSize = Lo.getValueType().getSizeInBits();
Evan Chenge71fe34d2006-10-09 20:57:25 +00005927 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5928 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
5929 } else if (ExtType == ISD::ZEXTLOAD) {
5930 // The high part is just a zero.
5931 Hi = DAG.getConstant(0, NVT);
5932 } else /* if (ExtType == ISD::EXTLOAD) */ {
5933 // The high part is undefined.
5934 Hi = DAG.getNode(ISD::UNDEF, NVT);
5935 }
5936 }
Chris Lattnerdc750592005-01-07 07:47:09 +00005937 break;
5938 }
Chris Lattnerdc750592005-01-07 07:47:09 +00005939 case ISD::AND:
5940 case ISD::OR:
5941 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
5942 SDOperand LL, LH, RL, RH;
5943 ExpandOp(Node->getOperand(0), LL, LH);
5944 ExpandOp(Node->getOperand(1), RL, RH);
5945 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
5946 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
5947 break;
5948 }
5949 case ISD::SELECT: {
Chris Lattner9dcce6d2006-01-28 07:39:30 +00005950 SDOperand LL, LH, RL, RH;
Chris Lattnerdc750592005-01-07 07:47:09 +00005951 ExpandOp(Node->getOperand(1), LL, LH);
5952 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng884bc092006-12-15 22:42:55 +00005953 if (getTypeAction(NVT) == Expand)
5954 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner9dcce6d2006-01-28 07:39:30 +00005955 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng884bc092006-12-15 22:42:55 +00005956 if (VT != MVT::f32)
5957 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattnerdc750592005-01-07 07:47:09 +00005958 break;
5959 }
Nate Begemane5b86d72005-08-10 20:51:12 +00005960 case ISD::SELECT_CC: {
5961 SDOperand TL, TH, FL, FH;
5962 ExpandOp(Node->getOperand(2), TL, TH);
5963 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng884bc092006-12-15 22:42:55 +00005964 if (getTypeAction(NVT) == Expand)
5965 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begemane5b86d72005-08-10 20:51:12 +00005966 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5967 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng884bc092006-12-15 22:42:55 +00005968 if (VT != MVT::f32)
5969 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5970 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begemane5b86d72005-08-10 20:51:12 +00005971 break;
5972 }
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00005973 case ISD::ANY_EXTEND:
5974 // The low part is any extension of the input (which degenerates to a copy).
5975 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
5976 // The high part is undefined.
5977 Hi = DAG.getNode(ISD::UNDEF, NVT);
5978 break;
Chris Lattnerdc750592005-01-07 07:47:09 +00005979 case ISD::SIGN_EXTEND: {
5980 // The low part is just a sign extension of the input (which degenerates to
5981 // a copy).
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00005982 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukman835702a2005-04-21 22:36:52 +00005983
Chris Lattnerdc750592005-01-07 07:47:09 +00005984 // The high part is obtained by SRA'ing all but one of the bits of the lo
5985 // part.
Duncan Sands13237ac2008-06-06 12:08:01 +00005986 unsigned LoSize = Lo.getValueType().getSizeInBits();
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00005987 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5988 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattnerdc750592005-01-07 07:47:09 +00005989 break;
5990 }
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00005991 case ISD::ZERO_EXTEND:
Chris Lattnerdc750592005-01-07 07:47:09 +00005992 // The low part is just a zero extension of the input (which degenerates to
5993 // a copy).
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00005994 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukman835702a2005-04-21 22:36:52 +00005995
Chris Lattnerdc750592005-01-07 07:47:09 +00005996 // The high part is just a zero.
5997 Hi = DAG.getConstant(0, NVT);
5998 break;
Chris Lattner36e663d2005-12-23 00:16:34 +00005999
Chris Lattner59b27fa372007-02-13 23:55:16 +00006000 case ISD::TRUNCATE: {
6001 // The input value must be larger than this value. Expand *it*.
6002 SDOperand NewLo;
6003 ExpandOp(Node->getOperand(0), NewLo, Hi);
6004
6005 // The low part is now either the right size, or it is closer. If not the
6006 // right size, make an illegal truncate so we recursively expand it.
6007 if (NewLo.getValueType() != Node->getValueType(0))
6008 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6009 ExpandOp(NewLo, Lo, Hi);
6010 break;
6011 }
6012
Chris Lattner36e663d2005-12-23 00:16:34 +00006013 case ISD::BIT_CONVERT: {
Chris Lattnere4bbb6c2006-09-09 00:20:27 +00006014 SDOperand Tmp;
6015 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6016 // If the target wants to, allow it to lower this itself.
6017 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6018 case Expand: assert(0 && "cannot expand FP!");
6019 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6020 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6021 }
6022 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6023 }
6024
Evan Cheng4eee7242006-12-09 02:42:38 +00006025 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng3432ab92006-12-11 19:27:14 +00006026 if (VT == MVT::f32 || VT == MVT::f64) {
6027 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng884bc092006-12-15 22:42:55 +00006028 if (getTypeAction(NVT) == Expand)
6029 ExpandOp(Lo, Lo, Hi);
Evan Cheng0076ca02006-12-12 19:53:13 +00006030 break;
6031 }
6032
6033 // If source operand will be expanded to the same type as VT, i.e.
6034 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands13237ac2008-06-06 12:08:01 +00006035 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng0076ca02006-12-12 19:53:13 +00006036 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6037 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng4eee7242006-12-09 02:42:38 +00006038 break;
6039 }
6040
Chris Lattnere4bbb6c2006-09-09 00:20:27 +00006041 // Turn this into a load/store pair by default.
6042 if (Tmp.Val == 0)
Chris Lattner87bc3e72008-01-16 07:45:30 +00006043 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnere4bbb6c2006-09-09 00:20:27 +00006044
Chris Lattner36e663d2005-12-23 00:16:34 +00006045 ExpandOp(Tmp, Lo, Hi);
6046 break;
6047 }
Andrew Lenharth627cbd42005-11-20 21:32:07 +00006048
Chris Lattnerf81d5882007-11-24 07:07:01 +00006049 case ISD::READCYCLECOUNTER: {
Chris Lattner44c28c22005-11-20 22:56:56 +00006050 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6051 TargetLowering::Custom &&
6052 "Must custom expand ReadCycleCounter");
Chris Lattnerf81d5882007-11-24 07:07:01 +00006053 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6054 assert(Tmp.Val && "Node must be custom expanded!");
6055 ExpandOp(Tmp.getValue(0), Lo, Hi);
Chris Lattner44c28c22005-11-20 22:56:56 +00006056 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattnerf81d5882007-11-24 07:07:01 +00006057 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharth627cbd42005-11-20 21:32:07 +00006058 break;
Chris Lattnerf81d5882007-11-24 07:07:01 +00006059 }
Andrew Lenharth627cbd42005-11-20 21:32:07 +00006060
Mon P Wang6a490372008-06-25 08:15:39 +00006061 case ISD::ATOMIC_CMP_SWAP: {
Andrew Lenharth357061a2008-03-05 01:15:49 +00006062 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6063 assert(Tmp.Val && "Node must be custom expanded!");
6064 ExpandOp(Tmp.getValue(0), Lo, Hi);
6065 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
6066 LegalizeOp(Tmp.getValue(1)));
6067 break;
6068 }
6069
6070
6071
Chris Lattner7e6eeba2005-01-08 19:27:05 +00006072 // These operators cannot be expanded directly, emit them as calls to
6073 // library functions.
Evan Cheng31cbddf2007-01-12 02:11:51 +00006074 case ISD::FP_TO_SINT: {
Chris Lattnerfe68d752005-07-29 00:33:32 +00006075 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattner941d84a2005-07-30 01:40:57 +00006076 SDOperand Op;
6077 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6078 case Expand: assert(0 && "cannot expand FP!");
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00006079 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6080 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattner941d84a2005-07-30 01:40:57 +00006081 }
Jeff Cohen546fd592005-07-30 18:33:25 +00006082
Chris Lattner941d84a2005-07-30 01:40:57 +00006083 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6084
Chris Lattnerfe68d752005-07-29 00:33:32 +00006085 // Now that the custom expander is done, expand the result, which is still
6086 // VT.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00006087 if (Op.Val) {
6088 ExpandOp(Op, Lo, Hi);
6089 break;
6090 }
Chris Lattnerfe68d752005-07-29 00:33:32 +00006091 }
Jeff Cohen546fd592005-07-30 18:33:25 +00006092
Duncan Sands77a3d052008-07-17 02:36:29 +00006093 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6094 VT);
6095 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6096 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00006097 break;
Evan Cheng31cbddf2007-01-12 02:11:51 +00006098 }
Jeff Cohen546fd592005-07-30 18:33:25 +00006099
Evan Cheng31cbddf2007-01-12 02:11:51 +00006100 case ISD::FP_TO_UINT: {
Chris Lattnerfe68d752005-07-29 00:33:32 +00006101 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00006102 SDOperand Op;
6103 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6104 case Expand: assert(0 && "cannot expand FP!");
6105 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6106 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6107 }
6108
6109 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6110
6111 // Now that the custom expander is done, expand the result.
Chris Lattnerdff50ca2005-08-26 00:14:16 +00006112 if (Op.Val) {
6113 ExpandOp(Op, Lo, Hi);
6114 break;
6115 }
Chris Lattnerfe68d752005-07-29 00:33:32 +00006116 }
Jeff Cohen546fd592005-07-30 18:33:25 +00006117
Duncan Sands77a3d052008-07-17 02:36:29 +00006118 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6119 VT);
6120 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6121 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner7e6eeba2005-01-08 19:27:05 +00006122 break;
Evan Cheng31cbddf2007-01-12 02:11:51 +00006123 }
Chris Lattner7e6eeba2005-01-08 19:27:05 +00006124
Evan Cheng870e4f82006-01-09 18:31:59 +00006125 case ISD::SHL: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00006126 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00006127 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00006128 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00006129 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00006130 Op = TLI.LowerOperation(Op, DAG);
6131 if (Op.Val) {
6132 // Now that the custom expander is done, expand the result, which is
6133 // still VT.
6134 ExpandOp(Op, Lo, Hi);
6135 break;
6136 }
6137 }
6138
Chris Lattner72b503b2006-09-13 03:50:39 +00006139 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6140 // this X << 1 as X+X.
6141 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohmanb72127a2008-03-13 22:13:53 +00006142 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Chris Lattner72b503b2006-09-13 03:50:39 +00006143 TLI.isOperationLegal(ISD::ADDE, NVT)) {
6144 SDOperand LoOps[2], HiOps[3];
6145 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6146 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6147 LoOps[1] = LoOps[0];
6148 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6149
6150 HiOps[1] = HiOps[0];
6151 HiOps[2] = Lo.getValue(1);
6152 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6153 break;
6154 }
6155 }
6156
Chris Lattner2a7f8a92005-01-19 04:19:40 +00006157 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00006158 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00006159 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00006160
6161 // If this target supports SHL_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00006162 TargetLowering::LegalizeAction Action =
6163 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6164 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6165 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00006166 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00006167 break;
6168 }
6169
Chris Lattner2a7f8a92005-01-19 04:19:40 +00006170 // Otherwise, emit a libcall.
Duncan Sands844d55a2008-04-12 17:14:18 +00006171 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00006172 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00006173 }
Chris Lattner2a7f8a92005-01-19 04:19:40 +00006174
Evan Cheng870e4f82006-01-09 18:31:59 +00006175 case ISD::SRA: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00006176 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00006177 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00006178 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00006179 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00006180 Op = TLI.LowerOperation(Op, DAG);
6181 if (Op.Val) {
6182 // Now that the custom expander is done, expand the result, which is
6183 // still VT.
6184 ExpandOp(Op, Lo, Hi);
6185 break;
6186 }
6187 }
6188
Chris Lattner2a7f8a92005-01-19 04:19:40 +00006189 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00006190 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00006191 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00006192
6193 // If this target supports SRA_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00006194 TargetLowering::LegalizeAction Action =
6195 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6196 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6197 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00006198 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00006199 break;
6200 }
6201
Chris Lattner2a7f8a92005-01-19 04:19:40 +00006202 // Otherwise, emit a libcall.
Duncan Sands844d55a2008-04-12 17:14:18 +00006203 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00006204 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00006205 }
6206
6207 case ISD::SRL: {
Chris Lattner8a1a5f22005-08-31 19:01:53 +00006208 // If the target wants custom lowering, do so.
Chris Lattner44cab002006-01-21 04:27:00 +00006209 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner8a1a5f22005-08-31 19:01:53 +00006210 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00006211 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner8a1a5f22005-08-31 19:01:53 +00006212 Op = TLI.LowerOperation(Op, DAG);
6213 if (Op.Val) {
6214 // Now that the custom expander is done, expand the result, which is
6215 // still VT.
6216 ExpandOp(Op, Lo, Hi);
6217 break;
6218 }
6219 }
6220
Chris Lattner2a7f8a92005-01-19 04:19:40 +00006221 // If we can emit an efficient shift operation, do so now.
Chris Lattner44cab002006-01-21 04:27:00 +00006222 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattner2a7f8a92005-01-19 04:19:40 +00006223 break;
Chris Lattner2e5872c2005-04-02 03:38:53 +00006224
6225 // If this target supports SRL_PARTS, use it.
Evan Cheng870e4f82006-01-09 18:31:59 +00006226 TargetLowering::LegalizeAction Action =
6227 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6228 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6229 Action == TargetLowering::Custom) {
Chris Lattner44cab002006-01-21 04:27:00 +00006230 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner2e5872c2005-04-02 03:38:53 +00006231 break;
6232 }
6233
Chris Lattner2a7f8a92005-01-19 04:19:40 +00006234 // Otherwise, emit a libcall.
Duncan Sands844d55a2008-04-12 17:14:18 +00006235 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattner2a7f8a92005-01-19 04:19:40 +00006236 break;
Evan Cheng870e4f82006-01-09 18:31:59 +00006237 }
Chris Lattner2a7f8a92005-01-19 04:19:40 +00006238
Misha Brukman835702a2005-04-21 22:36:52 +00006239 case ISD::ADD:
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00006240 case ISD::SUB: {
6241 // If the target wants to custom expand this, let them.
6242 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6243 TargetLowering::Custom) {
Duncan Sands5fb92e52008-06-22 09:42:16 +00006244 SDOperand Result = TLI.LowerOperation(Op, DAG);
6245 if (Result.Val) {
6246 ExpandOp(Result, Lo, Hi);
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00006247 break;
6248 }
6249 }
6250
6251 // Expand the subcomponents.
6252 SDOperand LHSL, LHSH, RHSL, RHSH;
6253 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6254 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner72b503b2006-09-13 03:50:39 +00006255 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6256 SDOperand LoOps[2], HiOps[3];
Chris Lattnerc24a1d32006-08-08 02:23:42 +00006257 LoOps[0] = LHSL;
6258 LoOps[1] = RHSL;
6259 HiOps[0] = LHSH;
6260 HiOps[1] = RHSH;
Nate Begeman5965bd12006-02-17 05:43:56 +00006261 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner72b503b2006-09-13 03:50:39 +00006262 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00006263 HiOps[2] = Lo.getValue(1);
Chris Lattner72b503b2006-09-13 03:50:39 +00006264 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman5965bd12006-02-17 05:43:56 +00006265 } else {
Chris Lattner72b503b2006-09-13 03:50:39 +00006266 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerc24a1d32006-08-08 02:23:42 +00006267 HiOps[2] = Lo.getValue(1);
Chris Lattner72b503b2006-09-13 03:50:39 +00006268 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman5965bd12006-02-17 05:43:56 +00006269 }
Chris Lattnerb3f83b282005-01-20 18:52:28 +00006270 break;
Chris Lattnerfd4a7f72006-01-28 05:07:51 +00006271 }
Chris Lattner2135bc02007-05-17 18:15:41 +00006272
6273 case ISD::ADDC:
6274 case ISD::SUBC: {
6275 // Expand the subcomponents.
6276 SDOperand LHSL, LHSH, RHSL, RHSH;
6277 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6278 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6279 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6280 SDOperand LoOps[2] = { LHSL, RHSL };
6281 SDOperand HiOps[3] = { LHSH, RHSH };
6282
6283 if (Node->getOpcode() == ISD::ADDC) {
6284 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6285 HiOps[2] = Lo.getValue(1);
6286 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6287 } else {
6288 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6289 HiOps[2] = Lo.getValue(1);
6290 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6291 }
6292 // Remember that we legalized the flag.
6293 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6294 break;
6295 }
6296 case ISD::ADDE:
6297 case ISD::SUBE: {
6298 // Expand the subcomponents.
6299 SDOperand LHSL, LHSH, RHSL, RHSH;
6300 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6301 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6302 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6303 SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6304 SDOperand HiOps[3] = { LHSH, RHSH };
6305
6306 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6307 HiOps[2] = Lo.getValue(1);
6308 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6309
6310 // Remember that we legalized the flag.
6311 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6312 break;
6313 }
Nate Begemanadd0c632005-04-11 03:01:51 +00006314 case ISD::MUL: {
Chris Lattnerfbadbda2006-09-16 00:09:24 +00006315 // If the target wants to custom expand this, let them.
6316 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattnere50f5d12006-09-16 05:08:34 +00006317 SDOperand New = TLI.LowerOperation(Op, DAG);
6318 if (New.Val) {
6319 ExpandOp(New, Lo, Hi);
Chris Lattnerfbadbda2006-09-16 00:09:24 +00006320 break;
6321 }
6322 }
6323
Evan Chenge93762d2006-09-01 18:17:58 +00006324 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6325 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohmana1603612007-10-08 18:33:35 +00006326 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6327 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6328 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Nate Begemanadd0c632005-04-11 03:01:51 +00006329 SDOperand LL, LH, RL, RH;
6330 ExpandOp(Node->getOperand(0), LL, LH);
6331 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman1f372ed2008-02-25 21:11:39 +00006332 unsigned OuterBitSize = Op.getValueSizeInBits();
6333 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohmana1603612007-10-08 18:33:35 +00006334 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6335 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman272e2342008-03-10 20:42:19 +00006336 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6337 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6338 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohmana1603612007-10-08 18:33:35 +00006339 // The inputs are both zero-extended.
6340 if (HasUMUL_LOHI) {
6341 // We can emit a umul_lohi.
6342 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6343 Hi = SDOperand(Lo.Val, 1);
6344 break;
6345 }
6346 if (HasMULHU) {
6347 // We can emit a mulhu+mul.
6348 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6349 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6350 break;
6351 }
Dan Gohmana1603612007-10-08 18:33:35 +00006352 }
Dan Gohman1f372ed2008-02-25 21:11:39 +00006353 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohmana1603612007-10-08 18:33:35 +00006354 // The input values are both sign-extended.
6355 if (HasSMUL_LOHI) {
6356 // We can emit a smul_lohi.
6357 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6358 Hi = SDOperand(Lo.Val, 1);
6359 break;
6360 }
6361 if (HasMULHS) {
6362 // We can emit a mulhs+mul.
6363 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6364 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6365 break;
6366 }
6367 }
6368 if (HasUMUL_LOHI) {
6369 // Lo,Hi = umul LHS, RHS.
6370 SDOperand UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
6371 DAG.getVTList(NVT, NVT), LL, RL);
6372 Lo = UMulLOHI;
6373 Hi = UMulLOHI.getValue(1);
Nate Begeman43144a22005-08-30 02:44:00 +00006374 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6375 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6376 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6377 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattner1b633912006-09-16 00:21:44 +00006378 break;
Nate Begeman43144a22005-08-30 02:44:00 +00006379 }
Dale Johannesena4a972e2007-10-24 22:26:08 +00006380 if (HasMULHU) {
6381 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6382 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6383 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6384 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6385 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6386 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6387 break;
6388 }
Nate Begemanadd0c632005-04-11 03:01:51 +00006389 }
Evan Chenge93762d2006-09-01 18:17:58 +00006390
Dan Gohmana1603612007-10-08 18:33:35 +00006391 // If nothing else, we can make a libcall.
Duncan Sands844d55a2008-04-12 17:14:18 +00006392 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanadd0c632005-04-11 03:01:51 +00006393 break;
6394 }
Evan Cheng31cbddf2007-01-12 02:11:51 +00006395 case ISD::SDIV:
Duncan Sands844d55a2008-04-12 17:14:18 +00006396 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng31cbddf2007-01-12 02:11:51 +00006397 break;
6398 case ISD::UDIV:
Duncan Sands844d55a2008-04-12 17:14:18 +00006399 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng31cbddf2007-01-12 02:11:51 +00006400 break;
6401 case ISD::SREM:
Duncan Sands844d55a2008-04-12 17:14:18 +00006402 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng31cbddf2007-01-12 02:11:51 +00006403 break;
6404 case ISD::UREM:
Duncan Sands844d55a2008-04-12 17:14:18 +00006405 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng31cbddf2007-01-12 02:11:51 +00006406 break;
Evan Cheng97a750f2006-12-12 21:51:17 +00006407
Evan Cheng4eee7242006-12-09 02:42:38 +00006408 case ISD::FADD:
Duncan Sands844d55a2008-04-12 17:14:18 +00006409 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6410 RTLIB::ADD_F64,
6411 RTLIB::ADD_F80,
6412 RTLIB::ADD_PPCF128),
Evan Cheng31cbddf2007-01-12 02:11:51 +00006413 Node, false, Hi);
Evan Cheng4eee7242006-12-09 02:42:38 +00006414 break;
6415 case ISD::FSUB:
Duncan Sands844d55a2008-04-12 17:14:18 +00006416 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6417 RTLIB::SUB_F64,
6418 RTLIB::SUB_F80,
6419 RTLIB::SUB_PPCF128),
Evan Cheng31cbddf2007-01-12 02:11:51 +00006420 Node, false, Hi);
Evan Cheng4eee7242006-12-09 02:42:38 +00006421 break;
6422 case ISD::FMUL:
Duncan Sands844d55a2008-04-12 17:14:18 +00006423 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6424 RTLIB::MUL_F64,
6425 RTLIB::MUL_F80,
6426 RTLIB::MUL_PPCF128),
Evan Cheng31cbddf2007-01-12 02:11:51 +00006427 Node, false, Hi);
Evan Cheng4eee7242006-12-09 02:42:38 +00006428 break;
6429 case ISD::FDIV:
Duncan Sands844d55a2008-04-12 17:14:18 +00006430 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6431 RTLIB::DIV_F64,
6432 RTLIB::DIV_F80,
6433 RTLIB::DIV_PPCF128),
Evan Cheng31cbddf2007-01-12 02:11:51 +00006434 Node, false, Hi);
Evan Cheng4eee7242006-12-09 02:42:38 +00006435 break;
Duncan Sands77a3d052008-07-17 02:36:29 +00006436 case ISD::FP_EXTEND: {
Dale Johannesen05ff9e82007-10-12 01:37:08 +00006437 if (VT == MVT::ppcf128) {
6438 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6439 Node->getOperand(0).getValueType()==MVT::f64);
6440 const uint64_t zero = 0;
6441 if (Node->getOperand(0).getValueType()==MVT::f32)
6442 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6443 else
6444 Hi = Node->getOperand(0);
6445 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6446 break;
6447 }
Duncan Sands77a3d052008-07-17 02:36:29 +00006448 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
6449 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
6450 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng4eee7242006-12-09 02:42:38 +00006451 break;
Duncan Sands77a3d052008-07-17 02:36:29 +00006452 }
6453 case ISD::FP_ROUND: {
6454 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
6455 VT);
6456 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
6457 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng4eee7242006-12-09 02:42:38 +00006458 break;
Duncan Sands77a3d052008-07-17 02:36:29 +00006459 }
Lauro Ramos Venancioa392cd22007-08-15 22:13:27 +00006460 case ISD::FPOWI:
Duncan Sands844d55a2008-04-12 17:14:18 +00006461 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::POWI_F32,
6462 RTLIB::POWI_F64,
6463 RTLIB::POWI_F80,
6464 RTLIB::POWI_PPCF128),
Lauro Ramos Venancioa392cd22007-08-15 22:13:27 +00006465 Node, false, Hi);
6466 break;
Evan Chengf3a80c62006-12-13 02:38:13 +00006467 case ISD::FSQRT:
6468 case ISD::FSIN:
6469 case ISD::FCOS: {
Evan Cheng31cbddf2007-01-12 02:11:51 +00006470 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Chengf3a80c62006-12-13 02:38:13 +00006471 switch(Node->getOpcode()) {
Evan Cheng31cbddf2007-01-12 02:11:51 +00006472 case ISD::FSQRT:
Duncan Sands53c954f2008-01-10 10:28:30 +00006473 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6474 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng31cbddf2007-01-12 02:11:51 +00006475 break;
6476 case ISD::FSIN:
Duncan Sands53c954f2008-01-10 10:28:30 +00006477 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6478 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng31cbddf2007-01-12 02:11:51 +00006479 break;
6480 case ISD::FCOS:
Duncan Sands53c954f2008-01-10 10:28:30 +00006481 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6482 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng31cbddf2007-01-12 02:11:51 +00006483 break;
Evan Chengf3a80c62006-12-13 02:38:13 +00006484 default: assert(0 && "Unreachable!");
6485 }
Duncan Sands844d55a2008-04-12 17:14:18 +00006486 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Chengf3a80c62006-12-13 02:38:13 +00006487 break;
6488 }
Evan Cheng388cbbf2006-12-16 00:52:40 +00006489 case ISD::FABS: {
Dale Johannesen61c574f2007-10-12 19:02:17 +00006490 if (VT == MVT::ppcf128) {
6491 SDOperand Tmp;
6492 ExpandOp(Node->getOperand(0), Lo, Tmp);
6493 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6494 // lo = hi==fabs(hi) ? lo : -lo;
6495 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6496 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6497 DAG.getCondCode(ISD::SETEQ));
6498 break;
6499 }
Evan Cheng388cbbf2006-12-16 00:52:40 +00006500 SDOperand Mask = (VT == MVT::f64)
6501 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6502 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6503 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6504 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6505 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6506 if (getTypeAction(NVT) == Expand)
6507 ExpandOp(Lo, Lo, Hi);
6508 break;
6509 }
6510 case ISD::FNEG: {
Dale Johannesen61c574f2007-10-12 19:02:17 +00006511 if (VT == MVT::ppcf128) {
6512 ExpandOp(Node->getOperand(0), Lo, Hi);
6513 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6514 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6515 break;
6516 }
Evan Cheng388cbbf2006-12-16 00:52:40 +00006517 SDOperand Mask = (VT == MVT::f64)
6518 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6519 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6520 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6521 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6522 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6523 if (getTypeAction(NVT) == Expand)
6524 ExpandOp(Lo, Lo, Hi);
6525 break;
6526 }
Evan Cheng003feb02007-01-04 21:56:39 +00006527 case ISD::FCOPYSIGN: {
6528 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6529 if (getTypeAction(NVT) == Expand)
6530 ExpandOp(Lo, Lo, Hi);
6531 break;
6532 }
Evan Cheng9ad6edf2006-12-19 01:44:04 +00006533 case ISD::SINT_TO_FP:
6534 case ISD::UINT_TO_FP: {
6535 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands13237ac2008-06-06 12:08:01 +00006536 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesen12c76db2008-03-18 17:28:38 +00006537
6538 // Promote the operand if needed. Do this before checking for
6539 // ppcf128 so conversions of i16 and i8 work.
6540 if (getTypeAction(SrcVT) == Promote) {
6541 SDOperand Tmp = PromoteOp(Node->getOperand(0));
6542 Tmp = isSigned
6543 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6544 DAG.getValueType(SrcVT))
6545 : DAG.getZeroExtendInReg(Tmp, SrcVT);
6546 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
6547 SrcVT = Node->getOperand(0).getValueType();
6548 }
6549
Dan Gohmanf4300952008-03-10 23:03:31 +00006550 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohman432e4a62008-02-25 21:39:34 +00006551 static const uint64_t zero = 0;
Dale Johannesen05ff9e82007-10-12 01:37:08 +00006552 if (isSigned) {
6553 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6554 Node->getOperand(0)));
6555 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6556 } else {
Dan Gohman432e4a62008-02-25 21:39:34 +00006557 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesen05ff9e82007-10-12 01:37:08 +00006558 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6559 Node->getOperand(0)));
6560 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6561 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesena1a4a9e2007-10-12 17:52:03 +00006562 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen05ff9e82007-10-12 01:37:08 +00006563 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6564 DAG.getConstant(0, MVT::i32),
6565 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6566 DAG.getConstantFP(
6567 APFloat(APInt(128, 2, TwoE32)),
6568 MVT::ppcf128)),
6569 Hi,
6570 DAG.getCondCode(ISD::SETLT)),
6571 Lo, Hi);
6572 }
6573 break;
6574 }
Dale Johannesena1a4a9e2007-10-12 17:52:03 +00006575 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6576 // si64->ppcf128 done by libcall, below
Dan Gohman432e4a62008-02-25 21:39:34 +00006577 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesena1a4a9e2007-10-12 17:52:03 +00006578 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6579 Lo, Hi);
6580 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6581 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6582 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6583 DAG.getConstant(0, MVT::i64),
6584 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6585 DAG.getConstantFP(
6586 APFloat(APInt(128, 2, TwoE64)),
6587 MVT::ppcf128)),
6588 Hi,
6589 DAG.getCondCode(ISD::SETLT)),
6590 Lo, Hi);
6591 break;
6592 }
Evan Cheng9ad6edf2006-12-19 01:44:04 +00006593
Dan Gohmanf4300952008-03-10 23:03:31 +00006594 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6595 Node->getOperand(0));
Evan Cheng86e476b2008-04-01 01:50:16 +00006596 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng611abc02008-04-01 01:51:26 +00006597 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng86e476b2008-04-01 01:50:16 +00006598 ExpandOp(Lo, Lo, Hi);
Evan Cheng9ad6edf2006-12-19 01:44:04 +00006599 break;
6600 }
Evan Chengf3a80c62006-12-13 02:38:13 +00006601 }
Chris Lattnerdc750592005-01-07 07:47:09 +00006602
Chris Lattnerac12f682005-12-21 18:02:52 +00006603 // Make sure the resultant values have been legalized themselves, unless this
6604 // is a type that requires multi-step expansion.
6605 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6606 Lo = LegalizeOp(Lo);
Evan Cheng3432ab92006-12-11 19:27:14 +00006607 if (Hi.Val)
6608 // Don't legalize the high part if it is expanded to a single node.
6609 Hi = LegalizeOp(Hi);
Chris Lattnerac12f682005-12-21 18:02:52 +00006610 }
Evan Cheng870e4f82006-01-09 18:31:59 +00006611
6612 // Remember in a map if the values will be reused later.
Dan Gohman38740a92008-07-07 17:46:23 +00006613 bool isNew =
6614 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng870e4f82006-01-09 18:31:59 +00006615 assert(isNew && "Value already expanded?!?");
Chris Lattnerdc750592005-01-07 07:47:09 +00006616}
6617
Dan Gohmana8665142007-06-25 16:23:39 +00006618/// SplitVectorOp - Given an operand of vector type, break it down into
6619/// two smaller values, still of vector type.
Chris Lattner32206f52006-03-18 01:44:44 +00006620void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
6621 SDOperand &Hi) {
Duncan Sands13237ac2008-06-06 12:08:01 +00006622 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Chris Lattner32206f52006-03-18 01:44:44 +00006623 SDNode *Node = Op.Val;
Duncan Sands13237ac2008-06-06 12:08:01 +00006624 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattner32206f52006-03-18 01:44:44 +00006625 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begemanbd117f02007-11-15 21:15:26 +00006626
Duncan Sands13237ac2008-06-06 12:08:01 +00006627 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begemanbd117f02007-11-15 21:15:26 +00006628
6629 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6630 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6631
Duncan Sands13237ac2008-06-06 12:08:01 +00006632 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
6633 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begemanbd117f02007-11-15 21:15:26 +00006634
Chris Lattner32206f52006-03-18 01:44:44 +00006635 // See if we already split it.
6636 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
6637 = SplitNodes.find(Op);
6638 if (I != SplitNodes.end()) {
6639 Lo = I->second.first;
6640 Hi = I->second.second;
6641 return;
6642 }
6643
6644 switch (Node->getOpcode()) {
Jim Laskeyc3d341e2006-07-11 17:58:07 +00006645 default:
6646#ifndef NDEBUG
Dan Gohmanb4c26902007-06-04 16:17:33 +00006647 Node->dump(&DAG);
Jim Laskeyc3d341e2006-07-11 17:58:07 +00006648#endif
6649 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattner67d77942007-11-19 20:21:32 +00006650 case ISD::UNDEF:
6651 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6652 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6653 break;
Dan Gohmana8665142007-06-25 16:23:39 +00006654 case ISD::BUILD_PAIR:
6655 Lo = Node->getOperand(0);
6656 Hi = Node->getOperand(1);
6657 break;
Dan Gohmana90183e2007-09-28 23:53:40 +00006658 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman6f94f612008-04-25 18:07:40 +00006659 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6660 SplitVectorOp(Node->getOperand(0), Lo, Hi);
6661 unsigned Index = Idx->getValue();
6662 SDOperand ScalarOp = Node->getOperand(1);
6663 if (Index < NewNumElts_Lo)
6664 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6665 DAG.getIntPtrConstant(Index));
6666 else
6667 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6668 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6669 break;
6670 }
6671 SDOperand Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
6672 Node->getOperand(1),
6673 Node->getOperand(2));
6674 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohmana90183e2007-09-28 23:53:40 +00006675 break;
6676 }
Chris Lattner6fa95ec2007-11-19 21:16:54 +00006677 case ISD::VECTOR_SHUFFLE: {
6678 // Build the low part.
6679 SDOperand Mask = Node->getOperand(2);
6680 SmallVector<SDOperand, 8> Ops;
Duncan Sands13237ac2008-06-06 12:08:01 +00006681 MVT PtrVT = TLI.getPointerTy();
Chris Lattner6fa95ec2007-11-19 21:16:54 +00006682
6683 // Insert all of the elements from the input that are needed. We use
6684 // buildvector of extractelement here because the input vectors will have
6685 // to be legalized, so this makes the code simpler.
6686 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Nate Begeman63eb03f2008-03-14 00:53:31 +00006687 SDOperand IdxNode = Mask.getOperand(i);
6688 if (IdxNode.getOpcode() == ISD::UNDEF) {
6689 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6690 continue;
6691 }
6692 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6fa95ec2007-11-19 21:16:54 +00006693 SDOperand InVec = Node->getOperand(0);
6694 if (Idx >= NumElements) {
6695 InVec = Node->getOperand(1);
6696 Idx -= NumElements;
6697 }
6698 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6699 DAG.getConstant(Idx, PtrVT)));
6700 }
6701 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6702 Ops.clear();
6703
6704 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Nate Begeman63eb03f2008-03-14 00:53:31 +00006705 SDOperand IdxNode = Mask.getOperand(i);
6706 if (IdxNode.getOpcode() == ISD::UNDEF) {
6707 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6708 continue;
6709 }
6710 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6fa95ec2007-11-19 21:16:54 +00006711 SDOperand InVec = Node->getOperand(0);
6712 if (Idx >= NumElements) {
6713 InVec = Node->getOperand(1);
6714 Idx -= NumElements;
6715 }
6716 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6717 DAG.getConstant(Idx, PtrVT)));
6718 }
6719 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6720 break;
6721 }
Dan Gohmana8665142007-06-25 16:23:39 +00006722 case ISD::BUILD_VECTOR: {
Chris Lattnerc24a1d32006-08-08 02:23:42 +00006723 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
Nate Begemanbd117f02007-11-15 21:15:26 +00006724 Node->op_begin()+NewNumElts_Lo);
6725 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattner32206f52006-03-18 01:44:44 +00006726
Nate Begemanbd117f02007-11-15 21:15:26 +00006727 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohmana8665142007-06-25 16:23:39 +00006728 Node->op_end());
Nate Begemanbd117f02007-11-15 21:15:26 +00006729 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattner32206f52006-03-18 01:44:44 +00006730 break;
6731 }
Dan Gohmana8665142007-06-25 16:23:39 +00006732 case ISD::CONCAT_VECTORS: {
Nate Begemanbd117f02007-11-15 21:15:26 +00006733 // FIXME: Handle non-power-of-two vectors?
Dan Gohmana8665142007-06-25 16:23:39 +00006734 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6735 if (NewNumSubvectors == 1) {
6736 Lo = Node->getOperand(0);
6737 Hi = Node->getOperand(1);
6738 } else {
6739 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
6740 Node->op_begin()+NewNumSubvectors);
Nate Begemanbd117f02007-11-15 21:15:26 +00006741 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman26455c42007-06-13 15:12:02 +00006742
Dan Gohmana8665142007-06-25 16:23:39 +00006743 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors,
6744 Node->op_end());
Nate Begemanbd117f02007-11-15 21:15:26 +00006745 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohmana8665142007-06-25 16:23:39 +00006746 }
Dan Gohman26455c42007-06-13 15:12:02 +00006747 break;
6748 }
Dan Gohman8f518b982007-10-17 14:48:28 +00006749 case ISD::SELECT: {
6750 SDOperand Cond = Node->getOperand(0);
6751
6752 SDOperand LL, LH, RL, RH;
6753 SplitVectorOp(Node->getOperand(1), LL, LH);
6754 SplitVectorOp(Node->getOperand(2), RL, RH);
6755
Duncan Sands13237ac2008-06-06 12:08:01 +00006756 if (Cond.getValueType().isVector()) {
Dan Gohman8f518b982007-10-17 14:48:28 +00006757 // Handle a vector merge.
6758 SDOperand CL, CH;
6759 SplitVectorOp(Cond, CL, CH);
Nate Begemanbd117f02007-11-15 21:15:26 +00006760 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6761 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohman8f518b982007-10-17 14:48:28 +00006762 } else {
6763 // Handle a simple select with vector operands.
Nate Begemanbd117f02007-11-15 21:15:26 +00006764 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6765 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohman8f518b982007-10-17 14:48:28 +00006766 }
6767 break;
6768 }
Chris Lattner9d3740e2008-06-30 02:43:01 +00006769 case ISD::SELECT_CC: {
6770 SDOperand CondLHS = Node->getOperand(0);
6771 SDOperand CondRHS = Node->getOperand(1);
6772 SDOperand CondCode = Node->getOperand(4);
6773
6774 SDOperand LL, LH, RL, RH;
6775 SplitVectorOp(Node->getOperand(2), LL, LH);
6776 SplitVectorOp(Node->getOperand(3), RL, RH);
6777
6778 // Handle a simple select with vector operands.
6779 Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS,
6780 LL, RL, CondCode);
6781 Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS,
6782 LH, RH, CondCode);
6783 break;
6784 }
Nate Begemancfcb5602008-05-12 19:40:03 +00006785 case ISD::VSETCC: {
6786 SDOperand LL, LH, RL, RH;
6787 SplitVectorOp(Node->getOperand(0), LL, LH);
6788 SplitVectorOp(Node->getOperand(1), RL, RH);
6789 Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
6790 Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
6791 break;
6792 }
Dan Gohmana8665142007-06-25 16:23:39 +00006793 case ISD::ADD:
6794 case ISD::SUB:
6795 case ISD::MUL:
6796 case ISD::FADD:
6797 case ISD::FSUB:
6798 case ISD::FMUL:
6799 case ISD::SDIV:
6800 case ISD::UDIV:
6801 case ISD::FDIV:
Dan Gohman2a7de412007-10-11 23:57:53 +00006802 case ISD::FPOW:
Dan Gohmana8665142007-06-25 16:23:39 +00006803 case ISD::AND:
6804 case ISD::OR:
Dan Gohman36347a22007-11-19 15:15:03 +00006805 case ISD::XOR:
6806 case ISD::UREM:
6807 case ISD::SREM:
6808 case ISD::FREM: {
Chris Lattner32206f52006-03-18 01:44:44 +00006809 SDOperand LL, LH, RL, RH;
6810 SplitVectorOp(Node->getOperand(0), LL, LH);
6811 SplitVectorOp(Node->getOperand(1), RL, RH);
6812
Nate Begemanbd117f02007-11-15 21:15:26 +00006813 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
6814 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattner32206f52006-03-18 01:44:44 +00006815 break;
6816 }
Dan Gohman2a7de412007-10-11 23:57:53 +00006817 case ISD::FPOWI: {
6818 SDOperand L, H;
6819 SplitVectorOp(Node->getOperand(0), L, H);
6820
Nate Begemanbd117f02007-11-15 21:15:26 +00006821 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
6822 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman2a7de412007-10-11 23:57:53 +00006823 break;
6824 }
6825 case ISD::CTTZ:
6826 case ISD::CTLZ:
6827 case ISD::CTPOP:
6828 case ISD::FNEG:
6829 case ISD::FABS:
6830 case ISD::FSQRT:
6831 case ISD::FSIN:
Nate Begemand4d45c22007-11-17 03:58:34 +00006832 case ISD::FCOS:
6833 case ISD::FP_TO_SINT:
6834 case ISD::FP_TO_UINT:
6835 case ISD::SINT_TO_FP:
6836 case ISD::UINT_TO_FP: {
Dan Gohman2a7de412007-10-11 23:57:53 +00006837 SDOperand L, H;
6838 SplitVectorOp(Node->getOperand(0), L, H);
6839
Nate Begemanbd117f02007-11-15 21:15:26 +00006840 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
6841 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman2a7de412007-10-11 23:57:53 +00006842 break;
6843 }
Dan Gohmana8665142007-06-25 16:23:39 +00006844 case ISD::LOAD: {
6845 LoadSDNode *LD = cast<LoadSDNode>(Node);
6846 SDOperand Ch = LD->getChain();
6847 SDOperand Ptr = LD->getBasePtr();
6848 const Value *SV = LD->getSrcValue();
6849 int SVOffset = LD->getSrcValueOffset();
6850 unsigned Alignment = LD->getAlignment();
6851 bool isVolatile = LD->isVolatile();
6852
Nate Begemanbd117f02007-11-15 21:15:26 +00006853 Lo = DAG.getLoad(NewVT_Lo, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Duncan Sands13237ac2008-06-06 12:08:01 +00006854 unsigned IncrementSize = NewNumElts_Lo * NewEltVT.getSizeInBits()/8;
Chris Lattner32206f52006-03-18 01:44:44 +00006855 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner72733e52008-01-17 07:00:52 +00006856 DAG.getIntPtrConstant(IncrementSize));
Dan Gohmana8665142007-06-25 16:23:39 +00006857 SVOffset += IncrementSize;
Duncan Sands1826ded2007-10-28 12:59:45 +00006858 Alignment = MinAlign(Alignment, IncrementSize);
Nate Begemanbd117f02007-11-15 21:15:26 +00006859 Hi = DAG.getLoad(NewVT_Hi, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Chris Lattner32206f52006-03-18 01:44:44 +00006860
6861 // Build a factor node to remember that this load is independent of the
6862 // other one.
6863 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
6864 Hi.getValue(1));
6865
6866 // Remember that we legalized the chain.
6867 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattner32206f52006-03-18 01:44:44 +00006868 break;
6869 }
Dan Gohmana8665142007-06-25 16:23:39 +00006870 case ISD::BIT_CONVERT: {
Chris Lattnerd7c4e7d2006-03-23 21:16:34 +00006871 // We know the result is a vector. The input may be either a vector or a
6872 // scalar value.
Dan Gohman0de76942007-06-29 00:09:08 +00006873 SDOperand InOp = Node->getOperand(0);
Duncan Sands13237ac2008-06-06 12:08:01 +00006874 if (!InOp.getValueType().isVector() ||
6875 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman0de76942007-06-29 00:09:08 +00006876 // The input is a scalar or single-element vector.
6877 // Lower to a store/load so that it can be split.
6878 // FIXME: this could be improved probably.
Mon P Wang97432f42008-07-15 05:28:34 +00006879 unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment(
6880 Op.getValueType().getTypeForMVT());
6881 SDOperand Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Dan Gohman02c7c6c2008-07-11 22:44:52 +00006882 int FI = cast<FrameIndexSDNode>(Ptr.Val)->getIndex();
Chris Lattnerd7c4e7d2006-03-23 21:16:34 +00006883
Evan Chengdf9ac472006-10-05 23:01:46 +00006884 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman2d489b52008-02-06 22:27:42 +00006885 InOp, Ptr,
Dan Gohman02c7c6c2008-07-11 22:44:52 +00006886 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohman2d489b52008-02-06 22:27:42 +00006887 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohman02c7c6c2008-07-11 22:44:52 +00006888 PseudoSourceValue::getFixedStack(FI), 0);
Chris Lattnerd7c4e7d2006-03-23 21:16:34 +00006889 }
Dan Gohman0de76942007-06-29 00:09:08 +00006890 // Split the vector and convert each of the pieces now.
6891 SplitVectorOp(InOp, Lo, Hi);
Nate Begemanbd117f02007-11-15 21:15:26 +00006892 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
6893 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman0de76942007-06-29 00:09:08 +00006894 break;
Chris Lattnerd7c4e7d2006-03-23 21:16:34 +00006895 }
Chris Lattner32206f52006-03-18 01:44:44 +00006896 }
6897
6898 // Remember in a map if the values will be reused later.
Chris Lattner4b0ddb22007-02-04 01:17:38 +00006899 bool isNew =
Chris Lattner32206f52006-03-18 01:44:44 +00006900 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman0de76942007-06-29 00:09:08 +00006901 assert(isNew && "Value already split?!?");
Chris Lattner32206f52006-03-18 01:44:44 +00006902}
6903
6904
Dan Gohmanf4e86da2007-06-27 14:06:22 +00006905/// ScalarizeVectorOp - Given an operand of single-element vector type
6906/// (e.g. v1f32), convert it into the equivalent operation that returns a
6907/// scalar (e.g. f32) value.
Dan Gohmana8665142007-06-25 16:23:39 +00006908SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) {
Duncan Sands13237ac2008-06-06 12:08:01 +00006909 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Chris Lattner32206f52006-03-18 01:44:44 +00006910 SDNode *Node = Op.Val;
Duncan Sands13237ac2008-06-06 12:08:01 +00006911 MVT NewVT = Op.getValueType().getVectorElementType();
6912 assert(Op.getValueType().getVectorNumElements() == 1);
Chris Lattner32206f52006-03-18 01:44:44 +00006913
Dan Gohmana8665142007-06-25 16:23:39 +00006914 // See if we already scalarized it.
6915 std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op);
6916 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattner32206f52006-03-18 01:44:44 +00006917
6918 SDOperand Result;
6919 switch (Node->getOpcode()) {
Chris Lattner29b23012006-03-19 01:17:20 +00006920 default:
Jim Laskeyc3d341e2006-07-11 17:58:07 +00006921#ifndef NDEBUG
Dan Gohmanb4c26902007-06-04 16:17:33 +00006922 Node->dump(&DAG); cerr << "\n";
Jim Laskeyc3d341e2006-07-11 17:58:07 +00006923#endif
Dan Gohmana8665142007-06-25 16:23:39 +00006924 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
6925 case ISD::ADD:
6926 case ISD::FADD:
6927 case ISD::SUB:
6928 case ISD::FSUB:
6929 case ISD::MUL:
6930 case ISD::FMUL:
6931 case ISD::SDIV:
6932 case ISD::UDIV:
6933 case ISD::FDIV:
6934 case ISD::SREM:
6935 case ISD::UREM:
6936 case ISD::FREM:
Dan Gohman2a7de412007-10-11 23:57:53 +00006937 case ISD::FPOW:
Dan Gohmana8665142007-06-25 16:23:39 +00006938 case ISD::AND:
6939 case ISD::OR:
6940 case ISD::XOR:
6941 Result = DAG.getNode(Node->getOpcode(),
Chris Lattner32206f52006-03-18 01:44:44 +00006942 NewVT,
Dan Gohmana8665142007-06-25 16:23:39 +00006943 ScalarizeVectorOp(Node->getOperand(0)),
6944 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattner32206f52006-03-18 01:44:44 +00006945 break;
Dan Gohmana8665142007-06-25 16:23:39 +00006946 case ISD::FNEG:
6947 case ISD::FABS:
6948 case ISD::FSQRT:
6949 case ISD::FSIN:
6950 case ISD::FCOS:
6951 Result = DAG.getNode(Node->getOpcode(),
6952 NewVT,
6953 ScalarizeVectorOp(Node->getOperand(0)));
6954 break;
Dan Gohman4f056f32007-10-12 14:13:46 +00006955 case ISD::FPOWI:
6956 Result = DAG.getNode(Node->getOpcode(),
6957 NewVT,
6958 ScalarizeVectorOp(Node->getOperand(0)),
6959 Node->getOperand(1));
6960 break;
Dan Gohmana8665142007-06-25 16:23:39 +00006961 case ISD::LOAD: {
6962 LoadSDNode *LD = cast<LoadSDNode>(Node);
6963 SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
6964 SDOperand Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Chris Lattner32206f52006-03-18 01:44:44 +00006965
Dan Gohmana8665142007-06-25 16:23:39 +00006966 const Value *SV = LD->getSrcValue();
6967 int SVOffset = LD->getSrcValueOffset();
6968 Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset,
6969 LD->isVolatile(), LD->getAlignment());
6970
Chris Lattner32206f52006-03-18 01:44:44 +00006971 // Remember that we legalized the chain.
6972 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
6973 break;
6974 }
Dan Gohmana8665142007-06-25 16:23:39 +00006975 case ISD::BUILD_VECTOR:
6976 Result = Node->getOperand(0);
Chris Lattner32206f52006-03-18 01:44:44 +00006977 break;
Dan Gohmana8665142007-06-25 16:23:39 +00006978 case ISD::INSERT_VECTOR_ELT:
6979 // Returning the inserted scalar element.
6980 Result = Node->getOperand(1);
6981 break;
6982 case ISD::CONCAT_VECTORS:
Dan Gohman26455c42007-06-13 15:12:02 +00006983 assert(Node->getOperand(0).getValueType() == NewVT &&
6984 "Concat of non-legal vectors not yet supported!");
6985 Result = Node->getOperand(0);
6986 break;
Dan Gohmana8665142007-06-25 16:23:39 +00006987 case ISD::VECTOR_SHUFFLE: {
6988 // Figure out if the scalar is the LHS or RHS and return it.
6989 SDOperand EltNum = Node->getOperand(2).getOperand(0);
6990 if (cast<ConstantSDNode>(EltNum)->getValue())
6991 Result = ScalarizeVectorOp(Node->getOperand(1));
6992 else
6993 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner29b23012006-03-19 01:17:20 +00006994 break;
Dan Gohmana8665142007-06-25 16:23:39 +00006995 }
6996 case ISD::EXTRACT_SUBVECTOR:
6997 Result = Node->getOperand(0);
Dan Gohman26455c42007-06-13 15:12:02 +00006998 assert(Result.getValueType() == NewVT);
6999 break;
Evan Cheng9ac36312008-05-16 17:19:05 +00007000 case ISD::BIT_CONVERT: {
7001 SDOperand Op0 = Op.getOperand(0);
Duncan Sands13237ac2008-06-06 12:08:01 +00007002 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng9ac36312008-05-16 17:19:05 +00007003 Op0 = ScalarizeVectorOp(Op0);
7004 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
Chris Lattnerf6f94d32006-03-28 20:24:43 +00007005 break;
Evan Cheng9ac36312008-05-16 17:19:05 +00007006 }
Dan Gohmana8665142007-06-25 16:23:39 +00007007 case ISD::SELECT:
Chris Lattner02274a52006-04-08 22:22:57 +00007008 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohmana8665142007-06-25 16:23:39 +00007009 ScalarizeVectorOp(Op.getOperand(1)),
7010 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattner02274a52006-04-08 22:22:57 +00007011 break;
Chris Lattner9d3740e2008-06-30 02:43:01 +00007012 case ISD::SELECT_CC:
7013 Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0),
7014 Node->getOperand(1),
7015 ScalarizeVectorOp(Op.getOperand(2)),
7016 ScalarizeVectorOp(Op.getOperand(3)),
7017 Node->getOperand(4));
7018 break;
Nate Begemanb87e63a2008-05-12 23:09:43 +00007019 case ISD::VSETCC: {
7020 SDOperand Op0 = ScalarizeVectorOp(Op.getOperand(0));
7021 SDOperand Op1 = ScalarizeVectorOp(Op.getOperand(1));
7022 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1,
7023 Op.getOperand(2));
7024 Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7025 DAG.getConstant(-1ULL, NewVT),
7026 DAG.getConstant(0ULL, NewVT));
7027 break;
7028 }
Chris Lattner32206f52006-03-18 01:44:44 +00007029 }
7030
7031 if (TLI.isTypeLegal(NewVT))
7032 Result = LegalizeOp(Result);
Dan Gohmana8665142007-06-25 16:23:39 +00007033 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7034 assert(isNew && "Value already scalarized?");
Chris Lattner32206f52006-03-18 01:44:44 +00007035 return Result;
7036}
7037
Chris Lattnerdc750592005-01-07 07:47:09 +00007038
7039// SelectionDAG::Legalize - This is the entry point for the file.
7040//
Chris Lattner4add7e32005-01-23 04:42:50 +00007041void SelectionDAG::Legalize() {
Chris Lattneref598052006-04-02 03:07:27 +00007042 if (ViewLegalizeDAGs) viewGraph();
7043
Chris Lattnerdc750592005-01-07 07:47:09 +00007044 /// run - This is the main entry point to this class.
7045 ///
Chris Lattner9dcce6d2006-01-28 07:39:30 +00007046 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattnerdc750592005-01-07 07:47:09 +00007047}
7048