blob: 10167fde24c29bac4ca5d952151c505982ca19e1 [file] [log] [blame]
Chris Lattner3e928bb2005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3e928bb2005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner45b8caf2005-01-15 07:15:18 +000016#include "llvm/CodeGen/MachineFrameInfo.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000017#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Cheng61bbbab2007-08-16 23:50:06 +000018#include "llvm/Target/TargetFrameInfo.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000019#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000020#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000021#include "llvm/Target/TargetMachine.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000022#include "llvm/Target/TargetOptions.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000023#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000024#include "llvm/Constants.h"
Reid Spencerc1030572007-01-19 21:13:56 +000025#include "llvm/DerivedTypes.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000026#include "llvm/Support/MathExtras.h"
27#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000028#include "llvm/Support/Compiler.h"
Chris Lattner79715142007-02-03 01:12:36 +000029#include "llvm/ADT/DenseMap.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000030#include "llvm/ADT/SmallVector.h"
Chris Lattner00755df2007-02-04 00:27:56 +000031#include "llvm/ADT/SmallPtrSet.h"
Evan Cheng033e6812006-03-24 01:17:21 +000032#include <map>
Chris Lattner3e928bb2005-01-07 07:47:09 +000033using namespace llvm;
34
Chris Lattner5e46a192006-04-02 03:07:27 +000035#ifndef NDEBUG
36static cl::opt<bool>
37ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
38 cl::desc("Pop up a window to show dags before legalize"));
39#else
40static const bool ViewLegalizeDAGs = 0;
41#endif
42
Chris Lattner3e928bb2005-01-07 07:47:09 +000043//===----------------------------------------------------------------------===//
44/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
45/// hacks on it until the target machine can handle it. This involves
46/// eliminating value sizes the machine cannot handle (promoting small sizes to
47/// large sizes or splitting up large values into small values) as well as
48/// eliminating operations the machine cannot handle.
49///
50/// This code also does a small amount of optimization and recognition of idioms
51/// as part of its processing. For example, if a target does not support a
52/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
53/// will attempt merge setcc and brc instructions into brcc's.
54///
55namespace {
Chris Lattner360e8202006-06-28 21:58:30 +000056class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000057 TargetLowering &TLI;
58 SelectionDAG &DAG;
59
Chris Lattner6831a812006-02-13 09:18:02 +000060 // Libcall insertion helpers.
61
62 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
63 /// legalized. We use this to ensure that calls are properly serialized
64 /// against each other, including inserted libcalls.
65 SDOperand LastCALLSEQ_END;
66
67 /// IsLegalizingCall - This member is used *only* for purposes of providing
68 /// helpful assertions that a libcall isn't created while another call is
69 /// being legalized (which could lead to non-serialized call sequences).
70 bool IsLegalizingCall;
71
Chris Lattner3e928bb2005-01-07 07:47:09 +000072 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000073 Legal, // The target natively supports this operation.
74 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000075 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000076 };
Chris Lattner6831a812006-02-13 09:18:02 +000077
Chris Lattner3e928bb2005-01-07 07:47:09 +000078 /// ValueTypeActions - This is a bitvector that contains two bits for each
79 /// value type, where the two bits correspond to the LegalizeAction enum.
80 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000081 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000082
Chris Lattner3e928bb2005-01-07 07:47:09 +000083 /// LegalizedNodes - For nodes that are of legal width, and that have more
84 /// than one use, this map indicates what regularized operand to use. This
85 /// allows us to avoid legalizing the same thing more than once.
Chris Lattner718071c2007-02-04 00:50:02 +000086 DenseMap<SDOperand, SDOperand> LegalizedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000087
Chris Lattner03c85462005-01-15 05:21:40 +000088 /// PromotedNodes - For nodes that are below legal width, and that have more
89 /// than one use, this map indicates what promoted value to use. This allows
90 /// us to avoid promoting the same thing more than once.
Chris Lattner40030bf2007-02-04 01:17:38 +000091 DenseMap<SDOperand, SDOperand> PromotedNodes;
Chris Lattner03c85462005-01-15 05:21:40 +000092
Chris Lattnerc7029802006-03-18 01:44:44 +000093 /// ExpandedNodes - For nodes that need to be expanded this map indicates
94 /// which which operands are the expanded version of the input. This allows
95 /// us to avoid expanding the same node more than once.
Chris Lattner40030bf2007-02-04 01:17:38 +000096 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000097
Chris Lattnerc7029802006-03-18 01:44:44 +000098 /// SplitNodes - For vector nodes that need to be split, this map indicates
99 /// which which operands are the split version of the input. This allows us
100 /// to avoid splitting the same node more than once.
101 std::map<SDOperand, std::pair<SDOperand, SDOperand> > SplitNodes;
102
Dan Gohman7f321562007-06-25 16:23:39 +0000103 /// ScalarizedNodes - For nodes that need to be converted from vector types to
104 /// scalar types, this contains the mapping of ones we have already
Chris Lattnerc7029802006-03-18 01:44:44 +0000105 /// processed to the result.
Dan Gohman7f321562007-06-25 16:23:39 +0000106 std::map<SDOperand, SDOperand> ScalarizedNodes;
Chris Lattnerc7029802006-03-18 01:44:44 +0000107
Chris Lattner8afc48e2005-01-07 22:28:47 +0000108 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000109 LegalizedNodes.insert(std::make_pair(From, To));
110 // If someone requests legalization of the new node, return itself.
111 if (From != To)
112 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000113 }
Chris Lattner03c85462005-01-15 05:21:40 +0000114 void AddPromotedOperand(SDOperand From, SDOperand To) {
Chris Lattner40030bf2007-02-04 01:17:38 +0000115 bool isNew = PromotedNodes.insert(std::make_pair(From, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000116 assert(isNew && "Got into the map somehow?");
Chris Lattner69a889e2005-12-20 00:53:54 +0000117 // If someone requests legalization of the new node, return itself.
118 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000119 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000120
Chris Lattner3e928bb2005-01-07 07:47:09 +0000121public:
122
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000123 SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000124
Chris Lattner3e928bb2005-01-07 07:47:09 +0000125 /// getTypeAction - Return how we should legalize values of this type, either
126 /// it is already legal or we need to expand it into multiple registers of
127 /// smaller integer type, or we need to promote it to a larger type.
128 LegalizeAction getTypeAction(MVT::ValueType VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000129 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000130 }
131
132 /// isTypeLegal - Return true if this type is legal on this target.
133 ///
134 bool isTypeLegal(MVT::ValueType VT) const {
135 return getTypeAction(VT) == Legal;
136 }
137
Chris Lattner3e928bb2005-01-07 07:47:09 +0000138 void LegalizeDAG();
139
Chris Lattner456a93a2006-01-28 07:39:30 +0000140private:
Dan Gohman7f321562007-06-25 16:23:39 +0000141 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000142 /// appropriate for its type.
143 void HandleOp(SDOperand Op);
144
145 /// LegalizeOp - We know that the specified value has a legal type.
146 /// Recursively ensure that the operands have legal types, then return the
147 /// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000148 SDOperand LegalizeOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000149
150 /// PromoteOp - Given an operation that produces a value in an invalid type,
151 /// promote it to compute the value into a larger type. The produced value
152 /// will have the correct bits for the low portion of the register, but no
153 /// guarantee is made about the top bits: it may be zero, sign-extended, or
154 /// garbage.
Chris Lattner03c85462005-01-15 05:21:40 +0000155 SDOperand PromoteOp(SDOperand O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000156
Chris Lattnerc7029802006-03-18 01:44:44 +0000157 /// ExpandOp - Expand the specified SDOperand into its two component pieces
158 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
159 /// the LegalizeNodes map is filled in for any results that are not expanded,
160 /// the ExpandedNodes map is filled in for any results that are expanded, and
161 /// the Lo/Hi values are returned. This applies to integer types and Vector
162 /// types.
163 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
164
Dan Gohman7f321562007-06-25 16:23:39 +0000165 /// SplitVectorOp - Given an operand of vector type, break it down into
166 /// two smaller values.
Chris Lattnerc7029802006-03-18 01:44:44 +0000167 void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
168
Dan Gohman89b20c02007-06-27 14:06:22 +0000169 /// ScalarizeVectorOp - Given an operand of single-element vector type
170 /// (e.g. v1f32), convert it into the equivalent operation that returns a
171 /// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +0000172 SDOperand ScalarizeVectorOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000173
Chris Lattner4352cc92006-04-04 17:23:26 +0000174 /// isShuffleLegal - Return true if a vector shuffle is legal with the
175 /// specified mask and type. Targets can specify exactly which masks they
176 /// support and the code generator is tasked with not creating illegal masks.
177 ///
178 /// Note that this will also return true for shuffles that are promoted to a
179 /// different type.
180 ///
181 /// If this is a legal shuffle, this method returns the (possibly promoted)
182 /// build_vector Mask. If it's not a legal shuffle, it returns null.
183 SDNode *isShuffleLegal(MVT::ValueType VT, SDOperand Mask) const;
184
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000185 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000186 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000187
Nate Begeman750ac1b2006-02-01 07:19:44 +0000188 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
189
Chris Lattnerce872152006-03-19 06:31:19 +0000190 SDOperand CreateStackTemporary(MVT::ValueType VT);
191
Reid Spencer47857812006-12-31 05:55:36 +0000192 SDOperand ExpandLibCall(const char *Name, SDNode *Node, bool isSigned,
Chris Lattner77e77a62005-01-21 06:05:23 +0000193 SDOperand &Hi);
194 SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
195 SDOperand Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000196
Chris Lattner35481892005-12-23 00:16:34 +0000197 SDOperand ExpandBIT_CONVERT(MVT::ValueType DestVT, SDOperand SrcOp);
Chris Lattnerce872152006-03-19 06:31:19 +0000198 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner4352cc92006-04-04 17:23:26 +0000199 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Jim Laskey6269ed12005-08-17 00:39:29 +0000200 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
201 SDOperand LegalOp,
202 MVT::ValueType DestVT);
Nate Begeman5a8441e2005-07-16 02:02:34 +0000203 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
204 bool isSigned);
Chris Lattner1618beb2005-07-29 00:11:56 +0000205 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
206 bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000207
Chris Lattner456a93a2006-01-28 07:39:30 +0000208 SDOperand ExpandBSWAP(SDOperand Op);
209 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000210 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
211 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000212 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
213 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000214
Dan Gohman7f321562007-06-25 16:23:39 +0000215 SDOperand ExpandEXTRACT_SUBVECTOR(SDOperand Op);
Chris Lattner4aab2f42006-04-02 05:06:04 +0000216 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner15972212006-03-31 17:55:51 +0000217
Chris Lattner3e928bb2005-01-07 07:47:09 +0000218 SDOperand getIntPtrConstant(uint64_t Val) {
219 return DAG.getConstant(Val, TLI.getPointerTy());
220 }
221};
222}
223
Chris Lattner4352cc92006-04-04 17:23:26 +0000224/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
225/// specified mask and type. Targets can specify exactly which masks they
226/// support and the code generator is tasked with not creating illegal masks.
227///
228/// Note that this will also return true for shuffles that are promoted to a
229/// different type.
230SDNode *SelectionDAGLegalize::isShuffleLegal(MVT::ValueType VT,
231 SDOperand Mask) const {
232 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
233 default: return 0;
234 case TargetLowering::Legal:
235 case TargetLowering::Custom:
236 break;
237 case TargetLowering::Promote: {
238 // If this is promoted to a different type, convert the shuffle mask and
239 // ask if it is legal in the promoted type!
240 MVT::ValueType NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
241
242 // If we changed # elements, change the shuffle mask.
243 unsigned NumEltsGrowth =
244 MVT::getVectorNumElements(NVT) / MVT::getVectorNumElements(VT);
245 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
246 if (NumEltsGrowth > 1) {
247 // Renumber the elements.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000248 SmallVector<SDOperand, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000249 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
250 SDOperand InOp = Mask.getOperand(i);
251 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
252 if (InOp.getOpcode() == ISD::UNDEF)
253 Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
254 else {
255 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
256 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
257 }
258 }
259 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000260 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000261 }
262 VT = NVT;
263 break;
264 }
265 }
266 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
267}
268
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000269SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
270 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
271 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000272 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000273 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000274}
275
Chris Lattnere10e6f72007-06-18 21:28:10 +0000276/// ComputeTopDownOrdering - Compute a top-down ordering of the dag, where Order
277/// contains all of a nodes operands before it contains the node.
278static void ComputeTopDownOrdering(SelectionDAG &DAG,
279 SmallVector<SDNode*, 64> &Order) {
280
281 DenseMap<SDNode*, unsigned> Visited;
282 std::vector<SDNode*> Worklist;
283 Worklist.reserve(128);
Chris Lattner32fca002005-10-06 01:20:27 +0000284
Chris Lattnere10e6f72007-06-18 21:28:10 +0000285 // Compute ordering from all of the leaves in the graphs, those (like the
286 // entry node) that have no operands.
287 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
288 E = DAG.allnodes_end(); I != E; ++I) {
289 if (I->getNumOperands() == 0) {
290 Visited[I] = 0 - 1U;
291 Worklist.push_back(I);
292 }
Chris Lattner32fca002005-10-06 01:20:27 +0000293 }
294
Chris Lattnere10e6f72007-06-18 21:28:10 +0000295 while (!Worklist.empty()) {
296 SDNode *N = Worklist.back();
297 Worklist.pop_back();
298
299 if (++Visited[N] != N->getNumOperands())
300 continue; // Haven't visited all operands yet
301
302 Order.push_back(N);
303
304 // Now that we have N in, add anything that uses it if all of their operands
305 // are now done.
306 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
307 UI != E; ++UI)
308 Worklist.push_back(*UI);
309 }
310
311 assert(Order.size() == Visited.size() &&
312 Order.size() ==
313 (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
314 "Error: DAG is cyclic!");
Chris Lattner32fca002005-10-06 01:20:27 +0000315}
316
Chris Lattner1618beb2005-07-29 00:11:56 +0000317
Chris Lattner3e928bb2005-01-07 07:47:09 +0000318void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000319 LastCALLSEQ_END = DAG.getEntryNode();
320 IsLegalizingCall = false;
321
Chris Lattnerab510a72005-10-02 17:49:46 +0000322 // The legalize process is inherently a bottom-up recursive process (users
323 // legalize their uses before themselves). Given infinite stack space, we
324 // could just start legalizing on the root and traverse the whole graph. In
325 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000326 // blocks. To avoid this problem, compute an ordering of the nodes where each
327 // node is only legalized after all of its operands are legalized.
Chris Lattner0ed44172007-02-04 01:20:02 +0000328 SmallVector<SDNode*, 64> Order;
Chris Lattnere10e6f72007-06-18 21:28:10 +0000329 ComputeTopDownOrdering(DAG, Order);
Chris Lattnerab510a72005-10-02 17:49:46 +0000330
Chris Lattnerc7029802006-03-18 01:44:44 +0000331 for (unsigned i = 0, e = Order.size(); i != e; ++i)
332 HandleOp(SDOperand(Order[i], 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000333
334 // Finally, it's possible the root changed. Get the new root.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000335 SDOperand OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000336 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
337 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000338
339 ExpandedNodes.clear();
340 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000341 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000342 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000343 ScalarizedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000344
345 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000346 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000347}
348
Chris Lattner6831a812006-02-13 09:18:02 +0000349
350/// FindCallEndFromCallStart - Given a chained node that is part of a call
351/// sequence, find the CALLSEQ_END node that terminates the call sequence.
352static SDNode *FindCallEndFromCallStart(SDNode *Node) {
353 if (Node->getOpcode() == ISD::CALLSEQ_END)
354 return Node;
355 if (Node->use_empty())
356 return 0; // No CallSeqEnd
357
358 // The chain is usually at the end.
359 SDOperand TheChain(Node, Node->getNumValues()-1);
360 if (TheChain.getValueType() != MVT::Other) {
361 // Sometimes it's at the beginning.
362 TheChain = SDOperand(Node, 0);
363 if (TheChain.getValueType() != MVT::Other) {
364 // Otherwise, hunt for it.
365 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
366 if (Node->getValueType(i) == MVT::Other) {
367 TheChain = SDOperand(Node, i);
368 break;
369 }
370
371 // Otherwise, we walked into a node without a chain.
372 if (TheChain.getValueType() != MVT::Other)
373 return 0;
374 }
375 }
376
377 for (SDNode::use_iterator UI = Node->use_begin(),
378 E = Node->use_end(); UI != E; ++UI) {
379
380 // Make sure to only follow users of our token chain.
381 SDNode *User = *UI;
382 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
383 if (User->getOperand(i) == TheChain)
384 if (SDNode *Result = FindCallEndFromCallStart(User))
385 return Result;
386 }
387 return 0;
388}
389
390/// FindCallStartFromCallEnd - Given a chained node that is part of a call
391/// sequence, find the CALLSEQ_START node that initiates the call sequence.
392static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
393 assert(Node && "Didn't find callseq_start for a call??");
394 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
395
396 assert(Node->getOperand(0).getValueType() == MVT::Other &&
397 "Node doesn't have a token chain argument!");
398 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
399}
400
401/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
402/// see if any uses can reach Dest. If no dest operands can get to dest,
403/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000404///
405/// Keep track of the nodes we fine that actually do lead to Dest in
406/// NodesLeadingTo. This avoids retraversing them exponential number of times.
407///
408bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000409 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000410 if (N == Dest) return true; // N certainly leads to Dest :)
411
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000412 // If we've already processed this node and it does lead to Dest, there is no
413 // need to reprocess it.
414 if (NodesLeadingTo.count(N)) return true;
415
Chris Lattner6831a812006-02-13 09:18:02 +0000416 // If the first result of this node has been already legalized, then it cannot
417 // reach N.
418 switch (getTypeAction(N->getValueType(0))) {
419 case Legal:
420 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
421 break;
422 case Promote:
423 if (PromotedNodes.count(SDOperand(N, 0))) return false;
424 break;
425 case Expand:
426 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
427 break;
428 }
429
430 // Okay, this node has not already been legalized. Check and legalize all
431 // operands. If none lead to Dest, then we can legalize this node.
432 bool OperandsLeadToDest = false;
433 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
434 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000435 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000436
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000437 if (OperandsLeadToDest) {
438 NodesLeadingTo.insert(N);
439 return true;
440 }
Chris Lattner6831a812006-02-13 09:18:02 +0000441
442 // Okay, this node looks safe, legalize it and return false.
Chris Lattner80edfb32006-04-17 22:10:08 +0000443 HandleOp(SDOperand(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000444 return false;
445}
446
Dan Gohman7f321562007-06-25 16:23:39 +0000447/// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000448/// appropriate for its type.
449void SelectionDAGLegalize::HandleOp(SDOperand Op) {
Dan Gohman7f321562007-06-25 16:23:39 +0000450 MVT::ValueType VT = Op.getValueType();
451 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000452 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000453 case Legal: (void)LegalizeOp(Op); break;
454 case Promote: (void)PromoteOp(Op); break;
Chris Lattnerc7029802006-03-18 01:44:44 +0000455 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +0000456 if (!MVT::isVector(VT)) {
457 // If this is an illegal scalar, expand it into its two component
458 // pieces.
Chris Lattnerc7029802006-03-18 01:44:44 +0000459 SDOperand X, Y;
460 ExpandOp(Op, X, Y);
Dan Gohman7f321562007-06-25 16:23:39 +0000461 } else if (MVT::getVectorNumElements(VT) == 1) {
462 // If this is an illegal single element vector, convert it to a
463 // scalar operation.
464 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000465 } else {
Dan Gohman7f321562007-06-25 16:23:39 +0000466 // Otherwise, this is an illegal multiple element vector.
467 // Split it in half and legalize both parts.
468 SDOperand X, Y;
469 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000470 }
471 break;
472 }
473}
Chris Lattner6831a812006-02-13 09:18:02 +0000474
Evan Cheng9f877882006-12-13 20:57:08 +0000475/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
476/// a load from the constant pool.
477static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000478 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000479 bool Extend = false;
480
481 // If a FP immediate is precise when represented as a float and if the
482 // target can do an extending load from float to double, we put it into
483 // the constant pool as a float, even if it's is statically typed as a
484 // double.
485 MVT::ValueType VT = CFP->getValueType(0);
486 bool isDouble = VT == MVT::f64;
487 ConstantFP *LLVMC = ConstantFP::get(isDouble ? Type::DoubleTy :
488 Type::FloatTy, CFP->getValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000489 if (!UseCP) {
Evan Cheng279101e2006-12-12 22:19:28 +0000490 double Val = LLVMC->getValue();
491 return isDouble
492 ? DAG.getConstant(DoubleToBits(Val), MVT::i64)
493 : DAG.getConstant(FloatToBits(Val), MVT::i32);
494 }
495
Evan Cheng00495212006-12-12 21:32:44 +0000496 if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
497 // Only do this if the target has a native EXTLOAD instruction from f32.
498 TLI.isLoadXLegal(ISD::EXTLOAD, MVT::f32)) {
499 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC,Type::FloatTy));
500 VT = MVT::f32;
501 Extend = true;
502 }
503
504 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
505 if (Extend) {
506 return DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
507 CPIdx, NULL, 0, MVT::f32);
508 } else {
509 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
510 }
511}
512
Chris Lattner6831a812006-02-13 09:18:02 +0000513
Evan Cheng912095b2007-01-04 21:56:39 +0000514/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
515/// operations.
516static
517SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT::ValueType NVT,
518 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng068c5f42007-01-05 21:31:51 +0000519 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng912095b2007-01-04 21:56:39 +0000520 MVT::ValueType SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000521 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
522 "fcopysign expansion only supported for f32 and f64");
Evan Cheng912095b2007-01-04 21:56:39 +0000523 MVT::ValueType SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000524
Evan Cheng912095b2007-01-04 21:56:39 +0000525 // First get the sign bit of second operand.
Evan Cheng068c5f42007-01-05 21:31:51 +0000526 SDOperand Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000527 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
528 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000529 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000530 SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000531 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000532 // Shift right or sign-extend it if the two operands have different types.
533 int SizeDiff = MVT::getSizeInBits(SrcNVT) - MVT::getSizeInBits(NVT);
534 if (SizeDiff > 0) {
535 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
536 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
537 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
538 } else if (SizeDiff < 0)
539 SignBit = DAG.getNode(ISD::SIGN_EXTEND, NVT, SignBit);
Evan Cheng068c5f42007-01-05 21:31:51 +0000540
541 // Clear the sign bit of first operand.
542 SDOperand Mask2 = (VT == MVT::f64)
543 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
544 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
545 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Evan Cheng912095b2007-01-04 21:56:39 +0000546 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000547 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
548
549 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000550 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
551 return Result;
552}
553
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000554/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
555static
556SDOperand ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
557 TargetLowering &TLI) {
558 assert(MVT::isInteger(ST->getStoredVT()) &&
559 "Non integer unaligned stores not implemented.");
560 int SVOffset = ST->getSrcValueOffset();
561 SDOperand Chain = ST->getChain();
562 SDOperand Ptr = ST->getBasePtr();
563 SDOperand Val = ST->getValue();
564 MVT::ValueType VT = Val.getValueType();
565 // Get the half-size VT
566 MVT::ValueType NewStoredVT = ST->getStoredVT() - 1;
567 int NumBits = MVT::getSizeInBits(NewStoredVT);
568 int Alignment = ST->getAlignment();
569 int IncrementSize = NumBits / 8;
570
571 // Divide the stored value in two parts.
572 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
573 SDOperand Lo = Val;
574 SDOperand Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
575
576 // Store the two parts
577 SDOperand Store1, Store2;
578 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
579 ST->getSrcValue(), SVOffset, NewStoredVT,
580 ST->isVolatile(), Alignment);
581 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
582 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
583 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
584 ST->getSrcValue(), SVOffset + IncrementSize,
585 NewStoredVT, ST->isVolatile(), Alignment);
586
587 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
588}
589
590/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
591static
592SDOperand ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
593 TargetLowering &TLI) {
594 assert(MVT::isInteger(LD->getLoadedVT()) &&
595 "Non integer unaligned loads not implemented.");
596 int SVOffset = LD->getSrcValueOffset();
597 SDOperand Chain = LD->getChain();
598 SDOperand Ptr = LD->getBasePtr();
599 MVT::ValueType VT = LD->getValueType(0);
600 MVT::ValueType NewLoadedVT = LD->getLoadedVT() - 1;
601 int NumBits = MVT::getSizeInBits(NewLoadedVT);
602 int Alignment = LD->getAlignment();
603 int IncrementSize = NumBits / 8;
604 ISD::LoadExtType HiExtType = LD->getExtensionType();
605
606 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
607 if (HiExtType == ISD::NON_EXTLOAD)
608 HiExtType = ISD::ZEXTLOAD;
609
610 // Load the value in two parts
611 SDOperand Lo, Hi;
612 if (TLI.isLittleEndian()) {
613 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
614 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
615 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
616 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
617 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
618 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
619 Alignment);
620 } else {
621 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
622 NewLoadedVT,LD->isVolatile(), Alignment);
623 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
624 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
625 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
626 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
627 Alignment);
628 }
629
630 // aggregate the two parts
631 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
632 SDOperand Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
633 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
634
635 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
636 Hi.getValue(1));
637
638 SDOperand Ops[] = { Result, TF };
639 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other), Ops, 2);
640}
Evan Cheng912095b2007-01-04 21:56:39 +0000641
Dan Gohmana3466152007-07-13 20:14:11 +0000642/// LegalizeOp - We know that the specified value has a legal type, and
643/// that its operands are legal. Now ensure that the operation itself
644/// is legal, recursively ensuring that the operands' operations remain
645/// legal.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000646SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000647 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000648 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000649 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000650
Chris Lattner3e928bb2005-01-07 07:47:09 +0000651 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000652 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000653 if (Node->getNumValues() > 1) {
654 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000655 if (getTypeAction(Node->getValueType(i)) != Legal) {
656 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000657 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000658 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000659 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000660 }
661 }
662
Chris Lattner45982da2005-05-12 16:53:42 +0000663 // Note that LegalizeOp may be reentered even from single-use nodes, which
664 // means that we always must cache transformed nodes.
Chris Lattner718071c2007-02-04 00:50:02 +0000665 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000666 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000667
Nate Begeman9373a812005-08-10 20:51:12 +0000668 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000669 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000670 bool isCustom = false;
671
Chris Lattner3e928bb2005-01-07 07:47:09 +0000672 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000673 case ISD::FrameIndex:
674 case ISD::EntryToken:
675 case ISD::Register:
676 case ISD::BasicBlock:
677 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000678 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000679 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000680 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000681 case ISD::TargetConstantPool:
682 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000683 case ISD::TargetGlobalTLSAddress:
Chris Lattner948c1b12006-01-28 08:31:04 +0000684 case ISD::TargetExternalSymbol:
685 case ISD::VALUETYPE:
686 case ISD::SRCVALUE:
687 case ISD::STRING:
688 case ISD::CONDCODE:
689 // Primitives must all be legal.
690 assert(TLI.isOperationLegal(Node->getValueType(0), Node->getValueType(0)) &&
691 "This must be legal!");
692 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000693 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000694 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
695 // If this is a target node, legalize it by legalizing the operands then
696 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000697 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000698 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000699 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000700
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000701 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000702
703 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
704 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
705 return Result.getValue(Op.ResNo);
706 }
707 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000708#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000709 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000710#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000711 assert(0 && "Do not know how to legalize this operator!");
712 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000713 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000714 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000715 case ISD::GlobalTLSAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000716 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000717 case ISD::ConstantPool:
718 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000719 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
720 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000721 case TargetLowering::Custom:
722 Tmp1 = TLI.LowerOperation(Op, DAG);
723 if (Tmp1.Val) Result = Tmp1;
724 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000725 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000726 break;
727 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000728 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000729 case ISD::FRAMEADDR:
730 case ISD::RETURNADDR:
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000731 case ISD::FRAME_TO_ARGS_OFFSET:
Nate Begemanbcc5f362007-01-29 22:58:52 +0000732 // The only option for these nodes is to custom lower them. If the target
733 // does not custom lower them, then return zero.
734 Tmp1 = TLI.LowerOperation(Op, DAG);
735 if (Tmp1.Val)
736 Result = Tmp1;
737 else
738 Result = DAG.getConstant(0, TLI.getPointerTy());
739 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000740 case ISD::EXCEPTIONADDR: {
741 Tmp1 = LegalizeOp(Node->getOperand(0));
742 MVT::ValueType VT = Node->getValueType(0);
743 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
744 default: assert(0 && "This action is not supported yet!");
745 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000746 unsigned Reg = TLI.getExceptionAddressRegister();
Jim Laskey2bc210d2007-02-22 15:37:19 +0000747 Result = DAG.getCopyFromReg(Tmp1, Reg, VT).getValue(Op.ResNo);
748 }
749 break;
750 case TargetLowering::Custom:
751 Result = TLI.LowerOperation(Op, DAG);
752 if (Result.Val) break;
753 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000754 case TargetLowering::Legal: {
755 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp1 };
756 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
757 Ops, 2).getValue(Op.ResNo);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000758 break;
759 }
760 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000761 }
Jim Laskey2bc210d2007-02-22 15:37:19 +0000762 break;
Jim Laskey8782d482007-02-28 20:43:58 +0000763 case ISD::EHSELECTION: {
764 Tmp1 = LegalizeOp(Node->getOperand(0));
765 Tmp2 = LegalizeOp(Node->getOperand(1));
766 MVT::ValueType VT = Node->getValueType(0);
767 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
768 default: assert(0 && "This action is not supported yet!");
769 case TargetLowering::Expand: {
770 unsigned Reg = TLI.getExceptionSelectorRegister();
771 Result = DAG.getCopyFromReg(Tmp2, Reg, VT).getValue(Op.ResNo);
772 }
773 break;
774 case TargetLowering::Custom:
775 Result = TLI.LowerOperation(Op, DAG);
776 if (Result.Val) break;
777 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000778 case TargetLowering::Legal: {
779 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp2 };
780 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
781 Ops, 2).getValue(Op.ResNo);
Jim Laskey8782d482007-02-28 20:43:58 +0000782 break;
783 }
784 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000785 }
Jim Laskey8782d482007-02-28 20:43:58 +0000786 break;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000787 case ISD::EH_RETURN: {
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000788 MVT::ValueType VT = Node->getValueType(0);
789 // The only "good" option for this node is to custom lower it.
790 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
791 default: assert(0 && "This action is not supported at all!");
792 case TargetLowering::Custom:
793 Result = TLI.LowerOperation(Op, DAG);
794 if (Result.Val) break;
795 // Fall Thru
796 case TargetLowering::Legal:
797 // Target does not know, how to lower this, lower to noop
798 Result = LegalizeOp(Node->getOperand(0));
799 break;
800 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000801 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000802 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000803 case ISD::AssertSext:
804 case ISD::AssertZext:
805 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000806 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000807 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000808 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000809 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +0000810 Result = Node->getOperand(Op.ResNo);
811 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000812 case ISD::CopyFromReg:
813 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000814 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000815 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000816 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000817 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000818 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000819 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000820 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000821 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
822 } else {
823 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
824 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000825 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
826 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000827 // Since CopyFromReg produces two values, make sure to remember that we
828 // legalized both of them.
829 AddLegalizedOperand(Op.getValue(0), Result);
830 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
831 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000832 case ISD::UNDEF: {
833 MVT::ValueType VT = Op.getValueType();
834 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000835 default: assert(0 && "This action is not supported yet!");
836 case TargetLowering::Expand:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000837 if (MVT::isInteger(VT))
838 Result = DAG.getConstant(0, VT);
839 else if (MVT::isFloatingPoint(VT))
840 Result = DAG.getConstantFP(0, VT);
841 else
842 assert(0 && "Unknown value type!");
843 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000844 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000845 break;
846 }
847 break;
848 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000849
Chris Lattner48b61a72006-03-28 00:40:33 +0000850 case ISD::INTRINSIC_W_CHAIN:
851 case ISD::INTRINSIC_WO_CHAIN:
852 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000853 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000854 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
855 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000856 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +0000857
858 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +0000859 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +0000860 TargetLowering::Custom) {
861 Tmp3 = TLI.LowerOperation(Result, DAG);
862 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +0000863 }
864
865 if (Result.Val->getNumValues() == 1) break;
866
867 // Must have return value and chain result.
868 assert(Result.Val->getNumValues() == 2 &&
869 "Cannot return more than two values!");
870
871 // Since loads produce two values, make sure to remember that we
872 // legalized both of them.
873 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
874 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
875 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000876 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000877
878 case ISD::LOCATION:
879 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
880 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
881
882 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
883 case TargetLowering::Promote:
884 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000885 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000886 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000887 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Jim Laskey1ee29252007-01-26 14:34:52 +0000888 bool useLABEL = TLI.isOperationLegal(ISD::LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000889
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000890 if (MMI && (useDEBUG_LOC || useLABEL)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000891 const std::string &FName =
892 cast<StringSDNode>(Node->getOperand(3))->getValue();
893 const std::string &DirName =
894 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000895 unsigned SrcFile = MMI->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000896
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000897 SmallVector<SDOperand, 8> Ops;
Jim Laskeye81aecb2005-12-21 20:51:37 +0000898 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-01-05 01:25:28 +0000899 SDOperand LineOp = Node->getOperand(1);
900 SDOperand ColOp = Node->getOperand(2);
901
902 if (useDEBUG_LOC) {
903 Ops.push_back(LineOp); // line #
904 Ops.push_back(ColOp); // col #
905 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000906 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +0000907 } else {
Jim Laskeyd0e58e32006-02-15 19:34:44 +0000908 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
909 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000910 unsigned ID = MMI->RecordLabel(Line, Col, SrcFile);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000911 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Jim Laskey1ee29252007-01-26 14:34:52 +0000912 Result = DAG.getNode(ISD::LABEL, MVT::Other,&Ops[0],Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +0000913 }
Jim Laskeye81aecb2005-12-21 20:51:37 +0000914 } else {
915 Result = Tmp1; // chain
916 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000917 break;
Chris Lattnere7736732005-12-18 23:54:29 +0000918 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000919 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +0000920 if (Tmp1 != Node->getOperand(0) ||
921 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000922 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +0000923 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +0000924 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
925 Ops.push_back(Node->getOperand(1)); // line # must be legal.
926 Ops.push_back(Node->getOperand(2)); // col # must be legal.
927 } else {
928 // Otherwise promote them.
929 Ops.push_back(PromoteOp(Node->getOperand(1)));
930 Ops.push_back(PromoteOp(Node->getOperand(2)));
931 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000932 Ops.push_back(Node->getOperand(3)); // filename must be legal.
933 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000934 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +0000935 }
936 break;
937 }
938 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000939
940 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +0000941 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000942 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000943 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +0000944 case TargetLowering::Legal:
945 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
946 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
947 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
948 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000949 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000950 break;
951 }
952 break;
953
Jim Laskey1ee29252007-01-26 14:34:52 +0000954 case ISD::LABEL:
955 assert(Node->getNumOperands() == 2 && "Invalid LABEL node!");
956 switch (TLI.getOperationAction(ISD::LABEL, MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000957 default: assert(0 && "This action is not supported yet!");
958 case TargetLowering::Legal:
959 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
960 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000961 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000962 break;
Chris Lattnera9569f12007-03-03 19:21:38 +0000963 case TargetLowering::Expand:
964 Result = LegalizeOp(Node->getOperand(0));
965 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000966 }
Nate Begeman551bf3f2006-02-17 05:43:56 +0000967 break;
Chris Lattner36ce6912005-11-29 06:21:05 +0000968
Scott Michelc1513d22007-08-08 23:23:31 +0000969 case ISD::Constant: {
970 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
971 unsigned opAction =
972 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
973
Chris Lattner3e928bb2005-01-07 07:47:09 +0000974 // We know we don't need to expand constants here, constants only have one
975 // value and we check that it is fine above.
976
Scott Michelc1513d22007-08-08 23:23:31 +0000977 if (opAction == TargetLowering::Custom) {
978 Tmp1 = TLI.LowerOperation(Result, DAG);
979 if (Tmp1.Val)
980 Result = Tmp1;
981 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000982 break;
Scott Michelc1513d22007-08-08 23:23:31 +0000983 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000984 case ISD::ConstantFP: {
985 // Spill FP immediates to the constant pool if the target cannot directly
986 // codegen them. Targets often have some immediate values that can be
987 // efficiently generated into an FP register without a load. We explicitly
988 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000989 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
990
991 // Check to see if this FP immediate is already legal.
992 bool isLegal = false;
993 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
994 E = TLI.legal_fpimm_end(); I != E; ++I)
995 if (CFP->isExactlyValue(*I)) {
996 isLegal = true;
997 break;
998 }
999
Chris Lattner3181a772006-01-29 06:26:56 +00001000 // If this is a legal constant, turn it into a TargetConstantFP node.
1001 if (isLegal) {
1002 Result = DAG.getTargetConstantFP(CFP->getValue(), CFP->getValueType(0));
1003 break;
1004 }
1005
1006 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1007 default: assert(0 && "This action is not supported yet!");
1008 case TargetLowering::Custom:
1009 Tmp3 = TLI.LowerOperation(Result, DAG);
1010 if (Tmp3.Val) {
1011 Result = Tmp3;
1012 break;
1013 }
1014 // FALLTHROUGH
1015 case TargetLowering::Expand:
Evan Cheng279101e2006-12-12 22:19:28 +00001016 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001017 }
1018 break;
1019 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001020 case ISD::TokenFactor:
1021 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001022 Tmp1 = LegalizeOp(Node->getOperand(0));
1023 Tmp2 = LegalizeOp(Node->getOperand(1));
1024 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1025 } else if (Node->getNumOperands() == 3) {
1026 Tmp1 = LegalizeOp(Node->getOperand(0));
1027 Tmp2 = LegalizeOp(Node->getOperand(1));
1028 Tmp3 = LegalizeOp(Node->getOperand(2));
1029 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001030 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001031 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001032 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001033 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1034 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001035 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001036 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001037 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001038
1039 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001040 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001041 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001042 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1043 assert(Tmp3.Val && "Target didn't custom lower this node!");
1044 assert(Tmp3.Val->getNumValues() == Result.Val->getNumValues() &&
1045 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001046
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001047 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001048 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +00001049 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
1050 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +00001051 if (Op.ResNo == i)
1052 Tmp2 = Tmp1;
1053 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
1054 }
1055 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001056 case ISD::EXTRACT_SUBREG: {
1057 Tmp1 = LegalizeOp(Node->getOperand(0));
1058 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1059 assert(idx && "Operand must be a constant");
1060 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1061 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1062 }
1063 break;
1064 case ISD::INSERT_SUBREG: {
1065 Tmp1 = LegalizeOp(Node->getOperand(0));
1066 Tmp2 = LegalizeOp(Node->getOperand(1));
1067 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1068 assert(idx && "Operand must be a constant");
1069 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1070 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1071 }
1072 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001073 case ISD::BUILD_VECTOR:
1074 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001075 default: assert(0 && "This action is not supported yet!");
1076 case TargetLowering::Custom:
1077 Tmp3 = TLI.LowerOperation(Result, DAG);
1078 if (Tmp3.Val) {
1079 Result = Tmp3;
1080 break;
1081 }
1082 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001083 case TargetLowering::Expand:
1084 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +00001085 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001086 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001087 break;
1088 case ISD::INSERT_VECTOR_ELT:
1089 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
1090 Tmp2 = LegalizeOp(Node->getOperand(1)); // InVal
1091 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
1092 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1093
1094 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1095 Node->getValueType(0))) {
1096 default: assert(0 && "This action is not supported yet!");
1097 case TargetLowering::Legal:
1098 break;
1099 case TargetLowering::Custom:
1100 Tmp3 = TLI.LowerOperation(Result, DAG);
1101 if (Tmp3.Val) {
1102 Result = Tmp3;
1103 break;
1104 }
1105 // FALLTHROUGH
1106 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001107 // If the insert index is a constant, codegen this as a scalar_to_vector,
1108 // then a shuffle that inserts it into the right position in the vector.
1109 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
1110 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
1111 Tmp1.getValueType(), Tmp2);
1112
1113 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
1114 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
Dan Gohman51eaa862007-06-14 22:58:02 +00001115 MVT::ValueType ShufMaskEltVT = MVT::getVectorElementType(ShufMaskVT);
Chris Lattner8d5a8942006-04-17 19:21:01 +00001116
1117 // We generate a shuffle of InVec and ScVec, so the shuffle mask should
1118 // be 0,1,2,3,4,5... with the appropriate element replaced with elt 0 of
1119 // the RHS.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001120 SmallVector<SDOperand, 8> ShufOps;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001121 for (unsigned i = 0; i != NumElts; ++i) {
1122 if (i != InsertPos->getValue())
1123 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1124 else
1125 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1126 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001127 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1128 &ShufOps[0], ShufOps.size());
Chris Lattner8d5a8942006-04-17 19:21:01 +00001129
1130 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1131 Tmp1, ScVec, ShufMask);
1132 Result = LegalizeOp(Result);
1133 break;
1134 }
1135
Chris Lattner2332b9f2006-03-19 01:17:20 +00001136 // If the target doesn't support this, we have to spill the input vector
1137 // to a temporary stack slot, update the element, then reload it. This is
1138 // badness. We could also load the value into a vector register (either
1139 // with a "move to register" or "extload into register" instruction, then
1140 // permute it into place, if the idx is a constant and if the idx is
1141 // supported by the target.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001142 MVT::ValueType VT = Tmp1.getValueType();
1143 MVT::ValueType EltVT = Tmp2.getValueType();
1144 MVT::ValueType IdxVT = Tmp3.getValueType();
1145 MVT::ValueType PtrVT = TLI.getPointerTy();
1146 SDOperand StackPtr = CreateStackTemporary(VT);
Evan Chengeb0b4612006-03-31 01:27:51 +00001147 // Store the vector.
Evan Cheng8b2794a2006-10-13 21:14:26 +00001148 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +00001149
1150 // Truncate or zero extend offset to target pointer type.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001151 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
1152 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Chengeb0b4612006-03-31 01:27:51 +00001153 // Add the offset to the index.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001154 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
1155 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
1156 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Chengeb0b4612006-03-31 01:27:51 +00001157 // Store the scalar value.
Evan Cheng8b2794a2006-10-13 21:14:26 +00001158 Ch = DAG.getStore(Ch, Tmp2, StackPtr2, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +00001159 // Load the updated vector.
Evan Cheng466685d2006-10-09 20:57:25 +00001160 Result = DAG.getLoad(VT, Ch, StackPtr, NULL, 0);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001161 break;
1162 }
1163 }
1164 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001165 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001166 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1167 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1168 break;
1169 }
1170
Chris Lattnerce872152006-03-19 06:31:19 +00001171 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1172 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1173 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1174 Node->getValueType(0))) {
1175 default: assert(0 && "This action is not supported yet!");
1176 case TargetLowering::Legal:
1177 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001178 case TargetLowering::Custom:
1179 Tmp3 = TLI.LowerOperation(Result, DAG);
1180 if (Tmp3.Val) {
1181 Result = Tmp3;
1182 break;
1183 }
1184 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001185 case TargetLowering::Expand:
1186 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001187 break;
1188 }
Chris Lattnerce872152006-03-19 06:31:19 +00001189 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001190 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001191 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1192 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1193 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1194
1195 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001196 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1197 default: assert(0 && "Unknown operation action!");
1198 case TargetLowering::Legal:
1199 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1200 "vector shuffle should not be created if not legal!");
1201 break;
1202 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001203 Tmp3 = TLI.LowerOperation(Result, DAG);
1204 if (Tmp3.Val) {
1205 Result = Tmp3;
1206 break;
1207 }
1208 // FALLTHROUGH
1209 case TargetLowering::Expand: {
1210 MVT::ValueType VT = Node->getValueType(0);
Dan Gohman51eaa862007-06-14 22:58:02 +00001211 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001212 MVT::ValueType PtrVT = TLI.getPointerTy();
1213 SDOperand Mask = Node->getOperand(2);
1214 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001215 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001216 for (unsigned i = 0; i != NumElems; ++i) {
1217 SDOperand Arg = Mask.getOperand(i);
1218 if (Arg.getOpcode() == ISD::UNDEF) {
1219 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1220 } else {
1221 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1222 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1223 if (Idx < NumElems)
1224 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1225 DAG.getConstant(Idx, PtrVT)));
1226 else
1227 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1228 DAG.getConstant(Idx - NumElems, PtrVT)));
1229 }
1230 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001231 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001232 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001233 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001234 case TargetLowering::Promote: {
1235 // Change base type to a different vector type.
1236 MVT::ValueType OVT = Node->getValueType(0);
1237 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1238
1239 // Cast the two input vectors.
1240 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1241 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1242
1243 // Convert the shuffle mask to the right # elements.
1244 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1245 assert(Tmp3.Val && "Shuffle not legal?");
1246 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1247 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1248 break;
1249 }
Chris Lattner87100e02006-03-20 01:52:29 +00001250 }
1251 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001252
1253 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001254 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001255 Tmp2 = LegalizeOp(Node->getOperand(1));
1256 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001257 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001258 break;
1259
Dan Gohman7f321562007-06-25 16:23:39 +00001260 case ISD::EXTRACT_SUBVECTOR:
1261 Tmp1 = Node->getOperand(0);
1262 Tmp2 = LegalizeOp(Node->getOperand(1));
1263 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1264 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001265 break;
1266
Chris Lattner6831a812006-02-13 09:18:02 +00001267 case ISD::CALLSEQ_START: {
1268 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1269
1270 // Recursively Legalize all of the inputs of the call end that do not lead
1271 // to this call start. This ensures that any libcalls that need be inserted
1272 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001273 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001274 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001275 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1276 NodesLeadingTo);
1277 }
Chris Lattner6831a812006-02-13 09:18:02 +00001278
1279 // Now that we legalized all of the inputs (which may have inserted
1280 // libcalls) create the new CALLSEQ_START node.
1281 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1282
1283 // Merge in the last call, to ensure that this call start after the last
1284 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001285 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001286 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1287 Tmp1 = LegalizeOp(Tmp1);
1288 }
Chris Lattner6831a812006-02-13 09:18:02 +00001289
1290 // Do not try to legalize the target-specific arguments (#1+).
1291 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001292 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001293 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001294 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001295 }
1296
1297 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001298 AddLegalizedOperand(Op.getValue(0), Result);
1299 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1300 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1301
Chris Lattner6831a812006-02-13 09:18:02 +00001302 // Now that the callseq_start and all of the non-call nodes above this call
1303 // sequence have been legalized, legalize the call itself. During this
1304 // process, no libcalls can/will be inserted, guaranteeing that no calls
1305 // can overlap.
1306 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1307 SDOperand InCallSEQ = LastCALLSEQ_END;
1308 // Note that we are selecting this call!
1309 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1310 IsLegalizingCall = true;
1311
1312 // Legalize the call, starting from the CALLSEQ_END.
1313 LegalizeOp(LastCALLSEQ_END);
1314 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1315 return Result;
1316 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001317 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001318 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1319 // will cause this node to be legalized as well as handling libcalls right.
1320 if (LastCALLSEQ_END.Val != Node) {
1321 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
Chris Lattner718071c2007-02-04 00:50:02 +00001322 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001323 assert(I != LegalizedNodes.end() &&
1324 "Legalizing the call start should have legalized this node!");
1325 return I->second;
1326 }
1327
1328 // Otherwise, the call start has been legalized and everything is going
1329 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001330 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001331 // Do not try to legalize the target-specific arguments (#1+), except for
1332 // an optional flag input.
1333 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1334 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001335 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001336 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001337 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001338 }
1339 } else {
1340 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1341 if (Tmp1 != Node->getOperand(0) ||
1342 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001343 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001344 Ops[0] = Tmp1;
1345 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001346 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001347 }
Chris Lattner6a542892006-01-24 05:48:21 +00001348 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001349 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001350 // This finishes up call legalization.
1351 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001352
1353 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1354 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1355 if (Node->getNumValues() == 2)
1356 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1357 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001358 case ISD::DYNAMIC_STACKALLOC: {
Evan Cheng61bbbab2007-08-16 23:50:06 +00001359 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001360 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1361 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1362 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001363 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001364
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001365 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001366 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001367 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001368 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001369 case TargetLowering::Expand: {
1370 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1371 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1372 " not tell us which reg is the stack pointer!");
1373 SDOperand Chain = Tmp1.getOperand(0);
1374 SDOperand Size = Tmp2.getOperand(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001375 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT);
1376 Chain = SP.getValue(1);
1377 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1378 unsigned StackAlign =
1379 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1380 if (Align > StackAlign)
1381 SP = DAG.getNode(ISD::AND, VT, SP, DAG.getConstant(-Align, VT));
1382 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
1383 Tmp2 = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001384 Tmp1 = LegalizeOp(Tmp1);
1385 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001386 break;
1387 }
1388 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001389 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1390 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001391 Tmp1 = LegalizeOp(Tmp3);
1392 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001393 }
Chris Lattner903d2782006-01-15 08:54:32 +00001394 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001395 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001396 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001397 }
Chris Lattner903d2782006-01-15 08:54:32 +00001398 // Since this op produce two values, make sure to remember that we
1399 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001400 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1401 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001402 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001403 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001404 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001405 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001406 bool Changed = false;
1407 // Legalize all of the operands of the inline asm, in case they are nodes
1408 // that need to be expanded or something. Note we skip the asm string and
1409 // all of the TargetConstant flags.
1410 SDOperand Op = LegalizeOp(Ops[0]);
1411 Changed = Op != Ops[0];
1412 Ops[0] = Op;
1413
1414 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1415 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1416 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1417 for (++i; NumVals; ++i, --NumVals) {
1418 SDOperand Op = LegalizeOp(Ops[i]);
1419 if (Op != Ops[i]) {
1420 Changed = true;
1421 Ops[i] = Op;
1422 }
1423 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001424 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001425
1426 if (HasInFlag) {
1427 Op = LegalizeOp(Ops.back());
1428 Changed |= Op != Ops.back();
1429 Ops.back() = Op;
1430 }
1431
1432 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001433 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001434
1435 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001436 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001437 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1438 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001439 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001440 case ISD::BR:
1441 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001442 // Ensure that libcalls are emitted before a branch.
1443 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1444 Tmp1 = LegalizeOp(Tmp1);
1445 LastCALLSEQ_END = DAG.getEntryNode();
1446
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001447 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001448 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001449 case ISD::BRIND:
1450 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1451 // Ensure that libcalls are emitted before a branch.
1452 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1453 Tmp1 = LegalizeOp(Tmp1);
1454 LastCALLSEQ_END = DAG.getEntryNode();
1455
1456 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1457 default: assert(0 && "Indirect target must be legal type (pointer)!");
1458 case Legal:
1459 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1460 break;
1461 }
1462 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1463 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001464 case ISD::BR_JT:
1465 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1466 // Ensure that libcalls are emitted before a branch.
1467 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1468 Tmp1 = LegalizeOp(Tmp1);
1469 LastCALLSEQ_END = DAG.getEntryNode();
1470
1471 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1472 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1473
1474 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1475 default: assert(0 && "This action is not supported yet!");
1476 case TargetLowering::Legal: break;
1477 case TargetLowering::Custom:
1478 Tmp1 = TLI.LowerOperation(Result, DAG);
1479 if (Tmp1.Val) Result = Tmp1;
1480 break;
1481 case TargetLowering::Expand: {
1482 SDOperand Chain = Result.getOperand(0);
1483 SDOperand Table = Result.getOperand(1);
1484 SDOperand Index = Result.getOperand(2);
1485
1486 MVT::ValueType PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001487 MachineFunction &MF = DAG.getMachineFunction();
1488 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001489 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1490 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001491
1492 SDOperand LD;
1493 switch (EntrySize) {
1494 default: assert(0 && "Size of jump table not supported yet."); break;
1495 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr, NULL, 0); break;
1496 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr, NULL, 0); break;
1497 }
1498
1499 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001500 // For PIC, the sequence is:
1501 // BRIND(load(Jumptable + index) + RelocBase)
1502 // RelocBase is the JumpTable on PPC and X86, GOT on Alpha
1503 SDOperand Reloc;
1504 if (TLI.usesGlobalOffsetTable())
1505 Reloc = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, PTy);
1506 else
1507 Reloc = Table;
Evan Chengd0631892006-10-31 02:31:00 +00001508 Addr = (PTy != MVT::i32) ? DAG.getNode(ISD::SIGN_EXTEND, PTy, LD) : LD;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001509 Addr = DAG.getNode(ISD::ADD, PTy, Addr, Reloc);
1510 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
1511 } else {
1512 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD);
1513 }
1514 }
1515 }
1516 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001517 case ISD::BRCOND:
1518 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001519 // Ensure that libcalls are emitted before a return.
1520 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1521 Tmp1 = LegalizeOp(Tmp1);
1522 LastCALLSEQ_END = DAG.getEntryNode();
1523
Chris Lattner47e92232005-01-18 19:27:06 +00001524 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1525 case Expand: assert(0 && "It's impossible to expand bools");
1526 case Legal:
1527 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1528 break;
1529 case Promote:
1530 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001531
1532 // The top bits of the promoted condition are not necessarily zero, ensure
1533 // that the value is properly zero extended.
Dan Gohmanea859be2007-06-22 14:59:07 +00001534 if (!DAG.MaskedValueIsZero(Tmp2,
Chris Lattnerf9908172006-11-27 04:39:56 +00001535 MVT::getIntVTBitMask(Tmp2.getValueType())^1))
1536 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001537 break;
1538 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001539
1540 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001541 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001542
1543 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1544 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001545 case TargetLowering::Legal: break;
1546 case TargetLowering::Custom:
1547 Tmp1 = TLI.LowerOperation(Result, DAG);
1548 if (Tmp1.Val) Result = Tmp1;
1549 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001550 case TargetLowering::Expand:
1551 // Expand brcond's setcc into its constituent parts and create a BR_CC
1552 // Node.
1553 if (Tmp2.getOpcode() == ISD::SETCC) {
1554 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1555 Tmp2.getOperand(0), Tmp2.getOperand(1),
1556 Node->getOperand(2));
1557 } else {
1558 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1559 DAG.getCondCode(ISD::SETNE), Tmp2,
1560 DAG.getConstant(0, Tmp2.getValueType()),
1561 Node->getOperand(2));
1562 }
1563 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001564 }
1565 break;
1566 case ISD::BR_CC:
1567 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001568 // Ensure that libcalls are emitted before a branch.
1569 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1570 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001571 Tmp2 = Node->getOperand(2); // LHS
1572 Tmp3 = Node->getOperand(3); // RHS
1573 Tmp4 = Node->getOperand(1); // CC
1574
1575 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001576 LastCALLSEQ_END = DAG.getEntryNode();
1577
Nate Begeman750ac1b2006-02-01 07:19:44 +00001578 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1579 // the LHS is a legal SETCC itself. In this case, we need to compare
1580 // the result against zero to select between true and false values.
1581 if (Tmp3.Val == 0) {
1582 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1583 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001584 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001585
1586 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1587 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001588
Chris Lattner181b7a32005-12-17 23:46:46 +00001589 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1590 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001591 case TargetLowering::Legal: break;
1592 case TargetLowering::Custom:
1593 Tmp4 = TLI.LowerOperation(Result, DAG);
1594 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001595 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001596 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001597 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001598 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001599 LoadSDNode *LD = cast<LoadSDNode>(Node);
1600 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1601 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001602
Evan Cheng466685d2006-10-09 20:57:25 +00001603 ISD::LoadExtType ExtType = LD->getExtensionType();
1604 if (ExtType == ISD::NON_EXTLOAD) {
1605 MVT::ValueType VT = Node->getValueType(0);
1606 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1607 Tmp3 = Result.getValue(0);
1608 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001609
Evan Cheng466685d2006-10-09 20:57:25 +00001610 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1611 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001612 case TargetLowering::Legal:
1613 // If this is an unaligned load and the target doesn't support it,
1614 // expand it.
1615 if (!TLI.allowsUnalignedMemoryAccesses()) {
1616 unsigned ABIAlignment = TLI.getTargetData()->
1617 getABITypeAlignment(MVT::getTypeForValueType(LD->getLoadedVT()));
1618 if (LD->getAlignment() < ABIAlignment){
1619 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1620 TLI);
1621 Tmp3 = Result.getOperand(0);
1622 Tmp4 = Result.getOperand(1);
1623 LegalizeOp(Tmp3);
1624 LegalizeOp(Tmp4);
1625 }
1626 }
1627 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001628 case TargetLowering::Custom:
1629 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1630 if (Tmp1.Val) {
1631 Tmp3 = LegalizeOp(Tmp1);
1632 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001633 }
Evan Cheng466685d2006-10-09 20:57:25 +00001634 break;
1635 case TargetLowering::Promote: {
1636 // Only promote a load of vector type to another.
1637 assert(MVT::isVector(VT) && "Cannot promote this load!");
1638 // Change base type to a different vector type.
1639 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1640
1641 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001642 LD->getSrcValueOffset(),
1643 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001644 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1645 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001646 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001647 }
Evan Cheng466685d2006-10-09 20:57:25 +00001648 }
1649 // Since loads produce two values, make sure to remember that we
1650 // legalized both of them.
1651 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1652 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1653 return Op.ResNo ? Tmp4 : Tmp3;
1654 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00001655 MVT::ValueType SrcVT = LD->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00001656 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
1657 default: assert(0 && "This action is not supported yet!");
1658 case TargetLowering::Promote:
1659 assert(SrcVT == MVT::i1 &&
1660 "Can only promote extending LOAD from i1 -> i8!");
1661 Result = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
1662 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001663 MVT::i8, LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001664 Tmp1 = Result.getValue(0);
1665 Tmp2 = Result.getValue(1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001666 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001667 case TargetLowering::Custom:
1668 isCustom = true;
1669 // FALLTHROUGH
1670 case TargetLowering::Legal:
1671 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1672 Tmp1 = Result.getValue(0);
1673 Tmp2 = Result.getValue(1);
1674
1675 if (isCustom) {
1676 Tmp3 = TLI.LowerOperation(Result, DAG);
1677 if (Tmp3.Val) {
1678 Tmp1 = LegalizeOp(Tmp3);
1679 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1680 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001681 } else {
1682 // If this is an unaligned load and the target doesn't support it,
1683 // expand it.
1684 if (!TLI.allowsUnalignedMemoryAccesses()) {
1685 unsigned ABIAlignment = TLI.getTargetData()->
1686 getABITypeAlignment(MVT::getTypeForValueType(LD->getLoadedVT()));
1687 if (LD->getAlignment() < ABIAlignment){
1688 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1689 TLI);
1690 Tmp1 = Result.getOperand(0);
1691 Tmp2 = Result.getOperand(1);
1692 LegalizeOp(Tmp1);
1693 LegalizeOp(Tmp2);
1694 }
1695 }
Evan Cheng466685d2006-10-09 20:57:25 +00001696 }
1697 break;
1698 case TargetLowering::Expand:
1699 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
1700 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1701 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001702 LD->getSrcValueOffset(),
1703 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001704 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
1705 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
1706 Tmp2 = LegalizeOp(Load.getValue(1));
1707 break;
1708 }
Chris Lattnerfea997a2007-02-01 04:55:59 +00001709 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
Evan Cheng466685d2006-10-09 20:57:25 +00001710 // Turn the unsupported load into an EXTLOAD followed by an explicit
1711 // zero/sign extend inreg.
1712 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1713 Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001714 LD->getSrcValueOffset(), SrcVT,
1715 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001716 SDOperand ValRes;
1717 if (ExtType == ISD::SEXTLOAD)
1718 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1719 Result, DAG.getValueType(SrcVT));
1720 else
1721 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
1722 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
1723 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
1724 break;
1725 }
1726 // Since loads produce two values, make sure to remember that we legalized
1727 // both of them.
1728 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1729 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1730 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00001731 }
Chris Lattner01ff7212005-04-10 22:54:25 +00001732 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001733 case ISD::EXTRACT_ELEMENT: {
1734 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1735 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001736 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00001737 case Legal:
1738 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1739 // 1 -> Hi
1740 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1741 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
1742 TLI.getShiftAmountTy()));
1743 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1744 } else {
1745 // 0 -> Lo
1746 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
1747 Node->getOperand(0));
1748 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001749 break;
1750 case Expand:
1751 // Get both the low and high parts.
1752 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1753 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1754 Result = Tmp2; // 1 -> Hi
1755 else
1756 Result = Tmp1; // 0 -> Lo
1757 break;
1758 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001759 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00001760 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001761
1762 case ISD::CopyToReg:
1763 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00001764
Chris Lattnerc9c60f62005-08-24 16:35:28 +00001765 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001766 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00001767 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001768 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001769 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001770 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001771 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001772 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001773 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001774 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001775 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1776 Tmp3);
1777 } else {
1778 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001779 }
1780
1781 // Since this produces two values, make sure to remember that we legalized
1782 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001783 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001784 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001785 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00001786 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001787 break;
1788
1789 case ISD::RET:
1790 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001791
1792 // Ensure that libcalls are emitted before a return.
1793 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1794 Tmp1 = LegalizeOp(Tmp1);
1795 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00001796
Chris Lattner3e928bb2005-01-07 07:47:09 +00001797 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00001798 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00001799 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001800 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00001801 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00001802 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00001803 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001804 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00001805 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +00001806 if (!MVT::isVector(Tmp2.getValueType())) {
Chris Lattnerf87324e2006-04-11 01:31:51 +00001807 SDOperand Lo, Hi;
1808 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00001809
1810 // Big endian systems want the hi reg first.
1811 if (!TLI.isLittleEndian())
1812 std::swap(Lo, Hi);
1813
Evan Cheng13acce32006-12-11 19:27:14 +00001814 if (Hi.Val)
1815 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
1816 else
1817 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00001818 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001819 } else {
1820 SDNode *InVal = Tmp2.Val;
Dan Gohman7f321562007-06-25 16:23:39 +00001821 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(0));
1822 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(0));
Chris Lattnerf87324e2006-04-11 01:31:51 +00001823
Dan Gohman7f321562007-06-25 16:23:39 +00001824 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00001825 // type. If so, convert to the vector type.
Chris Lattnerf87324e2006-04-11 01:31:51 +00001826 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00001827 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00001828 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00001829 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001830 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001831 } else if (NumElems == 1) {
1832 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00001833 Tmp2 = ScalarizeVectorOp(Tmp2);
1834 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001835 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001836
1837 // FIXME: Returns of gcc generic vectors smaller than a legal type
1838 // should be returned in integer registers!
1839
Chris Lattnerf87324e2006-04-11 01:31:51 +00001840 // The scalarized value type may not be legal, e.g. it might require
1841 // promotion or expansion. Relegalize the return.
1842 Result = LegalizeOp(Result);
1843 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001844 // FIXME: Returns of gcc generic vectors larger than a legal vector
1845 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00001846 SDOperand Lo, Hi;
1847 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00001848 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001849 Result = LegalizeOp(Result);
1850 }
1851 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001852 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001853 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001854 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001855 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001856 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00001857 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001858 }
1859 break;
1860 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001861 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001862 break;
1863 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001864 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001865 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001866 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00001867 switch (getTypeAction(Node->getOperand(i).getValueType())) {
1868 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00001869 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001870 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001871 break;
1872 case Expand: {
1873 SDOperand Lo, Hi;
Dan Gohman6595cb32007-06-27 16:08:04 +00001874 assert(!MVT::isExtendedVT(Node->getOperand(i).getValueType()) &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001875 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001876 ExpandOp(Node->getOperand(i), Lo, Hi);
1877 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001878 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00001879 if (Hi.Val) {
1880 NewValues.push_back(Hi);
1881 NewValues.push_back(Node->getOperand(i+1));
1882 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001883 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001884 }
1885 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001886 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001887 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001888
1889 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001890 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001891 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001892 Result = DAG.getNode(ISD::RET, MVT::Other,
1893 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00001894 break;
1895 }
1896 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001897
Chris Lattner6862dbc2006-01-29 21:02:23 +00001898 if (Result.getOpcode() == ISD::RET) {
1899 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
1900 default: assert(0 && "This action is not supported yet!");
1901 case TargetLowering::Legal: break;
1902 case TargetLowering::Custom:
1903 Tmp1 = TLI.LowerOperation(Result, DAG);
1904 if (Tmp1.Val) Result = Tmp1;
1905 break;
1906 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001907 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001908 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001909 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00001910 StoreSDNode *ST = cast<StoreSDNode>(Node);
1911 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
1912 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001913 int SVOffset = ST->getSrcValueOffset();
1914 unsigned Alignment = ST->getAlignment();
1915 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00001916
Evan Cheng8b2794a2006-10-13 21:14:26 +00001917 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00001918 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
1919 // FIXME: We shouldn't do this for TargetConstantFP's.
1920 // FIXME: move this to the DAG Combiner! Note that we can't regress due
1921 // to phase ordering between legalized code and the dag combiner. This
1922 // probably means that we need to integrate dag combiner and legalizer
1923 // together.
1924 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
1925 if (CFP->getValueType(0) == MVT::f32) {
1926 Tmp3 = DAG.getConstant(FloatToBits(CFP->getValue()), MVT::i32);
1927 } else {
1928 assert(CFP->getValueType(0) == MVT::f64 && "Unknown FP type!");
1929 Tmp3 = DAG.getConstant(DoubleToBits(CFP->getValue()), MVT::i64);
1930 }
1931 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001932 SVOffset, isVolatile, Alignment);
Chris Lattnerd93d46e2006-12-12 04:18:56 +00001933 break;
1934 }
1935
Evan Cheng8b2794a2006-10-13 21:14:26 +00001936 switch (getTypeAction(ST->getStoredVT())) {
1937 case Legal: {
1938 Tmp3 = LegalizeOp(ST->getValue());
1939 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1940 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001941
Evan Cheng8b2794a2006-10-13 21:14:26 +00001942 MVT::ValueType VT = Tmp3.getValueType();
1943 switch (TLI.getOperationAction(ISD::STORE, VT)) {
1944 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001945 case TargetLowering::Legal:
1946 // If this is an unaligned store and the target doesn't support it,
1947 // expand it.
1948 if (!TLI.allowsUnalignedMemoryAccesses()) {
1949 unsigned ABIAlignment = TLI.getTargetData()->
1950 getABITypeAlignment(MVT::getTypeForValueType(ST->getStoredVT()));
1951 if (ST->getAlignment() < ABIAlignment)
1952 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
1953 TLI);
1954 }
1955 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00001956 case TargetLowering::Custom:
1957 Tmp1 = TLI.LowerOperation(Result, DAG);
1958 if (Tmp1.Val) Result = Tmp1;
1959 break;
1960 case TargetLowering::Promote:
1961 assert(MVT::isVector(VT) && "Unknown legal promote case!");
1962 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
1963 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
1964 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001965 ST->getSrcValue(), SVOffset, isVolatile,
1966 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001967 break;
1968 }
1969 break;
1970 }
1971 case Promote:
1972 // Truncate the value and store the result.
1973 Tmp3 = PromoteOp(ST->getValue());
1974 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001975 SVOffset, ST->getStoredVT(),
1976 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001977 break;
1978
1979 case Expand:
1980 unsigned IncrementSize = 0;
1981 SDOperand Lo, Hi;
1982
1983 // If this is a vector type, then we have to calculate the increment as
1984 // the product of the element size in bytes, and the number of elements
1985 // in the high half of the vector.
Dan Gohman7f321562007-06-25 16:23:39 +00001986 if (MVT::isVector(ST->getValue().getValueType())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00001987 SDNode *InVal = ST->getValue().Val;
Dan Gohman7f321562007-06-25 16:23:39 +00001988 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(0));
1989 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(0));
Evan Cheng8b2794a2006-10-13 21:14:26 +00001990
Dan Gohman7f321562007-06-25 16:23:39 +00001991 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00001992 // type. If so, convert to the vector type.
Evan Cheng8b2794a2006-10-13 21:14:26 +00001993 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00001994 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00001995 // Turn this into a normal store of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00001996 Tmp3 = LegalizeOp(Node->getOperand(1));
Evan Cheng8b2794a2006-10-13 21:14:26 +00001997 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001998 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001999 Result = LegalizeOp(Result);
2000 break;
2001 } else if (NumElems == 1) {
2002 // Turn this into a normal store of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002003 Tmp3 = ScalarizeVectorOp(Node->getOperand(1));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002004 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002005 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002006 // The scalarized value type may not be legal, e.g. it might require
2007 // promotion or expansion. Relegalize the scalar store.
2008 Result = LegalizeOp(Result);
2009 break;
2010 } else {
2011 SplitVectorOp(Node->getOperand(1), Lo, Hi);
2012 IncrementSize = NumElems/2 * MVT::getSizeInBits(EVT)/8;
2013 }
2014 } else {
2015 ExpandOp(Node->getOperand(1), Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002016 IncrementSize = Hi.Val ? MVT::getSizeInBits(Hi.getValueType())/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002017
2018 if (!TLI.isLittleEndian())
2019 std::swap(Lo, Hi);
2020 }
2021
2022 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002023 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002024
2025 if (Hi.Val == NULL) {
2026 // Must be int <-> float one-to-one expansion.
2027 Result = Lo;
2028 break;
2029 }
2030
Evan Cheng8b2794a2006-10-13 21:14:26 +00002031 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2032 getIntPtrConstant(IncrementSize));
2033 assert(isTypeLegal(Tmp2.getValueType()) &&
2034 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002035 SVOffset += IncrementSize;
2036 if (Alignment > IncrementSize)
2037 Alignment = IncrementSize;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002038 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002039 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002040 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2041 break;
2042 }
2043 } else {
2044 // Truncating store
2045 assert(isTypeLegal(ST->getValue().getValueType()) &&
2046 "Cannot handle illegal TRUNCSTORE yet!");
2047 Tmp3 = LegalizeOp(ST->getValue());
2048
2049 // The only promote case we handle is TRUNCSTORE:i1 X into
2050 // -> TRUNCSTORE:i8 (and X, 1)
2051 if (ST->getStoredVT() == MVT::i1 &&
2052 TLI.getStoreXAction(MVT::i1) == TargetLowering::Promote) {
2053 // Promote the bool to a mask then store.
2054 Tmp3 = DAG.getNode(ISD::AND, Tmp3.getValueType(), Tmp3,
2055 DAG.getConstant(1, Tmp3.getValueType()));
2056 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002057 SVOffset, MVT::i8,
2058 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002059 } else if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2060 Tmp2 != ST->getBasePtr()) {
2061 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2062 ST->getOffset());
2063 }
2064
2065 MVT::ValueType StVT = cast<StoreSDNode>(Result.Val)->getStoredVT();
2066 switch (TLI.getStoreXAction(StVT)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002067 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002068 case TargetLowering::Legal:
2069 // If this is an unaligned store and the target doesn't support it,
2070 // expand it.
2071 if (!TLI.allowsUnalignedMemoryAccesses()) {
2072 unsigned ABIAlignment = TLI.getTargetData()->
2073 getABITypeAlignment(MVT::getTypeForValueType(ST->getStoredVT()));
2074 if (ST->getAlignment() < ABIAlignment)
2075 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2076 TLI);
2077 }
2078 break;
Chris Lattner456a93a2006-01-28 07:39:30 +00002079 case TargetLowering::Custom:
2080 Tmp1 = TLI.LowerOperation(Result, DAG);
2081 if (Tmp1.Val) Result = Tmp1;
2082 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002083 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002084 }
2085 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002086 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002087 case ISD::PCMARKER:
2088 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002089 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002090 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002091 case ISD::STACKSAVE:
2092 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002093 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2094 Tmp1 = Result.getValue(0);
2095 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002096
Chris Lattner140d53c2006-01-13 02:50:02 +00002097 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2098 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002099 case TargetLowering::Legal: break;
2100 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002101 Tmp3 = TLI.LowerOperation(Result, DAG);
2102 if (Tmp3.Val) {
2103 Tmp1 = LegalizeOp(Tmp3);
2104 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002105 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002106 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002107 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002108 // Expand to CopyFromReg if the target set
2109 // StackPointerRegisterToSaveRestore.
2110 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002111 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002112 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002113 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002114 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002115 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2116 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002117 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002118 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002119 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002120
2121 // Since stacksave produce two values, make sure to remember that we
2122 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002123 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2124 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2125 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002126
Chris Lattner140d53c2006-01-13 02:50:02 +00002127 case ISD::STACKRESTORE:
2128 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2129 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002130 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002131
2132 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2133 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002134 case TargetLowering::Legal: break;
2135 case TargetLowering::Custom:
2136 Tmp1 = TLI.LowerOperation(Result, DAG);
2137 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002138 break;
2139 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002140 // Expand to CopyToReg if the target set
2141 // StackPointerRegisterToSaveRestore.
2142 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2143 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2144 } else {
2145 Result = Tmp1;
2146 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002147 break;
2148 }
2149 break;
2150
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002151 case ISD::READCYCLECOUNTER:
2152 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002153 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002154 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2155 Node->getValueType(0))) {
2156 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002157 case TargetLowering::Legal:
2158 Tmp1 = Result.getValue(0);
2159 Tmp2 = Result.getValue(1);
2160 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002161 case TargetLowering::Custom:
2162 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002163 Tmp1 = LegalizeOp(Result.getValue(0));
2164 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002165 break;
2166 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002167
2168 // Since rdcc produce two values, make sure to remember that we legalized
2169 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002170 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2171 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002172 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002173
Chris Lattner2ee743f2005-01-14 22:08:15 +00002174 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002175 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2176 case Expand: assert(0 && "It's impossible to expand bools");
2177 case Legal:
2178 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2179 break;
2180 case Promote:
2181 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002182 // Make sure the condition is either zero or one.
Dan Gohmanea859be2007-06-22 14:59:07 +00002183 if (!DAG.MaskedValueIsZero(Tmp1,
Chris Lattnerb6c80602006-11-28 01:03:30 +00002184 MVT::getIntVTBitMask(Tmp1.getValueType())^1))
2185 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002186 break;
2187 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002188 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002189 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002190
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002191 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002192
Nate Begemanb942a3d2005-08-23 04:29:48 +00002193 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002194 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002195 case TargetLowering::Legal: break;
2196 case TargetLowering::Custom: {
2197 Tmp1 = TLI.LowerOperation(Result, DAG);
2198 if (Tmp1.Val) Result = Tmp1;
2199 break;
2200 }
Nate Begeman9373a812005-08-10 20:51:12 +00002201 case TargetLowering::Expand:
2202 if (Tmp1.getOpcode() == ISD::SETCC) {
2203 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2204 Tmp2, Tmp3,
2205 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2206 } else {
2207 Result = DAG.getSelectCC(Tmp1,
2208 DAG.getConstant(0, Tmp1.getValueType()),
2209 Tmp2, Tmp3, ISD::SETNE);
2210 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002211 break;
2212 case TargetLowering::Promote: {
2213 MVT::ValueType NVT =
2214 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2215 unsigned ExtOp, TruncOp;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002216 if (MVT::isVector(Tmp2.getValueType())) {
2217 ExtOp = ISD::BIT_CONVERT;
2218 TruncOp = ISD::BIT_CONVERT;
2219 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002220 ExtOp = ISD::ANY_EXTEND;
2221 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002222 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002223 ExtOp = ISD::FP_EXTEND;
2224 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002225 }
2226 // Promote each of the values to the new type.
2227 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2228 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2229 // Perform the larger operation, then round down.
2230 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
2231 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2232 break;
2233 }
2234 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002235 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002236 case ISD::SELECT_CC: {
2237 Tmp1 = Node->getOperand(0); // LHS
2238 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002239 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2240 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00002241 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002242
Nate Begeman750ac1b2006-02-01 07:19:44 +00002243 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2244
2245 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2246 // the LHS is a legal SETCC itself. In this case, we need to compare
2247 // the result against zero to select between true and false values.
2248 if (Tmp2.Val == 0) {
2249 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2250 CC = DAG.getCondCode(ISD::SETNE);
2251 }
2252 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2253
2254 // Everything is legal, see if we should expand this op or something.
2255 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2256 default: assert(0 && "This action is not supported yet!");
2257 case TargetLowering::Legal: break;
2258 case TargetLowering::Custom:
2259 Tmp1 = TLI.LowerOperation(Result, DAG);
2260 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002261 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002262 }
2263 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002264 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002265 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002266 Tmp1 = Node->getOperand(0);
2267 Tmp2 = Node->getOperand(1);
2268 Tmp3 = Node->getOperand(2);
2269 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2270
2271 // If we had to Expand the SetCC operands into a SELECT node, then it may
2272 // not always be possible to return a true LHS & RHS. In this case, just
2273 // return the value we legalized, returned in the LHS
2274 if (Tmp2.Val == 0) {
2275 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002276 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002277 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002278
Chris Lattner73e142f2006-01-30 22:43:50 +00002279 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002280 default: assert(0 && "Cannot handle this action for SETCC yet!");
2281 case TargetLowering::Custom:
2282 isCustom = true;
2283 // FALLTHROUGH.
2284 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002285 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002286 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002287 Tmp4 = TLI.LowerOperation(Result, DAG);
2288 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002289 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002290 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002291 case TargetLowering::Promote: {
2292 // First step, figure out the appropriate operation to use.
2293 // Allow SETCC to not be supported for all legal data types
2294 // Mostly this targets FP
2295 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
Chris Lattner00755df2007-02-04 00:27:56 +00002296 MVT::ValueType OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002297
2298 // Scan for the appropriate larger type to use.
2299 while (1) {
2300 NewInTy = (MVT::ValueType)(NewInTy+1);
2301
2302 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
2303 "Fell off of the edge of the integer world");
2304 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
2305 "Fell off of the edge of the floating point world");
2306
2307 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002308 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002309 break;
2310 }
2311 if (MVT::isInteger(NewInTy))
2312 assert(0 && "Cannot promote Legal Integer SETCC yet");
2313 else {
2314 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2315 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2316 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002317 Tmp1 = LegalizeOp(Tmp1);
2318 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002319 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002320 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002321 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002322 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002323 case TargetLowering::Expand:
2324 // Expand a setcc node into a select_cc of the same condition, lhs, and
2325 // rhs that selects between const 1 (true) and const 0 (false).
2326 MVT::ValueType VT = Node->getValueType(0);
2327 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2328 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002329 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002330 break;
2331 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002332 break;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002333 case ISD::MEMSET:
2334 case ISD::MEMCPY:
2335 case ISD::MEMMOVE: {
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002336 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnere5605212005-01-28 22:29:18 +00002337 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
2338
2339 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
2340 switch (getTypeAction(Node->getOperand(2).getValueType())) {
2341 case Expand: assert(0 && "Cannot expand a byte!");
2342 case Legal:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002343 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002344 break;
2345 case Promote:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002346 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002347 break;
2348 }
2349 } else {
Misha Brukmanedf128a2005-04-21 22:36:52 +00002350 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnere5605212005-01-28 22:29:18 +00002351 }
Chris Lattner272455b2005-02-02 03:44:41 +00002352
2353 SDOperand Tmp4;
2354 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattner6814f152005-07-13 01:42:45 +00002355 case Expand: {
2356 // Length is too big, just take the lo-part of the length.
2357 SDOperand HiPart;
Chris Lattnerfa9aa2b2006-11-07 04:11:44 +00002358 ExpandOp(Node->getOperand(3), Tmp4, HiPart);
Chris Lattner6814f152005-07-13 01:42:45 +00002359 break;
2360 }
Chris Lattnere5605212005-01-28 22:29:18 +00002361 case Legal:
2362 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnere5605212005-01-28 22:29:18 +00002363 break;
2364 case Promote:
2365 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner272455b2005-02-02 03:44:41 +00002366 break;
2367 }
2368
2369 SDOperand Tmp5;
2370 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2371 case Expand: assert(0 && "Cannot expand this yet!");
2372 case Legal:
2373 Tmp5 = LegalizeOp(Node->getOperand(4));
2374 break;
2375 case Promote:
Chris Lattnere5605212005-01-28 22:29:18 +00002376 Tmp5 = PromoteOp(Node->getOperand(4));
2377 break;
2378 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002379
2380 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2381 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002382 case TargetLowering::Custom:
2383 isCustom = true;
2384 // FALLTHROUGH
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002385 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002386 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
Chris Lattner456a93a2006-01-28 07:39:30 +00002387 if (isCustom) {
2388 Tmp1 = TLI.LowerOperation(Result, DAG);
2389 if (Tmp1.Val) Result = Tmp1;
2390 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002391 break;
2392 case TargetLowering::Expand: {
Chris Lattnere1bd8222005-01-11 05:57:22 +00002393 // Otherwise, the target does not support this operation. Lower the
2394 // operation to an explicit libcall as appropriate.
2395 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Andersona69571c2006-05-03 01:29:57 +00002396 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00002397 TargetLowering::ArgListTy Args;
2398 TargetLowering::ArgListEntry Entry;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002399
Reid Spencer3bfbf4e2005-01-12 14:53:45 +00002400 const char *FnName = 0;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002401 if (Node->getOpcode() == ISD::MEMSET) {
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002402 Entry.Node = Tmp2; Entry.Ty = IntPtrTy;
Reid Spencer47857812006-12-31 05:55:36 +00002403 Args.push_back(Entry);
Chris Lattnerdca7abe2006-02-20 06:38:35 +00002404 // Extend the (previously legalized) ubyte argument to be an int value
2405 // for the call.
2406 if (Tmp3.getValueType() > MVT::i32)
2407 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2408 else
2409 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002410 Entry.Node = Tmp3; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
Reid Spencer47857812006-12-31 05:55:36 +00002411 Args.push_back(Entry);
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002412 Entry.Node = Tmp4; Entry.Ty = IntPtrTy; Entry.isSExt = false;
Reid Spencer47857812006-12-31 05:55:36 +00002413 Args.push_back(Entry);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002414
2415 FnName = "memset";
2416 } else if (Node->getOpcode() == ISD::MEMCPY ||
2417 Node->getOpcode() == ISD::MEMMOVE) {
Anton Korobeynikovb25fe822007-02-01 08:39:52 +00002418 Entry.Ty = IntPtrTy;
Reid Spencerb47b25c2007-01-03 04:22:32 +00002419 Entry.Node = Tmp2; Args.push_back(Entry);
2420 Entry.Node = Tmp3; Args.push_back(Entry);
2421 Entry.Node = Tmp4; Args.push_back(Entry);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002422 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2423 } else {
2424 assert(0 && "Unknown op!");
2425 }
Chris Lattner45982da2005-05-12 16:53:42 +00002426
Chris Lattnere1bd8222005-01-11 05:57:22 +00002427 std::pair<SDOperand,SDOperand> CallResult =
Reid Spencer47857812006-12-31 05:55:36 +00002428 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, false, CallingConv::C, false,
Chris Lattnere1bd8222005-01-11 05:57:22 +00002429 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +00002430 Result = CallResult.second;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002431 break;
2432 }
Chris Lattnere1bd8222005-01-11 05:57:22 +00002433 }
2434 break;
2435 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002436
Chris Lattner5b359c62005-04-02 04:00:59 +00002437 case ISD::SHL_PARTS:
2438 case ISD::SRA_PARTS:
2439 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002440 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002441 bool Changed = false;
2442 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2443 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2444 Changed |= Ops.back() != Node->getOperand(i);
2445 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002446 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002447 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002448
Evan Cheng05a2d562006-01-09 18:31:59 +00002449 switch (TLI.getOperationAction(Node->getOpcode(),
2450 Node->getValueType(0))) {
2451 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002452 case TargetLowering::Legal: break;
2453 case TargetLowering::Custom:
2454 Tmp1 = TLI.LowerOperation(Result, DAG);
2455 if (Tmp1.Val) {
2456 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002457 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002458 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002459 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2460 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002461 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002462 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002463 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002464 return RetVal;
2465 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002466 break;
2467 }
2468
Chris Lattner2c8086f2005-04-02 05:00:07 +00002469 // Since these produce multiple values, make sure to remember that we
2470 // legalized all of them.
2471 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2472 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2473 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002474 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002475
2476 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002477 case ISD::ADD:
2478 case ISD::SUB:
2479 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002480 case ISD::MULHS:
2481 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002482 case ISD::UDIV:
2483 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002484 case ISD::AND:
2485 case ISD::OR:
2486 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002487 case ISD::SHL:
2488 case ISD::SRL:
2489 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002490 case ISD::FADD:
2491 case ISD::FSUB:
2492 case ISD::FMUL:
2493 case ISD::FDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002494 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002495 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2496 case Expand: assert(0 && "Not possible");
2497 case Legal:
2498 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2499 break;
2500 case Promote:
2501 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2502 break;
2503 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002504
2505 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002506
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002507 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002508 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002509 case TargetLowering::Legal: break;
2510 case TargetLowering::Custom:
2511 Tmp1 = TLI.LowerOperation(Result, DAG);
2512 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002513 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002514 case TargetLowering::Expand: {
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002515 if (Node->getValueType(0) == MVT::i32) {
2516 switch (Node->getOpcode()) {
2517 default: assert(0 && "Do not know how to expand this integer BinOp!");
2518 case ISD::UDIV:
2519 case ISD::SDIV:
Evan Cheng56966222007-01-12 02:11:51 +00002520 RTLIB::Libcall LC = Node->getOpcode() == ISD::UDIV
2521 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002522 SDOperand Dummy;
Reid Spencer47857812006-12-31 05:55:36 +00002523 bool isSigned = Node->getOpcode() == ISD::SDIV;
Evan Cheng56966222007-01-12 02:11:51 +00002524 Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002525 };
2526 break;
2527 }
2528
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002529 assert(MVT::isVector(Node->getValueType(0)) &&
2530 "Cannot expand this binary operator!");
2531 // Expand the operation into a bunch of nasty scalar code.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002532 SmallVector<SDOperand, 8> Ops;
Dan Gohman51eaa862007-06-14 22:58:02 +00002533 MVT::ValueType EltVT = MVT::getVectorElementType(Node->getValueType(0));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002534 MVT::ValueType PtrVT = TLI.getPointerTy();
2535 for (unsigned i = 0, e = MVT::getVectorNumElements(Node->getValueType(0));
2536 i != e; ++i) {
2537 SDOperand Idx = DAG.getConstant(i, PtrVT);
2538 SDOperand LHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, Idx);
2539 SDOperand RHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, Idx);
2540 Ops.push_back(DAG.getNode(Node->getOpcode(), EltVT, LHS, RHS));
2541 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002542 Result = DAG.getNode(ISD::BUILD_VECTOR, Node->getValueType(0),
2543 &Ops[0], Ops.size());
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002544 break;
2545 }
Evan Chengcc987612006-04-12 21:20:24 +00002546 case TargetLowering::Promote: {
2547 switch (Node->getOpcode()) {
2548 default: assert(0 && "Do not know how to promote this BinOp!");
2549 case ISD::AND:
2550 case ISD::OR:
2551 case ISD::XOR: {
2552 MVT::ValueType OVT = Node->getValueType(0);
2553 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2554 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
2555 // Bit convert each of the values to the new type.
2556 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
2557 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
2558 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2559 // Bit convert the result back the original type.
2560 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
2561 break;
2562 }
2563 }
2564 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002565 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002566 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002567
2568 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
2569 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2570 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2571 case Expand: assert(0 && "Not possible");
2572 case Legal:
2573 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2574 break;
2575 case Promote:
2576 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2577 break;
2578 }
2579
2580 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2581
2582 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2583 default: assert(0 && "Operation not supported");
2584 case TargetLowering::Custom:
2585 Tmp1 = TLI.LowerOperation(Result, DAG);
2586 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00002587 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002588 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00002589 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00002590 // If this target supports fabs/fneg natively and select is cheap,
2591 // do this efficiently.
2592 if (!TLI.isSelectExpensive() &&
2593 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
2594 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00002595 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00002596 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00002597 // Get the sign bit of the RHS.
2598 MVT::ValueType IVT =
2599 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
2600 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
2601 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
2602 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
2603 // Get the absolute value of the result.
2604 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
2605 // Select between the nabs and abs value based on the sign bit of
2606 // the input.
2607 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
2608 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
2609 AbsVal),
2610 AbsVal);
2611 Result = LegalizeOp(Result);
2612 break;
2613 }
2614
2615 // Otherwise, do bitwise ops!
Evan Cheng912095b2007-01-04 21:56:39 +00002616 MVT::ValueType NVT =
2617 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
2618 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
2619 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
2620 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00002621 break;
2622 }
Evan Cheng912095b2007-01-04 21:56:39 +00002623 }
Chris Lattnera09f8482006-03-05 05:09:38 +00002624 break;
2625
Nate Begeman551bf3f2006-02-17 05:43:56 +00002626 case ISD::ADDC:
2627 case ISD::SUBC:
2628 Tmp1 = LegalizeOp(Node->getOperand(0));
2629 Tmp2 = LegalizeOp(Node->getOperand(1));
2630 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2631 // Since this produces two values, make sure to remember that we legalized
2632 // both of them.
2633 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2634 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2635 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002636
Nate Begeman551bf3f2006-02-17 05:43:56 +00002637 case ISD::ADDE:
2638 case ISD::SUBE:
2639 Tmp1 = LegalizeOp(Node->getOperand(0));
2640 Tmp2 = LegalizeOp(Node->getOperand(1));
2641 Tmp3 = LegalizeOp(Node->getOperand(2));
2642 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2643 // Since this produces two values, make sure to remember that we legalized
2644 // both of them.
2645 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2646 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2647 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00002648
Nate Begeman419f8b62005-10-18 00:27:41 +00002649 case ISD::BUILD_PAIR: {
2650 MVT::ValueType PairTy = Node->getValueType(0);
2651 // TODO: handle the case where the Lo and Hi operands are not of legal type
2652 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
2653 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
2654 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002655 case TargetLowering::Promote:
2656 case TargetLowering::Custom:
2657 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00002658 case TargetLowering::Legal:
2659 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
2660 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
2661 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00002662 case TargetLowering::Expand:
2663 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
2664 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
2665 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
2666 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
2667 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00002668 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00002669 break;
2670 }
2671 break;
2672 }
2673
Nate Begemanc105e192005-04-06 00:23:54 +00002674 case ISD::UREM:
2675 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002676 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00002677 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2678 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002679
Nate Begemanc105e192005-04-06 00:23:54 +00002680 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002681 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
2682 case TargetLowering::Custom:
2683 isCustom = true;
2684 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00002685 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002686 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002687 if (isCustom) {
2688 Tmp1 = TLI.LowerOperation(Result, DAG);
2689 if (Tmp1.Val) Result = Tmp1;
2690 }
Nate Begemanc105e192005-04-06 00:23:54 +00002691 break;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002692 case TargetLowering::Expand:
Evan Cheng6b5578f2006-09-18 23:28:33 +00002693 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00002694 bool isSigned = DivOpc == ISD::SDIV;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002695 if (MVT::isInteger(Node->getValueType(0))) {
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002696 if (TLI.getOperationAction(DivOpc, Node->getValueType(0)) ==
2697 TargetLowering::Legal) {
2698 // X % Y -> X-X/Y*Y
2699 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng6b5578f2006-09-18 23:28:33 +00002700 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002701 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
2702 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
2703 } else {
2704 assert(Node->getValueType(0) == MVT::i32 &&
2705 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00002706 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
2707 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002708 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00002709 Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002710 }
Chris Lattner4c64dd72005-08-03 20:31:37 +00002711 } else {
2712 // Floating point mod -> fmod libcall.
Evan Cheng56966222007-01-12 02:11:51 +00002713 RTLIB::Libcall LC = Node->getValueType(0) == MVT::f32
2714 ? RTLIB::REM_F32 : RTLIB::REM_F64;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002715 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00002716 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
2717 false/*sign irrelevant*/, Dummy);
Nate Begemanc105e192005-04-06 00:23:54 +00002718 }
2719 break;
2720 }
2721 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00002722 case ISD::VAARG: {
2723 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2724 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2725
Chris Lattner5c62f332006-01-28 07:42:08 +00002726 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00002727 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2728 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002729 case TargetLowering::Custom:
2730 isCustom = true;
2731 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002732 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002733 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2734 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002735 Tmp1 = Result.getValue(1);
2736
2737 if (isCustom) {
2738 Tmp2 = TLI.LowerOperation(Result, DAG);
2739 if (Tmp2.Val) {
2740 Result = LegalizeOp(Tmp2);
2741 Tmp1 = LegalizeOp(Tmp2.getValue(1));
2742 }
2743 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002744 break;
2745 case TargetLowering::Expand: {
Evan Cheng466685d2006-10-09 20:57:25 +00002746 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00002747 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00002748 SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002749 // Increment the pointer, VAList, to the next vaarg
2750 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
2751 DAG.getConstant(MVT::getSizeInBits(VT)/8,
2752 TLI.getPointerTy()));
2753 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00002754 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
2755 SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002756 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00002757 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002758 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00002759 Result = LegalizeOp(Result);
2760 break;
2761 }
2762 }
2763 // Since VAARG produces two values, make sure to remember that we
2764 // legalized both of them.
2765 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00002766 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
2767 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00002768 }
2769
2770 case ISD::VACOPY:
2771 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2772 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
2773 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
2774
2775 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
2776 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002777 case TargetLowering::Custom:
2778 isCustom = true;
2779 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002780 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002781 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
2782 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00002783 if (isCustom) {
2784 Tmp1 = TLI.LowerOperation(Result, DAG);
2785 if (Tmp1.Val) Result = Tmp1;
2786 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002787 break;
2788 case TargetLowering::Expand:
2789 // This defaults to loading a pointer from the input and storing it to the
2790 // output, returning the chain.
Evan Cheng466685d2006-10-09 20:57:25 +00002791 SrcValueSDNode *SVD = cast<SrcValueSDNode>(Node->getOperand(3));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002792 SrcValueSDNode *SVS = cast<SrcValueSDNode>(Node->getOperand(4));
Evan Cheng466685d2006-10-09 20:57:25 +00002793 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, SVD->getValue(),
2794 SVD->getOffset());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002795 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, SVS->getValue(),
2796 SVS->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002797 break;
2798 }
2799 break;
2800
2801 case ISD::VAEND:
2802 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2803 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2804
2805 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
2806 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002807 case TargetLowering::Custom:
2808 isCustom = true;
2809 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002810 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002811 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00002812 if (isCustom) {
2813 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
2814 if (Tmp1.Val) Result = Tmp1;
2815 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002816 break;
2817 case TargetLowering::Expand:
2818 Result = Tmp1; // Default to a no-op, return the chain
2819 break;
2820 }
2821 break;
2822
2823 case ISD::VASTART:
2824 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2825 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2826
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002827 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2828
Nate Begemanacc398c2006-01-25 18:21:52 +00002829 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
2830 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002831 case TargetLowering::Legal: break;
2832 case TargetLowering::Custom:
2833 Tmp1 = TLI.LowerOperation(Result, DAG);
2834 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00002835 break;
2836 }
2837 break;
2838
Nate Begeman35ef9132006-01-11 21:21:00 +00002839 case ISD::ROTL:
2840 case ISD::ROTR:
2841 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2842 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002843 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00002844 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2845 default:
2846 assert(0 && "ROTL/ROTR legalize operation not supported");
2847 break;
2848 case TargetLowering::Legal:
2849 break;
2850 case TargetLowering::Custom:
2851 Tmp1 = TLI.LowerOperation(Result, DAG);
2852 if (Tmp1.Val) Result = Tmp1;
2853 break;
2854 case TargetLowering::Promote:
2855 assert(0 && "Do not know how to promote ROTL/ROTR");
2856 break;
2857 case TargetLowering::Expand:
2858 assert(0 && "Do not know how to expand ROTL/ROTR");
2859 break;
2860 }
Nate Begeman35ef9132006-01-11 21:21:00 +00002861 break;
2862
Nate Begemand88fc032006-01-14 03:14:10 +00002863 case ISD::BSWAP:
2864 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2865 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002866 case TargetLowering::Custom:
2867 assert(0 && "Cannot custom legalize this yet!");
2868 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002869 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002870 break;
2871 case TargetLowering::Promote: {
2872 MVT::ValueType OVT = Tmp1.getValueType();
2873 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanb55757e2007-05-18 17:52:13 +00002874 unsigned DiffBits = MVT::getSizeInBits(NVT) - MVT::getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00002875
Chris Lattner456a93a2006-01-28 07:39:30 +00002876 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2877 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2878 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2879 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
2880 break;
2881 }
2882 case TargetLowering::Expand:
2883 Result = ExpandBSWAP(Tmp1);
2884 break;
Nate Begemand88fc032006-01-14 03:14:10 +00002885 }
2886 break;
2887
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002888 case ISD::CTPOP:
2889 case ISD::CTTZ:
2890 case ISD::CTLZ:
2891 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2892 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00002893 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002894 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002895 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00002896 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00002897 TargetLowering::Custom) {
2898 Tmp1 = TLI.LowerOperation(Result, DAG);
2899 if (Tmp1.Val) {
2900 Result = Tmp1;
2901 }
Scott Michel910b66d2007-07-30 21:00:31 +00002902 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002903 break;
2904 case TargetLowering::Promote: {
2905 MVT::ValueType OVT = Tmp1.getValueType();
2906 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00002907
2908 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002909 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2910 // Perform the larger operation, then subtract if needed.
2911 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002912 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002913 case ISD::CTPOP:
2914 Result = Tmp1;
2915 break;
2916 case ISD::CTTZ:
2917 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002918 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00002919 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002920 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00002921 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Scott Michel910b66d2007-07-30 21:00:31 +00002922 DAG.getConstant(MVT::getSizeInBits(OVT),NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002923 break;
2924 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00002925 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00002926 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00002927 DAG.getConstant(MVT::getSizeInBits(NVT) -
2928 MVT::getSizeInBits(OVT), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002929 break;
2930 }
2931 break;
2932 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002933 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002934 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002935 break;
2936 }
2937 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00002938
Chris Lattner2c8086f2005-04-02 05:00:07 +00002939 // Unary operators
2940 case ISD::FABS:
2941 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00002942 case ISD::FSQRT:
2943 case ISD::FSIN:
2944 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002945 Tmp1 = LegalizeOp(Node->getOperand(0));
2946 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002947 case TargetLowering::Promote:
2948 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00002949 isCustom = true;
2950 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00002951 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002952 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00002953 if (isCustom) {
2954 Tmp1 = TLI.LowerOperation(Result, DAG);
2955 if (Tmp1.Val) Result = Tmp1;
2956 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002957 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00002958 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002959 switch (Node->getOpcode()) {
2960 default: assert(0 && "Unreachable!");
2961 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002962 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2963 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002964 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002965 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002966 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002967 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
2968 MVT::ValueType VT = Node->getValueType(0);
2969 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002970 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002971 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
2972 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002973 break;
2974 }
2975 case ISD::FSQRT:
2976 case ISD::FSIN:
2977 case ISD::FCOS: {
2978 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng56966222007-01-12 02:11:51 +00002979 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002980 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00002981 case ISD::FSQRT:
2982 LC = VT == MVT::f32 ? RTLIB::SQRT_F32 : RTLIB::SQRT_F64;
2983 break;
2984 case ISD::FSIN:
2985 LC = VT == MVT::f32 ? RTLIB::SIN_F32 : RTLIB::SIN_F64;
2986 break;
2987 case ISD::FCOS:
2988 LC = VT == MVT::f32 ? RTLIB::COS_F32 : RTLIB::COS_F64;
2989 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002990 default: assert(0 && "Unreachable!");
2991 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00002992 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00002993 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
2994 false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002995 break;
2996 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002997 }
2998 break;
2999 }
3000 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003001 case ISD::FPOWI: {
3002 // We always lower FPOWI into a libcall. No target support it yet.
Evan Cheng56966222007-01-12 02:11:51 +00003003 RTLIB::Libcall LC = Node->getValueType(0) == MVT::f32
3004 ? RTLIB::POWI_F32 : RTLIB::POWI_F64;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003005 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003006 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3007 false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003008 break;
3009 }
Chris Lattner35481892005-12-23 00:16:34 +00003010 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003011 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner35481892005-12-23 00:16:34 +00003012 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
Dan Gohman7f321562007-06-25 16:23:39 +00003013 } else if (MVT::isVector(Op.getOperand(0).getValueType())) {
3014 // The input has to be a vector type, we have to either scalarize it, pack
3015 // it, or convert it based on whether the input vector type is legal.
3016 SDNode *InVal = Node->getOperand(0).Val;
3017 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(0));
3018 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(0));
3019
3020 // Figure out if there is a simple type corresponding to this Vector
3021 // type. If so, convert to the vector type.
3022 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3023 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003024 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003025 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3026 LegalizeOp(Node->getOperand(0)));
3027 break;
3028 } else if (NumElems == 1) {
3029 // Turn this into a bit convert of the scalar input.
3030 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3031 ScalarizeVectorOp(Node->getOperand(0)));
3032 break;
3033 } else {
3034 // FIXME: UNIMP! Store then reload
3035 assert(0 && "Cast from unsupported vector type not implemented yet!");
3036 }
Chris Lattner67993f72006-01-23 07:30:46 +00003037 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003038 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3039 Node->getOperand(0).getValueType())) {
3040 default: assert(0 && "Unknown operation action!");
3041 case TargetLowering::Expand:
3042 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
3043 break;
3044 case TargetLowering::Legal:
3045 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003046 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003047 break;
3048 }
3049 }
3050 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003051
Chris Lattner2c8086f2005-04-02 05:00:07 +00003052 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003053 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003054 case ISD::UINT_TO_FP: {
3055 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003056 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3057 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003058 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003059 Node->getOperand(0).getValueType())) {
3060 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003061 case TargetLowering::Custom:
3062 isCustom = true;
3063 // FALLTHROUGH
3064 case TargetLowering::Legal:
3065 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003066 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003067 if (isCustom) {
3068 Tmp1 = TLI.LowerOperation(Result, DAG);
3069 if (Tmp1.Val) Result = Tmp1;
3070 }
3071 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003072 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00003073 Result = ExpandLegalINT_TO_FP(isSigned,
3074 LegalizeOp(Node->getOperand(0)),
3075 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003076 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003077 case TargetLowering::Promote:
3078 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
3079 Node->getValueType(0),
3080 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003081 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00003082 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003083 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00003084 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003085 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
3086 Node->getValueType(0), Node->getOperand(0));
3087 break;
3088 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003089 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003090 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003091 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
3092 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003093 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003094 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
3095 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003096 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003097 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3098 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003099 break;
3100 }
3101 break;
3102 }
3103 case ISD::TRUNCATE:
3104 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3105 case Legal:
3106 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003107 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003108 break;
3109 case Expand:
3110 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3111
3112 // Since the result is legal, we should just be able to truncate the low
3113 // part of the source.
3114 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3115 break;
3116 case Promote:
3117 Result = PromoteOp(Node->getOperand(0));
3118 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3119 break;
3120 }
3121 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003122
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003123 case ISD::FP_TO_SINT:
3124 case ISD::FP_TO_UINT:
3125 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3126 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003127 Tmp1 = LegalizeOp(Node->getOperand(0));
3128
Chris Lattner1618beb2005-07-29 00:11:56 +00003129 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3130 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003131 case TargetLowering::Custom:
3132 isCustom = true;
3133 // FALLTHROUGH
3134 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003135 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003136 if (isCustom) {
3137 Tmp1 = TLI.LowerOperation(Result, DAG);
3138 if (Tmp1.Val) Result = Tmp1;
3139 }
3140 break;
3141 case TargetLowering::Promote:
3142 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3143 Node->getOpcode() == ISD::FP_TO_SINT);
3144 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003145 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003146 if (Node->getOpcode() == ISD::FP_TO_UINT) {
3147 SDOperand True, False;
3148 MVT::ValueType VT = Node->getOperand(0).getValueType();
3149 MVT::ValueType NVT = Node->getValueType(0);
3150 unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
3151 Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
3152 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
3153 Node->getOperand(0), Tmp2, ISD::SETLT);
3154 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3155 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003156 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003157 Tmp2));
3158 False = DAG.getNode(ISD::XOR, NVT, False,
3159 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003160 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3161 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003162 } else {
3163 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3164 }
3165 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003166 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003167 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003168 case Expand: {
3169 // Convert f32 / f64 to i32 / i64.
3170 MVT::ValueType VT = Op.getValueType();
Evan Cheng56966222007-01-12 02:11:51 +00003171 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng6af00d52006-12-13 01:57:55 +00003172 switch (Node->getOpcode()) {
3173 case ISD::FP_TO_SINT:
3174 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00003175 LC = (VT == MVT::i32)
3176 ? RTLIB::FPTOSINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
Evan Cheng6af00d52006-12-13 01:57:55 +00003177 else
Evan Cheng56966222007-01-12 02:11:51 +00003178 LC = (VT == MVT::i32)
3179 ? RTLIB::FPTOSINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
Evan Cheng6af00d52006-12-13 01:57:55 +00003180 break;
3181 case ISD::FP_TO_UINT:
3182 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00003183 LC = (VT == MVT::i32)
3184 ? RTLIB::FPTOUINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
Evan Cheng6af00d52006-12-13 01:57:55 +00003185 else
Evan Cheng56966222007-01-12 02:11:51 +00003186 LC = (VT == MVT::i32)
3187 ? RTLIB::FPTOUINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
Evan Cheng6af00d52006-12-13 01:57:55 +00003188 break;
3189 default: assert(0 && "Unreachable!");
3190 }
3191 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003192 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3193 false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003194 break;
3195 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003196 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003197 Tmp1 = PromoteOp(Node->getOperand(0));
3198 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3199 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003200 break;
3201 }
3202 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003203
Dale Johannesenab081c72007-08-09 17:27:48 +00003204 case ISD::FP_EXTEND:
Dale Johannesen5411a392007-08-09 01:04:01 +00003205 case ISD::FP_ROUND: {
3206 MVT::ValueType newVT = Op.getValueType();
3207 MVT::ValueType oldVT = Op.getOperand(0).getValueType();
3208 if (TLI.getConvertAction(oldVT, newVT) == TargetLowering::Expand) {
Dale Johannesenab081c72007-08-09 17:27:48 +00003209 // The only way we can lower this is to turn it into a STORE,
Dale Johannesen5411a392007-08-09 01:04:01 +00003210 // LOAD pair, targetting a temporary location (a stack slot).
3211
3212 // NOTE: there is a choice here between constantly creating new stack
3213 // slots and always reusing the same one. We currently always create
3214 // new ones, as reuse may inhibit scheduling.
Dale Johannesenab081c72007-08-09 17:27:48 +00003215 MVT::ValueType slotVT =
3216 (Node->getOpcode() == ISD::FP_EXTEND) ? oldVT : newVT;
3217 const Type *Ty = MVT::getTypeForValueType(slotVT);
Dale Johannesen5411a392007-08-09 01:04:01 +00003218 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
3219 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
3220 MachineFunction &MF = DAG.getMachineFunction();
3221 int SSFI =
3222 MF.getFrameInfo()->CreateStackObject(TySize, Align);
3223 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Dale Johannesenab081c72007-08-09 17:27:48 +00003224 if (Node->getOpcode() == ISD::FP_EXTEND) {
3225 Result = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0),
3226 StackSlot, NULL, 0);
3227 Result = DAG.getExtLoad(ISD::EXTLOAD, newVT,
3228 Result, StackSlot, NULL, 0, oldVT);
3229 } else {
3230 Result = DAG.getTruncStore(DAG.getEntryNode(), Node->getOperand(0),
3231 StackSlot, NULL, 0, newVT);
3232 Result = DAG.getLoad(newVT, Result, StackSlot, NULL, 0, newVT);
3233 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003234 break;
3235 }
Dale Johannesen849f2142007-07-03 00:53:03 +00003236 }
3237 // FALL THROUGH
Chris Lattner13c78e22005-09-02 00:18:10 +00003238 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003239 case ISD::ZERO_EXTEND:
3240 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003241 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003242 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003243 case Legal:
3244 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003245 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003246 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003247 case Promote:
3248 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003249 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003250 Tmp1 = PromoteOp(Node->getOperand(0));
3251 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003252 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003253 case ISD::ZERO_EXTEND:
3254 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003255 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003256 Result = DAG.getZeroExtendInReg(Result,
3257 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003258 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003259 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003260 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003261 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003262 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003263 Result,
3264 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003265 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003266 case ISD::FP_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003267 Result = PromoteOp(Node->getOperand(0));
3268 if (Result.getValueType() != Op.getValueType())
3269 // Dynamically dead while we have only 2 FP types.
3270 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
3271 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003272 case ISD::FP_ROUND:
Chris Lattnerf8161d82005-01-16 05:06:12 +00003273 Result = PromoteOp(Node->getOperand(0));
3274 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
3275 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003276 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003277 }
3278 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003279 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003280 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003281 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003282 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003283
3284 // If this operation is not supported, convert it to a shl/shr or load/store
3285 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003286 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3287 default: assert(0 && "This action not supported for this op yet!");
3288 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003289 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003290 break;
3291 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003292 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003293 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003294 // NOTE: we could fall back on load/store here too for targets without
3295 // SAR. However, it is doubtful that any exist.
3296 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
3297 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00003298 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003299 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3300 Node->getOperand(0), ShiftCst);
3301 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3302 Result, ShiftCst);
3303 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003304 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003305 // EXTLOAD pair, targetting a temporary location (a stack slot).
3306
3307 // NOTE: there is a choice here between constantly creating new stack
3308 // slots and always reusing the same one. We currently always create
3309 // new ones, as reuse may inhibit scheduling.
3310 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
Chris Lattner44b2c502007-04-28 06:42:38 +00003311 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00003312 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
Chris Lattner45b8caf2005-01-15 07:15:18 +00003313 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukmanedf128a2005-04-21 22:36:52 +00003314 int SSFI =
Chris Lattner44b2c502007-04-28 06:42:38 +00003315 MF.getFrameInfo()->CreateStackObject(TySize, Align);
Chris Lattner45b8caf2005-01-15 07:15:18 +00003316 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Evan Cheng8b2794a2006-10-13 21:14:26 +00003317 Result = DAG.getTruncStore(DAG.getEntryNode(), Node->getOperand(0),
3318 StackSlot, NULL, 0, ExtraVT);
Chris Lattner5f056bf2005-07-10 01:55:33 +00003319 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
Evan Cheng466685d2006-10-09 20:57:25 +00003320 Result, StackSlot, NULL, 0, ExtraVT);
Chris Lattner45b8caf2005-01-15 07:15:18 +00003321 } else {
3322 assert(0 && "Unknown op");
3323 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003324 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003325 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003326 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003327 }
Duncan Sands36397f52007-07-27 12:58:54 +00003328 case ISD::ADJUST_TRAMP: {
3329 Tmp1 = LegalizeOp(Node->getOperand(0));
3330 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3331 default: assert(0 && "This action is not supported yet!");
3332 case TargetLowering::Custom:
3333 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3334 Result = TLI.LowerOperation(Result, DAG);
3335 if (Result.Val) break;
3336 // FALL THROUGH
3337 case TargetLowering::Expand:
3338 Result = Tmp1;
3339 break;
3340 }
3341 break;
3342 }
3343 case ISD::TRAMPOLINE: {
3344 SDOperand Ops[6];
3345 for (unsigned i = 0; i != 6; ++i)
3346 Ops[i] = LegalizeOp(Node->getOperand(i));
3347 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3348 // The only option for this node is to custom lower it.
3349 Result = TLI.LowerOperation(Result, DAG);
3350 assert(Result.Val && "Should always custom lower!");
3351 break;
3352 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00003353 }
Chris Lattner456a93a2006-01-28 07:39:30 +00003354
Chris Lattner4ddd2832006-04-08 04:13:17 +00003355 assert(Result.getValueType() == Op.getValueType() &&
3356 "Bad legalization!");
3357
Chris Lattner456a93a2006-01-28 07:39:30 +00003358 // Make sure that the generated code is itself legal.
3359 if (Result != Op)
3360 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003361
Chris Lattner45982da2005-05-12 16:53:42 +00003362 // Note that LegalizeOp may be reentered even from single-use nodes, which
3363 // means that we always must cache transformed nodes.
3364 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003365 return Result;
3366}
3367
Chris Lattner8b6fa222005-01-15 22:16:26 +00003368/// PromoteOp - Given an operation that produces a value in an invalid type,
3369/// promote it to compute the value into a larger type. The produced value will
3370/// have the correct bits for the low portion of the register, but no guarantee
3371/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00003372SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
3373 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00003374 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00003375 assert(getTypeAction(VT) == Promote &&
3376 "Caller should expand or legalize operands that are not promotable!");
3377 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
3378 "Cannot promote to smaller type!");
3379
Chris Lattner03c85462005-01-15 05:21:40 +00003380 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00003381 SDOperand Result;
3382 SDNode *Node = Op.Val;
3383
Chris Lattner40030bf2007-02-04 01:17:38 +00003384 DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00003385 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00003386
Chris Lattner03c85462005-01-15 05:21:40 +00003387 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003388 case ISD::CopyFromReg:
3389 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00003390 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00003391#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00003392 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00003393#endif
Chris Lattner03c85462005-01-15 05:21:40 +00003394 assert(0 && "Do not know how to promote this operator!");
3395 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00003396 case ISD::UNDEF:
3397 Result = DAG.getNode(ISD::UNDEF, NVT);
3398 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003399 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00003400 if (VT != MVT::i1)
3401 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
3402 else
3403 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00003404 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
3405 break;
3406 case ISD::ConstantFP:
3407 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
3408 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
3409 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00003410
Chris Lattner82fbfb62005-01-18 02:59:52 +00003411 case ISD::SETCC:
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003412 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003413 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
3414 Node->getOperand(1), Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00003415 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00003416
Chris Lattner03c85462005-01-15 05:21:40 +00003417 case ISD::TRUNCATE:
3418 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3419 case Legal:
3420 Result = LegalizeOp(Node->getOperand(0));
3421 assert(Result.getValueType() >= NVT &&
3422 "This truncation doesn't make sense!");
3423 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
3424 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
3425 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00003426 case Promote:
3427 // The truncation is not required, because we don't guarantee anything
3428 // about high bits anyway.
3429 Result = PromoteOp(Node->getOperand(0));
3430 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003431 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00003432 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3433 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00003434 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00003435 }
3436 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003437 case ISD::SIGN_EXTEND:
3438 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00003439 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003440 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3441 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
3442 case Legal:
3443 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00003444 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003445 break;
3446 case Promote:
3447 // Promote the reg if it's smaller.
3448 Result = PromoteOp(Node->getOperand(0));
3449 // The high bits are not guaranteed to be anything. Insert an extend.
3450 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00003451 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00003452 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00003453 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00003454 Result = DAG.getZeroExtendInReg(Result,
3455 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00003456 break;
3457 }
3458 break;
Chris Lattner35481892005-12-23 00:16:34 +00003459 case ISD::BIT_CONVERT:
3460 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
3461 Result = PromoteOp(Result);
3462 break;
3463
Chris Lattner8b6fa222005-01-15 22:16:26 +00003464 case ISD::FP_EXTEND:
3465 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
3466 case ISD::FP_ROUND:
3467 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3468 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
3469 case Promote: assert(0 && "Unreachable with 2 FP types!");
3470 case Legal:
3471 // Input is legal? Do an FP_ROUND_INREG.
Chris Lattner456a93a2006-01-28 07:39:30 +00003472 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
Chris Lattner15e4b012005-07-10 00:07:11 +00003473 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003474 break;
3475 }
3476 break;
3477
3478 case ISD::SINT_TO_FP:
3479 case ISD::UINT_TO_FP:
3480 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3481 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00003482 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00003483 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003484 break;
3485
3486 case Promote:
3487 Result = PromoteOp(Node->getOperand(0));
3488 if (Node->getOpcode() == ISD::SINT_TO_FP)
3489 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003490 Result,
3491 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003492 else
Chris Lattner23993562005-04-13 02:38:47 +00003493 Result = DAG.getZeroExtendInReg(Result,
3494 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003495 // No extra round required here.
3496 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003497 break;
3498 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00003499 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
3500 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00003501 // Round if we cannot tolerate excess precision.
3502 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003503 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3504 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00003505 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003506 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003507 break;
3508
Chris Lattner5e3c5b42005-12-09 17:32:47 +00003509 case ISD::SIGN_EXTEND_INREG:
3510 Result = PromoteOp(Node->getOperand(0));
3511 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
3512 Node->getOperand(1));
3513 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003514 case ISD::FP_TO_SINT:
3515 case ISD::FP_TO_UINT:
3516 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3517 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00003518 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003519 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003520 break;
3521 case Promote:
3522 // The input result is prerounded, so we don't have to do anything
3523 // special.
3524 Tmp1 = PromoteOp(Node->getOperand(0));
3525 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003526 }
Nate Begemand2558e32005-08-14 01:20:53 +00003527 // If we're promoting a UINT to a larger size, check to see if the new node
3528 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
3529 // we can use that instead. This allows us to generate better code for
3530 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
3531 // legal, such as PowerPC.
3532 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003533 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00003534 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
3535 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00003536 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
3537 } else {
3538 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3539 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003540 break;
3541
Chris Lattner2c8086f2005-04-02 05:00:07 +00003542 case ISD::FABS:
3543 case ISD::FNEG:
3544 Tmp1 = PromoteOp(Node->getOperand(0));
3545 assert(Tmp1.getValueType() == NVT);
3546 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3547 // NOTE: we do not have to do any extra rounding here for
3548 // NoExcessFPPrecision, because we know the input will have the appropriate
3549 // precision, and these operations don't modify precision at all.
3550 break;
3551
Chris Lattnerda6ba872005-04-28 21:44:33 +00003552 case ISD::FSQRT:
3553 case ISD::FSIN:
3554 case ISD::FCOS:
3555 Tmp1 = PromoteOp(Node->getOperand(0));
3556 assert(Tmp1.getValueType() == NVT);
3557 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003558 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003559 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3560 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00003561 break;
3562
Chris Lattner8b2d42c2007-03-03 23:43:21 +00003563 case ISD::FPOWI: {
3564 // Promote f32 powi to f64 powi. Note that this could insert a libcall
3565 // directly as well, which may be better.
3566 Tmp1 = PromoteOp(Node->getOperand(0));
3567 assert(Tmp1.getValueType() == NVT);
3568 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
3569 if (NoExcessFPPrecision)
3570 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3571 DAG.getValueType(VT));
3572 break;
3573 }
3574
Chris Lattner03c85462005-01-15 05:21:40 +00003575 case ISD::AND:
3576 case ISD::OR:
3577 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00003578 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003579 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00003580 case ISD::MUL:
3581 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00003582 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00003583 // that too is okay if they are integer operations.
3584 Tmp1 = PromoteOp(Node->getOperand(0));
3585 Tmp2 = PromoteOp(Node->getOperand(1));
3586 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3587 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00003588 break;
3589 case ISD::FADD:
3590 case ISD::FSUB:
3591 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00003592 Tmp1 = PromoteOp(Node->getOperand(0));
3593 Tmp2 = PromoteOp(Node->getOperand(1));
3594 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3595 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3596
3597 // Floating point operations will give excess precision that we may not be
3598 // able to tolerate. If we DO allow excess precision, just leave it,
3599 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00003600 // FIXME: Why would we need to round FP ops more than integer ones?
3601 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00003602 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003603 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3604 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00003605 break;
3606
Chris Lattner8b6fa222005-01-15 22:16:26 +00003607 case ISD::SDIV:
3608 case ISD::SREM:
3609 // These operators require that their input be sign extended.
3610 Tmp1 = PromoteOp(Node->getOperand(0));
3611 Tmp2 = PromoteOp(Node->getOperand(1));
3612 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00003613 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3614 DAG.getValueType(VT));
3615 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3616 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003617 }
3618 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3619
3620 // Perform FP_ROUND: this is probably overly pessimistic.
3621 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003622 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3623 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003624 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00003625 case ISD::FDIV:
3626 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00003627 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00003628 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00003629 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3630 case Legal:
3631 Tmp1 = LegalizeOp(Node->getOperand(0));
3632 break;
3633 case Promote:
3634 Tmp1 = PromoteOp(Node->getOperand(0));
3635 break;
3636 case Expand:
3637 assert(0 && "not implemented");
3638 }
3639 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3640 case Legal:
3641 Tmp2 = LegalizeOp(Node->getOperand(1));
3642 break;
3643 case Promote:
3644 Tmp2 = PromoteOp(Node->getOperand(1));
3645 break;
3646 case Expand:
3647 assert(0 && "not implemented");
3648 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003649 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3650
3651 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00003652 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00003653 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3654 DAG.getValueType(VT));
3655 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003656
3657 case ISD::UDIV:
3658 case ISD::UREM:
3659 // These operators require that their input be zero extended.
3660 Tmp1 = PromoteOp(Node->getOperand(0));
3661 Tmp2 = PromoteOp(Node->getOperand(1));
3662 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00003663 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3664 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003665 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3666 break;
3667
3668 case ISD::SHL:
3669 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003670 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003671 break;
3672 case ISD::SRA:
3673 // The input value must be properly sign extended.
3674 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003675 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3676 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003677 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003678 break;
3679 case ISD::SRL:
3680 // The input value must be properly zero extended.
3681 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00003682 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00003683 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003684 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00003685
3686 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00003687 Tmp1 = Node->getOperand(0); // Get the chain.
3688 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00003689 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
3690 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
3691 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
3692 } else {
Evan Cheng466685d2006-10-09 20:57:25 +00003693 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begeman0aed7842006-01-28 03:14:31 +00003694 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00003695 SV->getValue(), SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00003696 // Increment the pointer, VAList, to the next vaarg
3697 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3698 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3699 TLI.getPointerTy()));
3700 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00003701 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
3702 SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00003703 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003704 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00003705 }
3706 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003707 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00003708 break;
3709
Evan Cheng466685d2006-10-09 20:57:25 +00003710 case ISD::LOAD: {
3711 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00003712 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
3713 ? ISD::EXTLOAD : LD->getExtensionType();
3714 Result = DAG.getExtLoad(ExtType, NVT,
3715 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00003716 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00003717 LD->getLoadedVT(),
3718 LD->isVolatile(),
3719 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00003720 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003721 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00003722 break;
Evan Cheng466685d2006-10-09 20:57:25 +00003723 }
Chris Lattner03c85462005-01-15 05:21:40 +00003724 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00003725 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
3726 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00003727 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00003728 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003729 case ISD::SELECT_CC:
3730 Tmp2 = PromoteOp(Node->getOperand(2)); // True
3731 Tmp3 = PromoteOp(Node->getOperand(3)); // False
3732 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00003733 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00003734 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003735 case ISD::BSWAP:
3736 Tmp1 = Node->getOperand(0);
3737 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3738 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3739 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003740 DAG.getConstant(MVT::getSizeInBits(NVT) -
3741 MVT::getSizeInBits(VT),
Nate Begemand88fc032006-01-14 03:14:10 +00003742 TLI.getShiftAmountTy()));
3743 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003744 case ISD::CTPOP:
3745 case ISD::CTTZ:
3746 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003747 // Zero extend the argument
3748 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003749 // Perform the larger operation, then subtract if needed.
3750 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003751 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003752 case ISD::CTPOP:
3753 Result = Tmp1;
3754 break;
3755 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003756 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begemand2558e32005-08-14 01:20:53 +00003757 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003758 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
3759 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003760 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003761 DAG.getConstant(MVT::getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003762 break;
3763 case ISD::CTLZ:
3764 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003765 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003766 DAG.getConstant(MVT::getSizeInBits(NVT) -
3767 MVT::getSizeInBits(VT), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003768 break;
3769 }
3770 break;
Dan Gohman7f321562007-06-25 16:23:39 +00003771 case ISD::EXTRACT_SUBVECTOR:
3772 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00003773 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00003774 case ISD::EXTRACT_VECTOR_ELT:
3775 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
3776 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003777 }
3778
3779 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003780
3781 // Make sure the result is itself legal.
3782 Result = LegalizeOp(Result);
3783
3784 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00003785 AddPromotedOperand(Op, Result);
3786 return Result;
3787}
Chris Lattner3e928bb2005-01-07 07:47:09 +00003788
Dan Gohman7f321562007-06-25 16:23:39 +00003789/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
3790/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
3791/// based on the vector type. The return type of this matches the element type
3792/// of the vector, which may not be legal for the target.
3793SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
Chris Lattner15972212006-03-31 17:55:51 +00003794 // We know that operand #0 is the Vec vector. If the index is a constant
3795 // or if the invec is a supported hardware type, we can use it. Otherwise,
3796 // lower to a store then an indexed load.
3797 SDOperand Vec = Op.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00003798 SDOperand Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00003799
3800 SDNode *InVal = Vec.Val;
Dan Gohman7f321562007-06-25 16:23:39 +00003801 MVT::ValueType TVT = InVal->getValueType(0);
3802 unsigned NumElems = MVT::getVectorNumElements(TVT);
Chris Lattner15972212006-03-31 17:55:51 +00003803
Dan Gohman7f321562007-06-25 16:23:39 +00003804 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
3805 default: assert(0 && "This action is not supported yet!");
3806 case TargetLowering::Custom: {
3807 Vec = LegalizeOp(Vec);
3808 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
3809 SDOperand Tmp3 = TLI.LowerOperation(Op, DAG);
3810 if (Tmp3.Val)
3811 return Tmp3;
3812 break;
3813 }
3814 case TargetLowering::Legal:
3815 if (isTypeLegal(TVT)) {
3816 Vec = LegalizeOp(Vec);
3817 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00003818 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00003819 }
3820 break;
3821 case TargetLowering::Expand:
3822 break;
3823 }
3824
3825 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00003826 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00003827 Op = ScalarizeVectorOp(Vec);
3828 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
3829 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Chris Lattner15972212006-03-31 17:55:51 +00003830 SDOperand Lo, Hi;
3831 SplitVectorOp(Vec, Lo, Hi);
3832 if (CIdx->getValue() < NumElems/2) {
3833 Vec = Lo;
3834 } else {
3835 Vec = Hi;
Dan Gohman7f321562007-06-25 16:23:39 +00003836 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2,
3837 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00003838 }
Dan Gohman7f321562007-06-25 16:23:39 +00003839
Chris Lattner15972212006-03-31 17:55:51 +00003840 // It's now an extract from the appropriate high or low part. Recurse.
3841 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00003842 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00003843 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00003844 // Store the value to a temporary stack slot, then LOAD the scalar
3845 // element back out.
3846 SDOperand StackPtr = CreateStackTemporary(Vec.getValueType());
3847 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
3848
3849 // Add the offset to the index.
3850 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
3851 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
3852 DAG.getConstant(EltSize, Idx.getValueType()));
3853 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
3854
3855 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00003856 }
Dan Gohman7f321562007-06-25 16:23:39 +00003857 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00003858}
3859
Dan Gohman7f321562007-06-25 16:23:39 +00003860/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00003861/// we assume the operation can be split if it is not already legal.
Dan Gohman7f321562007-06-25 16:23:39 +00003862SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) {
Dan Gohman65956352007-06-13 15:12:02 +00003863 // We know that operand #0 is the Vec vector. For now we assume the index
3864 // is a constant and that the extracted result is a supported hardware type.
3865 SDOperand Vec = Op.getOperand(0);
3866 SDOperand Idx = LegalizeOp(Op.getOperand(1));
3867
Dan Gohman7f321562007-06-25 16:23:39 +00003868 unsigned NumElems = MVT::getVectorNumElements(Vec.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00003869
3870 if (NumElems == MVT::getVectorNumElements(Op.getValueType())) {
3871 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00003872 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00003873 }
3874
3875 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
3876 SDOperand Lo, Hi;
3877 SplitVectorOp(Vec, Lo, Hi);
3878 if (CIdx->getValue() < NumElems/2) {
3879 Vec = Lo;
3880 } else {
3881 Vec = Hi;
3882 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
3883 }
3884
3885 // It's now an extract from the appropriate high or low part. Recurse.
3886 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00003887 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00003888}
3889
Nate Begeman750ac1b2006-02-01 07:19:44 +00003890/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
3891/// with condition CC on the current target. This usually involves legalizing
3892/// or promoting the arguments. In the case where LHS and RHS must be expanded,
3893/// there may be no choice but to create a new SetCC node to represent the
3894/// legalized value of setcc lhs, rhs. In this case, the value is returned in
3895/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
3896void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
3897 SDOperand &RHS,
3898 SDOperand &CC) {
3899 SDOperand Tmp1, Tmp2, Result;
3900
3901 switch (getTypeAction(LHS.getValueType())) {
3902 case Legal:
3903 Tmp1 = LegalizeOp(LHS); // LHS
3904 Tmp2 = LegalizeOp(RHS); // RHS
3905 break;
3906 case Promote:
3907 Tmp1 = PromoteOp(LHS); // LHS
3908 Tmp2 = PromoteOp(RHS); // RHS
3909
3910 // If this is an FP compare, the operands have already been extended.
3911 if (MVT::isInteger(LHS.getValueType())) {
3912 MVT::ValueType VT = LHS.getValueType();
3913 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
3914
3915 // Otherwise, we have to insert explicit sign or zero extends. Note
3916 // that we could insert sign extends for ALL conditions, but zero extend
3917 // is cheaper on many machines (an AND instead of two shifts), so prefer
3918 // it.
3919 switch (cast<CondCodeSDNode>(CC)->get()) {
3920 default: assert(0 && "Unknown integer comparison!");
3921 case ISD::SETEQ:
3922 case ISD::SETNE:
3923 case ISD::SETUGE:
3924 case ISD::SETUGT:
3925 case ISD::SETULE:
3926 case ISD::SETULT:
3927 // ALL of these operations will work if we either sign or zero extend
3928 // the operands (including the unsigned comparisons!). Zero extend is
3929 // usually a simpler/cheaper operation, so prefer it.
3930 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3931 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
3932 break;
3933 case ISD::SETGE:
3934 case ISD::SETGT:
3935 case ISD::SETLT:
3936 case ISD::SETLE:
3937 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3938 DAG.getValueType(VT));
3939 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3940 DAG.getValueType(VT));
3941 break;
3942 }
3943 }
3944 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00003945 case Expand: {
3946 MVT::ValueType VT = LHS.getValueType();
3947 if (VT == MVT::f32 || VT == MVT::f64) {
3948 // Expand into one or more soft-fp libcall(s).
Evan Cheng56966222007-01-12 02:11:51 +00003949 RTLIB::Libcall LC1, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00003950 switch (cast<CondCodeSDNode>(CC)->get()) {
3951 case ISD::SETEQ:
3952 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00003953 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003954 break;
3955 case ISD::SETNE:
3956 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00003957 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003958 break;
3959 case ISD::SETGE:
3960 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00003961 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003962 break;
3963 case ISD::SETLT:
3964 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00003965 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003966 break;
3967 case ISD::SETLE:
3968 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00003969 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003970 break;
3971 case ISD::SETGT:
3972 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00003973 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003974 break;
3975 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00003976 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
3977 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00003978 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00003979 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003980 break;
3981 default:
Evan Cheng56966222007-01-12 02:11:51 +00003982 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003983 switch (cast<CondCodeSDNode>(CC)->get()) {
3984 case ISD::SETONE:
3985 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00003986 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003987 // Fallthrough
3988 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00003989 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003990 break;
3991 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00003992 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003993 break;
3994 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00003995 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003996 break;
3997 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00003998 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00003999 break;
Evan Cheng56966222007-01-12 02:11:51 +00004000 case ISD::SETUEQ:
4001 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004002 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004003 default: assert(0 && "Unsupported FP setcc!");
4004 }
4005 }
4006
4007 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00004008 Tmp1 = ExpandLibCall(TLI.getLibcallName(LC1),
Reid Spencer47857812006-12-31 05:55:36 +00004009 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004010 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004011 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004012 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004013 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Evan Cheng2b49c502006-12-15 02:59:56 +00004014 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), Tmp1, Tmp2, CC);
Evan Cheng56966222007-01-12 02:11:51 +00004015 LHS = ExpandLibCall(TLI.getLibcallName(LC2),
Reid Spencer47857812006-12-31 05:55:36 +00004016 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004017 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004018 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004019 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004020 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4021 Tmp2 = SDOperand();
4022 }
4023 LHS = Tmp1;
4024 RHS = Tmp2;
4025 return;
4026 }
4027
Nate Begeman750ac1b2006-02-01 07:19:44 +00004028 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
4029 ExpandOp(LHS, LHSLo, LHSHi);
Evan Cheng2b49c502006-12-15 02:59:56 +00004030 ExpandOp(RHS, RHSLo, RHSHi);
Nate Begeman750ac1b2006-02-01 07:19:44 +00004031 switch (cast<CondCodeSDNode>(CC)->get()) {
4032 case ISD::SETEQ:
4033 case ISD::SETNE:
4034 if (RHSLo == RHSHi)
4035 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4036 if (RHSCST->isAllOnesValue()) {
4037 // Comparison to -1.
4038 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4039 Tmp2 = RHSLo;
4040 break;
4041 }
4042
4043 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4044 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4045 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4046 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4047 break;
4048 default:
4049 // If this is a comparison of the sign bit, just look at the top part.
4050 // X > -1, x < 0
4051 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4052 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
4053 CST->getValue() == 0) || // X < 0
4054 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4055 CST->isAllOnesValue())) { // X > -1
4056 Tmp1 = LHSHi;
4057 Tmp2 = RHSHi;
4058 break;
4059 }
4060
4061 // FIXME: This generated code sucks.
4062 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004063 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4064 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004065 default: assert(0 && "Unknown integer setcc!");
4066 case ISD::SETLT:
4067 case ISD::SETULT: LowCC = ISD::SETULT; break;
4068 case ISD::SETGT:
4069 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4070 case ISD::SETLE:
4071 case ISD::SETULE: LowCC = ISD::SETULE; break;
4072 case ISD::SETGE:
4073 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4074 }
4075
4076 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4077 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4078 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4079
4080 // NOTE: on targets without efficient SELECT of bools, we can always use
4081 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004082 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
4083 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC,
4084 false, DagCombineInfo);
4085 if (!Tmp1.Val)
4086 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
4087 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi,
4088 CCCode, false, DagCombineInfo);
4089 if (!Tmp2.Val)
4090 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
4091
4092 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4093 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
4094 if ((Tmp1C && Tmp1C->getValue() == 0) ||
4095 (Tmp2C && Tmp2C->getValue() == 0 &&
4096 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4097 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
4098 (Tmp2C && Tmp2C->getValue() == 1 &&
4099 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4100 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4101 // low part is known false, returns high part.
4102 // For LE / GE, if high part is known false, ignore the low part.
4103 // For LT / GT, if high part is known true, ignore the low part.
4104 Tmp1 = Tmp2;
4105 Tmp2 = SDOperand();
4106 } else {
4107 Result = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi,
4108 ISD::SETEQ, false, DagCombineInfo);
4109 if (!Result.Val)
4110 Result=DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
4111 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4112 Result, Tmp1, Tmp2));
4113 Tmp1 = Result;
4114 Tmp2 = SDOperand();
4115 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004116 }
4117 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004118 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004119 LHS = Tmp1;
4120 RHS = Tmp2;
4121}
4122
Chris Lattner35481892005-12-23 00:16:34 +00004123/// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
Chris Lattner232348d2005-12-23 00:52:30 +00004124/// The resultant code need not be legal. Note that SrcOp is the input operand
4125/// to the BIT_CONVERT, not the BIT_CONVERT node itself.
Chris Lattner35481892005-12-23 00:16:34 +00004126SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT,
4127 SDOperand SrcOp) {
4128 // Create the stack frame object.
Chris Lattnerce872152006-03-19 06:31:19 +00004129 SDOperand FIPtr = CreateStackTemporary(DestVT);
Chris Lattner35481892005-12-23 00:16:34 +00004130
4131 // Emit a store to the stack slot.
Evan Cheng8b2794a2006-10-13 21:14:26 +00004132 SDOperand Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr, NULL, 0);
Chris Lattner35481892005-12-23 00:16:34 +00004133 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00004134 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
Chris Lattner35481892005-12-23 00:16:34 +00004135}
4136
Chris Lattner4352cc92006-04-04 17:23:26 +00004137SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
4138 // Create a vector sized/aligned stack slot, store the value to element #0,
4139 // then load the whole vector back out.
4140 SDOperand StackPtr = CreateStackTemporary(Node->getValueType(0));
Evan Cheng786225a2006-10-05 23:01:46 +00004141 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Evan Cheng8b2794a2006-10-13 21:14:26 +00004142 NULL, 0);
Evan Cheng466685d2006-10-09 20:57:25 +00004143 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr, NULL, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00004144}
4145
4146
Chris Lattnerce872152006-03-19 06:31:19 +00004147/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004148/// support the operation, but do support the resultant vector type.
Chris Lattnerce872152006-03-19 06:31:19 +00004149SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
4150
4151 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004152 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004153 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004154 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00004155 SDOperand SplatValue = Node->getOperand(0);
Evan Cheng033e6812006-03-24 01:17:21 +00004156 std::map<SDOperand, std::vector<unsigned> > Values;
4157 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004158 bool isConstant = true;
4159 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4160 SplatValue.getOpcode() != ISD::UNDEF)
4161 isConstant = false;
4162
Evan Cheng033e6812006-03-24 01:17:21 +00004163 for (unsigned i = 1; i < NumElems; ++i) {
4164 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004165 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004166 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004167 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004168 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00004169 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004170
4171 // If this isn't a constant element or an undef, we can't use a constant
4172 // pool load.
4173 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4174 V.getOpcode() != ISD::UNDEF)
4175 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004176 }
4177
4178 if (isOnlyLowElement) {
4179 // If the low element is an undef too, then this whole things is an undef.
4180 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4181 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4182 // Otherwise, turn this into a scalar_to_vector node.
4183 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4184 Node->getOperand(0));
4185 }
4186
Chris Lattner2eb86532006-03-24 07:29:17 +00004187 // If all elements are constants, create a load from the constant pool.
4188 if (isConstant) {
4189 MVT::ValueType VT = Node->getValueType(0);
4190 const Type *OpNTy =
4191 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
4192 std::vector<Constant*> CV;
4193 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4194 if (ConstantFPSDNode *V =
4195 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
4196 CV.push_back(ConstantFP::get(OpNTy, V->getValue()));
4197 } else if (ConstantSDNode *V =
4198 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Reid Spencerb83eb642006-10-20 07:07:24 +00004199 CV.push_back(ConstantInt::get(OpNTy, V->getValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004200 } else {
4201 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
4202 CV.push_back(UndefValue::get(OpNTy));
4203 }
4204 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004205 Constant *CP = ConstantVector::get(CV);
Chris Lattner2eb86532006-03-24 07:29:17 +00004206 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng466685d2006-10-09 20:57:25 +00004207 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004208 }
4209
Chris Lattner87100e02006-03-20 01:52:29 +00004210 if (SplatValue.Val) { // Splat of one value?
4211 // Build the shuffle constant vector: <0, 0, 0, 0>
4212 MVT::ValueType MaskVT =
Evan Cheng033e6812006-03-24 01:17:21 +00004213 MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman51eaa862007-06-14 22:58:02 +00004214 SDOperand Zero = DAG.getConstant(0, MVT::getVectorElementType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00004215 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004216 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4217 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00004218
4219 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004220 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00004221 // Get the splatted value into the low element of a vector register.
4222 SDOperand LowValVec =
4223 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
4224
4225 // Return shuffle(LowValVec, undef, <0,0,0,0>)
4226 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
4227 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
4228 SplatMask);
4229 }
4230 }
4231
Evan Cheng033e6812006-03-24 01:17:21 +00004232 // If there are only two unique elements, we may be able to turn this into a
4233 // vector shuffle.
4234 if (Values.size() == 2) {
4235 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
4236 MVT::ValueType MaskVT =
4237 MVT::getIntVectorWithNumElements(NumElems);
4238 std::vector<SDOperand> MaskVec(NumElems);
4239 unsigned i = 0;
4240 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
4241 E = Values.end(); I != E; ++I) {
4242 for (std::vector<unsigned>::iterator II = I->second.begin(),
4243 EE = I->second.end(); II != EE; ++II)
Dan Gohman51eaa862007-06-14 22:58:02 +00004244 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorElementType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00004245 i += NumElems;
4246 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004247 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4248 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00004249
4250 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004251 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
4252 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004253 SmallVector<SDOperand, 8> Ops;
Evan Cheng033e6812006-03-24 01:17:21 +00004254 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
4255 E = Values.end(); I != E; ++I) {
4256 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4257 I->first);
4258 Ops.push_back(Op);
4259 }
4260 Ops.push_back(ShuffleMask);
4261
4262 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004263 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0),
4264 &Ops[0], Ops.size());
Evan Cheng033e6812006-03-24 01:17:21 +00004265 }
4266 }
Chris Lattnerce872152006-03-19 06:31:19 +00004267
4268 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
4269 // aligned object on the stack, store each element into it, then load
4270 // the result as a vector.
4271 MVT::ValueType VT = Node->getValueType(0);
4272 // Create the stack frame object.
4273 SDOperand FIPtr = CreateStackTemporary(VT);
4274
4275 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004276 SmallVector<SDOperand, 8> Stores;
Chris Lattnerce872152006-03-19 06:31:19 +00004277 unsigned TypeByteSize =
4278 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
Chris Lattnerce872152006-03-19 06:31:19 +00004279 // Store (in the right endianness) the elements to memory.
4280 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
4281 // Ignore undef elements.
4282 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
4283
Chris Lattner841c8822006-03-22 01:46:54 +00004284 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00004285
4286 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
4287 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
4288
Evan Cheng786225a2006-10-05 23:01:46 +00004289 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00004290 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00004291 }
4292
4293 SDOperand StoreChain;
4294 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004295 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4296 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00004297 else
4298 StoreChain = DAG.getEntryNode();
4299
4300 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00004301 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00004302}
4303
4304/// CreateStackTemporary - Create a stack temporary, suitable for holding the
4305/// specified value type.
4306SDOperand SelectionDAGLegalize::CreateStackTemporary(MVT::ValueType VT) {
4307 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
4308 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
Chris Lattner58092e32007-01-20 22:35:55 +00004309 const Type *Ty = MVT::getTypeForValueType(VT);
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00004310 unsigned StackAlign = (unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty);
Chris Lattner58092e32007-01-20 22:35:55 +00004311 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
Chris Lattnerce872152006-03-19 06:31:19 +00004312 return DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
4313}
4314
Chris Lattner5b359c62005-04-02 04:00:59 +00004315void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
4316 SDOperand Op, SDOperand Amt,
4317 SDOperand &Lo, SDOperand &Hi) {
4318 // Expand the subcomponents.
4319 SDOperand LHSL, LHSH;
4320 ExpandOp(Op, LHSL, LHSH);
4321
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004322 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004323 MVT::ValueType VT = LHSL.getValueType();
4324 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00004325 Hi = Lo.getValue(1);
4326}
4327
4328
Chris Lattnere34b3962005-01-19 04:19:40 +00004329/// ExpandShift - Try to find a clever way to expand this shift operation out to
4330/// smaller elements. If we can't find a way that is more efficient than a
4331/// libcall on this target, return false. Otherwise, return true with the
4332/// low-parts expanded into Lo and Hi.
4333bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
4334 SDOperand &Lo, SDOperand &Hi) {
4335 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
4336 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004337
Chris Lattnere34b3962005-01-19 04:19:40 +00004338 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004339 SDOperand ShAmt = LegalizeOp(Amt);
4340 MVT::ValueType ShTy = ShAmt.getValueType();
4341 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
4342 unsigned NVTBits = MVT::getSizeInBits(NVT);
4343
4344 // Handle the case when Amt is an immediate. Other cases are currently broken
4345 // and are disabled.
4346 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
4347 unsigned Cst = CN->getValue();
4348 // Expand the incoming operand to be shifted, so that we have its parts
4349 SDOperand InL, InH;
4350 ExpandOp(Op, InL, InH);
4351 switch(Opc) {
4352 case ISD::SHL:
4353 if (Cst > VTBits) {
4354 Lo = DAG.getConstant(0, NVT);
4355 Hi = DAG.getConstant(0, NVT);
4356 } else if (Cst > NVTBits) {
4357 Lo = DAG.getConstant(0, NVT);
4358 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00004359 } else if (Cst == NVTBits) {
4360 Lo = DAG.getConstant(0, NVT);
4361 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004362 } else {
4363 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
4364 Hi = DAG.getNode(ISD::OR, NVT,
4365 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
4366 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
4367 }
4368 return true;
4369 case ISD::SRL:
4370 if (Cst > VTBits) {
4371 Lo = DAG.getConstant(0, NVT);
4372 Hi = DAG.getConstant(0, NVT);
4373 } else if (Cst > NVTBits) {
4374 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
4375 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00004376 } else if (Cst == NVTBits) {
4377 Lo = InH;
4378 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004379 } else {
4380 Lo = DAG.getNode(ISD::OR, NVT,
4381 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
4382 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
4383 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
4384 }
4385 return true;
4386 case ISD::SRA:
4387 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00004388 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004389 DAG.getConstant(NVTBits-1, ShTy));
4390 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00004391 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004392 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004393 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004394 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00004395 } else if (Cst == NVTBits) {
4396 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00004397 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00004398 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004399 } else {
4400 Lo = DAG.getNode(ISD::OR, NVT,
4401 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
4402 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
4403 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
4404 }
4405 return true;
4406 }
4407 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00004408
4409 // Okay, the shift amount isn't constant. However, if we can tell that it is
4410 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
4411 uint64_t Mask = NVTBits, KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00004412 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00004413
4414 // If we know that the high bit of the shift amount is one, then we can do
4415 // this as a couple of simple shifts.
4416 if (KnownOne & Mask) {
4417 // Mask out the high bit, which we know is set.
4418 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
4419 DAG.getConstant(NVTBits-1, Amt.getValueType()));
4420
4421 // Expand the incoming operand to be shifted, so that we have its parts
4422 SDOperand InL, InH;
4423 ExpandOp(Op, InL, InH);
4424 switch(Opc) {
4425 case ISD::SHL:
4426 Lo = DAG.getConstant(0, NVT); // Low part is zero.
4427 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
4428 return true;
4429 case ISD::SRL:
4430 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
4431 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
4432 return true;
4433 case ISD::SRA:
4434 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
4435 DAG.getConstant(NVTBits-1, Amt.getValueType()));
4436 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
4437 return true;
4438 }
4439 }
4440
4441 // If we know that the high bit of the shift amount is zero, then we can do
4442 // this as a couple of simple shifts.
4443 if (KnownZero & Mask) {
4444 // Compute 32-amt.
4445 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
4446 DAG.getConstant(NVTBits, Amt.getValueType()),
4447 Amt);
4448
4449 // Expand the incoming operand to be shifted, so that we have its parts
4450 SDOperand InL, InH;
4451 ExpandOp(Op, InL, InH);
4452 switch(Opc) {
4453 case ISD::SHL:
4454 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
4455 Hi = DAG.getNode(ISD::OR, NVT,
4456 DAG.getNode(ISD::SHL, NVT, InH, Amt),
4457 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
4458 return true;
4459 case ISD::SRL:
4460 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
4461 Lo = DAG.getNode(ISD::OR, NVT,
4462 DAG.getNode(ISD::SRL, NVT, InL, Amt),
4463 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
4464 return true;
4465 case ISD::SRA:
4466 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
4467 Lo = DAG.getNode(ISD::OR, NVT,
4468 DAG.getNode(ISD::SRL, NVT, InL, Amt),
4469 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
4470 return true;
4471 }
4472 }
4473
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004474 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00004475}
Chris Lattner77e77a62005-01-21 06:05:23 +00004476
Chris Lattner9c32d3b2005-01-23 04:42:50 +00004477
Chris Lattner77e77a62005-01-21 06:05:23 +00004478// ExpandLibCall - Expand a node into a call to a libcall. If the result value
4479// does not fit into a register, return the lo part and set the hi part to the
4480// by-reg argument. If it does fit into a single register, return the result
4481// and leave the Hi part unset.
4482SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
Reid Spencer47857812006-12-31 05:55:36 +00004483 bool isSigned, SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00004484 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
4485 // The input chain to this libcall is the entry node of the function.
4486 // Legalizing the call will automatically add the previous call to the
4487 // dependence.
4488 SDOperand InChain = DAG.getEntryNode();
4489
Chris Lattner77e77a62005-01-21 06:05:23 +00004490 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00004491 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00004492 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
4493 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
4494 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
Reid Spencer47857812006-12-31 05:55:36 +00004495 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00004496 Entry.isSExt = isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00004497 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00004498 }
4499 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00004500
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004501 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00004502 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004503 std::pair<SDOperand,SDOperand> CallInfo =
Reid Spencer47857812006-12-31 05:55:36 +00004504 TLI.LowerCallTo(InChain, RetTy, isSigned, false, CallingConv::C, false,
Chris Lattneradf6a962005-05-13 18:50:42 +00004505 Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00004506
Chris Lattner6831a812006-02-13 09:18:02 +00004507 // Legalize the call sequence, starting with the chain. This will advance
4508 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
4509 // was added by LowerCallTo (guaranteeing proper serialization of calls).
4510 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00004511 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004512 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00004513 default: assert(0 && "Unknown thing");
4514 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00004515 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00004516 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00004517 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00004518 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00004519 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00004520 }
Chris Lattner99c25b82005-09-02 20:26:58 +00004521 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00004522}
4523
Chris Lattner9c32d3b2005-01-23 04:42:50 +00004524
Evan Cheng4c6cfad2007-04-27 07:33:31 +00004525/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
4526///
Chris Lattner77e77a62005-01-21 06:05:23 +00004527SDOperand SelectionDAGLegalize::
4528ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattner77e77a62005-01-21 06:05:23 +00004529 assert(getTypeAction(Source.getValueType()) == Expand &&
4530 "This is not an expansion!");
4531 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
4532
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004533 if (!isSigned) {
Chris Lattnere9c35e72005-04-13 05:09:42 +00004534 assert(Source.getValueType() == MVT::i64 &&
4535 "This only works for 64-bit -> FP");
4536 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
4537 // incoming integer is set. To handle this, we dynamically test to see if
4538 // it is set, and, if so, add a fudge factor.
4539 SDOperand Lo, Hi;
4540 ExpandOp(Source, Lo, Hi);
4541
Chris Lattner66de05b2005-05-13 04:45:13 +00004542 // If this is unsigned, and not supported, first perform the conversion to
4543 // signed, then adjust the result if the sign bit is set.
4544 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
4545 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
4546
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004547 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
4548 DAG.getConstant(0, Hi.getValueType()),
4549 ISD::SETLT);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004550 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4551 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4552 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00004553 uint64_t FF = 0x5f800000ULL;
4554 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00004555 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004556
Chris Lattner5839bf22005-08-26 17:15:30 +00004557 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00004558 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4559 SDOperand FudgeInReg;
4560 if (DestTy == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00004561 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004562 else {
4563 assert(DestTy == MVT::f64 && "Unexpected conversion");
Evan Cheng4c6cfad2007-04-27 07:33:31 +00004564 // FIXME: Avoid the extend by construction the right constantpool?
Chris Lattner5f056bf2005-07-10 01:55:33 +00004565 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Evan Cheng466685d2006-10-09 20:57:25 +00004566 CPIdx, NULL, 0, MVT::f32);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004567 }
Evan Cheng4c6cfad2007-04-27 07:33:31 +00004568 MVT::ValueType SCVT = SignedConv.getValueType();
4569 if (SCVT != DestTy) {
4570 // Destination type needs to be expanded as well. The FADD now we are
4571 // constructing will be expanded into a libcall.
4572 if (MVT::getSizeInBits(SCVT) != MVT::getSizeInBits(DestTy)) {
4573 assert(SCVT == MVT::i32 && DestTy == MVT::f64);
4574 SignedConv = DAG.getNode(ISD::BUILD_PAIR, MVT::i64,
4575 SignedConv, SignedConv.getValue(1));
4576 }
4577 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
4578 }
Chris Lattner473a9902005-09-29 06:44:39 +00004579 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00004580 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004581
Chris Lattnera88a2602005-05-14 05:33:54 +00004582 // Check to see if the target has a custom way to lower this. If so, use it.
4583 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
4584 default: assert(0 && "This action not implemented for this operation!");
4585 case TargetLowering::Legal:
4586 case TargetLowering::Expand:
4587 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00004588 case TargetLowering::Custom: {
4589 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
4590 Source), DAG);
4591 if (NV.Val)
4592 return LegalizeOp(NV);
4593 break; // The target decided this was legal after all
4594 }
Chris Lattnera88a2602005-05-14 05:33:54 +00004595 }
4596
Chris Lattner13689e22005-05-12 07:00:44 +00004597 // Expand the source, then glue it back together for the call. We must expand
4598 // the source in case it is shared (this pass of legalize must traverse it).
4599 SDOperand SrcLo, SrcHi;
4600 ExpandOp(Source, SrcLo, SrcHi);
4601 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
4602
Evan Cheng56966222007-01-12 02:11:51 +00004603 RTLIB::Libcall LC;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004604 if (DestTy == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00004605 LC = RTLIB::SINTTOFP_I64_F32;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004606 else {
4607 assert(DestTy == MVT::f64 && "Unknown fp value type!");
Evan Cheng56966222007-01-12 02:11:51 +00004608 LC = RTLIB::SINTTOFP_I64_F64;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004609 }
Chris Lattner6831a812006-02-13 09:18:02 +00004610
Evan Cheng4c6cfad2007-04-27 07:33:31 +00004611 assert(TLI.getLibcallName(LC) && "Don't know how to expand this SINT_TO_FP!");
Chris Lattner6831a812006-02-13 09:18:02 +00004612 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
4613 SDOperand UnusedHiPart;
Evan Cheng56966222007-01-12 02:11:51 +00004614 return ExpandLibCall(TLI.getLibcallName(LC), Source.Val, isSigned,
4615 UnusedHiPart);
Chris Lattner77e77a62005-01-21 06:05:23 +00004616}
Misha Brukmanedf128a2005-04-21 22:36:52 +00004617
Chris Lattner22cde6a2006-01-28 08:25:58 +00004618/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
4619/// INT_TO_FP operation of the specified operand when the target requests that
4620/// we expand it. At this point, we know that the result and operand types are
4621/// legal for the target.
4622SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
4623 SDOperand Op0,
4624 MVT::ValueType DestVT) {
4625 if (Op0.getValueType() == MVT::i32) {
4626 // simple 32-bit [signed|unsigned] integer to float/double expansion
4627
Chris Lattner58092e32007-01-20 22:35:55 +00004628 // get the stack frame index of a 8 byte buffer, pessimistically aligned
Chris Lattner22cde6a2006-01-28 08:25:58 +00004629 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattner58092e32007-01-20 22:35:55 +00004630 const Type *F64Type = MVT::getTypeForValueType(MVT::f64);
4631 unsigned StackAlign =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00004632 (unsigned)TLI.getTargetData()->getPrefTypeAlignment(F64Type);
Chris Lattner58092e32007-01-20 22:35:55 +00004633 int SSFI = MF.getFrameInfo()->CreateStackObject(8, StackAlign);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004634 // get address of 8 byte buffer
4635 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4636 // word offset constant for Hi/Lo address computation
4637 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
4638 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00004639 SDOperand Hi = StackSlot;
4640 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
4641 if (TLI.isLittleEndian())
4642 std::swap(Hi, Lo);
4643
Chris Lattner22cde6a2006-01-28 08:25:58 +00004644 // if signed map to unsigned space
4645 SDOperand Op0Mapped;
4646 if (isSigned) {
4647 // constant used to invert sign bit (signed to unsigned mapping)
4648 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
4649 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
4650 } else {
4651 Op0Mapped = Op0;
4652 }
4653 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00004654 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004655 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004656 // initial hi portion of constructed double
4657 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
4658 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00004659 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004660 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00004661 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004662 // FP constant to bias correct the final result
4663 SDOperand Bias = DAG.getConstantFP(isSigned ?
4664 BitsToDouble(0x4330000080000000ULL)
4665 : BitsToDouble(0x4330000000000000ULL),
4666 MVT::f64);
4667 // subtract the bias
4668 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
4669 // final result
4670 SDOperand Result;
4671 // handle final rounding
4672 if (DestVT == MVT::f64) {
4673 // do nothing
4674 Result = Sub;
4675 } else {
4676 // if f32 then cast to f32
4677 Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
4678 }
4679 return Result;
4680 }
4681 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
4682 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
4683
4684 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
4685 DAG.getConstant(0, Op0.getValueType()),
4686 ISD::SETLT);
4687 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4688 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4689 SignSet, Four, Zero);
4690
4691 // If the sign bit of the integer is set, the large number will be treated
4692 // as a negative number. To counteract this, the dynamic code adds an
4693 // offset depending on the data type.
4694 uint64_t FF;
4695 switch (Op0.getValueType()) {
4696 default: assert(0 && "Unsupported integer type!");
4697 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
4698 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
4699 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
4700 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
4701 }
4702 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00004703 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004704
4705 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
4706 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4707 SDOperand FudgeInReg;
4708 if (DestVT == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00004709 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004710 else {
4711 assert(DestVT == MVT::f64 && "Unexpected conversion");
4712 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
4713 DAG.getEntryNode(), CPIdx,
Evan Cheng466685d2006-10-09 20:57:25 +00004714 NULL, 0, MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00004715 }
4716
4717 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
4718}
4719
4720/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
4721/// *INT_TO_FP operation of the specified operand when the target requests that
4722/// we promote it. At this point, we know that the result and operand types are
4723/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
4724/// operation that takes a larger input.
4725SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
4726 MVT::ValueType DestVT,
4727 bool isSigned) {
4728 // First step, figure out the appropriate *INT_TO_FP operation to use.
4729 MVT::ValueType NewInTy = LegalOp.getValueType();
4730
4731 unsigned OpToUse = 0;
4732
4733 // Scan for the appropriate larger type to use.
4734 while (1) {
4735 NewInTy = (MVT::ValueType)(NewInTy+1);
4736 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
4737
4738 // If the target supports SINT_TO_FP of this type, use it.
4739 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
4740 default: break;
4741 case TargetLowering::Legal:
4742 if (!TLI.isTypeLegal(NewInTy))
4743 break; // Can't use this datatype.
4744 // FALL THROUGH.
4745 case TargetLowering::Custom:
4746 OpToUse = ISD::SINT_TO_FP;
4747 break;
4748 }
4749 if (OpToUse) break;
4750 if (isSigned) continue;
4751
4752 // If the target supports UINT_TO_FP of this type, use it.
4753 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
4754 default: break;
4755 case TargetLowering::Legal:
4756 if (!TLI.isTypeLegal(NewInTy))
4757 break; // Can't use this datatype.
4758 // FALL THROUGH.
4759 case TargetLowering::Custom:
4760 OpToUse = ISD::UINT_TO_FP;
4761 break;
4762 }
4763 if (OpToUse) break;
4764
4765 // Otherwise, try a larger type.
4766 }
4767
4768 // Okay, we found the operation and type to use. Zero extend our input to the
4769 // desired type then run the operation on it.
4770 return DAG.getNode(OpToUse, DestVT,
4771 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
4772 NewInTy, LegalOp));
4773}
4774
4775/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
4776/// FP_TO_*INT operation of the specified operand when the target requests that
4777/// we promote it. At this point, we know that the result and operand types are
4778/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
4779/// operation that returns a larger result.
4780SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
4781 MVT::ValueType DestVT,
4782 bool isSigned) {
4783 // First step, figure out the appropriate FP_TO*INT operation to use.
4784 MVT::ValueType NewOutTy = DestVT;
4785
4786 unsigned OpToUse = 0;
4787
4788 // Scan for the appropriate larger type to use.
4789 while (1) {
4790 NewOutTy = (MVT::ValueType)(NewOutTy+1);
4791 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
4792
4793 // If the target supports FP_TO_SINT returning this type, use it.
4794 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
4795 default: break;
4796 case TargetLowering::Legal:
4797 if (!TLI.isTypeLegal(NewOutTy))
4798 break; // Can't use this datatype.
4799 // FALL THROUGH.
4800 case TargetLowering::Custom:
4801 OpToUse = ISD::FP_TO_SINT;
4802 break;
4803 }
4804 if (OpToUse) break;
4805
4806 // If the target supports FP_TO_UINT of this type, use it.
4807 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
4808 default: break;
4809 case TargetLowering::Legal:
4810 if (!TLI.isTypeLegal(NewOutTy))
4811 break; // Can't use this datatype.
4812 // FALL THROUGH.
4813 case TargetLowering::Custom:
4814 OpToUse = ISD::FP_TO_UINT;
4815 break;
4816 }
4817 if (OpToUse) break;
4818
4819 // Otherwise, try a larger type.
4820 }
4821
4822 // Okay, we found the operation and type to use. Truncate the result of the
4823 // extended FP_TO_*INT operation to the desired size.
4824 return DAG.getNode(ISD::TRUNCATE, DestVT,
4825 DAG.getNode(OpToUse, NewOutTy, LegalOp));
4826}
4827
4828/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
4829///
4830SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
4831 MVT::ValueType VT = Op.getValueType();
4832 MVT::ValueType SHVT = TLI.getShiftAmountTy();
4833 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
4834 switch (VT) {
4835 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
4836 case MVT::i16:
4837 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4838 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4839 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
4840 case MVT::i32:
4841 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4842 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4843 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4844 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4845 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
4846 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
4847 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4848 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4849 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4850 case MVT::i64:
4851 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
4852 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
4853 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4854 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4855 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4856 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4857 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
4858 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
4859 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
4860 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
4861 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
4862 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
4863 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
4864 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
4865 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
4866 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
4867 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4868 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4869 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
4870 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4871 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
4872 }
4873}
4874
4875/// ExpandBitCount - Expand the specified bitcount instruction into operations.
4876///
4877SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
4878 switch (Opc) {
4879 default: assert(0 && "Cannot expand this yet!");
4880 case ISD::CTPOP: {
4881 static const uint64_t mask[6] = {
4882 0x5555555555555555ULL, 0x3333333333333333ULL,
4883 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
4884 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
4885 };
4886 MVT::ValueType VT = Op.getValueType();
4887 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00004888 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004889 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4890 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
4891 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
4892 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4893 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
4894 DAG.getNode(ISD::AND, VT,
4895 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
4896 }
4897 return Op;
4898 }
4899 case ISD::CTLZ: {
4900 // for now, we do this:
4901 // x = x | (x >> 1);
4902 // x = x | (x >> 2);
4903 // ...
4904 // x = x | (x >>16);
4905 // x = x | (x >>32); // for 64-bit input
4906 // return popcount(~x);
4907 //
4908 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
4909 MVT::ValueType VT = Op.getValueType();
4910 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00004911 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004912 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4913 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4914 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
4915 }
4916 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
4917 return DAG.getNode(ISD::CTPOP, VT, Op);
4918 }
4919 case ISD::CTTZ: {
4920 // for now, we use: { return popcount(~x & (x - 1)); }
4921 // unless the target has ctlz but not ctpop, in which case we use:
4922 // { return 32 - nlz(~x & (x-1)); }
4923 // see also http://www.hackersdelight.org/HDcode/ntz.cc
4924 MVT::ValueType VT = Op.getValueType();
4925 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
4926 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
4927 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
4928 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
4929 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
4930 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
4931 TLI.isOperationLegal(ISD::CTLZ, VT))
4932 return DAG.getNode(ISD::SUB, VT,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004933 DAG.getConstant(MVT::getSizeInBits(VT), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00004934 DAG.getNode(ISD::CTLZ, VT, Tmp3));
4935 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
4936 }
4937 }
4938}
Chris Lattnere34b3962005-01-19 04:19:40 +00004939
Chris Lattner3e928bb2005-01-07 07:47:09 +00004940/// ExpandOp - Expand the specified SDOperand into its two component pieces
4941/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
4942/// LegalizeNodes map is filled in for any results that are not expanded, the
4943/// ExpandedNodes map is filled in for any results that are expanded, and the
4944/// Lo/Hi values are returned.
4945void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
4946 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00004947 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004948 SDNode *Node = Op.Val;
4949 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00004950 assert(((MVT::isInteger(NVT) && NVT < VT) || MVT::isFloatingPoint(VT) ||
Dan Gohman7f321562007-06-25 16:23:39 +00004951 MVT::isVector(VT)) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00004952 "Cannot expand to FP value or to larger int value!");
4953
Chris Lattner6fdcb252005-09-02 20:32:45 +00004954 // See if we already expanded it.
Chris Lattner40030bf2007-02-04 01:17:38 +00004955 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00004956 = ExpandedNodes.find(Op);
4957 if (I != ExpandedNodes.end()) {
4958 Lo = I->second.first;
4959 Hi = I->second.second;
4960 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004961 }
4962
Chris Lattner3e928bb2005-01-07 07:47:09 +00004963 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004964 case ISD::CopyFromReg:
4965 assert(0 && "CopyFromReg must be legal!");
4966 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004967#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004968 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004969#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00004970 assert(0 && "Do not know how to expand this operator!");
4971 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004972 case ISD::UNDEF:
Evan Chengaa975c12006-12-16 02:20:50 +00004973 NVT = TLI.getTypeToExpandTo(VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004974 Lo = DAG.getNode(ISD::UNDEF, NVT);
4975 Hi = DAG.getNode(ISD::UNDEF, NVT);
4976 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004977 case ISD::Constant: {
4978 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
4979 Lo = DAG.getConstant(Cst, NVT);
4980 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
4981 break;
4982 }
Evan Cheng00495212006-12-12 21:32:44 +00004983 case ISD::ConstantFP: {
4984 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Evan Cheng279101e2006-12-12 22:19:28 +00004985 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00004986 if (getTypeAction(Lo.getValueType()) == Expand)
4987 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00004988 break;
4989 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004990 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00004991 // Return the operands.
4992 Lo = Node->getOperand(0);
4993 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004994 break;
Chris Lattner58f79632005-12-12 22:27:43 +00004995
4996 case ISD::SIGN_EXTEND_INREG:
4997 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00004998 // sext_inreg the low part if needed.
4999 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5000
5001 // The high part gets the sign extension from the lo-part. This handles
5002 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005003 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5004 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
5005 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005006 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005007
Nate Begemand88fc032006-01-14 03:14:10 +00005008 case ISD::BSWAP: {
5009 ExpandOp(Node->getOperand(0), Lo, Hi);
5010 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
5011 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5012 Lo = TempLo;
5013 break;
5014 }
5015
Chris Lattneredb1add2005-05-11 04:51:16 +00005016 case ISD::CTPOP:
5017 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005018 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5019 DAG.getNode(ISD::CTPOP, NVT, Lo),
5020 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005021 Hi = DAG.getConstant(0, NVT);
5022 break;
5023
Chris Lattner39a8f332005-05-12 19:05:01 +00005024 case ISD::CTLZ: {
5025 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005026 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005027 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5028 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005029 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
5030 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005031 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
5032 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5033
5034 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5035 Hi = DAG.getConstant(0, NVT);
5036 break;
5037 }
5038
5039 case ISD::CTTZ: {
5040 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005041 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005042 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5043 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005044 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
5045 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005046 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
5047 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5048
5049 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5050 Hi = DAG.getConstant(0, NVT);
5051 break;
5052 }
Chris Lattneredb1add2005-05-11 04:51:16 +00005053
Nate Begemanacc398c2006-01-25 18:21:52 +00005054 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005055 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5056 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00005057 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5058 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5059
5060 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005061 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00005062 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
5063 if (!TLI.isLittleEndian())
5064 std::swap(Lo, Hi);
5065 break;
5066 }
5067
Chris Lattner3e928bb2005-01-07 07:47:09 +00005068 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00005069 LoadSDNode *LD = cast<LoadSDNode>(Node);
5070 SDOperand Ch = LD->getChain(); // Legalize the chain.
5071 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
5072 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005073 int SVOffset = LD->getSrcValueOffset();
5074 unsigned Alignment = LD->getAlignment();
5075 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005076
Evan Cheng466685d2006-10-09 20:57:25 +00005077 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005078 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5079 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00005080 if (VT == MVT::f32 || VT == MVT::f64) {
5081 // f32->i32 or f64->i64 one to one expansion.
5082 // Remember that we legalized the chain.
5083 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00005084 // Recursively expand the new load.
5085 if (getTypeAction(NVT) == Expand)
5086 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005087 break;
5088 }
Chris Lattnerec39a452005-01-19 18:02:17 +00005089
Evan Cheng466685d2006-10-09 20:57:25 +00005090 // Increment the pointer to the other half.
5091 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
5092 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
5093 getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005094 SVOffset += IncrementSize;
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005095 if (Alignment > IncrementSize)
5096 Alignment = IncrementSize;
5097 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5098 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00005099
Evan Cheng466685d2006-10-09 20:57:25 +00005100 // Build a factor node to remember that this load is independent of the
5101 // other one.
5102 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5103 Hi.getValue(1));
5104
5105 // Remember that we legalized the chain.
5106 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
5107 if (!TLI.isLittleEndian())
5108 std::swap(Lo, Hi);
5109 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00005110 MVT::ValueType EVT = LD->getLoadedVT();
Evan Cheng548f6112006-12-13 03:19:57 +00005111
5112 if (VT == MVT::f64 && EVT == MVT::f32) {
5113 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
5114 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005115 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00005116 // Remember that we legalized the chain.
5117 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
5118 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
5119 break;
5120 }
Evan Cheng466685d2006-10-09 20:57:25 +00005121
5122 if (EVT == NVT)
5123 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005124 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005125 else
5126 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005127 SVOffset, EVT, isVolatile,
5128 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005129
5130 // Remember that we legalized the chain.
5131 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
5132
5133 if (ExtType == ISD::SEXTLOAD) {
5134 // The high part is obtained by SRA'ing all but one of the bits of the
5135 // lo part.
5136 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
5137 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5138 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
5139 } else if (ExtType == ISD::ZEXTLOAD) {
5140 // The high part is just a zero.
5141 Hi = DAG.getConstant(0, NVT);
5142 } else /* if (ExtType == ISD::EXTLOAD) */ {
5143 // The high part is undefined.
5144 Hi = DAG.getNode(ISD::UNDEF, NVT);
5145 }
5146 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005147 break;
5148 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005149 case ISD::AND:
5150 case ISD::OR:
5151 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
5152 SDOperand LL, LH, RL, RH;
5153 ExpandOp(Node->getOperand(0), LL, LH);
5154 ExpandOp(Node->getOperand(1), RL, RH);
5155 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
5156 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
5157 break;
5158 }
5159 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00005160 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005161 ExpandOp(Node->getOperand(1), LL, LH);
5162 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00005163 if (getTypeAction(NVT) == Expand)
5164 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00005165 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00005166 if (VT != MVT::f32)
5167 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005168 break;
5169 }
Nate Begeman9373a812005-08-10 20:51:12 +00005170 case ISD::SELECT_CC: {
5171 SDOperand TL, TH, FL, FH;
5172 ExpandOp(Node->getOperand(2), TL, TH);
5173 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00005174 if (getTypeAction(NVT) == Expand)
5175 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00005176 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5177 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00005178 if (VT != MVT::f32)
5179 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5180 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00005181 break;
5182 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00005183 case ISD::ANY_EXTEND:
5184 // The low part is any extension of the input (which degenerates to a copy).
5185 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
5186 // The high part is undefined.
5187 Hi = DAG.getNode(ISD::UNDEF, NVT);
5188 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005189 case ISD::SIGN_EXTEND: {
5190 // The low part is just a sign extension of the input (which degenerates to
5191 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00005192 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005193
Chris Lattner3e928bb2005-01-07 07:47:09 +00005194 // The high part is obtained by SRA'ing all but one of the bits of the lo
5195 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00005196 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00005197 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5198 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00005199 break;
5200 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00005201 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00005202 // The low part is just a zero extension of the input (which degenerates to
5203 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00005204 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005205
Chris Lattner3e928bb2005-01-07 07:47:09 +00005206 // The high part is just a zero.
5207 Hi = DAG.getConstant(0, NVT);
5208 break;
Chris Lattner35481892005-12-23 00:16:34 +00005209
Chris Lattner4c948eb2007-02-13 23:55:16 +00005210 case ISD::TRUNCATE: {
5211 // The input value must be larger than this value. Expand *it*.
5212 SDOperand NewLo;
5213 ExpandOp(Node->getOperand(0), NewLo, Hi);
5214
5215 // The low part is now either the right size, or it is closer. If not the
5216 // right size, make an illegal truncate so we recursively expand it.
5217 if (NewLo.getValueType() != Node->getValueType(0))
5218 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
5219 ExpandOp(NewLo, Lo, Hi);
5220 break;
5221 }
5222
Chris Lattner35481892005-12-23 00:16:34 +00005223 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005224 SDOperand Tmp;
5225 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
5226 // If the target wants to, allow it to lower this itself.
5227 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5228 case Expand: assert(0 && "cannot expand FP!");
5229 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
5230 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
5231 }
5232 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
5233 }
5234
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005235 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00005236 if (VT == MVT::f32 || VT == MVT::f64) {
5237 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00005238 if (getTypeAction(NVT) == Expand)
5239 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00005240 break;
5241 }
5242
5243 // If source operand will be expanded to the same type as VT, i.e.
5244 // i64 <- f64, i32 <- f32, expand the source operand instead.
5245 MVT::ValueType VT0 = Node->getOperand(0).getValueType();
5246 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
5247 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005248 break;
5249 }
5250
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005251 // Turn this into a load/store pair by default.
5252 if (Tmp.Val == 0)
Evan Cheng13acce32006-12-11 19:27:14 +00005253 Tmp = ExpandBIT_CONVERT(VT, Node->getOperand(0));
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005254
Chris Lattner35481892005-12-23 00:16:34 +00005255 ExpandOp(Tmp, Lo, Hi);
5256 break;
5257 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00005258
Chris Lattner8137c9e2006-01-28 05:07:51 +00005259 case ISD::READCYCLECOUNTER:
Chris Lattner308575b2005-11-20 22:56:56 +00005260 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
5261 TargetLowering::Custom &&
5262 "Must custom expand ReadCycleCounter");
Chris Lattner8137c9e2006-01-28 05:07:51 +00005263 Lo = TLI.LowerOperation(Op, DAG);
5264 assert(Lo.Val && "Node must be custom expanded!");
5265 Hi = Lo.getValue(1);
Chris Lattner308575b2005-11-20 22:56:56 +00005266 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005267 LegalizeOp(Lo.getValue(2)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00005268 break;
5269
Chris Lattner4e6c7462005-01-08 19:27:05 +00005270 // These operators cannot be expanded directly, emit them as calls to
5271 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00005272 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00005273 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00005274 SDOperand Op;
5275 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5276 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00005277 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
5278 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00005279 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005280
Chris Lattnerf20d1832005-07-30 01:40:57 +00005281 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
5282
Chris Lattner80a3e942005-07-29 00:33:32 +00005283 // Now that the custom expander is done, expand the result, which is still
5284 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00005285 if (Op.Val) {
5286 ExpandOp(Op, Lo, Hi);
5287 break;
5288 }
Chris Lattner80a3e942005-07-29 00:33:32 +00005289 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005290
Evan Cheng56966222007-01-12 02:11:51 +00005291 RTLIB::Libcall LC;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005292 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005293 LC = RTLIB::FPTOSINT_F32_I64;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005294 else
Evan Cheng56966222007-01-12 02:11:51 +00005295 LC = RTLIB::FPTOSINT_F64_I64;
5296 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
5297 false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00005298 break;
Evan Cheng56966222007-01-12 02:11:51 +00005299 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005300
Evan Cheng56966222007-01-12 02:11:51 +00005301 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00005302 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005303 SDOperand Op;
5304 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5305 case Expand: assert(0 && "cannot expand FP!");
5306 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
5307 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
5308 }
5309
5310 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
5311
5312 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00005313 if (Op.Val) {
5314 ExpandOp(Op, Lo, Hi);
5315 break;
5316 }
Chris Lattner80a3e942005-07-29 00:33:32 +00005317 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005318
Evan Cheng56966222007-01-12 02:11:51 +00005319 RTLIB::Libcall LC;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005320 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005321 LC = RTLIB::FPTOUINT_F32_I64;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005322 else
Evan Cheng56966222007-01-12 02:11:51 +00005323 LC = RTLIB::FPTOUINT_F64_I64;
5324 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
5325 false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00005326 break;
Evan Cheng56966222007-01-12 02:11:51 +00005327 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00005328
Evan Cheng05a2d562006-01-09 18:31:59 +00005329 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00005330 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00005331 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00005332 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005333 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00005334 Op = TLI.LowerOperation(Op, DAG);
5335 if (Op.Val) {
5336 // Now that the custom expander is done, expand the result, which is
5337 // still VT.
5338 ExpandOp(Op, Lo, Hi);
5339 break;
5340 }
5341 }
5342
Chris Lattner79980b02006-09-13 03:50:39 +00005343 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
5344 // this X << 1 as X+X.
5345 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
5346 if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
5347 TLI.isOperationLegal(ISD::ADDE, NVT)) {
5348 SDOperand LoOps[2], HiOps[3];
5349 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
5350 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
5351 LoOps[1] = LoOps[0];
5352 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
5353
5354 HiOps[1] = HiOps[0];
5355 HiOps[2] = Lo.getValue(1);
5356 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
5357 break;
5358 }
5359 }
5360
Chris Lattnere34b3962005-01-19 04:19:40 +00005361 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00005362 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00005363 break;
Chris Lattner47599822005-04-02 03:38:53 +00005364
5365 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00005366 TargetLowering::LegalizeAction Action =
5367 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
5368 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5369 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005370 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005371 break;
5372 }
5373
Chris Lattnere34b3962005-01-19 04:19:40 +00005374 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005375 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SHL_I64), Node,
5376 false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00005377 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00005378 }
Chris Lattnere34b3962005-01-19 04:19:40 +00005379
Evan Cheng05a2d562006-01-09 18:31:59 +00005380 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00005381 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00005382 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00005383 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005384 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00005385 Op = TLI.LowerOperation(Op, DAG);
5386 if (Op.Val) {
5387 // Now that the custom expander is done, expand the result, which is
5388 // still VT.
5389 ExpandOp(Op, Lo, Hi);
5390 break;
5391 }
5392 }
5393
Chris Lattnere34b3962005-01-19 04:19:40 +00005394 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00005395 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00005396 break;
Chris Lattner47599822005-04-02 03:38:53 +00005397
5398 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00005399 TargetLowering::LegalizeAction Action =
5400 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
5401 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5402 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005403 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005404 break;
5405 }
5406
Chris Lattnere34b3962005-01-19 04:19:40 +00005407 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005408 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRA_I64), Node,
5409 true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00005410 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00005411 }
5412
5413 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00005414 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00005415 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00005416 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005417 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00005418 Op = TLI.LowerOperation(Op, DAG);
5419 if (Op.Val) {
5420 // Now that the custom expander is done, expand the result, which is
5421 // still VT.
5422 ExpandOp(Op, Lo, Hi);
5423 break;
5424 }
5425 }
5426
Chris Lattnere34b3962005-01-19 04:19:40 +00005427 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00005428 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00005429 break;
Chris Lattner47599822005-04-02 03:38:53 +00005430
5431 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00005432 TargetLowering::LegalizeAction Action =
5433 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
5434 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5435 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005436 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005437 break;
5438 }
5439
Chris Lattnere34b3962005-01-19 04:19:40 +00005440 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005441 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRL_I64), Node,
5442 false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00005443 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00005444 }
Chris Lattnere34b3962005-01-19 04:19:40 +00005445
Misha Brukmanedf128a2005-04-21 22:36:52 +00005446 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005447 case ISD::SUB: {
5448 // If the target wants to custom expand this, let them.
5449 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
5450 TargetLowering::Custom) {
5451 Op = TLI.LowerOperation(Op, DAG);
5452 if (Op.Val) {
5453 ExpandOp(Op, Lo, Hi);
5454 break;
5455 }
5456 }
5457
5458 // Expand the subcomponents.
5459 SDOperand LHSL, LHSH, RHSL, RHSH;
5460 ExpandOp(Node->getOperand(0), LHSL, LHSH);
5461 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00005462 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
5463 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005464 LoOps[0] = LHSL;
5465 LoOps[1] = RHSL;
5466 HiOps[0] = LHSH;
5467 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00005468 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00005469 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005470 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00005471 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00005472 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00005473 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005474 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00005475 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00005476 }
Chris Lattner84f67882005-01-20 18:52:28 +00005477 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00005478 }
Chris Lattnerb429f732007-05-17 18:15:41 +00005479
5480 case ISD::ADDC:
5481 case ISD::SUBC: {
5482 // Expand the subcomponents.
5483 SDOperand LHSL, LHSH, RHSL, RHSH;
5484 ExpandOp(Node->getOperand(0), LHSL, LHSH);
5485 ExpandOp(Node->getOperand(1), RHSL, RHSH);
5486 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
5487 SDOperand LoOps[2] = { LHSL, RHSL };
5488 SDOperand HiOps[3] = { LHSH, RHSH };
5489
5490 if (Node->getOpcode() == ISD::ADDC) {
5491 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
5492 HiOps[2] = Lo.getValue(1);
5493 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
5494 } else {
5495 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
5496 HiOps[2] = Lo.getValue(1);
5497 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
5498 }
5499 // Remember that we legalized the flag.
5500 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
5501 break;
5502 }
5503 case ISD::ADDE:
5504 case ISD::SUBE: {
5505 // Expand the subcomponents.
5506 SDOperand LHSL, LHSH, RHSL, RHSH;
5507 ExpandOp(Node->getOperand(0), LHSL, LHSH);
5508 ExpandOp(Node->getOperand(1), RHSL, RHSH);
5509 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
5510 SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
5511 SDOperand HiOps[3] = { LHSH, RHSH };
5512
5513 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
5514 HiOps[2] = Lo.getValue(1);
5515 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
5516
5517 // Remember that we legalized the flag.
5518 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
5519 break;
5520 }
Nate Begemanc7c16572005-04-11 03:01:51 +00005521 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00005522 // If the target wants to custom expand this, let them.
5523 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00005524 SDOperand New = TLI.LowerOperation(Op, DAG);
5525 if (New.Val) {
5526 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00005527 break;
5528 }
5529 }
5530
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005531 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
5532 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005533 if (HasMULHS || HasMULHU) {
Nate Begemanc7c16572005-04-11 03:01:51 +00005534 SDOperand LL, LH, RL, RH;
5535 ExpandOp(Node->getOperand(0), LL, LH);
5536 ExpandOp(Node->getOperand(1), RL, RH);
Nate Begeman56eb8682005-08-30 02:44:00 +00005537 unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
Nate Begeman2cbba892006-12-11 02:23:46 +00005538 // FIXME: Move this to the dag combiner.
Nate Begeman56eb8682005-08-30 02:44:00 +00005539 // MULHS implicitly sign extends its inputs. Check to see if ExpandOp
5540 // extended the sign bit of the low half through the upper half, and if so
5541 // emit a MULHS instead of the alternate sequence that is valid for any
5542 // i64 x i64 multiply.
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005543 if (HasMULHS &&
Nate Begeman56eb8682005-08-30 02:44:00 +00005544 // is RH an extension of the sign bit of RL?
5545 RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
5546 RH.getOperand(1).getOpcode() == ISD::Constant &&
5547 cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
5548 // is LH an extension of the sign bit of LL?
5549 LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
5550 LH.getOperand(1).getOpcode() == ISD::Constant &&
5551 cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
Chris Lattnera89654b2006-09-16 00:21:44 +00005552 // Low part:
5553 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
5554 // High part:
Nate Begeman56eb8682005-08-30 02:44:00 +00005555 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
Chris Lattnera89654b2006-09-16 00:21:44 +00005556 break;
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005557 } else if (HasMULHU) {
Chris Lattnera89654b2006-09-16 00:21:44 +00005558 // Low part:
5559 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
5560
5561 // High part:
Nate Begeman56eb8682005-08-30 02:44:00 +00005562 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
5563 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
5564 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
5565 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
5566 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00005567 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00005568 }
Nate Begemanc7c16572005-04-11 03:01:51 +00005569 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005570
Evan Cheng56966222007-01-12 02:11:51 +00005571 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::MUL_I64), Node,
5572 false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00005573 break;
5574 }
Evan Cheng56966222007-01-12 02:11:51 +00005575 case ISD::SDIV:
5576 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SDIV_I64), Node, true, Hi);
5577 break;
5578 case ISD::UDIV:
5579 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UDIV_I64), Node, true, Hi);
5580 break;
5581 case ISD::SREM:
5582 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SREM_I64), Node, true, Hi);
5583 break;
5584 case ISD::UREM:
5585 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UREM_I64), Node, true, Hi);
5586 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00005587
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005588 case ISD::FADD:
Evan Cheng56966222007-01-12 02:11:51 +00005589 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5590 ? RTLIB::ADD_F32 : RTLIB::ADD_F64),
5591 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005592 break;
5593 case ISD::FSUB:
Evan Cheng56966222007-01-12 02:11:51 +00005594 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5595 ? RTLIB::SUB_F32 : RTLIB::SUB_F64),
5596 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005597 break;
5598 case ISD::FMUL:
Evan Cheng56966222007-01-12 02:11:51 +00005599 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5600 ? RTLIB::MUL_F32 : RTLIB::MUL_F64),
5601 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005602 break;
5603 case ISD::FDIV:
Evan Cheng56966222007-01-12 02:11:51 +00005604 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5605 ? RTLIB::DIV_F32 : RTLIB::DIV_F64),
5606 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005607 break;
5608 case ISD::FP_EXTEND:
Evan Cheng56966222007-01-12 02:11:51 +00005609 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPEXT_F32_F64), Node, true,Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005610 break;
5611 case ISD::FP_ROUND:
Evan Cheng56966222007-01-12 02:11:51 +00005612 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPROUND_F64_F32),Node,true,Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005613 break;
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00005614 case ISD::FPOWI:
5615 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32)
5616 ? RTLIB::POWI_F32 : RTLIB::POWI_F64),
5617 Node, false, Hi);
5618 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00005619 case ISD::FSQRT:
5620 case ISD::FSIN:
5621 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00005622 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00005623 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00005624 case ISD::FSQRT:
5625 LC = (VT == MVT::f32) ? RTLIB::SQRT_F32 : RTLIB::SQRT_F64;
5626 break;
5627 case ISD::FSIN:
5628 LC = (VT == MVT::f32) ? RTLIB::SIN_F32 : RTLIB::SIN_F64;
5629 break;
5630 case ISD::FCOS:
5631 LC = (VT == MVT::f32) ? RTLIB::COS_F32 : RTLIB::COS_F64;
5632 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00005633 default: assert(0 && "Unreachable!");
5634 }
Evan Cheng56966222007-01-12 02:11:51 +00005635 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00005636 break;
5637 }
Evan Cheng966bf242006-12-16 00:52:40 +00005638 case ISD::FABS: {
5639 SDOperand Mask = (VT == MVT::f64)
5640 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
5641 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
5642 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
5643 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
5644 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
5645 if (getTypeAction(NVT) == Expand)
5646 ExpandOp(Lo, Lo, Hi);
5647 break;
5648 }
5649 case ISD::FNEG: {
5650 SDOperand Mask = (VT == MVT::f64)
5651 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
5652 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
5653 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
5654 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
5655 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
5656 if (getTypeAction(NVT) == Expand)
5657 ExpandOp(Lo, Lo, Hi);
5658 break;
5659 }
Evan Cheng912095b2007-01-04 21:56:39 +00005660 case ISD::FCOPYSIGN: {
5661 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
5662 if (getTypeAction(NVT) == Expand)
5663 ExpandOp(Lo, Lo, Hi);
5664 break;
5665 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00005666 case ISD::SINT_TO_FP:
5667 case ISD::UINT_TO_FP: {
5668 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
5669 MVT::ValueType SrcVT = Node->getOperand(0).getValueType();
Evan Cheng56966222007-01-12 02:11:51 +00005670 RTLIB::Libcall LC;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005671 if (Node->getOperand(0).getValueType() == MVT::i64) {
5672 if (VT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005673 LC = isSigned ? RTLIB::SINTTOFP_I64_F32 : RTLIB::UINTTOFP_I64_F32;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005674 else
Evan Cheng56966222007-01-12 02:11:51 +00005675 LC = isSigned ? RTLIB::SINTTOFP_I64_F64 : RTLIB::UINTTOFP_I64_F64;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005676 } else {
5677 if (VT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005678 LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005679 else
Evan Cheng56966222007-01-12 02:11:51 +00005680 LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
Evan Cheng7df28dc2006-12-19 01:44:04 +00005681 }
5682
5683 // Promote the operand if needed.
5684 if (getTypeAction(SrcVT) == Promote) {
5685 SDOperand Tmp = PromoteOp(Node->getOperand(0));
5686 Tmp = isSigned
5687 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
5688 DAG.getValueType(SrcVT))
5689 : DAG.getZeroExtendInReg(Tmp, SrcVT);
5690 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
5691 }
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005692
5693 const char *LibCall = TLI.getLibcallName(LC);
5694 if (LibCall)
5695 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Hi);
5696 else {
5697 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
5698 Node->getOperand(0));
5699 if (getTypeAction(Lo.getValueType()) == Expand)
5700 ExpandOp(Lo, Lo, Hi);
5701 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00005702 break;
5703 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00005704 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005705
Chris Lattner83397362005-12-21 18:02:52 +00005706 // Make sure the resultant values have been legalized themselves, unless this
5707 // is a type that requires multi-step expansion.
5708 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
5709 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00005710 if (Hi.Val)
5711 // Don't legalize the high part if it is expanded to a single node.
5712 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00005713 }
Evan Cheng05a2d562006-01-09 18:31:59 +00005714
5715 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00005716 bool isNew = ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi)));
Evan Cheng05a2d562006-01-09 18:31:59 +00005717 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00005718}
5719
Dan Gohman7f321562007-06-25 16:23:39 +00005720/// SplitVectorOp - Given an operand of vector type, break it down into
5721/// two smaller values, still of vector type.
Chris Lattnerc7029802006-03-18 01:44:44 +00005722void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
5723 SDOperand &Hi) {
Dan Gohman7f321562007-06-25 16:23:39 +00005724 assert(MVT::isVector(Op.getValueType()) && "Cannot split non-vector type!");
Chris Lattnerc7029802006-03-18 01:44:44 +00005725 SDNode *Node = Op.Val;
Dan Gohman7f321562007-06-25 16:23:39 +00005726 unsigned NumElements = MVT::getVectorNumElements(Node->getValueType(0));
Chris Lattnerc7029802006-03-18 01:44:44 +00005727 assert(NumElements > 1 && "Cannot split a single element vector!");
5728 unsigned NewNumElts = NumElements/2;
Dan Gohman7f321562007-06-25 16:23:39 +00005729 MVT::ValueType NewEltVT = MVT::getVectorElementType(Node->getValueType(0));
5730 MVT::ValueType NewVT = MVT::getVectorType(NewEltVT, NewNumElts);
Chris Lattnerc7029802006-03-18 01:44:44 +00005731
5732 // See if we already split it.
5733 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
5734 = SplitNodes.find(Op);
5735 if (I != SplitNodes.end()) {
5736 Lo = I->second.first;
5737 Hi = I->second.second;
5738 return;
5739 }
5740
5741 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005742 default:
5743#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005744 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005745#endif
5746 assert(0 && "Unhandled operation in SplitVectorOp!");
Dan Gohman7f321562007-06-25 16:23:39 +00005747 case ISD::BUILD_PAIR:
5748 Lo = Node->getOperand(0);
5749 Hi = Node->getOperand(1);
5750 break;
5751 case ISD::BUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005752 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
5753 Node->op_begin()+NewNumElts);
Dan Gohman7f321562007-06-25 16:23:39 +00005754 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00005755
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005756 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts,
Dan Gohman7f321562007-06-25 16:23:39 +00005757 Node->op_end());
5758 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00005759 break;
5760 }
Dan Gohman7f321562007-06-25 16:23:39 +00005761 case ISD::CONCAT_VECTORS: {
5762 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
5763 if (NewNumSubvectors == 1) {
5764 Lo = Node->getOperand(0);
5765 Hi = Node->getOperand(1);
5766 } else {
5767 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
5768 Node->op_begin()+NewNumSubvectors);
5769 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00005770
Dan Gohman7f321562007-06-25 16:23:39 +00005771 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors,
5772 Node->op_end());
5773 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT, &HiOps[0], HiOps.size());
5774 }
Dan Gohman65956352007-06-13 15:12:02 +00005775 break;
5776 }
Dan Gohman7f321562007-06-25 16:23:39 +00005777 case ISD::ADD:
5778 case ISD::SUB:
5779 case ISD::MUL:
5780 case ISD::FADD:
5781 case ISD::FSUB:
5782 case ISD::FMUL:
5783 case ISD::SDIV:
5784 case ISD::UDIV:
5785 case ISD::FDIV:
5786 case ISD::AND:
5787 case ISD::OR:
5788 case ISD::XOR: {
Chris Lattnerc7029802006-03-18 01:44:44 +00005789 SDOperand LL, LH, RL, RH;
5790 SplitVectorOp(Node->getOperand(0), LL, LH);
5791 SplitVectorOp(Node->getOperand(1), RL, RH);
5792
Dan Gohman7f321562007-06-25 16:23:39 +00005793 Lo = DAG.getNode(Node->getOpcode(), NewVT, LL, RL);
5794 Hi = DAG.getNode(Node->getOpcode(), NewVT, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00005795 break;
5796 }
Dan Gohman7f321562007-06-25 16:23:39 +00005797 case ISD::LOAD: {
5798 LoadSDNode *LD = cast<LoadSDNode>(Node);
5799 SDOperand Ch = LD->getChain();
5800 SDOperand Ptr = LD->getBasePtr();
5801 const Value *SV = LD->getSrcValue();
5802 int SVOffset = LD->getSrcValueOffset();
5803 unsigned Alignment = LD->getAlignment();
5804 bool isVolatile = LD->isVolatile();
5805
5806 Lo = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
5807 unsigned IncrementSize = NewNumElts * MVT::getSizeInBits(NewEltVT)/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00005808 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
5809 getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005810 SVOffset += IncrementSize;
5811 if (Alignment > IncrementSize)
5812 Alignment = IncrementSize;
5813 Hi = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00005814
5815 // Build a factor node to remember that this load is independent of the
5816 // other one.
5817 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5818 Hi.getValue(1));
5819
5820 // Remember that we legalized the chain.
5821 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00005822 break;
5823 }
Dan Gohman7f321562007-06-25 16:23:39 +00005824 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00005825 // We know the result is a vector. The input may be either a vector or a
5826 // scalar value.
Dan Gohman10a7aa62007-06-29 00:09:08 +00005827 SDOperand InOp = Node->getOperand(0);
5828 if (!MVT::isVector(InOp.getValueType()) ||
5829 MVT::getVectorNumElements(InOp.getValueType()) == 1) {
5830 // The input is a scalar or single-element vector.
5831 // Lower to a store/load so that it can be split.
5832 // FIXME: this could be improved probably.
5833 SDOperand Ptr = CreateStackTemporary(InOp.getValueType());
Chris Lattner7692eb42006-03-23 21:16:34 +00005834
Evan Cheng786225a2006-10-05 23:01:46 +00005835 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman10a7aa62007-06-29 00:09:08 +00005836 InOp, Ptr, NULL, 0);
5837 InOp = DAG.getLoad(Op.getValueType(), St, Ptr, NULL, 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00005838 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00005839 // Split the vector and convert each of the pieces now.
5840 SplitVectorOp(InOp, Lo, Hi);
5841 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT, Lo);
5842 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT, Hi);
5843 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00005844 }
Chris Lattnerc7029802006-03-18 01:44:44 +00005845 }
5846
5847 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00005848 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00005849 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00005850 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00005851}
5852
5853
Dan Gohman89b20c02007-06-27 14:06:22 +00005854/// ScalarizeVectorOp - Given an operand of single-element vector type
5855/// (e.g. v1f32), convert it into the equivalent operation that returns a
5856/// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +00005857SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) {
5858 assert(MVT::isVector(Op.getValueType()) &&
5859 "Bad ScalarizeVectorOp invocation!");
Chris Lattnerc7029802006-03-18 01:44:44 +00005860 SDNode *Node = Op.Val;
Dan Gohman7f321562007-06-25 16:23:39 +00005861 MVT::ValueType NewVT = MVT::getVectorElementType(Op.getValueType());
5862 assert(MVT::getVectorNumElements(Op.getValueType()) == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00005863
Dan Gohman7f321562007-06-25 16:23:39 +00005864 // See if we already scalarized it.
5865 std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op);
5866 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00005867
5868 SDOperand Result;
5869 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00005870 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005871#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005872 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005873#endif
Dan Gohman7f321562007-06-25 16:23:39 +00005874 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
5875 case ISD::ADD:
5876 case ISD::FADD:
5877 case ISD::SUB:
5878 case ISD::FSUB:
5879 case ISD::MUL:
5880 case ISD::FMUL:
5881 case ISD::SDIV:
5882 case ISD::UDIV:
5883 case ISD::FDIV:
5884 case ISD::SREM:
5885 case ISD::UREM:
5886 case ISD::FREM:
5887 case ISD::AND:
5888 case ISD::OR:
5889 case ISD::XOR:
5890 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00005891 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00005892 ScalarizeVectorOp(Node->getOperand(0)),
5893 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00005894 break;
Dan Gohman7f321562007-06-25 16:23:39 +00005895 case ISD::FNEG:
5896 case ISD::FABS:
5897 case ISD::FSQRT:
5898 case ISD::FSIN:
5899 case ISD::FCOS:
5900 Result = DAG.getNode(Node->getOpcode(),
5901 NewVT,
5902 ScalarizeVectorOp(Node->getOperand(0)));
5903 break;
5904 case ISD::LOAD: {
5905 LoadSDNode *LD = cast<LoadSDNode>(Node);
5906 SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
5907 SDOperand Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00005908
Dan Gohman7f321562007-06-25 16:23:39 +00005909 const Value *SV = LD->getSrcValue();
5910 int SVOffset = LD->getSrcValueOffset();
5911 Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset,
5912 LD->isVolatile(), LD->getAlignment());
5913
Chris Lattnerc7029802006-03-18 01:44:44 +00005914 // Remember that we legalized the chain.
5915 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
5916 break;
5917 }
Dan Gohman7f321562007-06-25 16:23:39 +00005918 case ISD::BUILD_VECTOR:
5919 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00005920 break;
Dan Gohman7f321562007-06-25 16:23:39 +00005921 case ISD::INSERT_VECTOR_ELT:
5922 // Returning the inserted scalar element.
5923 Result = Node->getOperand(1);
5924 break;
5925 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00005926 assert(Node->getOperand(0).getValueType() == NewVT &&
5927 "Concat of non-legal vectors not yet supported!");
5928 Result = Node->getOperand(0);
5929 break;
Dan Gohman7f321562007-06-25 16:23:39 +00005930 case ISD::VECTOR_SHUFFLE: {
5931 // Figure out if the scalar is the LHS or RHS and return it.
5932 SDOperand EltNum = Node->getOperand(2).getOperand(0);
5933 if (cast<ConstantSDNode>(EltNum)->getValue())
5934 Result = ScalarizeVectorOp(Node->getOperand(1));
5935 else
5936 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00005937 break;
Dan Gohman7f321562007-06-25 16:23:39 +00005938 }
5939 case ISD::EXTRACT_SUBVECTOR:
5940 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00005941 assert(Result.getValueType() == NewVT);
5942 break;
Dan Gohman7f321562007-06-25 16:23:39 +00005943 case ISD::BIT_CONVERT:
5944 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
Chris Lattner5b2316e2006-03-28 20:24:43 +00005945 break;
Dan Gohman7f321562007-06-25 16:23:39 +00005946 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005947 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00005948 ScalarizeVectorOp(Op.getOperand(1)),
5949 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00005950 break;
Chris Lattnerc7029802006-03-18 01:44:44 +00005951 }
5952
5953 if (TLI.isTypeLegal(NewVT))
5954 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00005955 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
5956 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00005957 return Result;
5958}
5959
Chris Lattner3e928bb2005-01-07 07:47:09 +00005960
5961// SelectionDAG::Legalize - This is the entry point for the file.
5962//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005963void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00005964 if (ViewLegalizeDAGs) viewGraph();
5965
Chris Lattner3e928bb2005-01-07 07:47:09 +00005966 /// run - This is the main entry point to this class.
5967 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00005968 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005969}
5970