blob: a0dad4d88b0106b3aa99f79eda8d0f6ec8c872d9 [file] [log] [blame]
Chris Lattner3e928bb2005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3e928bb2005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner45b8caf2005-01-15 07:15:18 +000016#include "llvm/CodeGen/MachineFrameInfo.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000017#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000018#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000019#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Cheng61bbbab2007-08-16 23:50:06 +000020#include "llvm/Target/TargetFrameInfo.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000021#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000022#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000023#include "llvm/Target/TargetMachine.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000024#include "llvm/Target/TargetOptions.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000025#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000026#include "llvm/Constants.h"
Reid Spencerc1030572007-01-19 21:13:56 +000027#include "llvm/DerivedTypes.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000028#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000029#include "llvm/Support/Compiler.h"
Duncan Sandsdc846502007-10-28 12:59:45 +000030#include "llvm/Support/MathExtras.h"
Chris Lattner79715142007-02-03 01:12:36 +000031#include "llvm/ADT/DenseMap.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000032#include "llvm/ADT/SmallVector.h"
Chris Lattner00755df2007-02-04 00:27:56 +000033#include "llvm/ADT/SmallPtrSet.h"
Evan Cheng033e6812006-03-24 01:17:21 +000034#include <map>
Chris Lattner3e928bb2005-01-07 07:47:09 +000035using namespace llvm;
36
Chris Lattner5e46a192006-04-02 03:07:27 +000037#ifndef NDEBUG
38static cl::opt<bool>
39ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
40 cl::desc("Pop up a window to show dags before legalize"));
41#else
42static const bool ViewLegalizeDAGs = 0;
43#endif
44
Chris Lattner3e928bb2005-01-07 07:47:09 +000045//===----------------------------------------------------------------------===//
46/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
47/// hacks on it until the target machine can handle it. This involves
48/// eliminating value sizes the machine cannot handle (promoting small sizes to
49/// large sizes or splitting up large values into small values) as well as
50/// eliminating operations the machine cannot handle.
51///
52/// This code also does a small amount of optimization and recognition of idioms
53/// as part of its processing. For example, if a target does not support a
54/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
55/// will attempt merge setcc and brc instructions into brcc's.
56///
57namespace {
Chris Lattner360e8202006-06-28 21:58:30 +000058class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000059 TargetLowering &TLI;
60 SelectionDAG &DAG;
61
Chris Lattner6831a812006-02-13 09:18:02 +000062 // Libcall insertion helpers.
63
64 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
65 /// legalized. We use this to ensure that calls are properly serialized
66 /// against each other, including inserted libcalls.
67 SDOperand LastCALLSEQ_END;
68
69 /// IsLegalizingCall - This member is used *only* for purposes of providing
70 /// helpful assertions that a libcall isn't created while another call is
71 /// being legalized (which could lead to non-serialized call sequences).
72 bool IsLegalizingCall;
73
Chris Lattner3e928bb2005-01-07 07:47:09 +000074 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000075 Legal, // The target natively supports this operation.
76 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000077 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000078 };
Chris Lattner6831a812006-02-13 09:18:02 +000079
Chris Lattner3e928bb2005-01-07 07:47:09 +000080 /// ValueTypeActions - This is a bitvector that contains two bits for each
81 /// value type, where the two bits correspond to the LegalizeAction enum.
82 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000083 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000084
Chris Lattner3e928bb2005-01-07 07:47:09 +000085 /// LegalizedNodes - For nodes that are of legal width, and that have more
86 /// than one use, this map indicates what regularized operand to use. This
87 /// allows us to avoid legalizing the same thing more than once.
Chris Lattner718071c2007-02-04 00:50:02 +000088 DenseMap<SDOperand, SDOperand> LegalizedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000089
Chris Lattner03c85462005-01-15 05:21:40 +000090 /// PromotedNodes - For nodes that are below legal width, and that have more
91 /// than one use, this map indicates what promoted value to use. This allows
92 /// us to avoid promoting the same thing more than once.
Chris Lattner40030bf2007-02-04 01:17:38 +000093 DenseMap<SDOperand, SDOperand> PromotedNodes;
Chris Lattner03c85462005-01-15 05:21:40 +000094
Chris Lattnerc7029802006-03-18 01:44:44 +000095 /// ExpandedNodes - For nodes that need to be expanded this map indicates
96 /// which which operands are the expanded version of the input. This allows
97 /// us to avoid expanding the same node more than once.
Chris Lattner40030bf2007-02-04 01:17:38 +000098 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000099
Chris Lattnerc7029802006-03-18 01:44:44 +0000100 /// SplitNodes - For vector nodes that need to be split, this map indicates
101 /// which which operands are the split version of the input. This allows us
102 /// to avoid splitting the same node more than once.
103 std::map<SDOperand, std::pair<SDOperand, SDOperand> > SplitNodes;
104
Dan Gohman7f321562007-06-25 16:23:39 +0000105 /// ScalarizedNodes - For nodes that need to be converted from vector types to
106 /// scalar types, this contains the mapping of ones we have already
Chris Lattnerc7029802006-03-18 01:44:44 +0000107 /// processed to the result.
Dan Gohman7f321562007-06-25 16:23:39 +0000108 std::map<SDOperand, SDOperand> ScalarizedNodes;
Chris Lattnerc7029802006-03-18 01:44:44 +0000109
Chris Lattner8afc48e2005-01-07 22:28:47 +0000110 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000111 LegalizedNodes.insert(std::make_pair(From, To));
112 // If someone requests legalization of the new node, return itself.
113 if (From != To)
114 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000115 }
Chris Lattner03c85462005-01-15 05:21:40 +0000116 void AddPromotedOperand(SDOperand From, SDOperand To) {
Chris Lattner40030bf2007-02-04 01:17:38 +0000117 bool isNew = PromotedNodes.insert(std::make_pair(From, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000118 assert(isNew && "Got into the map somehow?");
Chris Lattner69a889e2005-12-20 00:53:54 +0000119 // If someone requests legalization of the new node, return itself.
120 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000121 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000122
Chris Lattner3e928bb2005-01-07 07:47:09 +0000123public:
124
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000125 SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000126
Chris Lattner3e928bb2005-01-07 07:47:09 +0000127 /// getTypeAction - Return how we should legalize values of this type, either
128 /// it is already legal or we need to expand it into multiple registers of
129 /// smaller integer type, or we need to promote it to a larger type.
130 LegalizeAction getTypeAction(MVT::ValueType VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000131 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000132 }
133
134 /// isTypeLegal - Return true if this type is legal on this target.
135 ///
136 bool isTypeLegal(MVT::ValueType VT) const {
137 return getTypeAction(VT) == Legal;
138 }
139
Chris Lattner3e928bb2005-01-07 07:47:09 +0000140 void LegalizeDAG();
141
Chris Lattner456a93a2006-01-28 07:39:30 +0000142private:
Dan Gohman7f321562007-06-25 16:23:39 +0000143 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000144 /// appropriate for its type.
145 void HandleOp(SDOperand Op);
146
147 /// LegalizeOp - We know that the specified value has a legal type.
148 /// Recursively ensure that the operands have legal types, then return the
149 /// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000150 SDOperand LegalizeOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000151
Dan Gohman82669522007-10-11 23:57:53 +0000152 /// UnrollVectorOp - We know that the given vector has a legal type, however
153 /// the operation it performs is not legal and is an operation that we have
154 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
155 /// operating on each element individually.
156 SDOperand UnrollVectorOp(SDOperand O);
157
Chris Lattnerc7029802006-03-18 01:44:44 +0000158 /// PromoteOp - Given an operation that produces a value in an invalid type,
159 /// promote it to compute the value into a larger type. The produced value
160 /// will have the correct bits for the low portion of the register, but no
161 /// guarantee is made about the top bits: it may be zero, sign-extended, or
162 /// garbage.
Chris Lattner03c85462005-01-15 05:21:40 +0000163 SDOperand PromoteOp(SDOperand O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000164
Chris Lattnerc7029802006-03-18 01:44:44 +0000165 /// ExpandOp - Expand the specified SDOperand into its two component pieces
166 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
167 /// the LegalizeNodes map is filled in for any results that are not expanded,
168 /// the ExpandedNodes map is filled in for any results that are expanded, and
169 /// the Lo/Hi values are returned. This applies to integer types and Vector
170 /// types.
171 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
172
Dan Gohman7f321562007-06-25 16:23:39 +0000173 /// SplitVectorOp - Given an operand of vector type, break it down into
174 /// two smaller values.
Chris Lattnerc7029802006-03-18 01:44:44 +0000175 void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
176
Dan Gohman89b20c02007-06-27 14:06:22 +0000177 /// ScalarizeVectorOp - Given an operand of single-element vector type
178 /// (e.g. v1f32), convert it into the equivalent operation that returns a
179 /// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +0000180 SDOperand ScalarizeVectorOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000181
Chris Lattner4352cc92006-04-04 17:23:26 +0000182 /// isShuffleLegal - Return true if a vector shuffle is legal with the
183 /// specified mask and type. Targets can specify exactly which masks they
184 /// support and the code generator is tasked with not creating illegal masks.
185 ///
186 /// Note that this will also return true for shuffles that are promoted to a
187 /// different type.
188 ///
189 /// If this is a legal shuffle, this method returns the (possibly promoted)
190 /// build_vector Mask. If it's not a legal shuffle, it returns null.
191 SDNode *isShuffleLegal(MVT::ValueType VT, SDOperand Mask) const;
192
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000193 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000194 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000195
Nate Begeman750ac1b2006-02-01 07:19:44 +0000196 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
197
Reid Spencer47857812006-12-31 05:55:36 +0000198 SDOperand ExpandLibCall(const char *Name, SDNode *Node, bool isSigned,
Chris Lattner77e77a62005-01-21 06:05:23 +0000199 SDOperand &Hi);
200 SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
201 SDOperand Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000202
Chris Lattner1401d152008-01-16 07:45:30 +0000203 SDOperand EmitStackConvert(SDOperand SrcOp, MVT::ValueType SlotVT,
204 MVT::ValueType DestVT);
Chris Lattnerce872152006-03-19 06:31:19 +0000205 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner4352cc92006-04-04 17:23:26 +0000206 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Jim Laskey6269ed12005-08-17 00:39:29 +0000207 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
208 SDOperand LegalOp,
209 MVT::ValueType DestVT);
Nate Begeman5a8441e2005-07-16 02:02:34 +0000210 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
211 bool isSigned);
Chris Lattner1618beb2005-07-29 00:11:56 +0000212 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
213 bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000214
Chris Lattner456a93a2006-01-28 07:39:30 +0000215 SDOperand ExpandBSWAP(SDOperand Op);
216 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000217 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
218 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000219 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
220 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000221
Dan Gohman7f321562007-06-25 16:23:39 +0000222 SDOperand ExpandEXTRACT_SUBVECTOR(SDOperand Op);
Chris Lattner4aab2f42006-04-02 05:06:04 +0000223 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000224};
225}
226
Chris Lattner4352cc92006-04-04 17:23:26 +0000227/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
228/// specified mask and type. Targets can specify exactly which masks they
229/// support and the code generator is tasked with not creating illegal masks.
230///
231/// Note that this will also return true for shuffles that are promoted to a
232/// different type.
233SDNode *SelectionDAGLegalize::isShuffleLegal(MVT::ValueType VT,
234 SDOperand Mask) const {
235 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
236 default: return 0;
237 case TargetLowering::Legal:
238 case TargetLowering::Custom:
239 break;
240 case TargetLowering::Promote: {
241 // If this is promoted to a different type, convert the shuffle mask and
242 // ask if it is legal in the promoted type!
243 MVT::ValueType NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
244
245 // If we changed # elements, change the shuffle mask.
246 unsigned NumEltsGrowth =
247 MVT::getVectorNumElements(NVT) / MVT::getVectorNumElements(VT);
248 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
249 if (NumEltsGrowth > 1) {
250 // Renumber the elements.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000251 SmallVector<SDOperand, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000252 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
253 SDOperand InOp = Mask.getOperand(i);
254 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
255 if (InOp.getOpcode() == ISD::UNDEF)
256 Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
257 else {
258 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
259 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
260 }
261 }
262 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000263 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000264 }
265 VT = NVT;
266 break;
267 }
268 }
269 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
270}
271
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000272SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
273 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
274 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000275 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000276 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000277}
278
Chris Lattnere10e6f72007-06-18 21:28:10 +0000279/// ComputeTopDownOrdering - Compute a top-down ordering of the dag, where Order
280/// contains all of a nodes operands before it contains the node.
281static void ComputeTopDownOrdering(SelectionDAG &DAG,
282 SmallVector<SDNode*, 64> &Order) {
283
284 DenseMap<SDNode*, unsigned> Visited;
285 std::vector<SDNode*> Worklist;
286 Worklist.reserve(128);
Chris Lattner32fca002005-10-06 01:20:27 +0000287
Chris Lattnere10e6f72007-06-18 21:28:10 +0000288 // Compute ordering from all of the leaves in the graphs, those (like the
289 // entry node) that have no operands.
290 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
291 E = DAG.allnodes_end(); I != E; ++I) {
292 if (I->getNumOperands() == 0) {
293 Visited[I] = 0 - 1U;
294 Worklist.push_back(I);
295 }
Chris Lattner32fca002005-10-06 01:20:27 +0000296 }
297
Chris Lattnere10e6f72007-06-18 21:28:10 +0000298 while (!Worklist.empty()) {
299 SDNode *N = Worklist.back();
300 Worklist.pop_back();
301
302 if (++Visited[N] != N->getNumOperands())
303 continue; // Haven't visited all operands yet
304
305 Order.push_back(N);
306
307 // Now that we have N in, add anything that uses it if all of their operands
308 // are now done.
309 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
310 UI != E; ++UI)
311 Worklist.push_back(*UI);
312 }
313
314 assert(Order.size() == Visited.size() &&
315 Order.size() ==
316 (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
317 "Error: DAG is cyclic!");
Chris Lattner32fca002005-10-06 01:20:27 +0000318}
319
Chris Lattner1618beb2005-07-29 00:11:56 +0000320
Chris Lattner3e928bb2005-01-07 07:47:09 +0000321void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000322 LastCALLSEQ_END = DAG.getEntryNode();
323 IsLegalizingCall = false;
324
Chris Lattnerab510a72005-10-02 17:49:46 +0000325 // The legalize process is inherently a bottom-up recursive process (users
326 // legalize their uses before themselves). Given infinite stack space, we
327 // could just start legalizing on the root and traverse the whole graph. In
328 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000329 // blocks. To avoid this problem, compute an ordering of the nodes where each
330 // node is only legalized after all of its operands are legalized.
Chris Lattner0ed44172007-02-04 01:20:02 +0000331 SmallVector<SDNode*, 64> Order;
Chris Lattnere10e6f72007-06-18 21:28:10 +0000332 ComputeTopDownOrdering(DAG, Order);
Chris Lattnerab510a72005-10-02 17:49:46 +0000333
Chris Lattnerc7029802006-03-18 01:44:44 +0000334 for (unsigned i = 0, e = Order.size(); i != e; ++i)
335 HandleOp(SDOperand(Order[i], 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000336
337 // Finally, it's possible the root changed. Get the new root.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000338 SDOperand OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000339 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
340 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000341
342 ExpandedNodes.clear();
343 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000344 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000345 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000346 ScalarizedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000347
348 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000349 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000350}
351
Chris Lattner6831a812006-02-13 09:18:02 +0000352
353/// FindCallEndFromCallStart - Given a chained node that is part of a call
354/// sequence, find the CALLSEQ_END node that terminates the call sequence.
355static SDNode *FindCallEndFromCallStart(SDNode *Node) {
356 if (Node->getOpcode() == ISD::CALLSEQ_END)
357 return Node;
358 if (Node->use_empty())
359 return 0; // No CallSeqEnd
360
361 // The chain is usually at the end.
362 SDOperand TheChain(Node, Node->getNumValues()-1);
363 if (TheChain.getValueType() != MVT::Other) {
364 // Sometimes it's at the beginning.
365 TheChain = SDOperand(Node, 0);
366 if (TheChain.getValueType() != MVT::Other) {
367 // Otherwise, hunt for it.
368 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
369 if (Node->getValueType(i) == MVT::Other) {
370 TheChain = SDOperand(Node, i);
371 break;
372 }
373
374 // Otherwise, we walked into a node without a chain.
375 if (TheChain.getValueType() != MVT::Other)
376 return 0;
377 }
378 }
379
380 for (SDNode::use_iterator UI = Node->use_begin(),
381 E = Node->use_end(); UI != E; ++UI) {
382
383 // Make sure to only follow users of our token chain.
384 SDNode *User = *UI;
385 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
386 if (User->getOperand(i) == TheChain)
387 if (SDNode *Result = FindCallEndFromCallStart(User))
388 return Result;
389 }
390 return 0;
391}
392
393/// FindCallStartFromCallEnd - Given a chained node that is part of a call
394/// sequence, find the CALLSEQ_START node that initiates the call sequence.
395static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
396 assert(Node && "Didn't find callseq_start for a call??");
397 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
398
399 assert(Node->getOperand(0).getValueType() == MVT::Other &&
400 "Node doesn't have a token chain argument!");
401 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
402}
403
404/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
405/// see if any uses can reach Dest. If no dest operands can get to dest,
406/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000407///
408/// Keep track of the nodes we fine that actually do lead to Dest in
409/// NodesLeadingTo. This avoids retraversing them exponential number of times.
410///
411bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000412 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000413 if (N == Dest) return true; // N certainly leads to Dest :)
414
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000415 // If we've already processed this node and it does lead to Dest, there is no
416 // need to reprocess it.
417 if (NodesLeadingTo.count(N)) return true;
418
Chris Lattner6831a812006-02-13 09:18:02 +0000419 // If the first result of this node has been already legalized, then it cannot
420 // reach N.
421 switch (getTypeAction(N->getValueType(0))) {
422 case Legal:
423 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
424 break;
425 case Promote:
426 if (PromotedNodes.count(SDOperand(N, 0))) return false;
427 break;
428 case Expand:
429 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
430 break;
431 }
432
433 // Okay, this node has not already been legalized. Check and legalize all
434 // operands. If none lead to Dest, then we can legalize this node.
435 bool OperandsLeadToDest = false;
436 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
437 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000438 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000439
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000440 if (OperandsLeadToDest) {
441 NodesLeadingTo.insert(N);
442 return true;
443 }
Chris Lattner6831a812006-02-13 09:18:02 +0000444
445 // Okay, this node looks safe, legalize it and return false.
Chris Lattner80edfb32006-04-17 22:10:08 +0000446 HandleOp(SDOperand(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000447 return false;
448}
449
Dan Gohman7f321562007-06-25 16:23:39 +0000450/// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000451/// appropriate for its type.
452void SelectionDAGLegalize::HandleOp(SDOperand Op) {
Dan Gohman7f321562007-06-25 16:23:39 +0000453 MVT::ValueType VT = Op.getValueType();
454 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000455 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000456 case Legal: (void)LegalizeOp(Op); break;
457 case Promote: (void)PromoteOp(Op); break;
Chris Lattnerc7029802006-03-18 01:44:44 +0000458 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +0000459 if (!MVT::isVector(VT)) {
460 // If this is an illegal scalar, expand it into its two component
461 // pieces.
Chris Lattnerc7029802006-03-18 01:44:44 +0000462 SDOperand X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000463 if (Op.getOpcode() == ISD::TargetConstant)
464 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000465 ExpandOp(Op, X, Y);
Dan Gohman7f321562007-06-25 16:23:39 +0000466 } else if (MVT::getVectorNumElements(VT) == 1) {
467 // If this is an illegal single element vector, convert it to a
468 // scalar operation.
469 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000470 } else {
Dan Gohman7f321562007-06-25 16:23:39 +0000471 // Otherwise, this is an illegal multiple element vector.
472 // Split it in half and legalize both parts.
473 SDOperand X, Y;
474 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000475 }
476 break;
477 }
478}
Chris Lattner6831a812006-02-13 09:18:02 +0000479
Evan Cheng9f877882006-12-13 20:57:08 +0000480/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
481/// a load from the constant pool.
482static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000483 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000484 bool Extend = false;
485
486 // If a FP immediate is precise when represented as a float and if the
487 // target can do an extending load from float to double, we put it into
488 // the constant pool as a float, even if it's is statically typed as a
489 // double.
490 MVT::ValueType VT = CFP->getValueType(0);
491 bool isDouble = VT == MVT::f64;
Dale Johannesen118cd9d2007-09-16 16:51:49 +0000492 ConstantFP *LLVMC = ConstantFP::get(MVT::getTypeForValueType(VT),
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000493 CFP->getValueAPF());
Evan Cheng9f877882006-12-13 20:57:08 +0000494 if (!UseCP) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000495 if (VT!=MVT::f64 && VT!=MVT::f32)
496 assert(0 && "Invalid type expansion");
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000497 return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt().getZExtValue(),
498 isDouble ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000499 }
500
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000501 if (isDouble && CFP->isValueValidForType(MVT::f32, CFP->getValueAPF()) &&
Evan Cheng00495212006-12-12 21:32:44 +0000502 // Only do this if the target has a native EXTLOAD instruction from f32.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000503 // Do not try to be clever about long doubles (so far)
Evan Cheng00495212006-12-12 21:32:44 +0000504 TLI.isLoadXLegal(ISD::EXTLOAD, MVT::f32)) {
505 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC,Type::FloatTy));
506 VT = MVT::f32;
507 Extend = true;
508 }
509
510 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
511 if (Extend) {
512 return DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000513 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman69de1932008-02-06 22:27:42 +0000514 0, MVT::f32);
Evan Cheng00495212006-12-12 21:32:44 +0000515 } else {
Dan Gohman69de1932008-02-06 22:27:42 +0000516 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +0000517 PseudoSourceValue::getConstantPool(), 0);
Evan Cheng00495212006-12-12 21:32:44 +0000518 }
519}
520
Chris Lattner6831a812006-02-13 09:18:02 +0000521
Evan Cheng912095b2007-01-04 21:56:39 +0000522/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
523/// operations.
524static
525SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT::ValueType NVT,
526 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng068c5f42007-01-05 21:31:51 +0000527 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng912095b2007-01-04 21:56:39 +0000528 MVT::ValueType SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000529 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
530 "fcopysign expansion only supported for f32 and f64");
Evan Cheng912095b2007-01-04 21:56:39 +0000531 MVT::ValueType SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000532
Evan Cheng912095b2007-01-04 21:56:39 +0000533 // First get the sign bit of second operand.
Evan Cheng068c5f42007-01-05 21:31:51 +0000534 SDOperand Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000535 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
536 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000537 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000538 SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000539 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000540 // Shift right or sign-extend it if the two operands have different types.
541 int SizeDiff = MVT::getSizeInBits(SrcNVT) - MVT::getSizeInBits(NVT);
542 if (SizeDiff > 0) {
543 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
544 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
545 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
546 } else if (SizeDiff < 0)
547 SignBit = DAG.getNode(ISD::SIGN_EXTEND, NVT, SignBit);
Evan Cheng068c5f42007-01-05 21:31:51 +0000548
549 // Clear the sign bit of first operand.
550 SDOperand Mask2 = (VT == MVT::f64)
551 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
552 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
553 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Evan Cheng912095b2007-01-04 21:56:39 +0000554 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000555 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
556
557 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000558 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
559 return Result;
560}
561
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000562/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
563static
564SDOperand ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
565 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000566 SDOperand Chain = ST->getChain();
567 SDOperand Ptr = ST->getBasePtr();
568 SDOperand Val = ST->getValue();
569 MVT::ValueType VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000570 int Alignment = ST->getAlignment();
571 int SVOffset = ST->getSrcValueOffset();
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000572 if (MVT::isFloatingPoint(ST->getMemoryVT())) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000573 // Expand to a bitconvert of the value to the integer type of the
574 // same size, then a (misaligned) int store.
575 MVT::ValueType intVT;
576 if (VT==MVT::f64)
577 intVT = MVT::i64;
578 else if (VT==MVT::f32)
579 intVT = MVT::i32;
580 else
581 assert(0 && "Unaligned load of unsupported floating point type");
582
583 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
584 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
585 SVOffset, ST->isVolatile(), Alignment);
586 }
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000587 assert(MVT::isInteger(ST->getMemoryVT()) &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000588 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000589 // Get the half-size VT
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000590 MVT::ValueType NewStoredVT = ST->getMemoryVT() - 1;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000591 int NumBits = MVT::getSizeInBits(NewStoredVT);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000592 int IncrementSize = NumBits / 8;
593
594 // Divide the stored value in two parts.
595 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
596 SDOperand Lo = Val;
597 SDOperand Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
598
599 // Store the two parts
600 SDOperand Store1, Store2;
601 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
602 ST->getSrcValue(), SVOffset, NewStoredVT,
603 ST->isVolatile(), Alignment);
604 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
605 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000606 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000607 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
608 ST->getSrcValue(), SVOffset + IncrementSize,
609 NewStoredVT, ST->isVolatile(), Alignment);
610
611 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
612}
613
614/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
615static
616SDOperand ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
617 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000618 int SVOffset = LD->getSrcValueOffset();
619 SDOperand Chain = LD->getChain();
620 SDOperand Ptr = LD->getBasePtr();
621 MVT::ValueType VT = LD->getValueType(0);
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000622 MVT::ValueType LoadedVT = LD->getMemoryVT();
Chris Lattnere400af82007-11-19 21:38:03 +0000623 if (MVT::isFloatingPoint(VT) && !MVT::isVector(VT)) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000624 // Expand to a (misaligned) integer load of the same size,
625 // then bitconvert to floating point.
626 MVT::ValueType intVT;
Chris Lattnere400af82007-11-19 21:38:03 +0000627 if (LoadedVT == MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000628 intVT = MVT::i64;
Chris Lattnere400af82007-11-19 21:38:03 +0000629 else if (LoadedVT == MVT::f32)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000630 intVT = MVT::i32;
631 else
632 assert(0 && "Unaligned load of unsupported floating point type");
633
634 SDOperand newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
635 SVOffset, LD->isVolatile(),
636 LD->getAlignment());
637 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
638 if (LoadedVT != VT)
639 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
640
641 SDOperand Ops[] = { Result, Chain };
642 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
643 Ops, 2);
644 }
Chris Lattnere400af82007-11-19 21:38:03 +0000645 assert((MVT::isInteger(LoadedVT) || MVT::isVector(LoadedVT)) &&
646 "Unaligned load of unsupported type.");
647
648 // Compute the new VT that is half the size of the old one. We either have an
649 // integer MVT or we have a vector MVT.
650 unsigned NumBits = MVT::getSizeInBits(LoadedVT);
651 MVT::ValueType NewLoadedVT;
652 if (!MVT::isVector(LoadedVT)) {
653 NewLoadedVT = MVT::getIntegerType(NumBits/2);
654 } else {
655 // FIXME: This is not right for <1 x anything> it is also not right for
656 // non-power-of-two vectors.
657 NewLoadedVT = MVT::getVectorType(MVT::getVectorElementType(LoadedVT),
658 MVT::getVectorNumElements(LoadedVT)/2);
659 }
660 NumBits >>= 1;
661
662 unsigned Alignment = LD->getAlignment();
663 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000664 ISD::LoadExtType HiExtType = LD->getExtensionType();
665
666 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
667 if (HiExtType == ISD::NON_EXTLOAD)
668 HiExtType = ISD::ZEXTLOAD;
669
670 // Load the value in two parts
671 SDOperand Lo, Hi;
672 if (TLI.isLittleEndian()) {
673 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
674 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
675 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
676 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
677 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
678 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000679 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000680 } else {
681 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
682 NewLoadedVT,LD->isVolatile(), Alignment);
683 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
684 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
685 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
686 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000687 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000688 }
689
690 // aggregate the two parts
691 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
692 SDOperand Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
693 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
694
695 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
696 Hi.getValue(1));
697
698 SDOperand Ops[] = { Result, TF };
699 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other), Ops, 2);
700}
Evan Cheng912095b2007-01-04 21:56:39 +0000701
Dan Gohman82669522007-10-11 23:57:53 +0000702/// UnrollVectorOp - We know that the given vector has a legal type, however
703/// the operation it performs is not legal and is an operation that we have
704/// no way of lowering. "Unroll" the vector, splitting out the scalars and
705/// operating on each element individually.
706SDOperand SelectionDAGLegalize::UnrollVectorOp(SDOperand Op) {
707 MVT::ValueType VT = Op.getValueType();
708 assert(isTypeLegal(VT) &&
709 "Caller should expand or promote operands that are not legal!");
710 assert(Op.Val->getNumValues() == 1 &&
711 "Can't unroll a vector with multiple results!");
712 unsigned NE = MVT::getVectorNumElements(VT);
713 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
714
715 SmallVector<SDOperand, 8> Scalars;
716 SmallVector<SDOperand, 4> Operands(Op.getNumOperands());
717 for (unsigned i = 0; i != NE; ++i) {
718 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
719 SDOperand Operand = Op.getOperand(j);
720 MVT::ValueType OperandVT = Operand.getValueType();
721 if (MVT::isVector(OperandVT)) {
722 // A vector operand; extract a single element.
723 MVT::ValueType OperandEltVT = MVT::getVectorElementType(OperandVT);
724 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
725 OperandEltVT,
726 Operand,
727 DAG.getConstant(i, MVT::i32));
728 } else {
729 // A scalar operand; just use it as is.
730 Operands[j] = Operand;
731 }
732 }
733 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
734 &Operands[0], Operands.size()));
735 }
736
737 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
738}
739
Duncan Sands007f9842008-01-10 10:28:30 +0000740/// GetFPLibCall - Return the right libcall for the given floating point type.
741static RTLIB::Libcall GetFPLibCall(MVT::ValueType VT,
742 RTLIB::Libcall Call_F32,
743 RTLIB::Libcall Call_F64,
744 RTLIB::Libcall Call_F80,
745 RTLIB::Libcall Call_PPCF128) {
746 return
747 VT == MVT::f32 ? Call_F32 :
748 VT == MVT::f64 ? Call_F64 :
749 VT == MVT::f80 ? Call_F80 :
750 VT == MVT::ppcf128 ? Call_PPCF128 :
751 RTLIB::UNKNOWN_LIBCALL;
752}
753
Dan Gohmana3466152007-07-13 20:14:11 +0000754/// LegalizeOp - We know that the specified value has a legal type, and
755/// that its operands are legal. Now ensure that the operation itself
756/// is legal, recursively ensuring that the operands' operations remain
757/// legal.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000758SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000759 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
760 return Op;
761
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000762 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000763 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000764 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000765
Chris Lattner3e928bb2005-01-07 07:47:09 +0000766 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000767 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000768 if (Node->getNumValues() > 1) {
769 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000770 if (getTypeAction(Node->getValueType(i)) != Legal) {
771 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000772 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000773 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000774 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000775 }
776 }
777
Chris Lattner45982da2005-05-12 16:53:42 +0000778 // Note that LegalizeOp may be reentered even from single-use nodes, which
779 // means that we always must cache transformed nodes.
Chris Lattner718071c2007-02-04 00:50:02 +0000780 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000781 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000782
Nate Begeman9373a812005-08-10 20:51:12 +0000783 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000784 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000785 bool isCustom = false;
786
Chris Lattner3e928bb2005-01-07 07:47:09 +0000787 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000788 case ISD::FrameIndex:
789 case ISD::EntryToken:
790 case ISD::Register:
791 case ISD::BasicBlock:
792 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000793 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000794 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000795 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000796 case ISD::TargetConstantPool:
797 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000798 case ISD::TargetGlobalTLSAddress:
Chris Lattner948c1b12006-01-28 08:31:04 +0000799 case ISD::TargetExternalSymbol:
800 case ISD::VALUETYPE:
801 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +0000802 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +0000803 case ISD::STRING:
804 case ISD::CONDCODE:
805 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +0000806 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +0000807 "This must be legal!");
808 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000809 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000810 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
811 // If this is a target node, legalize it by legalizing the operands then
812 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000813 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000814 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000815 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000816
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000817 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000818
819 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
820 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
821 return Result.getValue(Op.ResNo);
822 }
823 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000824#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000825 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000826#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000827 assert(0 && "Do not know how to legalize this operator!");
828 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000829 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000830 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000831 case ISD::GlobalTLSAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000832 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000833 case ISD::ConstantPool:
834 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000835 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
836 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000837 case TargetLowering::Custom:
838 Tmp1 = TLI.LowerOperation(Op, DAG);
839 if (Tmp1.Val) Result = Tmp1;
840 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000841 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000842 break;
843 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000844 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000845 case ISD::FRAMEADDR:
846 case ISD::RETURNADDR:
847 // The only option for these nodes is to custom lower them. If the target
848 // does not custom lower them, then return zero.
849 Tmp1 = TLI.LowerOperation(Op, DAG);
850 if (Tmp1.Val)
851 Result = Tmp1;
852 else
853 Result = DAG.getConstant(0, TLI.getPointerTy());
854 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000855 case ISD::FRAME_TO_ARGS_OFFSET: {
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000856 MVT::ValueType VT = Node->getValueType(0);
857 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
858 default: assert(0 && "This action is not supported yet!");
859 case TargetLowering::Custom:
860 Result = TLI.LowerOperation(Op, DAG);
861 if (Result.Val) break;
862 // Fall Thru
863 case TargetLowering::Legal:
864 Result = DAG.getConstant(0, VT);
865 break;
866 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000867 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000868 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000869 case ISD::EXCEPTIONADDR: {
870 Tmp1 = LegalizeOp(Node->getOperand(0));
871 MVT::ValueType VT = Node->getValueType(0);
872 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
873 default: assert(0 && "This action is not supported yet!");
874 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000875 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000876 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000877 }
878 break;
879 case TargetLowering::Custom:
880 Result = TLI.LowerOperation(Op, DAG);
881 if (Result.Val) break;
882 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000883 case TargetLowering::Legal: {
884 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp1 };
885 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
Duncan Sandsb027fa02007-12-31 18:35:50 +0000886 Ops, 2);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000887 break;
888 }
889 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000890 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000891 if (Result.Val->getNumValues() == 1) break;
892
893 assert(Result.Val->getNumValues() == 2 &&
894 "Cannot return more than two values!");
895
896 // Since we produced two values, make sure to remember that we
897 // legalized both of them.
898 Tmp1 = LegalizeOp(Result);
899 Tmp2 = LegalizeOp(Result.getValue(1));
900 AddLegalizedOperand(Op.getValue(0), Tmp1);
901 AddLegalizedOperand(Op.getValue(1), Tmp2);
902 return Op.ResNo ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +0000903 case ISD::EHSELECTION: {
904 Tmp1 = LegalizeOp(Node->getOperand(0));
905 Tmp2 = LegalizeOp(Node->getOperand(1));
906 MVT::ValueType VT = Node->getValueType(0);
907 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
908 default: assert(0 && "This action is not supported yet!");
909 case TargetLowering::Expand: {
910 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000911 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +0000912 }
913 break;
914 case TargetLowering::Custom:
915 Result = TLI.LowerOperation(Op, DAG);
916 if (Result.Val) break;
917 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000918 case TargetLowering::Legal: {
919 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp2 };
920 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
Duncan Sandsb027fa02007-12-31 18:35:50 +0000921 Ops, 2);
Jim Laskey8782d482007-02-28 20:43:58 +0000922 break;
923 }
924 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000925 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000926 if (Result.Val->getNumValues() == 1) break;
927
928 assert(Result.Val->getNumValues() == 2 &&
929 "Cannot return more than two values!");
930
931 // Since we produced two values, make sure to remember that we
932 // legalized both of them.
933 Tmp1 = LegalizeOp(Result);
934 Tmp2 = LegalizeOp(Result.getValue(1));
935 AddLegalizedOperand(Op.getValue(0), Tmp1);
936 AddLegalizedOperand(Op.getValue(1), Tmp2);
937 return Op.ResNo ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000938 case ISD::EH_RETURN: {
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000939 MVT::ValueType VT = Node->getValueType(0);
940 // The only "good" option for this node is to custom lower it.
941 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
942 default: assert(0 && "This action is not supported at all!");
943 case TargetLowering::Custom:
944 Result = TLI.LowerOperation(Op, DAG);
945 if (Result.Val) break;
946 // Fall Thru
947 case TargetLowering::Legal:
948 // Target does not know, how to lower this, lower to noop
949 Result = LegalizeOp(Node->getOperand(0));
950 break;
951 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000952 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000953 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000954 case ISD::AssertSext:
955 case ISD::AssertZext:
956 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000957 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000958 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000959 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000960 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +0000961 Result = Node->getOperand(Op.ResNo);
962 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000963 case ISD::CopyFromReg:
964 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000965 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000966 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000967 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000968 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000969 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000970 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000971 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000972 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
973 } else {
974 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
975 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000976 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
977 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000978 // Since CopyFromReg produces two values, make sure to remember that we
979 // legalized both of them.
980 AddLegalizedOperand(Op.getValue(0), Result);
981 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
982 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000983 case ISD::UNDEF: {
984 MVT::ValueType VT = Op.getValueType();
985 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000986 default: assert(0 && "This action is not supported yet!");
987 case TargetLowering::Expand:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000988 if (MVT::isInteger(VT))
989 Result = DAG.getConstant(0, VT);
990 else if (MVT::isFloatingPoint(VT))
Dale Johannesenf41db212007-09-26 17:26:49 +0000991 Result = DAG.getConstantFP(APFloat(APInt(MVT::getSizeInBits(VT), 0)),
992 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000993 else
994 assert(0 && "Unknown value type!");
995 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000996 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000997 break;
998 }
999 break;
1000 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001001
Chris Lattner48b61a72006-03-28 00:40:33 +00001002 case ISD::INTRINSIC_W_CHAIN:
1003 case ISD::INTRINSIC_WO_CHAIN:
1004 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001005 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001006 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1007 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001008 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +00001009
1010 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +00001011 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001012 TargetLowering::Custom) {
1013 Tmp3 = TLI.LowerOperation(Result, DAG);
1014 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001015 }
1016
1017 if (Result.Val->getNumValues() == 1) break;
1018
1019 // Must have return value and chain result.
1020 assert(Result.Val->getNumValues() == 2 &&
1021 "Cannot return more than two values!");
1022
1023 // Since loads produce two values, make sure to remember that we
1024 // legalized both of them.
1025 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1026 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1027 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001028 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001029
1030 case ISD::LOCATION:
1031 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
1032 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1033
1034 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
1035 case TargetLowering::Promote:
1036 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001037 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001038 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001039 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Jim Laskey1ee29252007-01-26 14:34:52 +00001040 bool useLABEL = TLI.isOperationLegal(ISD::LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001041
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001042 if (MMI && (useDEBUG_LOC || useLABEL)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001043 const std::string &FName =
1044 cast<StringSDNode>(Node->getOperand(3))->getValue();
1045 const std::string &DirName =
1046 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001047 unsigned SrcFile = MMI->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001048
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001049 SmallVector<SDOperand, 8> Ops;
Jim Laskeye81aecb2005-12-21 20:51:37 +00001050 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-01-05 01:25:28 +00001051 SDOperand LineOp = Node->getOperand(1);
1052 SDOperand ColOp = Node->getOperand(2);
1053
1054 if (useDEBUG_LOC) {
1055 Ops.push_back(LineOp); // line #
1056 Ops.push_back(ColOp); // col #
1057 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001058 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001059 } else {
Jim Laskeyd0e58e32006-02-15 19:34:44 +00001060 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
1061 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Evan Chenga647c922008-02-01 02:05:57 +00001062 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001063 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Evan Chengbb81d972008-01-31 09:59:15 +00001064 Ops.push_back(DAG.getConstant(0, MVT::i32)); // a debug label
1065 Result = DAG.getNode(ISD::LABEL, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001066 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001067 } else {
1068 Result = Tmp1; // chain
1069 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001070 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001071 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001072 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +00001073 if (Tmp1 != Node->getOperand(0) ||
1074 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001075 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +00001076 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +00001077 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
1078 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1079 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1080 } else {
1081 // Otherwise promote them.
1082 Ops.push_back(PromoteOp(Node->getOperand(1)));
1083 Ops.push_back(PromoteOp(Node->getOperand(2)));
1084 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001085 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1086 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001087 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001088 }
1089 break;
1090 }
1091 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001092
1093 case ISD::DECLARE:
1094 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1095 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1096 default: assert(0 && "This action is not supported yet!");
1097 case TargetLowering::Legal:
1098 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1099 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1100 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1101 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1102 break;
1103 }
1104 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001105
1106 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001107 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001108 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001109 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +00001110 case TargetLowering::Legal:
1111 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1112 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1113 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1114 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001115 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001116 break;
1117 }
1118 break;
1119
Jim Laskey1ee29252007-01-26 14:34:52 +00001120 case ISD::LABEL:
Evan Chengbb81d972008-01-31 09:59:15 +00001121 assert(Node->getNumOperands() == 3 && "Invalid LABEL node!");
Jim Laskey1ee29252007-01-26 14:34:52 +00001122 switch (TLI.getOperationAction(ISD::LABEL, MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001123 default: assert(0 && "This action is not supported yet!");
1124 case TargetLowering::Legal:
1125 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1126 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Evan Chengbb81d972008-01-31 09:59:15 +00001127 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the "flavor" operand.
1128 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001129 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001130 case TargetLowering::Expand:
1131 Result = LegalizeOp(Node->getOperand(0));
1132 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001133 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001134 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001135
Scott Michelc1513d22007-08-08 23:23:31 +00001136 case ISD::Constant: {
1137 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1138 unsigned opAction =
1139 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1140
Chris Lattner3e928bb2005-01-07 07:47:09 +00001141 // We know we don't need to expand constants here, constants only have one
1142 // value and we check that it is fine above.
1143
Scott Michelc1513d22007-08-08 23:23:31 +00001144 if (opAction == TargetLowering::Custom) {
1145 Tmp1 = TLI.LowerOperation(Result, DAG);
1146 if (Tmp1.Val)
1147 Result = Tmp1;
1148 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001149 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001150 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001151 case ISD::ConstantFP: {
1152 // Spill FP immediates to the constant pool if the target cannot directly
1153 // codegen them. Targets often have some immediate values that can be
1154 // efficiently generated into an FP register without a load. We explicitly
1155 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001156 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1157
Chris Lattner3181a772006-01-29 06:26:56 +00001158 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1159 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001160 case TargetLowering::Legal:
1161 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001162 case TargetLowering::Custom:
1163 Tmp3 = TLI.LowerOperation(Result, DAG);
1164 if (Tmp3.Val) {
1165 Result = Tmp3;
1166 break;
1167 }
1168 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001169 case TargetLowering::Expand: {
1170 // Check to see if this FP immediate is already legal.
1171 bool isLegal = false;
1172 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1173 E = TLI.legal_fpimm_end(); I != E; ++I) {
1174 if (CFP->isExactlyValue(*I)) {
1175 isLegal = true;
1176 break;
1177 }
1178 }
1179 // If this is a legal constant, turn it into a TargetConstantFP node.
1180 if (isLegal)
1181 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001182 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001183 }
Nate Begemane1795842008-02-14 08:57:00 +00001184 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001185 break;
1186 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001187 case ISD::TokenFactor:
1188 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001189 Tmp1 = LegalizeOp(Node->getOperand(0));
1190 Tmp2 = LegalizeOp(Node->getOperand(1));
1191 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1192 } else if (Node->getNumOperands() == 3) {
1193 Tmp1 = LegalizeOp(Node->getOperand(0));
1194 Tmp2 = LegalizeOp(Node->getOperand(1));
1195 Tmp3 = LegalizeOp(Node->getOperand(2));
1196 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001197 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001198 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001199 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001200 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1201 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001202 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001203 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001204 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001205
1206 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001207 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001208 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001209 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1210 assert(Tmp3.Val && "Target didn't custom lower this node!");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001211
1212 // The number of incoming and outgoing values should match; unless the final
1213 // outgoing value is a flag.
1214 assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() ||
1215 (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 &&
1216 Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) ==
1217 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001218 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001219
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001220 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001221 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +00001222 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001223 if (Tmp3.Val->getValueType(i) == MVT::Flag)
1224 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001225 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +00001226 if (Op.ResNo == i)
1227 Tmp2 = Tmp1;
1228 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
1229 }
1230 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001231 case ISD::EXTRACT_SUBREG: {
1232 Tmp1 = LegalizeOp(Node->getOperand(0));
1233 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1234 assert(idx && "Operand must be a constant");
1235 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1236 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1237 }
1238 break;
1239 case ISD::INSERT_SUBREG: {
1240 Tmp1 = LegalizeOp(Node->getOperand(0));
1241 Tmp2 = LegalizeOp(Node->getOperand(1));
1242 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1243 assert(idx && "Operand must be a constant");
1244 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1245 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1246 }
1247 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001248 case ISD::BUILD_VECTOR:
1249 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001250 default: assert(0 && "This action is not supported yet!");
1251 case TargetLowering::Custom:
1252 Tmp3 = TLI.LowerOperation(Result, DAG);
1253 if (Tmp3.Val) {
1254 Result = Tmp3;
1255 break;
1256 }
1257 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001258 case TargetLowering::Expand:
1259 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +00001260 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001261 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001262 break;
1263 case ISD::INSERT_VECTOR_ELT:
1264 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001265 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001266
1267 // The type of the value to insert may not be legal, even though the vector
1268 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1269 // here.
1270 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1271 default: assert(0 && "Cannot expand insert element operand");
1272 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1273 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1274 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001275 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1276
1277 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1278 Node->getValueType(0))) {
1279 default: assert(0 && "This action is not supported yet!");
1280 case TargetLowering::Legal:
1281 break;
1282 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001283 Tmp4 = TLI.LowerOperation(Result, DAG);
1284 if (Tmp4.Val) {
1285 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001286 break;
1287 }
1288 // FALLTHROUGH
1289 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001290 // If the insert index is a constant, codegen this as a scalar_to_vector,
1291 // then a shuffle that inserts it into the right position in the vector.
1292 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001293 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1294 // match the element type of the vector being created.
1295 if (Tmp2.getValueType() ==
1296 MVT::getVectorElementType(Op.getValueType())) {
1297 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
1298 Tmp1.getValueType(), Tmp2);
1299
1300 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
1301 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
1302 MVT::ValueType ShufMaskEltVT = MVT::getVectorElementType(ShufMaskVT);
1303
1304 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1305 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1306 // elt 0 of the RHS.
1307 SmallVector<SDOperand, 8> ShufOps;
1308 for (unsigned i = 0; i != NumElts; ++i) {
1309 if (i != InsertPos->getValue())
1310 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1311 else
1312 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1313 }
1314 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1315 &ShufOps[0], ShufOps.size());
1316
1317 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1318 Tmp1, ScVec, ShufMask);
1319 Result = LegalizeOp(Result);
1320 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001321 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001322 }
1323
Chris Lattner2332b9f2006-03-19 01:17:20 +00001324 // If the target doesn't support this, we have to spill the input vector
1325 // to a temporary stack slot, update the element, then reload it. This is
1326 // badness. We could also load the value into a vector register (either
1327 // with a "move to register" or "extload into register" instruction, then
1328 // permute it into place, if the idx is a constant and if the idx is
1329 // supported by the target.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001330 MVT::ValueType VT = Tmp1.getValueType();
Nate Begeman0325d902008-02-13 06:43:04 +00001331 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
Evan Chengf6bf87f2006-04-08 01:46:37 +00001332 MVT::ValueType IdxVT = Tmp3.getValueType();
1333 MVT::ValueType PtrVT = TLI.getPointerTy();
Chris Lattner85dd3be2007-10-15 17:48:57 +00001334 SDOperand StackPtr = DAG.CreateStackTemporary(VT);
Dan Gohman69de1932008-02-06 22:27:42 +00001335
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00001336 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr.Val);
Dan Gohman69de1932008-02-06 22:27:42 +00001337 int SPFI = StackPtrFI->getIndex();
1338
Evan Chengeb0b4612006-03-31 01:27:51 +00001339 // Store the vector.
Dan Gohman69de1932008-02-06 22:27:42 +00001340 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00001341 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00001342 SPFI);
Evan Chengeb0b4612006-03-31 01:27:51 +00001343
1344 // Truncate or zero extend offset to target pointer type.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001345 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
1346 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Chengeb0b4612006-03-31 01:27:51 +00001347 // Add the offset to the index.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001348 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
1349 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
1350 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Chengeb0b4612006-03-31 01:27:51 +00001351 // Store the scalar value.
Nate Begeman0325d902008-02-13 06:43:04 +00001352 Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2,
1353 PseudoSourceValue::getFixedStack(), SPFI, EltVT);
Evan Chengeb0b4612006-03-31 01:27:51 +00001354 // Load the updated vector.
Dan Gohman69de1932008-02-06 22:27:42 +00001355 Result = DAG.getLoad(VT, Ch, StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00001356 PseudoSourceValue::getFixedStack(), SPFI);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001357 break;
1358 }
1359 }
1360 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001361 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001362 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1363 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1364 break;
1365 }
1366
Chris Lattnerce872152006-03-19 06:31:19 +00001367 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1368 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1369 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1370 Node->getValueType(0))) {
1371 default: assert(0 && "This action is not supported yet!");
1372 case TargetLowering::Legal:
1373 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001374 case TargetLowering::Custom:
1375 Tmp3 = TLI.LowerOperation(Result, DAG);
1376 if (Tmp3.Val) {
1377 Result = Tmp3;
1378 break;
1379 }
1380 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001381 case TargetLowering::Expand:
1382 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001383 break;
1384 }
Chris Lattnerce872152006-03-19 06:31:19 +00001385 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001386 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001387 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1388 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1389 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1390
1391 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001392 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1393 default: assert(0 && "Unknown operation action!");
1394 case TargetLowering::Legal:
1395 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1396 "vector shuffle should not be created if not legal!");
1397 break;
1398 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001399 Tmp3 = TLI.LowerOperation(Result, DAG);
1400 if (Tmp3.Val) {
1401 Result = Tmp3;
1402 break;
1403 }
1404 // FALLTHROUGH
1405 case TargetLowering::Expand: {
1406 MVT::ValueType VT = Node->getValueType(0);
Dan Gohman51eaa862007-06-14 22:58:02 +00001407 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001408 MVT::ValueType PtrVT = TLI.getPointerTy();
1409 SDOperand Mask = Node->getOperand(2);
1410 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001411 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001412 for (unsigned i = 0; i != NumElems; ++i) {
1413 SDOperand Arg = Mask.getOperand(i);
1414 if (Arg.getOpcode() == ISD::UNDEF) {
1415 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1416 } else {
1417 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1418 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1419 if (Idx < NumElems)
1420 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1421 DAG.getConstant(Idx, PtrVT)));
1422 else
1423 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1424 DAG.getConstant(Idx - NumElems, PtrVT)));
1425 }
1426 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001427 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001428 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001429 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001430 case TargetLowering::Promote: {
1431 // Change base type to a different vector type.
1432 MVT::ValueType OVT = Node->getValueType(0);
1433 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1434
1435 // Cast the two input vectors.
1436 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1437 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1438
1439 // Convert the shuffle mask to the right # elements.
1440 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1441 assert(Tmp3.Val && "Shuffle not legal?");
1442 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1443 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1444 break;
1445 }
Chris Lattner87100e02006-03-20 01:52:29 +00001446 }
1447 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001448
1449 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001450 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001451 Tmp2 = LegalizeOp(Node->getOperand(1));
1452 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001453 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001454 break;
1455
Dan Gohman7f321562007-06-25 16:23:39 +00001456 case ISD::EXTRACT_SUBVECTOR:
1457 Tmp1 = Node->getOperand(0);
1458 Tmp2 = LegalizeOp(Node->getOperand(1));
1459 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1460 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001461 break;
1462
Chris Lattner6831a812006-02-13 09:18:02 +00001463 case ISD::CALLSEQ_START: {
1464 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1465
1466 // Recursively Legalize all of the inputs of the call end that do not lead
1467 // to this call start. This ensures that any libcalls that need be inserted
1468 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001469 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001470 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001471 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1472 NodesLeadingTo);
1473 }
Chris Lattner6831a812006-02-13 09:18:02 +00001474
1475 // Now that we legalized all of the inputs (which may have inserted
1476 // libcalls) create the new CALLSEQ_START node.
1477 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1478
1479 // Merge in the last call, to ensure that this call start after the last
1480 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001481 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001482 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1483 Tmp1 = LegalizeOp(Tmp1);
1484 }
Chris Lattner6831a812006-02-13 09:18:02 +00001485
1486 // Do not try to legalize the target-specific arguments (#1+).
1487 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001488 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001489 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001490 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001491 }
1492
1493 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001494 AddLegalizedOperand(Op.getValue(0), Result);
1495 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1496 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1497
Chris Lattner6831a812006-02-13 09:18:02 +00001498 // Now that the callseq_start and all of the non-call nodes above this call
1499 // sequence have been legalized, legalize the call itself. During this
1500 // process, no libcalls can/will be inserted, guaranteeing that no calls
1501 // can overlap.
1502 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1503 SDOperand InCallSEQ = LastCALLSEQ_END;
1504 // Note that we are selecting this call!
1505 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1506 IsLegalizingCall = true;
1507
1508 // Legalize the call, starting from the CALLSEQ_END.
1509 LegalizeOp(LastCALLSEQ_END);
1510 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1511 return Result;
1512 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001513 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001514 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1515 // will cause this node to be legalized as well as handling libcalls right.
1516 if (LastCALLSEQ_END.Val != Node) {
1517 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
Chris Lattner718071c2007-02-04 00:50:02 +00001518 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001519 assert(I != LegalizedNodes.end() &&
1520 "Legalizing the call start should have legalized this node!");
1521 return I->second;
1522 }
1523
1524 // Otherwise, the call start has been legalized and everything is going
1525 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001526 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001527 // Do not try to legalize the target-specific arguments (#1+), except for
1528 // an optional flag input.
1529 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1530 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001531 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001532 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001533 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001534 }
1535 } else {
1536 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1537 if (Tmp1 != Node->getOperand(0) ||
1538 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001539 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001540 Ops[0] = Tmp1;
1541 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001542 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001543 }
Chris Lattner6a542892006-01-24 05:48:21 +00001544 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001545 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001546 // This finishes up call legalization.
1547 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001548
1549 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1550 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1551 if (Node->getNumValues() == 2)
1552 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1553 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001554 case ISD::DYNAMIC_STACKALLOC: {
Evan Cheng61bbbab2007-08-16 23:50:06 +00001555 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001556 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1557 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1558 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001559 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001560
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001561 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001562 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001563 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001564 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001565 case TargetLowering::Expand: {
1566 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1567 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1568 " not tell us which reg is the stack pointer!");
1569 SDOperand Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001570
1571 // Chain the dynamic stack allocation so that it doesn't modify the stack
1572 // pointer when other instructions are using the stack.
1573 Chain = DAG.getCALLSEQ_START(Chain,
1574 DAG.getConstant(0, TLI.getPointerTy()));
1575
Chris Lattner903d2782006-01-15 08:54:32 +00001576 SDOperand Size = Tmp2.getOperand(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001577 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT);
1578 Chain = SP.getValue(1);
1579 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1580 unsigned StackAlign =
1581 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1582 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001583 SP = DAG.getNode(ISD::AND, VT, SP,
1584 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001585 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001586 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1587
1588 Tmp2 =
1589 DAG.getCALLSEQ_END(Chain,
1590 DAG.getConstant(0, TLI.getPointerTy()),
1591 DAG.getConstant(0, TLI.getPointerTy()),
1592 SDOperand());
1593
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001594 Tmp1 = LegalizeOp(Tmp1);
1595 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001596 break;
1597 }
1598 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001599 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1600 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001601 Tmp1 = LegalizeOp(Tmp3);
1602 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001603 }
Chris Lattner903d2782006-01-15 08:54:32 +00001604 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001605 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001606 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001607 }
Chris Lattner903d2782006-01-15 08:54:32 +00001608 // Since this op produce two values, make sure to remember that we
1609 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001610 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1611 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001612 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001613 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001614 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001615 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001616 bool Changed = false;
1617 // Legalize all of the operands of the inline asm, in case they are nodes
1618 // that need to be expanded or something. Note we skip the asm string and
1619 // all of the TargetConstant flags.
1620 SDOperand Op = LegalizeOp(Ops[0]);
1621 Changed = Op != Ops[0];
1622 Ops[0] = Op;
1623
1624 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1625 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1626 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1627 for (++i; NumVals; ++i, --NumVals) {
1628 SDOperand Op = LegalizeOp(Ops[i]);
1629 if (Op != Ops[i]) {
1630 Changed = true;
1631 Ops[i] = Op;
1632 }
1633 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001634 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001635
1636 if (HasInFlag) {
1637 Op = LegalizeOp(Ops.back());
1638 Changed |= Op != Ops.back();
1639 Ops.back() = Op;
1640 }
1641
1642 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001643 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001644
1645 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001646 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001647 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1648 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001649 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001650 case ISD::BR:
1651 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001652 // Ensure that libcalls are emitted before a branch.
1653 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1654 Tmp1 = LegalizeOp(Tmp1);
1655 LastCALLSEQ_END = DAG.getEntryNode();
1656
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001657 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001658 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001659 case ISD::BRIND:
1660 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1661 // Ensure that libcalls are emitted before a branch.
1662 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1663 Tmp1 = LegalizeOp(Tmp1);
1664 LastCALLSEQ_END = DAG.getEntryNode();
1665
1666 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1667 default: assert(0 && "Indirect target must be legal type (pointer)!");
1668 case Legal:
1669 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1670 break;
1671 }
1672 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1673 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001674 case ISD::BR_JT:
1675 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1676 // Ensure that libcalls are emitted before a branch.
1677 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1678 Tmp1 = LegalizeOp(Tmp1);
1679 LastCALLSEQ_END = DAG.getEntryNode();
1680
1681 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1682 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1683
1684 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1685 default: assert(0 && "This action is not supported yet!");
1686 case TargetLowering::Legal: break;
1687 case TargetLowering::Custom:
1688 Tmp1 = TLI.LowerOperation(Result, DAG);
1689 if (Tmp1.Val) Result = Tmp1;
1690 break;
1691 case TargetLowering::Expand: {
1692 SDOperand Chain = Result.getOperand(0);
1693 SDOperand Table = Result.getOperand(1);
1694 SDOperand Index = Result.getOperand(2);
1695
1696 MVT::ValueType PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001697 MachineFunction &MF = DAG.getMachineFunction();
1698 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001699 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1700 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001701
1702 SDOperand LD;
1703 switch (EntrySize) {
1704 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001705 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001706 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001707 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001708 PseudoSourceValue::getJumpTable(), 0); break;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001709 }
1710
Evan Chengcc415862007-11-09 01:32:10 +00001711 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001712 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001713 // For PIC, the sequence is:
1714 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00001715 // RelocBase can be JumpTable, GOT or some sort of global base.
1716 if (PTy != MVT::i32)
1717 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1718 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1719 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00001720 }
Evan Chengcc415862007-11-09 01:32:10 +00001721 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001722 }
1723 }
1724 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001725 case ISD::BRCOND:
1726 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001727 // Ensure that libcalls are emitted before a return.
1728 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1729 Tmp1 = LegalizeOp(Tmp1);
1730 LastCALLSEQ_END = DAG.getEntryNode();
1731
Chris Lattner47e92232005-01-18 19:27:06 +00001732 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1733 case Expand: assert(0 && "It's impossible to expand bools");
1734 case Legal:
1735 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1736 break;
1737 case Promote:
1738 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001739
1740 // The top bits of the promoted condition are not necessarily zero, ensure
1741 // that the value is properly zero extended.
Dan Gohmanea859be2007-06-22 14:59:07 +00001742 if (!DAG.MaskedValueIsZero(Tmp2,
Chris Lattnerf9908172006-11-27 04:39:56 +00001743 MVT::getIntVTBitMask(Tmp2.getValueType())^1))
1744 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001745 break;
1746 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001747
1748 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001749 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001750
1751 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1752 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001753 case TargetLowering::Legal: break;
1754 case TargetLowering::Custom:
1755 Tmp1 = TLI.LowerOperation(Result, DAG);
1756 if (Tmp1.Val) Result = Tmp1;
1757 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001758 case TargetLowering::Expand:
1759 // Expand brcond's setcc into its constituent parts and create a BR_CC
1760 // Node.
1761 if (Tmp2.getOpcode() == ISD::SETCC) {
1762 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1763 Tmp2.getOperand(0), Tmp2.getOperand(1),
1764 Node->getOperand(2));
1765 } else {
1766 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1767 DAG.getCondCode(ISD::SETNE), Tmp2,
1768 DAG.getConstant(0, Tmp2.getValueType()),
1769 Node->getOperand(2));
1770 }
1771 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001772 }
1773 break;
1774 case ISD::BR_CC:
1775 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001776 // Ensure that libcalls are emitted before a branch.
1777 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1778 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001779 Tmp2 = Node->getOperand(2); // LHS
1780 Tmp3 = Node->getOperand(3); // RHS
1781 Tmp4 = Node->getOperand(1); // CC
1782
1783 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001784 LastCALLSEQ_END = DAG.getEntryNode();
1785
Nate Begeman750ac1b2006-02-01 07:19:44 +00001786 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1787 // the LHS is a legal SETCC itself. In this case, we need to compare
1788 // the result against zero to select between true and false values.
1789 if (Tmp3.Val == 0) {
1790 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1791 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001792 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001793
1794 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1795 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001796
Chris Lattner181b7a32005-12-17 23:46:46 +00001797 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1798 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001799 case TargetLowering::Legal: break;
1800 case TargetLowering::Custom:
1801 Tmp4 = TLI.LowerOperation(Result, DAG);
1802 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001803 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001804 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001805 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001806 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001807 LoadSDNode *LD = cast<LoadSDNode>(Node);
1808 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1809 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001810
Evan Cheng466685d2006-10-09 20:57:25 +00001811 ISD::LoadExtType ExtType = LD->getExtensionType();
1812 if (ExtType == ISD::NON_EXTLOAD) {
1813 MVT::ValueType VT = Node->getValueType(0);
1814 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1815 Tmp3 = Result.getValue(0);
1816 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001817
Evan Cheng466685d2006-10-09 20:57:25 +00001818 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1819 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001820 case TargetLowering::Legal:
1821 // If this is an unaligned load and the target doesn't support it,
1822 // expand it.
1823 if (!TLI.allowsUnalignedMemoryAccesses()) {
1824 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001825 getABITypeAlignment(MVT::getTypeForValueType(LD->getMemoryVT()));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001826 if (LD->getAlignment() < ABIAlignment){
1827 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1828 TLI);
1829 Tmp3 = Result.getOperand(0);
1830 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001831 Tmp3 = LegalizeOp(Tmp3);
1832 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001833 }
1834 }
1835 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001836 case TargetLowering::Custom:
1837 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1838 if (Tmp1.Val) {
1839 Tmp3 = LegalizeOp(Tmp1);
1840 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001841 }
Evan Cheng466685d2006-10-09 20:57:25 +00001842 break;
1843 case TargetLowering::Promote: {
1844 // Only promote a load of vector type to another.
1845 assert(MVT::isVector(VT) && "Cannot promote this load!");
1846 // Change base type to a different vector type.
1847 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1848
1849 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001850 LD->getSrcValueOffset(),
1851 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001852 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1853 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001854 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001855 }
Evan Cheng466685d2006-10-09 20:57:25 +00001856 }
1857 // Since loads produce two values, make sure to remember that we
1858 // legalized both of them.
1859 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1860 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1861 return Op.ResNo ? Tmp4 : Tmp3;
1862 } else {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001863 MVT::ValueType SrcVT = LD->getMemoryVT();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001864 unsigned SrcWidth = MVT::getSizeInBits(SrcVT);
1865 int SVOffset = LD->getSrcValueOffset();
1866 unsigned Alignment = LD->getAlignment();
1867 bool isVolatile = LD->isVolatile();
1868
1869 if (SrcWidth != MVT::getStoreSizeInBits(SrcVT) &&
1870 // Some targets pretend to have an i1 loading operation, and actually
1871 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1872 // bits are guaranteed to be zero; it helps the optimizers understand
1873 // that these bits are zero. It is also useful for EXTLOAD, since it
1874 // tells the optimizers that those bits are undefined. It would be
1875 // nice to have an effective generic way of getting these benefits...
1876 // Until such a way is found, don't insist on promoting i1 here.
1877 (SrcVT != MVT::i1 ||
1878 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
1879 // Promote to a byte-sized load if not loading an integral number of
1880 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
1881 unsigned NewWidth = MVT::getStoreSizeInBits(SrcVT);
1882 MVT::ValueType NVT = MVT::getIntegerType(NewWidth);
1883 SDOperand Ch;
1884
1885 // The extra bits are guaranteed to be zero, since we stored them that
1886 // way. A zext load from NVT thus automatically gives zext from SrcVT.
1887
1888 ISD::LoadExtType NewExtType =
1889 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
1890
1891 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
1892 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
1893 NVT, isVolatile, Alignment);
1894
1895 Ch = Result.getValue(1); // The chain.
1896
1897 if (ExtType == ISD::SEXTLOAD)
1898 // Having the top bits zero doesn't help when sign extending.
1899 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1900 Result, DAG.getValueType(SrcVT));
1901 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
1902 // All the top bits are guaranteed to be zero - inform the optimizers.
1903 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
1904 DAG.getValueType(SrcVT));
1905
1906 Tmp1 = LegalizeOp(Result);
1907 Tmp2 = LegalizeOp(Ch);
1908 } else if (SrcWidth & (SrcWidth - 1)) {
1909 // If not loading a power-of-2 number of bits, expand as two loads.
1910 assert(MVT::isExtendedVT(SrcVT) && !MVT::isVector(SrcVT) &&
1911 "Unsupported extload!");
1912 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
1913 assert(RoundWidth < SrcWidth);
1914 unsigned ExtraWidth = SrcWidth - RoundWidth;
1915 assert(ExtraWidth < RoundWidth);
1916 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
1917 "Load size not an integral number of bytes!");
1918 MVT::ValueType RoundVT = MVT::getIntegerType(RoundWidth);
1919 MVT::ValueType ExtraVT = MVT::getIntegerType(ExtraWidth);
1920 SDOperand Lo, Hi, Ch;
1921 unsigned IncrementSize;
1922
1923 if (TLI.isLittleEndian()) {
1924 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
1925 // Load the bottom RoundWidth bits.
1926 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
1927 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
1928 Alignment);
1929
1930 // Load the remaining ExtraWidth bits.
1931 IncrementSize = RoundWidth / 8;
1932 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1933 DAG.getIntPtrConstant(IncrementSize));
1934 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
1935 LD->getSrcValue(), SVOffset + IncrementSize,
1936 ExtraVT, isVolatile,
1937 MinAlign(Alignment, IncrementSize));
1938
1939 // Build a factor node to remember that this load is independent of the
1940 // other one.
1941 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
1942 Hi.getValue(1));
1943
1944 // Move the top bits to the right place.
1945 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
1946 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
1947
1948 // Join the hi and lo parts.
1949 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001950 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001951 // Big endian - avoid unaligned loads.
1952 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
1953 // Load the top RoundWidth bits.
1954 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
1955 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
1956 Alignment);
1957
1958 // Load the remaining ExtraWidth bits.
1959 IncrementSize = RoundWidth / 8;
1960 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1961 DAG.getIntPtrConstant(IncrementSize));
1962 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
1963 LD->getSrcValue(), SVOffset + IncrementSize,
1964 ExtraVT, isVolatile,
1965 MinAlign(Alignment, IncrementSize));
1966
1967 // Build a factor node to remember that this load is independent of the
1968 // other one.
1969 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
1970 Hi.getValue(1));
1971
1972 // Move the top bits to the right place.
1973 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
1974 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
1975
1976 // Join the hi and lo parts.
1977 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
1978 }
1979
1980 Tmp1 = LegalizeOp(Result);
1981 Tmp2 = LegalizeOp(Ch);
1982 } else {
1983 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
1984 default: assert(0 && "This action is not supported yet!");
1985 case TargetLowering::Custom:
1986 isCustom = true;
1987 // FALLTHROUGH
1988 case TargetLowering::Legal:
1989 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1990 Tmp1 = Result.getValue(0);
1991 Tmp2 = Result.getValue(1);
1992
1993 if (isCustom) {
1994 Tmp3 = TLI.LowerOperation(Result, DAG);
1995 if (Tmp3.Val) {
1996 Tmp1 = LegalizeOp(Tmp3);
1997 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1998 }
1999 } else {
2000 // If this is an unaligned load and the target doesn't support it,
2001 // expand it.
2002 if (!TLI.allowsUnalignedMemoryAccesses()) {
2003 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002004 getABITypeAlignment(MVT::getTypeForValueType(LD->getMemoryVT()));
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002005 if (LD->getAlignment() < ABIAlignment){
2006 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
2007 TLI);
2008 Tmp1 = Result.getOperand(0);
2009 Tmp2 = Result.getOperand(1);
2010 Tmp1 = LegalizeOp(Tmp1);
2011 Tmp2 = LegalizeOp(Tmp2);
2012 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002013 }
2014 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002015 break;
2016 case TargetLowering::Expand:
2017 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2018 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
2019 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
2020 LD->getSrcValueOffset(),
2021 LD->isVolatile(), LD->getAlignment());
2022 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2023 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2024 Tmp2 = LegalizeOp(Load.getValue(1));
2025 break;
2026 }
2027 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2028 // Turn the unsupported load into an EXTLOAD followed by an explicit
2029 // zero/sign extend inreg.
2030 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2031 Tmp1, Tmp2, LD->getSrcValue(),
2032 LD->getSrcValueOffset(), SrcVT,
2033 LD->isVolatile(), LD->getAlignment());
2034 SDOperand ValRes;
2035 if (ExtType == ISD::SEXTLOAD)
2036 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2037 Result, DAG.getValueType(SrcVT));
2038 else
2039 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2040 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2041 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002042 break;
2043 }
Evan Cheng466685d2006-10-09 20:57:25 +00002044 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002045
Evan Cheng466685d2006-10-09 20:57:25 +00002046 // Since loads produce two values, make sure to remember that we legalized
2047 // both of them.
2048 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2049 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2050 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002051 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002052 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002053 case ISD::EXTRACT_ELEMENT: {
2054 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
2055 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002056 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002057 case Legal:
2058 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
2059 // 1 -> Hi
2060 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
2061 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
2062 TLI.getShiftAmountTy()));
2063 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2064 } else {
2065 // 0 -> Lo
2066 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2067 Node->getOperand(0));
2068 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002069 break;
2070 case Expand:
2071 // Get both the low and high parts.
2072 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2073 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
2074 Result = Tmp2; // 1 -> Hi
2075 else
2076 Result = Tmp1; // 0 -> Lo
2077 break;
2078 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002079 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002080 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002081
2082 case ISD::CopyToReg:
2083 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002084
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002085 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002086 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002087 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002088 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002089 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002090 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002091 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002092 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002093 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002094 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002095 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2096 Tmp3);
2097 } else {
2098 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002099 }
2100
2101 // Since this produces two values, make sure to remember that we legalized
2102 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002103 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00002104 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002105 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002106 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002107 break;
2108
2109 case ISD::RET:
2110 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002111
2112 // Ensure that libcalls are emitted before a return.
2113 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2114 Tmp1 = LegalizeOp(Tmp1);
2115 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002116
Chris Lattner3e928bb2005-01-07 07:47:09 +00002117 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002118 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002119 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002120 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002121 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002122 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002123 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002124 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002125 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +00002126 if (!MVT::isVector(Tmp2.getValueType())) {
Chris Lattnerf87324e2006-04-11 01:31:51 +00002127 SDOperand Lo, Hi;
2128 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002129
2130 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002131 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002132 std::swap(Lo, Hi);
2133
Evan Cheng13acce32006-12-11 19:27:14 +00002134 if (Hi.Val)
2135 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2136 else
2137 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002138 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002139 } else {
2140 SDNode *InVal = Tmp2.Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002141 int InIx = Tmp2.ResNo;
2142 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx));
2143 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx));
Chris Lattnerf87324e2006-04-11 01:31:51 +00002144
Dan Gohman7f321562007-06-25 16:23:39 +00002145 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002146 // type. If so, convert to the vector type.
Chris Lattnerf87324e2006-04-11 01:31:51 +00002147 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002148 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002149 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002150 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002151 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002152 } else if (NumElems == 1) {
2153 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002154 Tmp2 = ScalarizeVectorOp(Tmp2);
2155 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002156 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002157
2158 // FIXME: Returns of gcc generic vectors smaller than a legal type
2159 // should be returned in integer registers!
2160
Chris Lattnerf87324e2006-04-11 01:31:51 +00002161 // The scalarized value type may not be legal, e.g. it might require
2162 // promotion or expansion. Relegalize the return.
2163 Result = LegalizeOp(Result);
2164 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002165 // FIXME: Returns of gcc generic vectors larger than a legal vector
2166 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00002167 SDOperand Lo, Hi;
2168 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002169 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002170 Result = LegalizeOp(Result);
2171 }
2172 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002173 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002174 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002175 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002176 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002177 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002178 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002179 }
2180 break;
2181 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002182 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002183 break;
2184 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002185 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002186 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002187 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002188 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2189 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002190 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002191 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002192 break;
2193 case Expand: {
2194 SDOperand Lo, Hi;
Dan Gohman6595cb32007-06-27 16:08:04 +00002195 assert(!MVT::isExtendedVT(Node->getOperand(i).getValueType()) &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002196 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002197 ExpandOp(Node->getOperand(i), Lo, Hi);
2198 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002199 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00002200 if (Hi.Val) {
2201 NewValues.push_back(Hi);
2202 NewValues.push_back(Node->getOperand(i+1));
2203 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002204 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002205 }
2206 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002207 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002208 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002209
2210 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002211 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002212 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002213 Result = DAG.getNode(ISD::RET, MVT::Other,
2214 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002215 break;
2216 }
2217 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002218
Chris Lattner6862dbc2006-01-29 21:02:23 +00002219 if (Result.getOpcode() == ISD::RET) {
2220 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2221 default: assert(0 && "This action is not supported yet!");
2222 case TargetLowering::Legal: break;
2223 case TargetLowering::Custom:
2224 Tmp1 = TLI.LowerOperation(Result, DAG);
2225 if (Tmp1.Val) Result = Tmp1;
2226 break;
2227 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002228 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002229 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002230 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002231 StoreSDNode *ST = cast<StoreSDNode>(Node);
2232 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2233 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002234 int SVOffset = ST->getSrcValueOffset();
2235 unsigned Alignment = ST->getAlignment();
2236 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002237
Evan Cheng8b2794a2006-10-13 21:14:26 +00002238 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002239 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2240 // FIXME: We shouldn't do this for TargetConstantFP's.
2241 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2242 // to phase ordering between legalized code and the dag combiner. This
2243 // probably means that we need to integrate dag combiner and legalizer
2244 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002245 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002246 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002247 if (CFP->getValueType(0) == MVT::f32 &&
2248 getTypeAction(MVT::i32) == Legal) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00002249 Tmp3 = DAG.getConstant((uint32_t)CFP->getValueAPF().
2250 convertToAPInt().getZExtValue(),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002251 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002252 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2253 SVOffset, isVolatile, Alignment);
2254 break;
2255 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002256 // If this target supports 64-bit registers, do a single 64-bit store.
2257 if (getTypeAction(MVT::i64) == Legal) {
2258 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
2259 getZExtValue(), MVT::i64);
2260 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2261 SVOffset, isVolatile, Alignment);
2262 break;
2263 } else if (getTypeAction(MVT::i32) == Legal) {
2264 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2265 // stores. If the target supports neither 32- nor 64-bits, this
2266 // xform is certainly not worth it.
2267 uint64_t IntVal =CFP->getValueAPF().convertToAPInt().getZExtValue();
2268 SDOperand Lo = DAG.getConstant(uint32_t(IntVal), MVT::i32);
2269 SDOperand Hi = DAG.getConstant(uint32_t(IntVal >>32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002270 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002271
2272 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2273 SVOffset, isVolatile, Alignment);
2274 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002275 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002276 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002277 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002278
2279 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2280 break;
2281 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002282 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002283 }
2284
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002285 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002286 case Legal: {
2287 Tmp3 = LegalizeOp(ST->getValue());
2288 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2289 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002290
Evan Cheng8b2794a2006-10-13 21:14:26 +00002291 MVT::ValueType VT = Tmp3.getValueType();
2292 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2293 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002294 case TargetLowering::Legal:
2295 // If this is an unaligned store and the target doesn't support it,
2296 // expand it.
2297 if (!TLI.allowsUnalignedMemoryAccesses()) {
2298 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002299 getABITypeAlignment(MVT::getTypeForValueType(ST->getMemoryVT()));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002300 if (ST->getAlignment() < ABIAlignment)
2301 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2302 TLI);
2303 }
2304 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002305 case TargetLowering::Custom:
2306 Tmp1 = TLI.LowerOperation(Result, DAG);
2307 if (Tmp1.Val) Result = Tmp1;
2308 break;
2309 case TargetLowering::Promote:
2310 assert(MVT::isVector(VT) && "Unknown legal promote case!");
2311 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2312 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2313 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002314 ST->getSrcValue(), SVOffset, isVolatile,
2315 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002316 break;
2317 }
2318 break;
2319 }
2320 case Promote:
2321 // Truncate the value and store the result.
2322 Tmp3 = PromoteOp(ST->getValue());
2323 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002324 SVOffset, ST->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002325 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002326 break;
2327
2328 case Expand:
2329 unsigned IncrementSize = 0;
2330 SDOperand Lo, Hi;
2331
2332 // If this is a vector type, then we have to calculate the increment as
2333 // the product of the element size in bytes, and the number of elements
2334 // in the high half of the vector.
Dan Gohman7f321562007-06-25 16:23:39 +00002335 if (MVT::isVector(ST->getValue().getValueType())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002336 SDNode *InVal = ST->getValue().Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002337 int InIx = ST->getValue().ResNo;
Chris Lattner0bd48932008-01-17 07:00:52 +00002338 MVT::ValueType InVT = InVal->getValueType(InIx);
2339 unsigned NumElems = MVT::getVectorNumElements(InVT);
2340 MVT::ValueType EVT = MVT::getVectorElementType(InVT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002341
Dan Gohman7f321562007-06-25 16:23:39 +00002342 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002343 // type. If so, convert to the vector type.
Evan Cheng8b2794a2006-10-13 21:14:26 +00002344 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002345 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002346 // Turn this into a normal store of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002347 Tmp3 = LegalizeOp(Node->getOperand(1));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002348 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002349 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002350 Result = LegalizeOp(Result);
2351 break;
2352 } else if (NumElems == 1) {
2353 // Turn this into a normal store of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002354 Tmp3 = ScalarizeVectorOp(Node->getOperand(1));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002355 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002356 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002357 // The scalarized value type may not be legal, e.g. it might require
2358 // promotion or expansion. Relegalize the scalar store.
2359 Result = LegalizeOp(Result);
2360 break;
2361 } else {
2362 SplitVectorOp(Node->getOperand(1), Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00002363 IncrementSize = MVT::getVectorNumElements(Lo.Val->getValueType(0)) *
2364 MVT::getSizeInBits(EVT)/8;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002365 }
2366 } else {
2367 ExpandOp(Node->getOperand(1), Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002368 IncrementSize = Hi.Val ? MVT::getSizeInBits(Hi.getValueType())/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002369
Duncan Sands0753fc12008-02-11 10:37:04 +00002370 if (TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002371 std::swap(Lo, Hi);
2372 }
2373
2374 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002375 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002376
2377 if (Hi.Val == NULL) {
2378 // Must be int <-> float one-to-one expansion.
2379 Result = Lo;
2380 break;
2381 }
2382
Evan Cheng8b2794a2006-10-13 21:14:26 +00002383 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002384 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002385 assert(isTypeLegal(Tmp2.getValueType()) &&
2386 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002387 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002388 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002389 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002390 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002391 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2392 break;
2393 }
2394 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002395 switch (getTypeAction(ST->getValue().getValueType())) {
2396 case Legal:
2397 Tmp3 = LegalizeOp(ST->getValue());
2398 break;
2399 case Promote:
2400 // We can promote the value, the truncstore will still take care of it.
2401 Tmp3 = PromoteOp(ST->getValue());
2402 break;
2403 case Expand:
2404 // Just store the low part. This may become a non-trunc store, so make
2405 // sure to use getTruncStore, not UpdateNodeOperands below.
2406 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2407 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2408 SVOffset, MVT::i8, isVolatile, Alignment);
2409 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002410
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002411 MVT::ValueType StVT = ST->getMemoryVT();
Duncan Sands7e857202008-01-22 07:17:34 +00002412 unsigned StWidth = MVT::getSizeInBits(StVT);
2413
2414 if (StWidth != MVT::getStoreSizeInBits(StVT)) {
2415 // Promote to a byte-sized store with upper bits zero if not
2416 // storing an integral number of bytes. For example, promote
2417 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
2418 MVT::ValueType NVT = MVT::getIntegerType(MVT::getStoreSizeInBits(StVT));
2419 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2420 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2421 SVOffset, NVT, isVolatile, Alignment);
2422 } else if (StWidth & (StWidth - 1)) {
2423 // If not storing a power-of-2 number of bits, expand as two stores.
2424 assert(MVT::isExtendedVT(StVT) && !MVT::isVector(StVT) &&
2425 "Unsupported truncstore!");
2426 unsigned RoundWidth = 1 << Log2_32(StWidth);
2427 assert(RoundWidth < StWidth);
2428 unsigned ExtraWidth = StWidth - RoundWidth;
2429 assert(ExtraWidth < RoundWidth);
2430 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2431 "Store size not an integral number of bytes!");
2432 MVT::ValueType RoundVT = MVT::getIntegerType(RoundWidth);
2433 MVT::ValueType ExtraVT = MVT::getIntegerType(ExtraWidth);
2434 SDOperand Lo, Hi;
2435 unsigned IncrementSize;
2436
2437 if (TLI.isLittleEndian()) {
2438 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2439 // Store the bottom RoundWidth bits.
2440 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2441 SVOffset, RoundVT,
2442 isVolatile, Alignment);
2443
2444 // Store the remaining ExtraWidth bits.
2445 IncrementSize = RoundWidth / 8;
2446 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2447 DAG.getIntPtrConstant(IncrementSize));
2448 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2449 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2450 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2451 SVOffset + IncrementSize, ExtraVT, isVolatile,
2452 MinAlign(Alignment, IncrementSize));
2453 } else {
2454 // Big endian - avoid unaligned stores.
2455 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2456 // Store the top RoundWidth bits.
2457 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2458 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2459 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2460 RoundVT, isVolatile, Alignment);
2461
2462 // Store the remaining ExtraWidth bits.
2463 IncrementSize = RoundWidth / 8;
2464 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2465 DAG.getIntPtrConstant(IncrementSize));
2466 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2467 SVOffset + IncrementSize, ExtraVT, isVolatile,
2468 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002469 }
Duncan Sands7e857202008-01-22 07:17:34 +00002470
2471 // The order of the stores doesn't matter.
2472 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2473 } else {
2474 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2475 Tmp2 != ST->getBasePtr())
2476 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2477 ST->getOffset());
2478
2479 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2480 default: assert(0 && "This action is not supported yet!");
2481 case TargetLowering::Legal:
2482 // If this is an unaligned store and the target doesn't support it,
2483 // expand it.
2484 if (!TLI.allowsUnalignedMemoryAccesses()) {
2485 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002486 getABITypeAlignment(MVT::getTypeForValueType(ST->getMemoryVT()));
Duncan Sands7e857202008-01-22 07:17:34 +00002487 if (ST->getAlignment() < ABIAlignment)
2488 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2489 TLI);
2490 }
2491 break;
2492 case TargetLowering::Custom:
2493 Result = TLI.LowerOperation(Result, DAG);
2494 break;
2495 case Expand:
2496 // TRUNCSTORE:i16 i32 -> STORE i16
2497 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2498 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2499 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2500 isVolatile, Alignment);
2501 break;
2502 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002503 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002504 }
2505 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002506 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002507 case ISD::PCMARKER:
2508 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002509 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002510 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002511 case ISD::STACKSAVE:
2512 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002513 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2514 Tmp1 = Result.getValue(0);
2515 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002516
Chris Lattner140d53c2006-01-13 02:50:02 +00002517 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2518 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002519 case TargetLowering::Legal: break;
2520 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002521 Tmp3 = TLI.LowerOperation(Result, DAG);
2522 if (Tmp3.Val) {
2523 Tmp1 = LegalizeOp(Tmp3);
2524 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002525 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002526 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002527 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002528 // Expand to CopyFromReg if the target set
2529 // StackPointerRegisterToSaveRestore.
2530 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002531 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002532 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002533 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002534 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002535 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2536 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002537 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002538 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002539 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002540
2541 // Since stacksave produce two values, make sure to remember that we
2542 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002543 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2544 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2545 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002546
Chris Lattner140d53c2006-01-13 02:50:02 +00002547 case ISD::STACKRESTORE:
2548 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2549 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002550 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002551
2552 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2553 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002554 case TargetLowering::Legal: break;
2555 case TargetLowering::Custom:
2556 Tmp1 = TLI.LowerOperation(Result, DAG);
2557 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002558 break;
2559 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002560 // Expand to CopyToReg if the target set
2561 // StackPointerRegisterToSaveRestore.
2562 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2563 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2564 } else {
2565 Result = Tmp1;
2566 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002567 break;
2568 }
2569 break;
2570
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002571 case ISD::READCYCLECOUNTER:
2572 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002573 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002574 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2575 Node->getValueType(0))) {
2576 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002577 case TargetLowering::Legal:
2578 Tmp1 = Result.getValue(0);
2579 Tmp2 = Result.getValue(1);
2580 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002581 case TargetLowering::Custom:
2582 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002583 Tmp1 = LegalizeOp(Result.getValue(0));
2584 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002585 break;
2586 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002587
2588 // Since rdcc produce two values, make sure to remember that we legalized
2589 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002590 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2591 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002592 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002593
Chris Lattner2ee743f2005-01-14 22:08:15 +00002594 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002595 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2596 case Expand: assert(0 && "It's impossible to expand bools");
2597 case Legal:
2598 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2599 break;
2600 case Promote:
2601 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002602 // Make sure the condition is either zero or one.
Dan Gohmanea859be2007-06-22 14:59:07 +00002603 if (!DAG.MaskedValueIsZero(Tmp1,
Chris Lattnerb6c80602006-11-28 01:03:30 +00002604 MVT::getIntVTBitMask(Tmp1.getValueType())^1))
2605 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002606 break;
2607 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002608 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002609 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002610
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002611 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002612
Nate Begemanb942a3d2005-08-23 04:29:48 +00002613 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002614 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002615 case TargetLowering::Legal: break;
2616 case TargetLowering::Custom: {
2617 Tmp1 = TLI.LowerOperation(Result, DAG);
2618 if (Tmp1.Val) Result = Tmp1;
2619 break;
2620 }
Nate Begeman9373a812005-08-10 20:51:12 +00002621 case TargetLowering::Expand:
2622 if (Tmp1.getOpcode() == ISD::SETCC) {
2623 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2624 Tmp2, Tmp3,
2625 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2626 } else {
2627 Result = DAG.getSelectCC(Tmp1,
2628 DAG.getConstant(0, Tmp1.getValueType()),
2629 Tmp2, Tmp3, ISD::SETNE);
2630 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002631 break;
2632 case TargetLowering::Promote: {
2633 MVT::ValueType NVT =
2634 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2635 unsigned ExtOp, TruncOp;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002636 if (MVT::isVector(Tmp2.getValueType())) {
2637 ExtOp = ISD::BIT_CONVERT;
2638 TruncOp = ISD::BIT_CONVERT;
2639 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002640 ExtOp = ISD::ANY_EXTEND;
2641 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002642 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002643 ExtOp = ISD::FP_EXTEND;
2644 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002645 }
2646 // Promote each of the values to the new type.
2647 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2648 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2649 // Perform the larger operation, then round down.
2650 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002651 if (TruncOp != ISD::FP_ROUND)
2652 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2653 else
2654 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2655 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002656 break;
2657 }
2658 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002659 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002660 case ISD::SELECT_CC: {
2661 Tmp1 = Node->getOperand(0); // LHS
2662 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002663 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2664 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00002665 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002666
Nate Begeman750ac1b2006-02-01 07:19:44 +00002667 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2668
2669 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2670 // the LHS is a legal SETCC itself. In this case, we need to compare
2671 // the result against zero to select between true and false values.
2672 if (Tmp2.Val == 0) {
2673 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2674 CC = DAG.getCondCode(ISD::SETNE);
2675 }
2676 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2677
2678 // Everything is legal, see if we should expand this op or something.
2679 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2680 default: assert(0 && "This action is not supported yet!");
2681 case TargetLowering::Legal: break;
2682 case TargetLowering::Custom:
2683 Tmp1 = TLI.LowerOperation(Result, DAG);
2684 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002685 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002686 }
2687 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002688 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002689 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002690 Tmp1 = Node->getOperand(0);
2691 Tmp2 = Node->getOperand(1);
2692 Tmp3 = Node->getOperand(2);
2693 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2694
2695 // If we had to Expand the SetCC operands into a SELECT node, then it may
2696 // not always be possible to return a true LHS & RHS. In this case, just
2697 // return the value we legalized, returned in the LHS
2698 if (Tmp2.Val == 0) {
2699 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002700 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002701 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002702
Chris Lattner73e142f2006-01-30 22:43:50 +00002703 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002704 default: assert(0 && "Cannot handle this action for SETCC yet!");
2705 case TargetLowering::Custom:
2706 isCustom = true;
2707 // FALLTHROUGH.
2708 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002709 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002710 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002711 Tmp4 = TLI.LowerOperation(Result, DAG);
2712 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002713 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002714 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002715 case TargetLowering::Promote: {
2716 // First step, figure out the appropriate operation to use.
2717 // Allow SETCC to not be supported for all legal data types
2718 // Mostly this targets FP
2719 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
Chris Lattner00755df2007-02-04 00:27:56 +00002720 MVT::ValueType OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002721
2722 // Scan for the appropriate larger type to use.
2723 while (1) {
2724 NewInTy = (MVT::ValueType)(NewInTy+1);
2725
2726 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
2727 "Fell off of the edge of the integer world");
2728 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
2729 "Fell off of the edge of the floating point world");
2730
2731 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002732 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002733 break;
2734 }
2735 if (MVT::isInteger(NewInTy))
2736 assert(0 && "Cannot promote Legal Integer SETCC yet");
2737 else {
2738 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2739 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2740 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002741 Tmp1 = LegalizeOp(Tmp1);
2742 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002743 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002744 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002745 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002746 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002747 case TargetLowering::Expand:
2748 // Expand a setcc node into a select_cc of the same condition, lhs, and
2749 // rhs that selects between const 1 (true) and const 0 (false).
2750 MVT::ValueType VT = Node->getValueType(0);
2751 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2752 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002753 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002754 break;
2755 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002756 break;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002757 case ISD::MEMSET:
2758 case ISD::MEMCPY:
2759 case ISD::MEMMOVE: {
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002760 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnere5605212005-01-28 22:29:18 +00002761 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
2762
2763 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
2764 switch (getTypeAction(Node->getOperand(2).getValueType())) {
2765 case Expand: assert(0 && "Cannot expand a byte!");
2766 case Legal:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002767 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002768 break;
2769 case Promote:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002770 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002771 break;
2772 }
2773 } else {
Misha Brukmanedf128a2005-04-21 22:36:52 +00002774 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnere5605212005-01-28 22:29:18 +00002775 }
Chris Lattner272455b2005-02-02 03:44:41 +00002776
2777 SDOperand Tmp4;
2778 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattner6814f152005-07-13 01:42:45 +00002779 case Expand: {
2780 // Length is too big, just take the lo-part of the length.
2781 SDOperand HiPart;
Chris Lattnerfa9aa2b2006-11-07 04:11:44 +00002782 ExpandOp(Node->getOperand(3), Tmp4, HiPart);
Chris Lattner6814f152005-07-13 01:42:45 +00002783 break;
2784 }
Chris Lattnere5605212005-01-28 22:29:18 +00002785 case Legal:
2786 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnere5605212005-01-28 22:29:18 +00002787 break;
2788 case Promote:
2789 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner272455b2005-02-02 03:44:41 +00002790 break;
2791 }
2792
2793 SDOperand Tmp5;
2794 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2795 case Expand: assert(0 && "Cannot expand this yet!");
2796 case Legal:
2797 Tmp5 = LegalizeOp(Node->getOperand(4));
2798 break;
2799 case Promote:
Chris Lattnere5605212005-01-28 22:29:18 +00002800 Tmp5 = PromoteOp(Node->getOperand(4));
2801 break;
2802 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002803
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002804 SDOperand Tmp6;
2805 switch (getTypeAction(Node->getOperand(5).getValueType())) { // bool
2806 case Expand: assert(0 && "Cannot expand this yet!");
2807 case Legal:
2808 Tmp6 = LegalizeOp(Node->getOperand(5));
2809 break;
2810 case Promote:
2811 Tmp6 = PromoteOp(Node->getOperand(5));
2812 break;
2813 }
2814
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002815 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2816 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002817 case TargetLowering::Custom:
2818 isCustom = true;
2819 // FALLTHROUGH
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002820 case TargetLowering::Legal: {
2821 SDOperand Ops[] = { Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6 };
2822 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
Chris Lattner456a93a2006-01-28 07:39:30 +00002823 if (isCustom) {
2824 Tmp1 = TLI.LowerOperation(Result, DAG);
2825 if (Tmp1.Val) Result = Tmp1;
2826 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002827 break;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002828 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002829 case TargetLowering::Expand: {
Chris Lattnere1bd8222005-01-11 05:57:22 +00002830 // Otherwise, the target does not support this operation. Lower the
2831 // operation to an explicit libcall as appropriate.
2832 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Andersona69571c2006-05-03 01:29:57 +00002833 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00002834 TargetLowering::ArgListTy Args;
2835 TargetLowering::ArgListEntry Entry;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002836
Reid Spencer3bfbf4e2005-01-12 14:53:45 +00002837 const char *FnName = 0;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002838 if (Node->getOpcode() == ISD::MEMSET) {
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002839 Entry.Node = Tmp2; Entry.Ty = IntPtrTy;
Reid Spencer47857812006-12-31 05:55:36 +00002840 Args.push_back(Entry);
Chris Lattnerdca7abe2006-02-20 06:38:35 +00002841 // Extend the (previously legalized) ubyte argument to be an int value
2842 // for the call.
2843 if (Tmp3.getValueType() > MVT::i32)
2844 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2845 else
2846 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002847 Entry.Node = Tmp3; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
Reid Spencer47857812006-12-31 05:55:36 +00002848 Args.push_back(Entry);
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002849 Entry.Node = Tmp4; Entry.Ty = IntPtrTy; Entry.isSExt = false;
Reid Spencer47857812006-12-31 05:55:36 +00002850 Args.push_back(Entry);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002851
2852 FnName = "memset";
2853 } else if (Node->getOpcode() == ISD::MEMCPY ||
2854 Node->getOpcode() == ISD::MEMMOVE) {
Anton Korobeynikovb25fe822007-02-01 08:39:52 +00002855 Entry.Ty = IntPtrTy;
Reid Spencerb47b25c2007-01-03 04:22:32 +00002856 Entry.Node = Tmp2; Args.push_back(Entry);
2857 Entry.Node = Tmp3; Args.push_back(Entry);
2858 Entry.Node = Tmp4; Args.push_back(Entry);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002859 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2860 } else {
2861 assert(0 && "Unknown op!");
2862 }
Chris Lattner45982da2005-05-12 16:53:42 +00002863
Chris Lattnere1bd8222005-01-11 05:57:22 +00002864 std::pair<SDOperand,SDOperand> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00002865 TLI.LowerCallTo(Tmp1, Type::VoidTy,
2866 false, false, false, CallingConv::C, false,
Chris Lattnere1bd8222005-01-11 05:57:22 +00002867 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +00002868 Result = CallResult.second;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002869 break;
2870 }
Chris Lattnere1bd8222005-01-11 05:57:22 +00002871 }
2872 break;
2873 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002874
Chris Lattner5b359c62005-04-02 04:00:59 +00002875 case ISD::SHL_PARTS:
2876 case ISD::SRA_PARTS:
2877 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002878 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002879 bool Changed = false;
2880 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2881 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2882 Changed |= Ops.back() != Node->getOperand(i);
2883 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002884 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002885 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002886
Evan Cheng05a2d562006-01-09 18:31:59 +00002887 switch (TLI.getOperationAction(Node->getOpcode(),
2888 Node->getValueType(0))) {
2889 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002890 case TargetLowering::Legal: break;
2891 case TargetLowering::Custom:
2892 Tmp1 = TLI.LowerOperation(Result, DAG);
2893 if (Tmp1.Val) {
2894 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002895 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002896 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002897 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2898 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002899 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002900 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002901 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002902 return RetVal;
2903 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002904 break;
2905 }
2906
Chris Lattner2c8086f2005-04-02 05:00:07 +00002907 // Since these produce multiple values, make sure to remember that we
2908 // legalized all of them.
2909 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2910 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2911 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002912 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002913
2914 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002915 case ISD::ADD:
2916 case ISD::SUB:
2917 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002918 case ISD::MULHS:
2919 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002920 case ISD::UDIV:
2921 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002922 case ISD::AND:
2923 case ISD::OR:
2924 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002925 case ISD::SHL:
2926 case ISD::SRL:
2927 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002928 case ISD::FADD:
2929 case ISD::FSUB:
2930 case ISD::FMUL:
2931 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002932 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002933 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002934 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2935 case Expand: assert(0 && "Not possible");
2936 case Legal:
2937 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2938 break;
2939 case Promote:
2940 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2941 break;
2942 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002943
2944 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002945
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002946 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002947 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002948 case TargetLowering::Legal: break;
2949 case TargetLowering::Custom:
2950 Tmp1 = TLI.LowerOperation(Result, DAG);
2951 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002952 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002953 case TargetLowering::Expand: {
Dan Gohman525178c2007-10-08 18:33:35 +00002954 MVT::ValueType VT = Op.getValueType();
2955
2956 // See if multiply or divide can be lowered using two-result operations.
2957 SDVTList VTs = DAG.getVTList(VT, VT);
2958 if (Node->getOpcode() == ISD::MUL) {
2959 // We just need the low half of the multiply; try both the signed
2960 // and unsigned forms. If the target supports both SMUL_LOHI and
2961 // UMUL_LOHI, form a preference by checking which forms of plain
2962 // MULH it supports.
2963 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2964 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2965 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2966 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2967 unsigned OpToUse = 0;
2968 if (HasSMUL_LOHI && !HasMULHS) {
2969 OpToUse = ISD::SMUL_LOHI;
2970 } else if (HasUMUL_LOHI && !HasMULHU) {
2971 OpToUse = ISD::UMUL_LOHI;
2972 } else if (HasSMUL_LOHI) {
2973 OpToUse = ISD::SMUL_LOHI;
2974 } else if (HasUMUL_LOHI) {
2975 OpToUse = ISD::UMUL_LOHI;
2976 }
2977 if (OpToUse) {
2978 Result = SDOperand(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0);
2979 break;
2980 }
2981 }
2982 if (Node->getOpcode() == ISD::MULHS &&
2983 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
2984 Result = SDOperand(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
2985 break;
2986 }
2987 if (Node->getOpcode() == ISD::MULHU &&
2988 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
2989 Result = SDOperand(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
2990 break;
2991 }
2992 if (Node->getOpcode() == ISD::SDIV &&
2993 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
2994 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0);
2995 break;
2996 }
2997 if (Node->getOpcode() == ISD::UDIV &&
2998 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
2999 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3000 break;
3001 }
3002
Dan Gohman82669522007-10-11 23:57:53 +00003003 // Check to see if we have a libcall for this operator.
3004 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3005 bool isSigned = false;
3006 switch (Node->getOpcode()) {
3007 case ISD::UDIV:
3008 case ISD::SDIV:
3009 if (VT == MVT::i32) {
3010 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng56966222007-01-12 02:11:51 +00003011 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003012 isSigned = Node->getOpcode() == ISD::SDIV;
3013 }
3014 break;
3015 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003016 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3017 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003018 break;
3019 default: break;
3020 }
3021 if (LC != RTLIB::UNKNOWN_LIBCALL) {
3022 SDOperand Dummy;
3023 Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003024 break;
3025 }
3026
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003027 assert(MVT::isVector(Node->getValueType(0)) &&
3028 "Cannot expand this binary operator!");
3029 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003030 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003031 break;
3032 }
Evan Chengcc987612006-04-12 21:20:24 +00003033 case TargetLowering::Promote: {
3034 switch (Node->getOpcode()) {
3035 default: assert(0 && "Do not know how to promote this BinOp!");
3036 case ISD::AND:
3037 case ISD::OR:
3038 case ISD::XOR: {
3039 MVT::ValueType OVT = Node->getValueType(0);
3040 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3041 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
3042 // Bit convert each of the values to the new type.
3043 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3044 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3045 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3046 // Bit convert the result back the original type.
3047 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3048 break;
3049 }
3050 }
3051 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003052 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003053 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003054
Dan Gohmane14ea862007-10-05 14:17:22 +00003055 case ISD::SMUL_LOHI:
3056 case ISD::UMUL_LOHI:
3057 case ISD::SDIVREM:
3058 case ISD::UDIVREM:
3059 // These nodes will only be produced by target-specific lowering, so
3060 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003061 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003062 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003063
3064 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3065 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3066 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003067 break;
3068
Chris Lattnera09f8482006-03-05 05:09:38 +00003069 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3070 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3071 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3072 case Expand: assert(0 && "Not possible");
3073 case Legal:
3074 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3075 break;
3076 case Promote:
3077 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3078 break;
3079 }
3080
3081 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3082
3083 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3084 default: assert(0 && "Operation not supported");
3085 case TargetLowering::Custom:
3086 Tmp1 = TLI.LowerOperation(Result, DAG);
3087 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003088 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003089 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003090 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003091 // If this target supports fabs/fneg natively and select is cheap,
3092 // do this efficiently.
3093 if (!TLI.isSelectExpensive() &&
3094 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3095 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003096 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003097 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003098 // Get the sign bit of the RHS.
3099 MVT::ValueType IVT =
3100 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
3101 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
3102 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
3103 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3104 // Get the absolute value of the result.
3105 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
3106 // Select between the nabs and abs value based on the sign bit of
3107 // the input.
3108 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3109 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3110 AbsVal),
3111 AbsVal);
3112 Result = LegalizeOp(Result);
3113 break;
3114 }
3115
3116 // Otherwise, do bitwise ops!
Evan Cheng912095b2007-01-04 21:56:39 +00003117 MVT::ValueType NVT =
3118 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3119 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3120 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3121 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003122 break;
3123 }
Evan Cheng912095b2007-01-04 21:56:39 +00003124 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003125 break;
3126
Nate Begeman551bf3f2006-02-17 05:43:56 +00003127 case ISD::ADDC:
3128 case ISD::SUBC:
3129 Tmp1 = LegalizeOp(Node->getOperand(0));
3130 Tmp2 = LegalizeOp(Node->getOperand(1));
3131 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3132 // Since this produces two values, make sure to remember that we legalized
3133 // both of them.
3134 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3135 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3136 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003137
Nate Begeman551bf3f2006-02-17 05:43:56 +00003138 case ISD::ADDE:
3139 case ISD::SUBE:
3140 Tmp1 = LegalizeOp(Node->getOperand(0));
3141 Tmp2 = LegalizeOp(Node->getOperand(1));
3142 Tmp3 = LegalizeOp(Node->getOperand(2));
3143 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3144 // Since this produces two values, make sure to remember that we legalized
3145 // both of them.
3146 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3147 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3148 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00003149
Nate Begeman419f8b62005-10-18 00:27:41 +00003150 case ISD::BUILD_PAIR: {
3151 MVT::ValueType PairTy = Node->getValueType(0);
3152 // TODO: handle the case where the Lo and Hi operands are not of legal type
3153 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3154 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3155 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003156 case TargetLowering::Promote:
3157 case TargetLowering::Custom:
3158 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003159 case TargetLowering::Legal:
3160 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3161 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3162 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003163 case TargetLowering::Expand:
3164 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3165 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3166 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
3167 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
3168 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003169 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003170 break;
3171 }
3172 break;
3173 }
3174
Nate Begemanc105e192005-04-06 00:23:54 +00003175 case ISD::UREM:
3176 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003177 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003178 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3179 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003180
Nate Begemanc105e192005-04-06 00:23:54 +00003181 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003182 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3183 case TargetLowering::Custom:
3184 isCustom = true;
3185 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003186 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003187 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003188 if (isCustom) {
3189 Tmp1 = TLI.LowerOperation(Result, DAG);
3190 if (Tmp1.Val) Result = Tmp1;
3191 }
Nate Begemanc105e192005-04-06 00:23:54 +00003192 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003193 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003194 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003195 bool isSigned = DivOpc == ISD::SDIV;
Dan Gohman525178c2007-10-08 18:33:35 +00003196 MVT::ValueType VT = Node->getValueType(0);
3197
3198 // See if remainder can be lowered using two-result operations.
3199 SDVTList VTs = DAG.getVTList(VT, VT);
3200 if (Node->getOpcode() == ISD::SREM &&
3201 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3202 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3203 break;
3204 }
3205 if (Node->getOpcode() == ISD::UREM &&
3206 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3207 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3208 break;
3209 }
3210
3211 if (MVT::isInteger(VT)) {
3212 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003213 TargetLowering::Legal) {
3214 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003215 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003216 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3217 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Dan Gohman80176312007-11-05 23:35:22 +00003218 } else if (MVT::isVector(VT)) {
3219 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003220 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003221 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003222 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003223 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3224 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003225 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003226 Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003227 }
Dan Gohman0d974262007-11-06 22:11:54 +00003228 } else {
3229 assert(MVT::isFloatingPoint(VT) &&
3230 "remainder op must have integer or floating-point type");
Dan Gohman80176312007-11-05 23:35:22 +00003231 if (MVT::isVector(VT)) {
3232 Result = LegalizeOp(UnrollVectorOp(Op));
3233 } else {
3234 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003235 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3236 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman80176312007-11-05 23:35:22 +00003237 SDOperand Dummy;
3238 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3239 false/*sign irrelevant*/, Dummy);
3240 }
Nate Begemanc105e192005-04-06 00:23:54 +00003241 }
3242 break;
3243 }
Dan Gohman525178c2007-10-08 18:33:35 +00003244 }
Nate Begemanc105e192005-04-06 00:23:54 +00003245 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003246 case ISD::VAARG: {
3247 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3248 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3249
Chris Lattner5c62f332006-01-28 07:42:08 +00003250 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003251 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3252 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003253 case TargetLowering::Custom:
3254 isCustom = true;
3255 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003256 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003257 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3258 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003259 Tmp1 = Result.getValue(1);
3260
3261 if (isCustom) {
3262 Tmp2 = TLI.LowerOperation(Result, DAG);
3263 if (Tmp2.Val) {
3264 Result = LegalizeOp(Tmp2);
3265 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3266 }
3267 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003268 break;
3269 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003270 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
3271 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003272 // Increment the pointer, VAList, to the next vaarg
3273 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3274 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3275 TLI.getPointerTy()));
3276 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00003277 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003278 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003279 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003280 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003281 Result = LegalizeOp(Result);
3282 break;
3283 }
3284 }
3285 // Since VAARG produces two values, make sure to remember that we
3286 // legalized both of them.
3287 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00003288 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3289 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003290 }
3291
3292 case ISD::VACOPY:
3293 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3294 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3295 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3296
3297 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3298 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003299 case TargetLowering::Custom:
3300 isCustom = true;
3301 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003302 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003303 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3304 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003305 if (isCustom) {
3306 Tmp1 = TLI.LowerOperation(Result, DAG);
3307 if (Tmp1.Val) Result = Tmp1;
3308 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003309 break;
3310 case TargetLowering::Expand:
3311 // This defaults to loading a pointer from the input and storing it to the
3312 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003313 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3314 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
3315 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VD, 0);
3316 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VS, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003317 break;
3318 }
3319 break;
3320
3321 case ISD::VAEND:
3322 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3323 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3324
3325 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3326 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003327 case TargetLowering::Custom:
3328 isCustom = true;
3329 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003330 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003331 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003332 if (isCustom) {
3333 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
3334 if (Tmp1.Val) Result = Tmp1;
3335 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003336 break;
3337 case TargetLowering::Expand:
3338 Result = Tmp1; // Default to a no-op, return the chain
3339 break;
3340 }
3341 break;
3342
3343 case ISD::VASTART:
3344 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3345 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3346
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003347 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3348
Nate Begemanacc398c2006-01-25 18:21:52 +00003349 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3350 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003351 case TargetLowering::Legal: break;
3352 case TargetLowering::Custom:
3353 Tmp1 = TLI.LowerOperation(Result, DAG);
3354 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003355 break;
3356 }
3357 break;
3358
Nate Begeman35ef9132006-01-11 21:21:00 +00003359 case ISD::ROTL:
3360 case ISD::ROTR:
3361 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3362 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003363 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003364 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3365 default:
3366 assert(0 && "ROTL/ROTR legalize operation not supported");
3367 break;
3368 case TargetLowering::Legal:
3369 break;
3370 case TargetLowering::Custom:
3371 Tmp1 = TLI.LowerOperation(Result, DAG);
3372 if (Tmp1.Val) Result = Tmp1;
3373 break;
3374 case TargetLowering::Promote:
3375 assert(0 && "Do not know how to promote ROTL/ROTR");
3376 break;
3377 case TargetLowering::Expand:
3378 assert(0 && "Do not know how to expand ROTL/ROTR");
3379 break;
3380 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003381 break;
3382
Nate Begemand88fc032006-01-14 03:14:10 +00003383 case ISD::BSWAP:
3384 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3385 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003386 case TargetLowering::Custom:
3387 assert(0 && "Cannot custom legalize this yet!");
3388 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003389 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003390 break;
3391 case TargetLowering::Promote: {
3392 MVT::ValueType OVT = Tmp1.getValueType();
3393 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanb55757e2007-05-18 17:52:13 +00003394 unsigned DiffBits = MVT::getSizeInBits(NVT) - MVT::getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00003395
Chris Lattner456a93a2006-01-28 07:39:30 +00003396 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3397 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3398 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3399 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3400 break;
3401 }
3402 case TargetLowering::Expand:
3403 Result = ExpandBSWAP(Tmp1);
3404 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003405 }
3406 break;
3407
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003408 case ISD::CTPOP:
3409 case ISD::CTTZ:
3410 case ISD::CTLZ:
3411 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3412 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003413 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003414 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003415 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003416 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003417 TargetLowering::Custom) {
3418 Tmp1 = TLI.LowerOperation(Result, DAG);
3419 if (Tmp1.Val) {
3420 Result = Tmp1;
3421 }
Scott Michel910b66d2007-07-30 21:00:31 +00003422 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003423 break;
3424 case TargetLowering::Promote: {
3425 MVT::ValueType OVT = Tmp1.getValueType();
3426 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003427
3428 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003429 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3430 // Perform the larger operation, then subtract if needed.
3431 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003432 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003433 case ISD::CTPOP:
3434 Result = Tmp1;
3435 break;
3436 case ISD::CTTZ:
3437 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003438 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003439 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003440 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003441 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Scott Michel910b66d2007-07-30 21:00:31 +00003442 DAG.getConstant(MVT::getSizeInBits(OVT),NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003443 break;
3444 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003445 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003446 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003447 DAG.getConstant(MVT::getSizeInBits(NVT) -
3448 MVT::getSizeInBits(OVT), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003449 break;
3450 }
3451 break;
3452 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003453 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003454 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003455 break;
3456 }
3457 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003458
Chris Lattner2c8086f2005-04-02 05:00:07 +00003459 // Unary operators
3460 case ISD::FABS:
3461 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003462 case ISD::FSQRT:
3463 case ISD::FSIN:
3464 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003465 Tmp1 = LegalizeOp(Node->getOperand(0));
3466 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003467 case TargetLowering::Promote:
3468 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003469 isCustom = true;
3470 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003471 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003472 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003473 if (isCustom) {
3474 Tmp1 = TLI.LowerOperation(Result, DAG);
3475 if (Tmp1.Val) Result = Tmp1;
3476 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003477 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003478 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003479 switch (Node->getOpcode()) {
3480 default: assert(0 && "Unreachable!");
3481 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003482 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3483 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003484 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003485 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003486 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003487 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
3488 MVT::ValueType VT = Node->getValueType(0);
3489 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003490 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003491 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3492 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003493 break;
3494 }
3495 case ISD::FSQRT:
3496 case ISD::FSIN:
3497 case ISD::FCOS: {
3498 MVT::ValueType VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003499
3500 // Expand unsupported unary vector operators by unrolling them.
3501 if (MVT::isVector(VT)) {
3502 Result = LegalizeOp(UnrollVectorOp(Op));
3503 break;
3504 }
3505
Evan Cheng56966222007-01-12 02:11:51 +00003506 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003507 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003508 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003509 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3510 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003511 break;
3512 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003513 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3514 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003515 break;
3516 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003517 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3518 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003519 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003520 default: assert(0 && "Unreachable!");
3521 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00003522 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003523 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3524 false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003525 break;
3526 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003527 }
3528 break;
3529 }
3530 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003531 case ISD::FPOWI: {
Dan Gohman82669522007-10-11 23:57:53 +00003532 MVT::ValueType VT = Node->getValueType(0);
3533
3534 // Expand unsupported unary vector operators by unrolling them.
3535 if (MVT::isVector(VT)) {
3536 Result = LegalizeOp(UnrollVectorOp(Op));
3537 break;
3538 }
3539
3540 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003541 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3542 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003543 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003544 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3545 false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003546 break;
3547 }
Chris Lattner35481892005-12-23 00:16:34 +00003548 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003549 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003550 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3551 Node->getValueType(0));
Dan Gohman7f321562007-06-25 16:23:39 +00003552 } else if (MVT::isVector(Op.getOperand(0).getValueType())) {
3553 // The input has to be a vector type, we have to either scalarize it, pack
3554 // it, or convert it based on whether the input vector type is legal.
3555 SDNode *InVal = Node->getOperand(0).Val;
Dale Johannesene5269622007-10-20 00:07:52 +00003556 int InIx = Node->getOperand(0).ResNo;
3557 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx));
3558 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx));
Dan Gohman7f321562007-06-25 16:23:39 +00003559
3560 // Figure out if there is a simple type corresponding to this Vector
3561 // type. If so, convert to the vector type.
3562 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3563 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003564 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003565 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3566 LegalizeOp(Node->getOperand(0)));
3567 break;
3568 } else if (NumElems == 1) {
3569 // Turn this into a bit convert of the scalar input.
3570 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3571 ScalarizeVectorOp(Node->getOperand(0)));
3572 break;
3573 } else {
3574 // FIXME: UNIMP! Store then reload
3575 assert(0 && "Cast from unsupported vector type not implemented yet!");
3576 }
Chris Lattner67993f72006-01-23 07:30:46 +00003577 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003578 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3579 Node->getOperand(0).getValueType())) {
3580 default: assert(0 && "Unknown operation action!");
3581 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003582 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3583 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003584 break;
3585 case TargetLowering::Legal:
3586 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003587 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003588 break;
3589 }
3590 }
3591 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003592
Chris Lattner2c8086f2005-04-02 05:00:07 +00003593 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003594 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003595 case ISD::UINT_TO_FP: {
3596 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003597 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3598 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003599 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003600 Node->getOperand(0).getValueType())) {
3601 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003602 case TargetLowering::Custom:
3603 isCustom = true;
3604 // FALLTHROUGH
3605 case TargetLowering::Legal:
3606 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003607 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003608 if (isCustom) {
3609 Tmp1 = TLI.LowerOperation(Result, DAG);
3610 if (Tmp1.Val) Result = Tmp1;
3611 }
3612 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003613 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00003614 Result = ExpandLegalINT_TO_FP(isSigned,
3615 LegalizeOp(Node->getOperand(0)),
3616 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003617 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003618 case TargetLowering::Promote:
3619 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
3620 Node->getValueType(0),
3621 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003622 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00003623 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003624 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00003625 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003626 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
3627 Node->getValueType(0), Node->getOperand(0));
3628 break;
3629 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003630 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003631 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003632 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
3633 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003634 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003635 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
3636 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003637 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003638 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3639 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003640 break;
3641 }
3642 break;
3643 }
3644 case ISD::TRUNCATE:
3645 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3646 case Legal:
3647 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003648 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003649 break;
3650 case Expand:
3651 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3652
3653 // Since the result is legal, we should just be able to truncate the low
3654 // part of the source.
3655 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3656 break;
3657 case Promote:
3658 Result = PromoteOp(Node->getOperand(0));
3659 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3660 break;
3661 }
3662 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003663
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003664 case ISD::FP_TO_SINT:
3665 case ISD::FP_TO_UINT:
3666 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3667 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003668 Tmp1 = LegalizeOp(Node->getOperand(0));
3669
Chris Lattner1618beb2005-07-29 00:11:56 +00003670 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3671 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003672 case TargetLowering::Custom:
3673 isCustom = true;
3674 // FALLTHROUGH
3675 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003676 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003677 if (isCustom) {
3678 Tmp1 = TLI.LowerOperation(Result, DAG);
3679 if (Tmp1.Val) Result = Tmp1;
3680 }
3681 break;
3682 case TargetLowering::Promote:
3683 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3684 Node->getOpcode() == ISD::FP_TO_SINT);
3685 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003686 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003687 if (Node->getOpcode() == ISD::FP_TO_UINT) {
3688 SDOperand True, False;
3689 MVT::ValueType VT = Node->getOperand(0).getValueType();
3690 MVT::ValueType NVT = Node->getValueType(0);
Dale Johannesenf4d48322007-09-19 17:53:26 +00003691 unsigned ShiftAmt = MVT::getSizeInBits(NVT)-1;
Dale Johannesen73328d12007-09-19 23:55:34 +00003692 const uint64_t zero[] = {0, 0};
3693 APFloat apf = APFloat(APInt(MVT::getSizeInBits(VT), 2, zero));
3694 uint64_t x = 1ULL << ShiftAmt;
Neil Boothccf596a2007-10-07 11:45:55 +00003695 (void)apf.convertFromZeroExtendedInteger
3696 (&x, MVT::getSizeInBits(NVT), false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003697 Tmp2 = DAG.getConstantFP(apf, VT);
Nate Begemand2558e32005-08-14 01:20:53 +00003698 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
3699 Node->getOperand(0), Tmp2, ISD::SETLT);
3700 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3701 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003702 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003703 Tmp2));
3704 False = DAG.getNode(ISD::XOR, NVT, False,
3705 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003706 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3707 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003708 } else {
3709 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3710 }
3711 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003712 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003713 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003714 case Expand: {
Evan Cheng6af00d52006-12-13 01:57:55 +00003715 MVT::ValueType VT = Op.getValueType();
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003716 MVT::ValueType OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003717 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003718 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003719 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3720 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3721 Node->getOperand(0), DAG.getValueType(MVT::f64));
3722 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3723 DAG.getIntPtrConstant(1));
3724 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3725 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003726 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3727 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3728 Tmp2 = DAG.getConstantFP(apf, OVT);
3729 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3730 // FIXME: generated code sucks.
3731 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3732 DAG.getNode(ISD::ADD, MVT::i32,
3733 DAG.getNode(ISD::FP_TO_SINT, VT,
3734 DAG.getNode(ISD::FSUB, OVT,
3735 Node->getOperand(0), Tmp2)),
3736 DAG.getConstant(0x80000000, MVT::i32)),
3737 DAG.getNode(ISD::FP_TO_SINT, VT,
3738 Node->getOperand(0)),
3739 DAG.getCondCode(ISD::SETGE));
3740 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003741 break;
3742 }
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003743 // Convert f32 / f64 to i32 / i64.
Evan Cheng56966222007-01-12 02:11:51 +00003744 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng6af00d52006-12-13 01:57:55 +00003745 switch (Node->getOpcode()) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003746 case ISD::FP_TO_SINT: {
Dale Johannesen73328d12007-09-19 23:55:34 +00003747 if (OVT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00003748 LC = (VT == MVT::i32)
3749 ? RTLIB::FPTOSINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00003750 else if (OVT == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00003751 LC = (VT == MVT::i32)
3752 ? RTLIB::FPTOSINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
Dale Johannesen161e8972007-10-05 20:04:43 +00003753 else if (OVT == MVT::f80) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003754 assert(VT == MVT::i64);
Dale Johannesen161e8972007-10-05 20:04:43 +00003755 LC = RTLIB::FPTOSINT_F80_I64;
3756 }
3757 else if (OVT == MVT::ppcf128) {
3758 assert(VT == MVT::i64);
3759 LC = RTLIB::FPTOSINT_PPCF128_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00003760 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003761 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003762 }
3763 case ISD::FP_TO_UINT: {
Dale Johannesen73328d12007-09-19 23:55:34 +00003764 if (OVT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00003765 LC = (VT == MVT::i32)
3766 ? RTLIB::FPTOUINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00003767 else if (OVT == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00003768 LC = (VT == MVT::i32)
3769 ? RTLIB::FPTOUINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
Dale Johannesen161e8972007-10-05 20:04:43 +00003770 else if (OVT == MVT::f80) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003771 LC = (VT == MVT::i32)
Dale Johannesen161e8972007-10-05 20:04:43 +00003772 ? RTLIB::FPTOUINT_F80_I32 : RTLIB::FPTOUINT_F80_I64;
3773 }
3774 else if (OVT == MVT::ppcf128) {
3775 assert(VT == MVT::i64);
3776 LC = RTLIB::FPTOUINT_PPCF128_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00003777 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003778 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003779 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003780 default: assert(0 && "Unreachable!");
3781 }
3782 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003783 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3784 false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003785 break;
3786 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003787 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003788 Tmp1 = PromoteOp(Node->getOperand(0));
3789 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3790 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003791 break;
3792 }
3793 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003794
Chris Lattnerf2670a82008-01-16 06:57:07 +00003795 case ISD::FP_EXTEND: {
Chris Lattner0bd48932008-01-17 07:00:52 +00003796 MVT::ValueType DstVT = Op.getValueType();
3797 MVT::ValueType SrcVT = Op.getOperand(0).getValueType();
3798 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3799 // The only other way we can lower this is to turn it into a STORE,
3800 // LOAD pair, targetting a temporary location (a stack slot).
3801 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3802 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00003803 }
3804 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3805 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3806 case Legal:
3807 Tmp1 = LegalizeOp(Node->getOperand(0));
3808 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3809 break;
3810 case Promote:
3811 Tmp1 = PromoteOp(Node->getOperand(0));
3812 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3813 break;
3814 }
3815 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003816 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003817 case ISD::FP_ROUND: {
Chris Lattner0bd48932008-01-17 07:00:52 +00003818 MVT::ValueType DstVT = Op.getValueType();
3819 MVT::ValueType SrcVT = Op.getOperand(0).getValueType();
3820 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3821 if (SrcVT == MVT::ppcf128) {
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003822 SDOperand Lo;
3823 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003824 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003825 if (DstVT!=MVT::f64)
3826 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00003827 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00003828 }
Chris Lattner0bd48932008-01-17 07:00:52 +00003829 // The only other way we can lower this is to turn it into a STORE,
3830 // LOAD pair, targetting a temporary location (a stack slot).
3831 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3832 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00003833 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00003834 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3835 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3836 case Legal:
3837 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003838 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003839 break;
3840 case Promote:
3841 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003842 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3843 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003844 break;
3845 }
3846 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003847 }
Chris Lattner13c78e22005-09-02 00:18:10 +00003848 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003849 case ISD::ZERO_EXTEND:
3850 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003851 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003852 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003853 case Legal:
3854 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003855 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003856 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003857 case Promote:
3858 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003859 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003860 Tmp1 = PromoteOp(Node->getOperand(0));
3861 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003862 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003863 case ISD::ZERO_EXTEND:
3864 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003865 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003866 Result = DAG.getZeroExtendInReg(Result,
3867 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003868 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003869 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003870 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003871 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003872 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003873 Result,
3874 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003875 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003876 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003877 }
3878 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003879 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003880 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003881 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003882 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003883
3884 // If this operation is not supported, convert it to a shl/shr or load/store
3885 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003886 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3887 default: assert(0 && "This action not supported for this op yet!");
3888 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003889 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003890 break;
3891 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003892 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003893 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003894 // NOTE: we could fall back on load/store here too for targets without
3895 // SAR. However, it is doubtful that any exist.
3896 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
3897 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00003898 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003899 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3900 Node->getOperand(0), ShiftCst);
3901 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3902 Result, ShiftCst);
3903 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003904 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003905 // EXTLOAD pair, targetting a temporary location (a stack slot).
3906
3907 // NOTE: there is a choice here between constantly creating new stack
3908 // slots and always reusing the same one. We currently always create
3909 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00003910 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3911 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00003912 } else {
3913 assert(0 && "Unknown op");
3914 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003915 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003916 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003917 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003918 }
Duncan Sands36397f52007-07-27 12:58:54 +00003919 case ISD::TRAMPOLINE: {
3920 SDOperand Ops[6];
3921 for (unsigned i = 0; i != 6; ++i)
3922 Ops[i] = LegalizeOp(Node->getOperand(i));
3923 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3924 // The only option for this node is to custom lower it.
3925 Result = TLI.LowerOperation(Result, DAG);
3926 assert(Result.Val && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003927
3928 // Since trampoline produces two values, make sure to remember that we
3929 // legalized both of them.
3930 Tmp1 = LegalizeOp(Result.getValue(1));
3931 Result = LegalizeOp(Result);
3932 AddLegalizedOperand(SDOperand(Node, 0), Result);
3933 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3934 return Op.ResNo ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00003935 }
Dan Gohman1a024862008-01-31 00:41:03 +00003936 case ISD::FLT_ROUNDS_: {
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003937 MVT::ValueType VT = Node->getValueType(0);
3938 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3939 default: assert(0 && "This action not supported for this op yet!");
3940 case TargetLowering::Custom:
3941 Result = TLI.LowerOperation(Op, DAG);
3942 if (Result.Val) break;
3943 // Fall Thru
3944 case TargetLowering::Legal:
3945 // If this operation is not supported, lower it to constant 1
3946 Result = DAG.getConstant(1, VT);
3947 break;
3948 }
3949 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003950 case ISD::TRAP: {
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003951 MVT::ValueType VT = Node->getValueType(0);
3952 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3953 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00003954 case TargetLowering::Legal:
3955 Tmp1 = LegalizeOp(Node->getOperand(0));
3956 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3957 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003958 case TargetLowering::Custom:
3959 Result = TLI.LowerOperation(Op, DAG);
3960 if (Result.Val) break;
3961 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00003962 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003963 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00003964 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003965 TargetLowering::ArgListTy Args;
3966 std::pair<SDOperand,SDOperand> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00003967 TLI.LowerCallTo(Tmp1, Type::VoidTy,
3968 false, false, false, CallingConv::C, false,
Chris Lattner034f12e2008-01-15 22:09:33 +00003969 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
3970 Args, DAG);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003971 Result = CallResult.second;
3972 break;
3973 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003974 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003975 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00003976 }
Chris Lattner456a93a2006-01-28 07:39:30 +00003977
Chris Lattner4ddd2832006-04-08 04:13:17 +00003978 assert(Result.getValueType() == Op.getValueType() &&
3979 "Bad legalization!");
3980
Chris Lattner456a93a2006-01-28 07:39:30 +00003981 // Make sure that the generated code is itself legal.
3982 if (Result != Op)
3983 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003984
Chris Lattner45982da2005-05-12 16:53:42 +00003985 // Note that LegalizeOp may be reentered even from single-use nodes, which
3986 // means that we always must cache transformed nodes.
3987 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003988 return Result;
3989}
3990
Chris Lattner8b6fa222005-01-15 22:16:26 +00003991/// PromoteOp - Given an operation that produces a value in an invalid type,
3992/// promote it to compute the value into a larger type. The produced value will
3993/// have the correct bits for the low portion of the register, but no guarantee
3994/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00003995SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
3996 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00003997 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00003998 assert(getTypeAction(VT) == Promote &&
3999 "Caller should expand or legalize operands that are not promotable!");
4000 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
4001 "Cannot promote to smaller type!");
4002
Chris Lattner03c85462005-01-15 05:21:40 +00004003 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00004004 SDOperand Result;
4005 SDNode *Node = Op.Val;
4006
Chris Lattner40030bf2007-02-04 01:17:38 +00004007 DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004008 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004009
Chris Lattner03c85462005-01-15 05:21:40 +00004010 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004011 case ISD::CopyFromReg:
4012 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004013 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004014#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004015 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004016#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004017 assert(0 && "Do not know how to promote this operator!");
4018 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004019 case ISD::UNDEF:
4020 Result = DAG.getNode(ISD::UNDEF, NVT);
4021 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004022 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004023 if (VT != MVT::i1)
4024 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4025 else
4026 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004027 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4028 break;
4029 case ISD::ConstantFP:
4030 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4031 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4032 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004033
Chris Lattner82fbfb62005-01-18 02:59:52 +00004034 case ISD::SETCC:
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004035 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004036 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
4037 Node->getOperand(1), Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004038 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00004039
Chris Lattner03c85462005-01-15 05:21:40 +00004040 case ISD::TRUNCATE:
4041 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4042 case Legal:
4043 Result = LegalizeOp(Node->getOperand(0));
4044 assert(Result.getValueType() >= NVT &&
4045 "This truncation doesn't make sense!");
4046 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
4047 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4048 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004049 case Promote:
4050 // The truncation is not required, because we don't guarantee anything
4051 // about high bits anyway.
4052 Result = PromoteOp(Node->getOperand(0));
4053 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004054 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004055 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4056 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00004057 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004058 }
4059 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004060 case ISD::SIGN_EXTEND:
4061 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004062 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004063 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4064 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4065 case Legal:
4066 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00004067 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004068 break;
4069 case Promote:
4070 // Promote the reg if it's smaller.
4071 Result = PromoteOp(Node->getOperand(0));
4072 // The high bits are not guaranteed to be anything. Insert an extend.
4073 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00004074 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004075 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004076 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00004077 Result = DAG.getZeroExtendInReg(Result,
4078 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004079 break;
4080 }
4081 break;
Chris Lattner35481892005-12-23 00:16:34 +00004082 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004083 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4084 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00004085 Result = PromoteOp(Result);
4086 break;
4087
Chris Lattner8b6fa222005-01-15 22:16:26 +00004088 case ISD::FP_EXTEND:
4089 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4090 case ISD::FP_ROUND:
4091 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4092 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4093 case Promote: assert(0 && "Unreachable with 2 FP types!");
4094 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004095 if (Node->getConstantOperandVal(1) == 0) {
4096 // Input is legal? Do an FP_ROUND_INREG.
4097 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4098 DAG.getValueType(VT));
4099 } else {
4100 // Just remove the truncate, it isn't affecting the value.
4101 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4102 Node->getOperand(1));
4103 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004104 break;
4105 }
4106 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004107 case ISD::SINT_TO_FP:
4108 case ISD::UINT_TO_FP:
4109 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4110 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004111 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00004112 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004113 break;
4114
4115 case Promote:
4116 Result = PromoteOp(Node->getOperand(0));
4117 if (Node->getOpcode() == ISD::SINT_TO_FP)
4118 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004119 Result,
4120 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004121 else
Chris Lattner23993562005-04-13 02:38:47 +00004122 Result = DAG.getZeroExtendInReg(Result,
4123 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004124 // No extra round required here.
4125 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004126 break;
4127 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004128 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4129 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00004130 // Round if we cannot tolerate excess precision.
4131 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004132 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4133 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004134 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004135 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004136 break;
4137
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004138 case ISD::SIGN_EXTEND_INREG:
4139 Result = PromoteOp(Node->getOperand(0));
4140 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4141 Node->getOperand(1));
4142 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004143 case ISD::FP_TO_SINT:
4144 case ISD::FP_TO_UINT:
4145 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4146 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004147 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004148 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004149 break;
4150 case Promote:
4151 // The input result is prerounded, so we don't have to do anything
4152 // special.
4153 Tmp1 = PromoteOp(Node->getOperand(0));
4154 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004155 }
Nate Begemand2558e32005-08-14 01:20:53 +00004156 // If we're promoting a UINT to a larger size, check to see if the new node
4157 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4158 // we can use that instead. This allows us to generate better code for
4159 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4160 // legal, such as PowerPC.
4161 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004162 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004163 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4164 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004165 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4166 } else {
4167 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4168 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004169 break;
4170
Chris Lattner2c8086f2005-04-02 05:00:07 +00004171 case ISD::FABS:
4172 case ISD::FNEG:
4173 Tmp1 = PromoteOp(Node->getOperand(0));
4174 assert(Tmp1.getValueType() == NVT);
4175 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4176 // NOTE: we do not have to do any extra rounding here for
4177 // NoExcessFPPrecision, because we know the input will have the appropriate
4178 // precision, and these operations don't modify precision at all.
4179 break;
4180
Chris Lattnerda6ba872005-04-28 21:44:33 +00004181 case ISD::FSQRT:
4182 case ISD::FSIN:
4183 case ISD::FCOS:
4184 Tmp1 = PromoteOp(Node->getOperand(0));
4185 assert(Tmp1.getValueType() == NVT);
4186 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004187 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004188 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4189 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004190 break;
4191
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004192 case ISD::FPOWI: {
4193 // Promote f32 powi to f64 powi. Note that this could insert a libcall
4194 // directly as well, which may be better.
4195 Tmp1 = PromoteOp(Node->getOperand(0));
4196 assert(Tmp1.getValueType() == NVT);
4197 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
4198 if (NoExcessFPPrecision)
4199 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4200 DAG.getValueType(VT));
4201 break;
4202 }
4203
Chris Lattner03c85462005-01-15 05:21:40 +00004204 case ISD::AND:
4205 case ISD::OR:
4206 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004207 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004208 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004209 case ISD::MUL:
4210 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004211 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004212 // that too is okay if they are integer operations.
4213 Tmp1 = PromoteOp(Node->getOperand(0));
4214 Tmp2 = PromoteOp(Node->getOperand(1));
4215 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4216 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004217 break;
4218 case ISD::FADD:
4219 case ISD::FSUB:
4220 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004221 Tmp1 = PromoteOp(Node->getOperand(0));
4222 Tmp2 = PromoteOp(Node->getOperand(1));
4223 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4224 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4225
4226 // Floating point operations will give excess precision that we may not be
4227 // able to tolerate. If we DO allow excess precision, just leave it,
4228 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004229 // FIXME: Why would we need to round FP ops more than integer ones?
4230 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004231 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004232 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4233 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004234 break;
4235
Chris Lattner8b6fa222005-01-15 22:16:26 +00004236 case ISD::SDIV:
4237 case ISD::SREM:
4238 // These operators require that their input be sign extended.
4239 Tmp1 = PromoteOp(Node->getOperand(0));
4240 Tmp2 = PromoteOp(Node->getOperand(1));
4241 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004242 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4243 DAG.getValueType(VT));
4244 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4245 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004246 }
4247 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4248
4249 // Perform FP_ROUND: this is probably overly pessimistic.
4250 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004251 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4252 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004253 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004254 case ISD::FDIV:
4255 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004256 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004257 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004258 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004259 case Expand: assert(0 && "not implemented");
4260 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4261 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004262 }
4263 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004264 case Expand: assert(0 && "not implemented");
4265 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4266 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004267 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004268 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4269
4270 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004271 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004272 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4273 DAG.getValueType(VT));
4274 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004275
4276 case ISD::UDIV:
4277 case ISD::UREM:
4278 // These operators require that their input be zero extended.
4279 Tmp1 = PromoteOp(Node->getOperand(0));
4280 Tmp2 = PromoteOp(Node->getOperand(1));
4281 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004282 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4283 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004284 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4285 break;
4286
4287 case ISD::SHL:
4288 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004289 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004290 break;
4291 case ISD::SRA:
4292 // The input value must be properly sign extended.
4293 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004294 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4295 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004296 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004297 break;
4298 case ISD::SRL:
4299 // The input value must be properly zero extended.
4300 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004301 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004302 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004303 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004304
4305 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004306 Tmp1 = Node->getOperand(0); // Get the chain.
4307 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004308 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4309 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
4310 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
4311 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004312 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
4313 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004314 // Increment the pointer, VAList, to the next vaarg
4315 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
4316 DAG.getConstant(MVT::getSizeInBits(VT)/8,
4317 TLI.getPointerTy()));
4318 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00004319 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004320 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004321 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004322 }
4323 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004324 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004325 break;
4326
Evan Cheng466685d2006-10-09 20:57:25 +00004327 case ISD::LOAD: {
4328 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004329 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4330 ? ISD::EXTLOAD : LD->getExtensionType();
4331 Result = DAG.getExtLoad(ExtType, NVT,
4332 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004333 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004334 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004335 LD->isVolatile(),
4336 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004337 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004338 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004339 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004340 }
Chris Lattner03c85462005-01-15 05:21:40 +00004341 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00004342 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4343 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00004344 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004345 break;
Nate Begeman9373a812005-08-10 20:51:12 +00004346 case ISD::SELECT_CC:
4347 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4348 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4349 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004350 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004351 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004352 case ISD::BSWAP:
4353 Tmp1 = Node->getOperand(0);
4354 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4355 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4356 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004357 DAG.getConstant(MVT::getSizeInBits(NVT) -
4358 MVT::getSizeInBits(VT),
Nate Begemand88fc032006-01-14 03:14:10 +00004359 TLI.getShiftAmountTy()));
4360 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004361 case ISD::CTPOP:
4362 case ISD::CTTZ:
4363 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004364 // Zero extend the argument
4365 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004366 // Perform the larger operation, then subtract if needed.
4367 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004368 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004369 case ISD::CTPOP:
4370 Result = Tmp1;
4371 break;
4372 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004373 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begemand2558e32005-08-14 01:20:53 +00004374 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004375 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
4376 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004377 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004378 DAG.getConstant(MVT::getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004379 break;
4380 case ISD::CTLZ:
4381 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004382 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004383 DAG.getConstant(MVT::getSizeInBits(NVT) -
4384 MVT::getSizeInBits(VT), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004385 break;
4386 }
4387 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004388 case ISD::EXTRACT_SUBVECTOR:
4389 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004390 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004391 case ISD::EXTRACT_VECTOR_ELT:
4392 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4393 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004394 }
4395
4396 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004397
4398 // Make sure the result is itself legal.
4399 Result = LegalizeOp(Result);
4400
4401 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004402 AddPromotedOperand(Op, Result);
4403 return Result;
4404}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004405
Dan Gohman7f321562007-06-25 16:23:39 +00004406/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4407/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4408/// based on the vector type. The return type of this matches the element type
4409/// of the vector, which may not be legal for the target.
4410SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004411 // We know that operand #0 is the Vec vector. If the index is a constant
4412 // or if the invec is a supported hardware type, we can use it. Otherwise,
4413 // lower to a store then an indexed load.
4414 SDOperand Vec = Op.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004415 SDOperand Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004416
Dan Gohmane40c7b02007-09-24 15:54:53 +00004417 MVT::ValueType TVT = Vec.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00004418 unsigned NumElems = MVT::getVectorNumElements(TVT);
Chris Lattner15972212006-03-31 17:55:51 +00004419
Dan Gohman7f321562007-06-25 16:23:39 +00004420 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4421 default: assert(0 && "This action is not supported yet!");
4422 case TargetLowering::Custom: {
4423 Vec = LegalizeOp(Vec);
4424 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4425 SDOperand Tmp3 = TLI.LowerOperation(Op, DAG);
4426 if (Tmp3.Val)
4427 return Tmp3;
4428 break;
4429 }
4430 case TargetLowering::Legal:
4431 if (isTypeLegal(TVT)) {
4432 Vec = LegalizeOp(Vec);
4433 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004434 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004435 }
4436 break;
4437 case TargetLowering::Expand:
4438 break;
4439 }
4440
4441 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004442 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004443 Op = ScalarizeVectorOp(Vec);
4444 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00004445 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00004446 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Chris Lattner15972212006-03-31 17:55:51 +00004447 SDOperand Lo, Hi;
4448 SplitVectorOp(Vec, Lo, Hi);
Nate Begeman55030dc2008-01-29 02:24:00 +00004449 if (CIdx->getValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00004450 Vec = Lo;
4451 } else {
4452 Vec = Hi;
Nate Begeman55030dc2008-01-29 02:24:00 +00004453 Idx = DAG.getConstant(CIdx->getValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00004454 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004455 }
Dan Gohman7f321562007-06-25 16:23:39 +00004456
Chris Lattner15972212006-03-31 17:55:51 +00004457 // It's now an extract from the appropriate high or low part. Recurse.
4458 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004459 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004460 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004461 // Store the value to a temporary stack slot, then LOAD the scalar
4462 // element back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004463 SDOperand StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dan Gohman7f321562007-06-25 16:23:39 +00004464 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
4465
4466 // Add the offset to the index.
4467 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
4468 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4469 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004470
4471 if (MVT::getSizeInBits(Idx.getValueType()) >
4472 MVT::getSizeInBits(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004473 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004474 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004475 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004476
Dan Gohman7f321562007-06-25 16:23:39 +00004477 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4478
4479 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004480 }
Dan Gohman7f321562007-06-25 16:23:39 +00004481 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004482}
4483
Dan Gohman7f321562007-06-25 16:23:39 +00004484/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004485/// we assume the operation can be split if it is not already legal.
Dan Gohman7f321562007-06-25 16:23:39 +00004486SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004487 // We know that operand #0 is the Vec vector. For now we assume the index
4488 // is a constant and that the extracted result is a supported hardware type.
4489 SDOperand Vec = Op.getOperand(0);
4490 SDOperand Idx = LegalizeOp(Op.getOperand(1));
4491
Dan Gohman7f321562007-06-25 16:23:39 +00004492 unsigned NumElems = MVT::getVectorNumElements(Vec.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00004493
4494 if (NumElems == MVT::getVectorNumElements(Op.getValueType())) {
4495 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004496 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004497 }
4498
4499 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
4500 SDOperand Lo, Hi;
4501 SplitVectorOp(Vec, Lo, Hi);
4502 if (CIdx->getValue() < NumElems/2) {
4503 Vec = Lo;
4504 } else {
4505 Vec = Hi;
4506 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
4507 }
4508
4509 // It's now an extract from the appropriate high or low part. Recurse.
4510 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004511 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004512}
4513
Nate Begeman750ac1b2006-02-01 07:19:44 +00004514/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4515/// with condition CC on the current target. This usually involves legalizing
4516/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4517/// there may be no choice but to create a new SetCC node to represent the
4518/// legalized value of setcc lhs, rhs. In this case, the value is returned in
4519/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
4520void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
4521 SDOperand &RHS,
4522 SDOperand &CC) {
Dale Johannesen638ccd52007-10-06 01:24:11 +00004523 SDOperand Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004524
4525 switch (getTypeAction(LHS.getValueType())) {
4526 case Legal:
4527 Tmp1 = LegalizeOp(LHS); // LHS
4528 Tmp2 = LegalizeOp(RHS); // RHS
4529 break;
4530 case Promote:
4531 Tmp1 = PromoteOp(LHS); // LHS
4532 Tmp2 = PromoteOp(RHS); // RHS
4533
4534 // If this is an FP compare, the operands have already been extended.
4535 if (MVT::isInteger(LHS.getValueType())) {
4536 MVT::ValueType VT = LHS.getValueType();
4537 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
4538
4539 // Otherwise, we have to insert explicit sign or zero extends. Note
4540 // that we could insert sign extends for ALL conditions, but zero extend
4541 // is cheaper on many machines (an AND instead of two shifts), so prefer
4542 // it.
4543 switch (cast<CondCodeSDNode>(CC)->get()) {
4544 default: assert(0 && "Unknown integer comparison!");
4545 case ISD::SETEQ:
4546 case ISD::SETNE:
4547 case ISD::SETUGE:
4548 case ISD::SETUGT:
4549 case ISD::SETULE:
4550 case ISD::SETULT:
4551 // ALL of these operations will work if we either sign or zero extend
4552 // the operands (including the unsigned comparisons!). Zero extend is
4553 // usually a simpler/cheaper operation, so prefer it.
4554 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4555 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4556 break;
4557 case ISD::SETGE:
4558 case ISD::SETGT:
4559 case ISD::SETLT:
4560 case ISD::SETLE:
4561 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4562 DAG.getValueType(VT));
4563 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4564 DAG.getValueType(VT));
4565 break;
4566 }
4567 }
4568 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004569 case Expand: {
4570 MVT::ValueType VT = LHS.getValueType();
4571 if (VT == MVT::f32 || VT == MVT::f64) {
4572 // Expand into one or more soft-fp libcall(s).
Evan Cheng56966222007-01-12 02:11:51 +00004573 RTLIB::Libcall LC1, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004574 switch (cast<CondCodeSDNode>(CC)->get()) {
4575 case ISD::SETEQ:
4576 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004577 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004578 break;
4579 case ISD::SETNE:
4580 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004581 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004582 break;
4583 case ISD::SETGE:
4584 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004585 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004586 break;
4587 case ISD::SETLT:
4588 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004589 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004590 break;
4591 case ISD::SETLE:
4592 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004593 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004594 break;
4595 case ISD::SETGT:
4596 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004597 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004598 break;
4599 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004600 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4601 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004602 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004603 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004604 break;
4605 default:
Evan Cheng56966222007-01-12 02:11:51 +00004606 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004607 switch (cast<CondCodeSDNode>(CC)->get()) {
4608 case ISD::SETONE:
4609 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004610 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004611 // Fallthrough
4612 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004613 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004614 break;
4615 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004616 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004617 break;
4618 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004619 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004620 break;
4621 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004622 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004623 break;
Evan Cheng56966222007-01-12 02:11:51 +00004624 case ISD::SETUEQ:
4625 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004626 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004627 default: assert(0 && "Unsupported FP setcc!");
4628 }
4629 }
4630
4631 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00004632 Tmp1 = ExpandLibCall(TLI.getLibcallName(LC1),
Reid Spencer47857812006-12-31 05:55:36 +00004633 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004634 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004635 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004636 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004637 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Evan Cheng2b49c502006-12-15 02:59:56 +00004638 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), Tmp1, Tmp2, CC);
Evan Cheng56966222007-01-12 02:11:51 +00004639 LHS = ExpandLibCall(TLI.getLibcallName(LC2),
Reid Spencer47857812006-12-31 05:55:36 +00004640 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004641 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004642 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004643 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004644 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4645 Tmp2 = SDOperand();
4646 }
4647 LHS = Tmp1;
4648 RHS = Tmp2;
4649 return;
4650 }
4651
Nate Begeman750ac1b2006-02-01 07:19:44 +00004652 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
4653 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004654 ExpandOp(RHS, RHSLo, RHSHi);
4655 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4656
4657 if (VT==MVT::ppcf128) {
4658 // FIXME: This generated code sucks. We want to generate
4659 // FCMP crN, hi1, hi2
4660 // BNE crN, L:
4661 // FCMP crN, lo1, lo2
4662 // The following can be improved, but not that much.
4663 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
4664 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, CCCode);
4665 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4666 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETNE);
4667 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, CCCode);
4668 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4669 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
4670 Tmp2 = SDOperand();
4671 break;
4672 }
4673
4674 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004675 case ISD::SETEQ:
4676 case ISD::SETNE:
4677 if (RHSLo == RHSHi)
4678 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4679 if (RHSCST->isAllOnesValue()) {
4680 // Comparison to -1.
4681 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4682 Tmp2 = RHSLo;
4683 break;
4684 }
4685
4686 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4687 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4688 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4689 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4690 break;
4691 default:
4692 // If this is a comparison of the sign bit, just look at the top part.
4693 // X > -1, x < 0
4694 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4695 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
4696 CST->getValue() == 0) || // X < 0
4697 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4698 CST->isAllOnesValue())) { // X > -1
4699 Tmp1 = LHSHi;
4700 Tmp2 = RHSHi;
4701 break;
4702 }
4703
4704 // FIXME: This generated code sucks.
4705 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004706 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004707 default: assert(0 && "Unknown integer setcc!");
4708 case ISD::SETLT:
4709 case ISD::SETULT: LowCC = ISD::SETULT; break;
4710 case ISD::SETGT:
4711 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4712 case ISD::SETLE:
4713 case ISD::SETULE: LowCC = ISD::SETULE; break;
4714 case ISD::SETGE:
4715 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4716 }
4717
4718 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4719 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4720 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4721
4722 // NOTE: on targets without efficient SELECT of bools, we can always use
4723 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004724 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
4725 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC,
4726 false, DagCombineInfo);
4727 if (!Tmp1.Val)
4728 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
4729 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi,
4730 CCCode, false, DagCombineInfo);
4731 if (!Tmp2.Val)
Chris Lattner85dd3be2007-10-15 17:48:57 +00004732 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004733
4734 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4735 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
4736 if ((Tmp1C && Tmp1C->getValue() == 0) ||
4737 (Tmp2C && Tmp2C->getValue() == 0 &&
4738 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4739 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
4740 (Tmp2C && Tmp2C->getValue() == 1 &&
4741 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4742 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4743 // low part is known false, returns high part.
4744 // For LE / GE, if high part is known false, ignore the low part.
4745 // For LT / GT, if high part is known true, ignore the low part.
4746 Tmp1 = Tmp2;
4747 Tmp2 = SDOperand();
4748 } else {
4749 Result = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi,
4750 ISD::SETEQ, false, DagCombineInfo);
4751 if (!Result.Val)
4752 Result=DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
4753 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4754 Result, Tmp1, Tmp2));
4755 Tmp1 = Result;
4756 Tmp2 = SDOperand();
4757 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004758 }
4759 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004760 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004761 LHS = Tmp1;
4762 RHS = Tmp2;
4763}
4764
Chris Lattner1401d152008-01-16 07:45:30 +00004765/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4766/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4767/// a load from the stack slot to DestVT, extending it if needed.
4768/// The resultant code need not be legal.
4769SDOperand SelectionDAGLegalize::EmitStackConvert(SDOperand SrcOp,
4770 MVT::ValueType SlotVT,
4771 MVT::ValueType DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00004772 // Create the stack frame object.
Chris Lattner1401d152008-01-16 07:45:30 +00004773 SDOperand FIPtr = DAG.CreateStackTemporary(SlotVT);
4774
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004775 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004776 int SPFI = StackPtrFI->getIndex();
4777
Chris Lattner1401d152008-01-16 07:45:30 +00004778 unsigned SrcSize = MVT::getSizeInBits(SrcOp.getValueType());
4779 unsigned SlotSize = MVT::getSizeInBits(SlotVT);
4780 unsigned DestSize = MVT::getSizeInBits(DestVT);
Chris Lattner35481892005-12-23 00:16:34 +00004781
Chris Lattner1401d152008-01-16 07:45:30 +00004782 // Emit a store to the stack slot. Use a truncstore if the input value is
4783 // later than DestVT.
4784 SDOperand Store;
4785 if (SrcSize > SlotSize)
Dan Gohman69de1932008-02-06 22:27:42 +00004786 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004787 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00004788 SPFI, SlotVT);
Chris Lattner1401d152008-01-16 07:45:30 +00004789 else {
4790 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman69de1932008-02-06 22:27:42 +00004791 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004792 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00004793 SPFI, SlotVT);
Chris Lattner1401d152008-01-16 07:45:30 +00004794 }
4795
Chris Lattner35481892005-12-23 00:16:34 +00004796 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00004797 if (SlotSize == DestSize)
4798 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
4799
4800 assert(SlotSize < DestSize && "Unknown extension!");
4801 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT);
Chris Lattner35481892005-12-23 00:16:34 +00004802}
4803
Chris Lattner4352cc92006-04-04 17:23:26 +00004804SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
4805 // Create a vector sized/aligned stack slot, store the value to element #0,
4806 // then load the whole vector back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004807 SDOperand StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00004808
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004809 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004810 int SPFI = StackPtrFI->getIndex();
4811
Evan Cheng786225a2006-10-05 23:01:46 +00004812 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004813 PseudoSourceValue::getFixedStack(), SPFI);
Dan Gohman69de1932008-02-06 22:27:42 +00004814 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004815 PseudoSourceValue::getFixedStack(), SPFI);
Chris Lattner4352cc92006-04-04 17:23:26 +00004816}
4817
4818
Chris Lattnerce872152006-03-19 06:31:19 +00004819/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004820/// support the operation, but do support the resultant vector type.
Chris Lattnerce872152006-03-19 06:31:19 +00004821SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
4822
4823 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004824 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004825 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004826 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00004827 SDOperand SplatValue = Node->getOperand(0);
Evan Cheng033e6812006-03-24 01:17:21 +00004828 std::map<SDOperand, std::vector<unsigned> > Values;
4829 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004830 bool isConstant = true;
4831 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4832 SplatValue.getOpcode() != ISD::UNDEF)
4833 isConstant = false;
4834
Evan Cheng033e6812006-03-24 01:17:21 +00004835 for (unsigned i = 1; i < NumElems; ++i) {
4836 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004837 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004838 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004839 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004840 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00004841 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004842
4843 // If this isn't a constant element or an undef, we can't use a constant
4844 // pool load.
4845 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4846 V.getOpcode() != ISD::UNDEF)
4847 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004848 }
4849
4850 if (isOnlyLowElement) {
4851 // If the low element is an undef too, then this whole things is an undef.
4852 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4853 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4854 // Otherwise, turn this into a scalar_to_vector node.
4855 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4856 Node->getOperand(0));
4857 }
4858
Chris Lattner2eb86532006-03-24 07:29:17 +00004859 // If all elements are constants, create a load from the constant pool.
4860 if (isConstant) {
4861 MVT::ValueType VT = Node->getValueType(0);
4862 const Type *OpNTy =
4863 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
4864 std::vector<Constant*> CV;
4865 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4866 if (ConstantFPSDNode *V =
4867 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dale Johannesenf04afdb2007-08-30 00:23:21 +00004868 CV.push_back(ConstantFP::get(OpNTy, V->getValueAPF()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004869 } else if (ConstantSDNode *V =
4870 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Reid Spencerb83eb642006-10-20 07:07:24 +00004871 CV.push_back(ConstantInt::get(OpNTy, V->getValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004872 } else {
4873 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
4874 CV.push_back(UndefValue::get(OpNTy));
4875 }
4876 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004877 Constant *CP = ConstantVector::get(CV);
Chris Lattner2eb86532006-03-24 07:29:17 +00004878 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman69de1932008-02-06 22:27:42 +00004879 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00004880 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004881 }
4882
Chris Lattner87100e02006-03-20 01:52:29 +00004883 if (SplatValue.Val) { // Splat of one value?
4884 // Build the shuffle constant vector: <0, 0, 0, 0>
4885 MVT::ValueType MaskVT =
Evan Cheng033e6812006-03-24 01:17:21 +00004886 MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman51eaa862007-06-14 22:58:02 +00004887 SDOperand Zero = DAG.getConstant(0, MVT::getVectorElementType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00004888 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004889 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4890 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00004891
4892 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004893 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00004894 // Get the splatted value into the low element of a vector register.
4895 SDOperand LowValVec =
4896 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
4897
4898 // Return shuffle(LowValVec, undef, <0,0,0,0>)
4899 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
4900 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
4901 SplatMask);
4902 }
4903 }
4904
Evan Cheng033e6812006-03-24 01:17:21 +00004905 // If there are only two unique elements, we may be able to turn this into a
4906 // vector shuffle.
4907 if (Values.size() == 2) {
4908 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
4909 MVT::ValueType MaskVT =
4910 MVT::getIntVectorWithNumElements(NumElems);
4911 std::vector<SDOperand> MaskVec(NumElems);
4912 unsigned i = 0;
4913 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
4914 E = Values.end(); I != E; ++I) {
4915 for (std::vector<unsigned>::iterator II = I->second.begin(),
4916 EE = I->second.end(); II != EE; ++II)
Dan Gohman51eaa862007-06-14 22:58:02 +00004917 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorElementType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00004918 i += NumElems;
4919 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004920 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4921 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00004922
4923 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004924 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
4925 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004926 SmallVector<SDOperand, 8> Ops;
Evan Cheng033e6812006-03-24 01:17:21 +00004927 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
4928 E = Values.end(); I != E; ++I) {
4929 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4930 I->first);
4931 Ops.push_back(Op);
4932 }
4933 Ops.push_back(ShuffleMask);
4934
4935 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004936 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0),
4937 &Ops[0], Ops.size());
Evan Cheng033e6812006-03-24 01:17:21 +00004938 }
4939 }
Chris Lattnerce872152006-03-19 06:31:19 +00004940
4941 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
4942 // aligned object on the stack, store each element into it, then load
4943 // the result as a vector.
4944 MVT::ValueType VT = Node->getValueType(0);
4945 // Create the stack frame object.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004946 SDOperand FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00004947
4948 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004949 SmallVector<SDOperand, 8> Stores;
Chris Lattnerce872152006-03-19 06:31:19 +00004950 unsigned TypeByteSize =
4951 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
Chris Lattnerce872152006-03-19 06:31:19 +00004952 // Store (in the right endianness) the elements to memory.
4953 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
4954 // Ignore undef elements.
4955 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
4956
Chris Lattner841c8822006-03-22 01:46:54 +00004957 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00004958
4959 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
4960 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
4961
Evan Cheng786225a2006-10-05 23:01:46 +00004962 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00004963 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00004964 }
4965
4966 SDOperand StoreChain;
4967 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004968 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4969 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00004970 else
4971 StoreChain = DAG.getEntryNode();
4972
4973 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00004974 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00004975}
4976
Chris Lattner5b359c62005-04-02 04:00:59 +00004977void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
4978 SDOperand Op, SDOperand Amt,
4979 SDOperand &Lo, SDOperand &Hi) {
4980 // Expand the subcomponents.
4981 SDOperand LHSL, LHSH;
4982 ExpandOp(Op, LHSL, LHSH);
4983
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004984 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004985 MVT::ValueType VT = LHSL.getValueType();
4986 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00004987 Hi = Lo.getValue(1);
4988}
4989
4990
Chris Lattnere34b3962005-01-19 04:19:40 +00004991/// ExpandShift - Try to find a clever way to expand this shift operation out to
4992/// smaller elements. If we can't find a way that is more efficient than a
4993/// libcall on this target, return false. Otherwise, return true with the
4994/// low-parts expanded into Lo and Hi.
4995bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
4996 SDOperand &Lo, SDOperand &Hi) {
4997 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
4998 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004999
Chris Lattnere34b3962005-01-19 04:19:40 +00005000 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005001 SDOperand ShAmt = LegalizeOp(Amt);
5002 MVT::ValueType ShTy = ShAmt.getValueType();
5003 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
5004 unsigned NVTBits = MVT::getSizeInBits(NVT);
5005
Chris Lattner7a3c8552007-10-14 20:35:12 +00005006 // Handle the case when Amt is an immediate.
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005007 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
5008 unsigned Cst = CN->getValue();
5009 // Expand the incoming operand to be shifted, so that we have its parts
5010 SDOperand InL, InH;
5011 ExpandOp(Op, InL, InH);
5012 switch(Opc) {
5013 case ISD::SHL:
5014 if (Cst > VTBits) {
5015 Lo = DAG.getConstant(0, NVT);
5016 Hi = DAG.getConstant(0, NVT);
5017 } else if (Cst > NVTBits) {
5018 Lo = DAG.getConstant(0, NVT);
5019 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005020 } else if (Cst == NVTBits) {
5021 Lo = DAG.getConstant(0, NVT);
5022 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005023 } else {
5024 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5025 Hi = DAG.getNode(ISD::OR, NVT,
5026 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5027 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5028 }
5029 return true;
5030 case ISD::SRL:
5031 if (Cst > VTBits) {
5032 Lo = DAG.getConstant(0, NVT);
5033 Hi = DAG.getConstant(0, NVT);
5034 } else if (Cst > NVTBits) {
5035 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5036 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005037 } else if (Cst == NVTBits) {
5038 Lo = InH;
5039 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005040 } else {
5041 Lo = DAG.getNode(ISD::OR, NVT,
5042 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5043 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5044 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5045 }
5046 return true;
5047 case ISD::SRA:
5048 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005049 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005050 DAG.getConstant(NVTBits-1, ShTy));
5051 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005052 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005053 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005054 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005055 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005056 } else if (Cst == NVTBits) {
5057 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00005058 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005059 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005060 } else {
5061 Lo = DAG.getNode(ISD::OR, NVT,
5062 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5063 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5064 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5065 }
5066 return true;
5067 }
5068 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005069
5070 // Okay, the shift amount isn't constant. However, if we can tell that it is
5071 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
5072 uint64_t Mask = NVTBits, KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005073 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005074
5075 // If we know that the high bit of the shift amount is one, then we can do
5076 // this as a couple of simple shifts.
5077 if (KnownOne & Mask) {
5078 // Mask out the high bit, which we know is set.
5079 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
5080 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5081
5082 // Expand the incoming operand to be shifted, so that we have its parts
5083 SDOperand InL, InH;
5084 ExpandOp(Op, InL, InH);
5085 switch(Opc) {
5086 case ISD::SHL:
5087 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5088 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5089 return true;
5090 case ISD::SRL:
5091 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5092 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5093 return true;
5094 case ISD::SRA:
5095 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5096 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5097 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5098 return true;
5099 }
5100 }
5101
5102 // If we know that the high bit of the shift amount is zero, then we can do
5103 // this as a couple of simple shifts.
5104 if (KnownZero & Mask) {
5105 // Compute 32-amt.
5106 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
5107 DAG.getConstant(NVTBits, Amt.getValueType()),
5108 Amt);
5109
5110 // Expand the incoming operand to be shifted, so that we have its parts
5111 SDOperand InL, InH;
5112 ExpandOp(Op, InL, InH);
5113 switch(Opc) {
5114 case ISD::SHL:
5115 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5116 Hi = DAG.getNode(ISD::OR, NVT,
5117 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5118 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5119 return true;
5120 case ISD::SRL:
5121 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5122 Lo = DAG.getNode(ISD::OR, NVT,
5123 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5124 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5125 return true;
5126 case ISD::SRA:
5127 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5128 Lo = DAG.getNode(ISD::OR, NVT,
5129 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5130 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5131 return true;
5132 }
5133 }
5134
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005135 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005136}
Chris Lattner77e77a62005-01-21 06:05:23 +00005137
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005138
Chris Lattner77e77a62005-01-21 06:05:23 +00005139// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5140// does not fit into a register, return the lo part and set the hi part to the
5141// by-reg argument. If it does fit into a single register, return the result
5142// and leave the Hi part unset.
5143SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
Reid Spencer47857812006-12-31 05:55:36 +00005144 bool isSigned, SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005145 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5146 // The input chain to this libcall is the entry node of the function.
5147 // Legalizing the call will automatically add the previous call to the
5148 // dependence.
5149 SDOperand InChain = DAG.getEntryNode();
5150
Chris Lattner77e77a62005-01-21 06:05:23 +00005151 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005152 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005153 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5154 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
5155 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
Reid Spencer47857812006-12-31 05:55:36 +00005156 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005157 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005158 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005159 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005160 }
5161 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005162
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005163 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00005164 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005165 std::pair<SDOperand,SDOperand> CallInfo =
Duncan Sands00fee652008-02-14 17:28:50 +00005166 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, CallingConv::C,
5167 false, Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005168
Chris Lattner6831a812006-02-13 09:18:02 +00005169 // Legalize the call sequence, starting with the chain. This will advance
5170 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5171 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5172 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00005173 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005174 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005175 default: assert(0 && "Unknown thing");
5176 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005177 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005178 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005179 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005180 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005181 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005182 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005183 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005184}
5185
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005186
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005187/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5188///
Chris Lattner77e77a62005-01-21 06:05:23 +00005189SDOperand SelectionDAGLegalize::
5190ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005191 assert(getTypeAction(Source.getValueType()) == Expand &&
5192 "This is not an expansion!");
5193 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
5194
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005195 if (!isSigned) {
Chris Lattnere9c35e72005-04-13 05:09:42 +00005196 assert(Source.getValueType() == MVT::i64 &&
5197 "This only works for 64-bit -> FP");
5198 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
5199 // incoming integer is set. To handle this, we dynamically test to see if
5200 // it is set, and, if so, add a fudge factor.
5201 SDOperand Lo, Hi;
5202 ExpandOp(Source, Lo, Hi);
5203
Chris Lattner66de05b2005-05-13 04:45:13 +00005204 // If this is unsigned, and not supported, first perform the conversion to
5205 // signed, then adjust the result if the sign bit is set.
5206 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
5207 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
5208
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005209 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
5210 DAG.getConstant(0, Hi.getValueType()),
5211 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005212 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005213 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5214 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005215 uint64_t FF = 0x5f800000ULL;
5216 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005217 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005218
Chris Lattner5839bf22005-08-26 17:15:30 +00005219 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00005220 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5221 SDOperand FudgeInReg;
5222 if (DestTy == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005223 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005224 PseudoSourceValue::getConstantPool(), 0);
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005225 else if (MVT::getSizeInBits(DestTy) > MVT::getSizeInBits(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005226 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005227 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005228 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005229 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005230 MVT::f32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005231 else
5232 assert(0 && "Unexpected conversion");
5233
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005234 MVT::ValueType SCVT = SignedConv.getValueType();
5235 if (SCVT != DestTy) {
5236 // Destination type needs to be expanded as well. The FADD now we are
5237 // constructing will be expanded into a libcall.
5238 if (MVT::getSizeInBits(SCVT) != MVT::getSizeInBits(DestTy)) {
5239 assert(SCVT == MVT::i32 && DestTy == MVT::f64);
5240 SignedConv = DAG.getNode(ISD::BUILD_PAIR, MVT::i64,
5241 SignedConv, SignedConv.getValue(1));
5242 }
5243 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5244 }
Chris Lattner473a9902005-09-29 06:44:39 +00005245 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005246 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005247
Chris Lattnera88a2602005-05-14 05:33:54 +00005248 // Check to see if the target has a custom way to lower this. If so, use it.
5249 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
5250 default: assert(0 && "This action not implemented for this operation!");
5251 case TargetLowering::Legal:
5252 case TargetLowering::Expand:
5253 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005254 case TargetLowering::Custom: {
5255 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
5256 Source), DAG);
5257 if (NV.Val)
5258 return LegalizeOp(NV);
5259 break; // The target decided this was legal after all
5260 }
Chris Lattnera88a2602005-05-14 05:33:54 +00005261 }
5262
Chris Lattner13689e22005-05-12 07:00:44 +00005263 // Expand the source, then glue it back together for the call. We must expand
5264 // the source in case it is shared (this pass of legalize must traverse it).
5265 SDOperand SrcLo, SrcHi;
5266 ExpandOp(Source, SrcLo, SrcHi);
5267 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
5268
Evan Cheng56966222007-01-12 02:11:51 +00005269 RTLIB::Libcall LC;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005270 if (DestTy == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005271 LC = RTLIB::SINTTOFP_I64_F32;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005272 else {
5273 assert(DestTy == MVT::f64 && "Unknown fp value type!");
Evan Cheng56966222007-01-12 02:11:51 +00005274 LC = RTLIB::SINTTOFP_I64_F64;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005275 }
Chris Lattner6831a812006-02-13 09:18:02 +00005276
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005277 assert(TLI.getLibcallName(LC) && "Don't know how to expand this SINT_TO_FP!");
Chris Lattner6831a812006-02-13 09:18:02 +00005278 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
5279 SDOperand UnusedHiPart;
Evan Cheng56966222007-01-12 02:11:51 +00005280 return ExpandLibCall(TLI.getLibcallName(LC), Source.Val, isSigned,
5281 UnusedHiPart);
Chris Lattner77e77a62005-01-21 06:05:23 +00005282}
Misha Brukmanedf128a2005-04-21 22:36:52 +00005283
Chris Lattner22cde6a2006-01-28 08:25:58 +00005284/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5285/// INT_TO_FP operation of the specified operand when the target requests that
5286/// we expand it. At this point, we know that the result and operand types are
5287/// legal for the target.
5288SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5289 SDOperand Op0,
5290 MVT::ValueType DestVT) {
5291 if (Op0.getValueType() == MVT::i32) {
5292 // simple 32-bit [signed|unsigned] integer to float/double expansion
5293
Chris Lattner23594d42008-01-16 07:03:22 +00005294 // Get the stack frame index of a 8 byte buffer.
5295 SDOperand StackSlot = DAG.CreateStackTemporary(MVT::f64);
5296
Chris Lattner22cde6a2006-01-28 08:25:58 +00005297 // word offset constant for Hi/Lo address computation
5298 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
5299 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00005300 SDOperand Hi = StackSlot;
5301 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
5302 if (TLI.isLittleEndian())
5303 std::swap(Hi, Lo);
5304
Chris Lattner22cde6a2006-01-28 08:25:58 +00005305 // if signed map to unsigned space
5306 SDOperand Op0Mapped;
5307 if (isSigned) {
5308 // constant used to invert sign bit (signed to unsigned mapping)
5309 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
5310 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5311 } else {
5312 Op0Mapped = Op0;
5313 }
5314 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00005315 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005316 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005317 // initial hi portion of constructed double
5318 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
5319 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00005320 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005321 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00005322 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005323 // FP constant to bias correct the final result
5324 SDOperand Bias = DAG.getConstantFP(isSigned ?
5325 BitsToDouble(0x4330000080000000ULL)
5326 : BitsToDouble(0x4330000000000000ULL),
5327 MVT::f64);
5328 // subtract the bias
5329 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
5330 // final result
5331 SDOperand Result;
5332 // handle final rounding
5333 if (DestVT == MVT::f64) {
5334 // do nothing
5335 Result = Sub;
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005336 } else if (MVT::getSizeInBits(DestVT) < MVT::getSizeInBits(MVT::f64)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00005337 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5338 DAG.getIntPtrConstant(0));
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005339 } else if (MVT::getSizeInBits(DestVT) > MVT::getSizeInBits(MVT::f64)) {
5340 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005341 }
5342 return Result;
5343 }
5344 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
5345 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
5346
5347 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
5348 DAG.getConstant(0, Op0.getValueType()),
5349 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005350 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005351 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5352 SignSet, Four, Zero);
5353
5354 // If the sign bit of the integer is set, the large number will be treated
5355 // as a negative number. To counteract this, the dynamic code adds an
5356 // offset depending on the data type.
5357 uint64_t FF;
5358 switch (Op0.getValueType()) {
5359 default: assert(0 && "Unsupported integer type!");
5360 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5361 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5362 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5363 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5364 }
5365 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005366 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005367
5368 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
5369 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5370 SDOperand FudgeInReg;
5371 if (DestVT == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005372 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005373 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005374 else {
Dan Gohman69de1932008-02-06 22:27:42 +00005375 FudgeInReg =
5376 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5377 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005378 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005379 MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005380 }
5381
5382 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5383}
5384
5385/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5386/// *INT_TO_FP operation of the specified operand when the target requests that
5387/// we promote it. At this point, we know that the result and operand types are
5388/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5389/// operation that takes a larger input.
5390SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
5391 MVT::ValueType DestVT,
5392 bool isSigned) {
5393 // First step, figure out the appropriate *INT_TO_FP operation to use.
5394 MVT::ValueType NewInTy = LegalOp.getValueType();
5395
5396 unsigned OpToUse = 0;
5397
5398 // Scan for the appropriate larger type to use.
5399 while (1) {
5400 NewInTy = (MVT::ValueType)(NewInTy+1);
5401 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
5402
5403 // If the target supports SINT_TO_FP of this type, use it.
5404 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5405 default: break;
5406 case TargetLowering::Legal:
5407 if (!TLI.isTypeLegal(NewInTy))
5408 break; // Can't use this datatype.
5409 // FALL THROUGH.
5410 case TargetLowering::Custom:
5411 OpToUse = ISD::SINT_TO_FP;
5412 break;
5413 }
5414 if (OpToUse) break;
5415 if (isSigned) continue;
5416
5417 // If the target supports UINT_TO_FP of this type, use it.
5418 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5419 default: break;
5420 case TargetLowering::Legal:
5421 if (!TLI.isTypeLegal(NewInTy))
5422 break; // Can't use this datatype.
5423 // FALL THROUGH.
5424 case TargetLowering::Custom:
5425 OpToUse = ISD::UINT_TO_FP;
5426 break;
5427 }
5428 if (OpToUse) break;
5429
5430 // Otherwise, try a larger type.
5431 }
5432
5433 // Okay, we found the operation and type to use. Zero extend our input to the
5434 // desired type then run the operation on it.
5435 return DAG.getNode(OpToUse, DestVT,
5436 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5437 NewInTy, LegalOp));
5438}
5439
5440/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5441/// FP_TO_*INT operation of the specified operand when the target requests that
5442/// we promote it. At this point, we know that the result and operand types are
5443/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5444/// operation that returns a larger result.
5445SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
5446 MVT::ValueType DestVT,
5447 bool isSigned) {
5448 // First step, figure out the appropriate FP_TO*INT operation to use.
5449 MVT::ValueType NewOutTy = DestVT;
5450
5451 unsigned OpToUse = 0;
5452
5453 // Scan for the appropriate larger type to use.
5454 while (1) {
5455 NewOutTy = (MVT::ValueType)(NewOutTy+1);
5456 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
5457
5458 // If the target supports FP_TO_SINT returning this type, use it.
5459 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5460 default: break;
5461 case TargetLowering::Legal:
5462 if (!TLI.isTypeLegal(NewOutTy))
5463 break; // Can't use this datatype.
5464 // FALL THROUGH.
5465 case TargetLowering::Custom:
5466 OpToUse = ISD::FP_TO_SINT;
5467 break;
5468 }
5469 if (OpToUse) break;
5470
5471 // If the target supports FP_TO_UINT of this type, use it.
5472 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5473 default: break;
5474 case TargetLowering::Legal:
5475 if (!TLI.isTypeLegal(NewOutTy))
5476 break; // Can't use this datatype.
5477 // FALL THROUGH.
5478 case TargetLowering::Custom:
5479 OpToUse = ISD::FP_TO_UINT;
5480 break;
5481 }
5482 if (OpToUse) break;
5483
5484 // Otherwise, try a larger type.
5485 }
5486
Chris Lattner27a6c732007-11-24 07:07:01 +00005487
5488 // Okay, we found the operation and type to use.
5489 SDOperand Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
5490
5491 // If the operation produces an invalid type, it must be custom lowered. Use
5492 // the target lowering hooks to expand it. Just keep the low part of the
5493 // expanded operation, we know that we're truncating anyway.
5494 if (getTypeAction(NewOutTy) == Expand) {
5495 Operation = SDOperand(TLI.ExpandOperationResult(Operation.Val, DAG), 0);
5496 assert(Operation.Val && "Didn't return anything");
5497 }
5498
5499 // Truncate the result of the extended FP_TO_*INT operation to the desired
5500 // size.
5501 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005502}
5503
5504/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5505///
5506SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
5507 MVT::ValueType VT = Op.getValueType();
5508 MVT::ValueType SHVT = TLI.getShiftAmountTy();
5509 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
5510 switch (VT) {
5511 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5512 case MVT::i16:
5513 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5514 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5515 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5516 case MVT::i32:
5517 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5518 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5519 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5520 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5521 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5522 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5523 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5524 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5525 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5526 case MVT::i64:
5527 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5528 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5529 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5530 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5531 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5532 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5533 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5534 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5535 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5536 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5537 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5538 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5539 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5540 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5541 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5542 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5543 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5544 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5545 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5546 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5547 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5548 }
5549}
5550
5551/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5552///
5553SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
5554 switch (Opc) {
5555 default: assert(0 && "Cannot expand this yet!");
5556 case ISD::CTPOP: {
5557 static const uint64_t mask[6] = {
5558 0x5555555555555555ULL, 0x3333333333333333ULL,
5559 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5560 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5561 };
5562 MVT::ValueType VT = Op.getValueType();
5563 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00005564 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005565 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5566 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
5567 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
5568 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5569 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5570 DAG.getNode(ISD::AND, VT,
5571 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5572 }
5573 return Op;
5574 }
5575 case ISD::CTLZ: {
5576 // for now, we do this:
5577 // x = x | (x >> 1);
5578 // x = x | (x >> 2);
5579 // ...
5580 // x = x | (x >>16);
5581 // x = x | (x >>32); // for 64-bit input
5582 // return popcount(~x);
5583 //
5584 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
5585 MVT::ValueType VT = Op.getValueType();
5586 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00005587 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005588 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5589 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5590 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5591 }
5592 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5593 return DAG.getNode(ISD::CTPOP, VT, Op);
5594 }
5595 case ISD::CTTZ: {
5596 // for now, we use: { return popcount(~x & (x - 1)); }
5597 // unless the target has ctlz but not ctpop, in which case we use:
5598 // { return 32 - nlz(~x & (x-1)); }
5599 // see also http://www.hackersdelight.org/HDcode/ntz.cc
5600 MVT::ValueType VT = Op.getValueType();
5601 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
5602 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
5603 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5604 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5605 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5606 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5607 TLI.isOperationLegal(ISD::CTLZ, VT))
5608 return DAG.getNode(ISD::SUB, VT,
Dan Gohmanb55757e2007-05-18 17:52:13 +00005609 DAG.getConstant(MVT::getSizeInBits(VT), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005610 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5611 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5612 }
5613 }
5614}
Chris Lattnere34b3962005-01-19 04:19:40 +00005615
Chris Lattner3e928bb2005-01-07 07:47:09 +00005616/// ExpandOp - Expand the specified SDOperand into its two component pieces
5617/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5618/// LegalizeNodes map is filled in for any results that are not expanded, the
5619/// ExpandedNodes map is filled in for any results that are expanded, and the
5620/// Lo/Hi values are returned.
5621void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
5622 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00005623 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005624 SDNode *Node = Op.Val;
5625 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005626 assert(((MVT::isInteger(NVT) && NVT < VT) || MVT::isFloatingPoint(VT) ||
Dan Gohman7f321562007-06-25 16:23:39 +00005627 MVT::isVector(VT)) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00005628 "Cannot expand to FP value or to larger int value!");
5629
Chris Lattner6fdcb252005-09-02 20:32:45 +00005630 // See if we already expanded it.
Chris Lattner40030bf2007-02-04 01:17:38 +00005631 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005632 = ExpandedNodes.find(Op);
5633 if (I != ExpandedNodes.end()) {
5634 Lo = I->second.first;
5635 Hi = I->second.second;
5636 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005637 }
5638
Chris Lattner3e928bb2005-01-07 07:47:09 +00005639 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005640 case ISD::CopyFromReg:
5641 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005642 case ISD::FP_ROUND_INREG:
5643 if (VT == MVT::ppcf128 &&
5644 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5645 TargetLowering::Custom) {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005646 SDOperand SrcLo, SrcHi, Src;
5647 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5648 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
5649 SDOperand Result = TLI.LowerOperation(
5650 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005651 assert(Result.Val->getOpcode() == ISD::BUILD_PAIR);
5652 Lo = Result.Val->getOperand(0);
5653 Hi = Result.Val->getOperand(1);
5654 break;
5655 }
5656 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005657 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005658#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005659 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005660#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005661 assert(0 && "Do not know how to expand this operator!");
5662 abort();
Dale Johannesen25f1d082007-10-31 00:32:36 +00005663 case ISD::EXTRACT_VECTOR_ELT:
5664 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5665 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5666 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5667 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005668 case ISD::UNDEF:
Evan Chengaa975c12006-12-16 02:20:50 +00005669 NVT = TLI.getTypeToExpandTo(VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005670 Lo = DAG.getNode(ISD::UNDEF, NVT);
5671 Hi = DAG.getNode(ISD::UNDEF, NVT);
5672 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005673 case ISD::Constant: {
5674 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
5675 Lo = DAG.getConstant(Cst, NVT);
5676 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
5677 break;
5678 }
Evan Cheng00495212006-12-12 21:32:44 +00005679 case ISD::ConstantFP: {
5680 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005681 if (CFP->getValueType(0) == MVT::ppcf128) {
5682 APInt api = CFP->getValueAPF().convertToAPInt();
5683 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5684 MVT::f64);
5685 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5686 MVT::f64);
5687 break;
5688 }
Evan Cheng279101e2006-12-12 22:19:28 +00005689 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005690 if (getTypeAction(Lo.getValueType()) == Expand)
5691 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005692 break;
5693 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005694 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005695 // Return the operands.
5696 Lo = Node->getOperand(0);
5697 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005698 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005699
5700 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00005701 if (Node->getNumValues() == 1) {
5702 ExpandOp(Op.getOperand(0), Lo, Hi);
5703 break;
5704 }
Chris Lattner27a6c732007-11-24 07:07:01 +00005705 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
5706 assert(Op.ResNo == 0 && Node->getNumValues() == 2 &&
5707 Op.getValue(1).getValueType() == MVT::Other &&
5708 "unhandled MERGE_VALUES");
5709 ExpandOp(Op.getOperand(0), Lo, Hi);
5710 // Remember that we legalized the chain.
5711 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5712 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005713
5714 case ISD::SIGN_EXTEND_INREG:
5715 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005716 // sext_inreg the low part if needed.
5717 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5718
5719 // The high part gets the sign extension from the lo-part. This handles
5720 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005721 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5722 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
5723 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005724 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005725
Nate Begemand88fc032006-01-14 03:14:10 +00005726 case ISD::BSWAP: {
5727 ExpandOp(Node->getOperand(0), Lo, Hi);
5728 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
5729 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5730 Lo = TempLo;
5731 break;
5732 }
5733
Chris Lattneredb1add2005-05-11 04:51:16 +00005734 case ISD::CTPOP:
5735 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005736 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5737 DAG.getNode(ISD::CTPOP, NVT, Lo),
5738 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005739 Hi = DAG.getConstant(0, NVT);
5740 break;
5741
Chris Lattner39a8f332005-05-12 19:05:01 +00005742 case ISD::CTLZ: {
5743 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005744 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005745 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5746 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005747 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
5748 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005749 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
5750 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5751
5752 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5753 Hi = DAG.getConstant(0, NVT);
5754 break;
5755 }
5756
5757 case ISD::CTTZ: {
5758 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005759 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005760 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5761 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005762 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
5763 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005764 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
5765 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5766
5767 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5768 Hi = DAG.getConstant(0, NVT);
5769 break;
5770 }
Chris Lattneredb1add2005-05-11 04:51:16 +00005771
Nate Begemanacc398c2006-01-25 18:21:52 +00005772 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005773 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5774 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00005775 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5776 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5777
5778 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005779 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00005780 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00005781 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00005782 std::swap(Lo, Hi);
5783 break;
5784 }
5785
Chris Lattner3e928bb2005-01-07 07:47:09 +00005786 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00005787 LoadSDNode *LD = cast<LoadSDNode>(Node);
5788 SDOperand Ch = LD->getChain(); // Legalize the chain.
5789 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
5790 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005791 int SVOffset = LD->getSrcValueOffset();
5792 unsigned Alignment = LD->getAlignment();
5793 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005794
Evan Cheng466685d2006-10-09 20:57:25 +00005795 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005796 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5797 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00005798 if (VT == MVT::f32 || VT == MVT::f64) {
5799 // f32->i32 or f64->i64 one to one expansion.
5800 // Remember that we legalized the chain.
5801 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00005802 // Recursively expand the new load.
5803 if (getTypeAction(NVT) == Expand)
5804 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005805 break;
5806 }
Chris Lattnerec39a452005-01-19 18:02:17 +00005807
Evan Cheng466685d2006-10-09 20:57:25 +00005808 // Increment the pointer to the other half.
5809 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
5810 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00005811 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005812 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00005813 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005814 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5815 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00005816
Evan Cheng466685d2006-10-09 20:57:25 +00005817 // Build a factor node to remember that this load is independent of the
5818 // other one.
5819 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5820 Hi.getValue(1));
5821
5822 // Remember that we legalized the chain.
5823 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00005824 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00005825 std::swap(Lo, Hi);
5826 } else {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005827 MVT::ValueType EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00005828
Dale Johannesenb6210fc2007-10-19 20:29:00 +00005829 if ((VT == MVT::f64 && EVT == MVT::f32) ||
5830 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00005831 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
5832 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005833 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00005834 // Remember that we legalized the chain.
5835 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
5836 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
5837 break;
5838 }
Evan Cheng466685d2006-10-09 20:57:25 +00005839
5840 if (EVT == NVT)
5841 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005842 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005843 else
5844 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005845 SVOffset, EVT, isVolatile,
5846 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005847
5848 // Remember that we legalized the chain.
5849 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
5850
5851 if (ExtType == ISD::SEXTLOAD) {
5852 // The high part is obtained by SRA'ing all but one of the bits of the
5853 // lo part.
5854 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
5855 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5856 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
5857 } else if (ExtType == ISD::ZEXTLOAD) {
5858 // The high part is just a zero.
5859 Hi = DAG.getConstant(0, NVT);
5860 } else /* if (ExtType == ISD::EXTLOAD) */ {
5861 // The high part is undefined.
5862 Hi = DAG.getNode(ISD::UNDEF, NVT);
5863 }
5864 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005865 break;
5866 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005867 case ISD::AND:
5868 case ISD::OR:
5869 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
5870 SDOperand LL, LH, RL, RH;
5871 ExpandOp(Node->getOperand(0), LL, LH);
5872 ExpandOp(Node->getOperand(1), RL, RH);
5873 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
5874 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
5875 break;
5876 }
5877 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00005878 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005879 ExpandOp(Node->getOperand(1), LL, LH);
5880 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00005881 if (getTypeAction(NVT) == Expand)
5882 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00005883 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00005884 if (VT != MVT::f32)
5885 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005886 break;
5887 }
Nate Begeman9373a812005-08-10 20:51:12 +00005888 case ISD::SELECT_CC: {
5889 SDOperand TL, TH, FL, FH;
5890 ExpandOp(Node->getOperand(2), TL, TH);
5891 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00005892 if (getTypeAction(NVT) == Expand)
5893 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00005894 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5895 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00005896 if (VT != MVT::f32)
5897 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5898 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00005899 break;
5900 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00005901 case ISD::ANY_EXTEND:
5902 // The low part is any extension of the input (which degenerates to a copy).
5903 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
5904 // The high part is undefined.
5905 Hi = DAG.getNode(ISD::UNDEF, NVT);
5906 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005907 case ISD::SIGN_EXTEND: {
5908 // The low part is just a sign extension of the input (which degenerates to
5909 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00005910 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005911
Chris Lattner3e928bb2005-01-07 07:47:09 +00005912 // The high part is obtained by SRA'ing all but one of the bits of the lo
5913 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00005914 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00005915 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5916 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00005917 break;
5918 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00005919 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00005920 // The low part is just a zero extension of the input (which degenerates to
5921 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00005922 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005923
Chris Lattner3e928bb2005-01-07 07:47:09 +00005924 // The high part is just a zero.
5925 Hi = DAG.getConstant(0, NVT);
5926 break;
Chris Lattner35481892005-12-23 00:16:34 +00005927
Chris Lattner4c948eb2007-02-13 23:55:16 +00005928 case ISD::TRUNCATE: {
5929 // The input value must be larger than this value. Expand *it*.
5930 SDOperand NewLo;
5931 ExpandOp(Node->getOperand(0), NewLo, Hi);
5932
5933 // The low part is now either the right size, or it is closer. If not the
5934 // right size, make an illegal truncate so we recursively expand it.
5935 if (NewLo.getValueType() != Node->getValueType(0))
5936 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
5937 ExpandOp(NewLo, Lo, Hi);
5938 break;
5939 }
5940
Chris Lattner35481892005-12-23 00:16:34 +00005941 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005942 SDOperand Tmp;
5943 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
5944 // If the target wants to, allow it to lower this itself.
5945 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5946 case Expand: assert(0 && "cannot expand FP!");
5947 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
5948 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
5949 }
5950 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
5951 }
5952
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005953 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00005954 if (VT == MVT::f32 || VT == MVT::f64) {
5955 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00005956 if (getTypeAction(NVT) == Expand)
5957 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00005958 break;
5959 }
5960
5961 // If source operand will be expanded to the same type as VT, i.e.
5962 // i64 <- f64, i32 <- f32, expand the source operand instead.
5963 MVT::ValueType VT0 = Node->getOperand(0).getValueType();
5964 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
5965 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005966 break;
5967 }
5968
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005969 // Turn this into a load/store pair by default.
5970 if (Tmp.Val == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00005971 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005972
Chris Lattner35481892005-12-23 00:16:34 +00005973 ExpandOp(Tmp, Lo, Hi);
5974 break;
5975 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00005976
Chris Lattner27a6c732007-11-24 07:07:01 +00005977 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00005978 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
5979 TargetLowering::Custom &&
5980 "Must custom expand ReadCycleCounter");
Chris Lattner27a6c732007-11-24 07:07:01 +00005981 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
5982 assert(Tmp.Val && "Node must be custom expanded!");
5983 ExpandOp(Tmp.getValue(0), Lo, Hi);
Chris Lattner308575b2005-11-20 22:56:56 +00005984 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00005985 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00005986 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005987 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00005988
Chris Lattner4e6c7462005-01-08 19:27:05 +00005989 // These operators cannot be expanded directly, emit them as calls to
5990 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00005991 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00005992 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00005993 SDOperand Op;
5994 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5995 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00005996 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
5997 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00005998 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005999
Chris Lattnerf20d1832005-07-30 01:40:57 +00006000 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6001
Chris Lattner80a3e942005-07-29 00:33:32 +00006002 // Now that the custom expander is done, expand the result, which is still
6003 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00006004 if (Op.Val) {
6005 ExpandOp(Op, Lo, Hi);
6006 break;
6007 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006008 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006009
Dale Johannesen161e8972007-10-05 20:04:43 +00006010 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattner4e6c7462005-01-08 19:27:05 +00006011 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00006012 LC = RTLIB::FPTOSINT_F32_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00006013 else if (Node->getOperand(0).getValueType() == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00006014 LC = RTLIB::FPTOSINT_F64_I64;
Dale Johannesen161e8972007-10-05 20:04:43 +00006015 else if (Node->getOperand(0).getValueType() == MVT::f80)
6016 LC = RTLIB::FPTOSINT_F80_I64;
6017 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6018 LC = RTLIB::FPTOSINT_PPCF128_I64;
Evan Cheng56966222007-01-12 02:11:51 +00006019 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
6020 false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006021 break;
Evan Cheng56966222007-01-12 02:11:51 +00006022 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006023
Evan Cheng56966222007-01-12 02:11:51 +00006024 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006025 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006026 SDOperand Op;
6027 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6028 case Expand: assert(0 && "cannot expand FP!");
6029 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6030 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6031 }
6032
6033 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6034
6035 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00006036 if (Op.Val) {
6037 ExpandOp(Op, Lo, Hi);
6038 break;
6039 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006040 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006041
Evan Chengdaccea182007-10-05 01:09:32 +00006042 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattner4e6c7462005-01-08 19:27:05 +00006043 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00006044 LC = RTLIB::FPTOUINT_F32_I64;
Dale Johannesen72292f02007-09-28 18:44:17 +00006045 else if (Node->getOperand(0).getValueType() == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00006046 LC = RTLIB::FPTOUINT_F64_I64;
Dale Johannesen161e8972007-10-05 20:04:43 +00006047 else if (Node->getOperand(0).getValueType() == MVT::f80)
6048 LC = RTLIB::FPTOUINT_F80_I64;
6049 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6050 LC = RTLIB::FPTOUINT_PPCF128_I64;
Evan Cheng56966222007-01-12 02:11:51 +00006051 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
6052 false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006053 break;
Evan Cheng56966222007-01-12 02:11:51 +00006054 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006055
Evan Cheng05a2d562006-01-09 18:31:59 +00006056 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006057 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006058 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006059 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006060 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006061 Op = TLI.LowerOperation(Op, DAG);
6062 if (Op.Val) {
6063 // Now that the custom expander is done, expand the result, which is
6064 // still VT.
6065 ExpandOp(Op, Lo, Hi);
6066 break;
6067 }
6068 }
6069
Chris Lattner79980b02006-09-13 03:50:39 +00006070 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6071 // this X << 1 as X+X.
6072 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
6073 if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
6074 TLI.isOperationLegal(ISD::ADDE, NVT)) {
6075 SDOperand LoOps[2], HiOps[3];
6076 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6077 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6078 LoOps[1] = LoOps[0];
6079 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6080
6081 HiOps[1] = HiOps[0];
6082 HiOps[2] = Lo.getValue(1);
6083 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6084 break;
6085 }
6086 }
6087
Chris Lattnere34b3962005-01-19 04:19:40 +00006088 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006089 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006090 break;
Chris Lattner47599822005-04-02 03:38:53 +00006091
6092 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006093 TargetLowering::LegalizeAction Action =
6094 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6095 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6096 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006097 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006098 break;
6099 }
6100
Chris Lattnere34b3962005-01-19 04:19:40 +00006101 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00006102 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SHL_I64), Node,
6103 false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006104 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006105 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006106
Evan Cheng05a2d562006-01-09 18:31:59 +00006107 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006108 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006109 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006110 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006111 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006112 Op = TLI.LowerOperation(Op, DAG);
6113 if (Op.Val) {
6114 // Now that the custom expander is done, expand the result, which is
6115 // still VT.
6116 ExpandOp(Op, Lo, Hi);
6117 break;
6118 }
6119 }
6120
Chris Lattnere34b3962005-01-19 04:19:40 +00006121 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006122 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006123 break;
Chris Lattner47599822005-04-02 03:38:53 +00006124
6125 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006126 TargetLowering::LegalizeAction Action =
6127 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6128 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6129 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006130 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006131 break;
6132 }
6133
Chris Lattnere34b3962005-01-19 04:19:40 +00006134 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00006135 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRA_I64), Node,
6136 true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006137 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006138 }
6139
6140 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006141 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006142 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006143 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006144 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006145 Op = TLI.LowerOperation(Op, DAG);
6146 if (Op.Val) {
6147 // Now that the custom expander is done, expand the result, which is
6148 // still VT.
6149 ExpandOp(Op, Lo, Hi);
6150 break;
6151 }
6152 }
6153
Chris Lattnere34b3962005-01-19 04:19:40 +00006154 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006155 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006156 break;
Chris Lattner47599822005-04-02 03:38:53 +00006157
6158 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006159 TargetLowering::LegalizeAction Action =
6160 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6161 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6162 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006163 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006164 break;
6165 }
6166
Chris Lattnere34b3962005-01-19 04:19:40 +00006167 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00006168 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRL_I64), Node,
6169 false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006170 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006171 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006172
Misha Brukmanedf128a2005-04-21 22:36:52 +00006173 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006174 case ISD::SUB: {
6175 // If the target wants to custom expand this, let them.
6176 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6177 TargetLowering::Custom) {
6178 Op = TLI.LowerOperation(Op, DAG);
6179 if (Op.Val) {
6180 ExpandOp(Op, Lo, Hi);
6181 break;
6182 }
6183 }
6184
6185 // Expand the subcomponents.
6186 SDOperand LHSL, LHSH, RHSL, RHSH;
6187 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6188 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00006189 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6190 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006191 LoOps[0] = LHSL;
6192 LoOps[1] = RHSL;
6193 HiOps[0] = LHSH;
6194 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006195 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00006196 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006197 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006198 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006199 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00006200 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006201 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006202 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006203 }
Chris Lattner84f67882005-01-20 18:52:28 +00006204 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006205 }
Chris Lattnerb429f732007-05-17 18:15:41 +00006206
6207 case ISD::ADDC:
6208 case ISD::SUBC: {
6209 // Expand the subcomponents.
6210 SDOperand LHSL, LHSH, RHSL, RHSH;
6211 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6212 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6213 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6214 SDOperand LoOps[2] = { LHSL, RHSL };
6215 SDOperand HiOps[3] = { LHSH, RHSH };
6216
6217 if (Node->getOpcode() == ISD::ADDC) {
6218 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6219 HiOps[2] = Lo.getValue(1);
6220 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6221 } else {
6222 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6223 HiOps[2] = Lo.getValue(1);
6224 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6225 }
6226 // Remember that we legalized the flag.
6227 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6228 break;
6229 }
6230 case ISD::ADDE:
6231 case ISD::SUBE: {
6232 // Expand the subcomponents.
6233 SDOperand LHSL, LHSH, RHSL, RHSH;
6234 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6235 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6236 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6237 SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6238 SDOperand HiOps[3] = { LHSH, RHSH };
6239
6240 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6241 HiOps[2] = Lo.getValue(1);
6242 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6243
6244 // Remember that we legalized the flag.
6245 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6246 break;
6247 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006248 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006249 // If the target wants to custom expand this, let them.
6250 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00006251 SDOperand New = TLI.LowerOperation(Op, DAG);
6252 if (New.Val) {
6253 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006254 break;
6255 }
6256 }
6257
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006258 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6259 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00006260 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6261 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6262 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Nate Begemanc7c16572005-04-11 03:01:51 +00006263 SDOperand LL, LH, RL, RH;
6264 ExpandOp(Node->getOperand(0), LL, LH);
6265 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman525178c2007-10-08 18:33:35 +00006266 unsigned BitSize = MVT::getSizeInBits(RH.getValueType());
6267 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6268 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
6269 // FIXME: generalize this to handle other bit sizes
6270 if (LHSSB == 32 && RHSSB == 32 &&
6271 DAG.MaskedValueIsZero(Op.getOperand(0), 0xFFFFFFFF00000000ULL) &&
6272 DAG.MaskedValueIsZero(Op.getOperand(1), 0xFFFFFFFF00000000ULL)) {
6273 // The inputs are both zero-extended.
6274 if (HasUMUL_LOHI) {
6275 // We can emit a umul_lohi.
6276 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6277 Hi = SDOperand(Lo.Val, 1);
6278 break;
6279 }
6280 if (HasMULHU) {
6281 // We can emit a mulhu+mul.
6282 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6283 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6284 break;
6285 }
Dan Gohman525178c2007-10-08 18:33:35 +00006286 }
6287 if (LHSSB > BitSize && RHSSB > BitSize) {
6288 // The input values are both sign-extended.
6289 if (HasSMUL_LOHI) {
6290 // We can emit a smul_lohi.
6291 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6292 Hi = SDOperand(Lo.Val, 1);
6293 break;
6294 }
6295 if (HasMULHS) {
6296 // We can emit a mulhs+mul.
6297 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6298 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6299 break;
6300 }
6301 }
6302 if (HasUMUL_LOHI) {
6303 // Lo,Hi = umul LHS, RHS.
6304 SDOperand UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
6305 DAG.getVTList(NVT, NVT), LL, RL);
6306 Lo = UMulLOHI;
6307 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00006308 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6309 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6310 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6311 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00006312 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00006313 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00006314 if (HasMULHU) {
6315 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6316 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6317 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6318 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6319 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6320 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6321 break;
6322 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006323 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006324
Dan Gohman525178c2007-10-08 18:33:35 +00006325 // If nothing else, we can make a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00006326 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::MUL_I64), Node,
6327 false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00006328 break;
6329 }
Evan Cheng56966222007-01-12 02:11:51 +00006330 case ISD::SDIV:
6331 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SDIV_I64), Node, true, Hi);
6332 break;
6333 case ISD::UDIV:
6334 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UDIV_I64), Node, true, Hi);
6335 break;
6336 case ISD::SREM:
6337 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SREM_I64), Node, true, Hi);
6338 break;
6339 case ISD::UREM:
6340 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UREM_I64), Node, true, Hi);
6341 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00006342
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006343 case ISD::FADD:
Duncan Sands007f9842008-01-10 10:28:30 +00006344 Lo = ExpandLibCall(TLI.getLibcallName(GetFPLibCall(VT, RTLIB::ADD_F32,
6345 RTLIB::ADD_F64,
6346 RTLIB::ADD_F80,
6347 RTLIB::ADD_PPCF128)),
Evan Cheng56966222007-01-12 02:11:51 +00006348 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006349 break;
6350 case ISD::FSUB:
Duncan Sands007f9842008-01-10 10:28:30 +00006351 Lo = ExpandLibCall(TLI.getLibcallName(GetFPLibCall(VT, RTLIB::SUB_F32,
6352 RTLIB::SUB_F64,
6353 RTLIB::SUB_F80,
6354 RTLIB::SUB_PPCF128)),
Evan Cheng56966222007-01-12 02:11:51 +00006355 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006356 break;
6357 case ISD::FMUL:
Duncan Sands007f9842008-01-10 10:28:30 +00006358 Lo = ExpandLibCall(TLI.getLibcallName(GetFPLibCall(VT, RTLIB::MUL_F32,
6359 RTLIB::MUL_F64,
6360 RTLIB::MUL_F80,
6361 RTLIB::MUL_PPCF128)),
Evan Cheng56966222007-01-12 02:11:51 +00006362 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006363 break;
6364 case ISD::FDIV:
Duncan Sands007f9842008-01-10 10:28:30 +00006365 Lo = ExpandLibCall(TLI.getLibcallName(GetFPLibCall(VT, RTLIB::DIV_F32,
6366 RTLIB::DIV_F64,
6367 RTLIB::DIV_F80,
6368 RTLIB::DIV_PPCF128)),
Evan Cheng56966222007-01-12 02:11:51 +00006369 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006370 break;
6371 case ISD::FP_EXTEND:
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006372 if (VT == MVT::ppcf128) {
6373 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6374 Node->getOperand(0).getValueType()==MVT::f64);
6375 const uint64_t zero = 0;
6376 if (Node->getOperand(0).getValueType()==MVT::f32)
6377 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6378 else
6379 Hi = Node->getOperand(0);
6380 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6381 break;
6382 }
Evan Cheng56966222007-01-12 02:11:51 +00006383 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPEXT_F32_F64), Node, true,Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006384 break;
6385 case ISD::FP_ROUND:
Evan Cheng56966222007-01-12 02:11:51 +00006386 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPROUND_F64_F32),Node,true,Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006387 break;
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006388 case ISD::FPOWI:
Duncan Sands007f9842008-01-10 10:28:30 +00006389 Lo = ExpandLibCall(TLI.getLibcallName(GetFPLibCall(VT, RTLIB::POWI_F32,
6390 RTLIB::POWI_F64,
6391 RTLIB::POWI_F80,
6392 RTLIB::POWI_PPCF128)),
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006393 Node, false, Hi);
6394 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006395 case ISD::FSQRT:
6396 case ISD::FSIN:
6397 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00006398 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006399 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006400 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00006401 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6402 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006403 break;
6404 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00006405 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6406 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006407 break;
6408 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00006409 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6410 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006411 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006412 default: assert(0 && "Unreachable!");
6413 }
Evan Cheng56966222007-01-12 02:11:51 +00006414 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006415 break;
6416 }
Evan Cheng966bf242006-12-16 00:52:40 +00006417 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006418 if (VT == MVT::ppcf128) {
6419 SDOperand Tmp;
6420 ExpandOp(Node->getOperand(0), Lo, Tmp);
6421 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6422 // lo = hi==fabs(hi) ? lo : -lo;
6423 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6424 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6425 DAG.getCondCode(ISD::SETEQ));
6426 break;
6427 }
Evan Cheng966bf242006-12-16 00:52:40 +00006428 SDOperand Mask = (VT == MVT::f64)
6429 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6430 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6431 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6432 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6433 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6434 if (getTypeAction(NVT) == Expand)
6435 ExpandOp(Lo, Lo, Hi);
6436 break;
6437 }
6438 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006439 if (VT == MVT::ppcf128) {
6440 ExpandOp(Node->getOperand(0), Lo, Hi);
6441 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6442 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6443 break;
6444 }
Evan Cheng966bf242006-12-16 00:52:40 +00006445 SDOperand Mask = (VT == MVT::f64)
6446 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6447 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6448 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6449 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6450 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6451 if (getTypeAction(NVT) == Expand)
6452 ExpandOp(Lo, Lo, Hi);
6453 break;
6454 }
Evan Cheng912095b2007-01-04 21:56:39 +00006455 case ISD::FCOPYSIGN: {
6456 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6457 if (getTypeAction(NVT) == Expand)
6458 ExpandOp(Lo, Lo, Hi);
6459 break;
6460 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006461 case ISD::SINT_TO_FP:
6462 case ISD::UINT_TO_FP: {
6463 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
6464 MVT::ValueType SrcVT = Node->getOperand(0).getValueType();
Dale Johannesen6e63e092007-10-12 17:52:03 +00006465 if (VT == MVT::ppcf128 && SrcVT != MVT::i64) {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006466 static uint64_t zero = 0;
6467 if (isSigned) {
6468 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6469 Node->getOperand(0)));
6470 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6471 } else {
6472 static uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
6473 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6474 Node->getOperand(0)));
6475 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6476 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006477 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006478 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6479 DAG.getConstant(0, MVT::i32),
6480 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6481 DAG.getConstantFP(
6482 APFloat(APInt(128, 2, TwoE32)),
6483 MVT::ppcf128)),
6484 Hi,
6485 DAG.getCondCode(ISD::SETLT)),
6486 Lo, Hi);
6487 }
6488 break;
6489 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006490 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6491 // si64->ppcf128 done by libcall, below
6492 static uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
6493 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6494 Lo, Hi);
6495 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6496 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6497 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6498 DAG.getConstant(0, MVT::i64),
6499 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6500 DAG.getConstantFP(
6501 APFloat(APInt(128, 2, TwoE64)),
6502 MVT::ppcf128)),
6503 Hi,
6504 DAG.getCondCode(ISD::SETLT)),
6505 Lo, Hi);
6506 break;
6507 }
Evan Cheng64f638d2007-09-27 07:35:39 +00006508 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng7df28dc2006-12-19 01:44:04 +00006509 if (Node->getOperand(0).getValueType() == MVT::i64) {
6510 if (VT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00006511 LC = isSigned ? RTLIB::SINTTOFP_I64_F32 : RTLIB::UINTTOFP_I64_F32;
Dale Johannesen73328d12007-09-19 23:55:34 +00006512 else if (VT == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00006513 LC = isSigned ? RTLIB::SINTTOFP_I64_F64 : RTLIB::UINTTOFP_I64_F64;
Dale Johannesen161e8972007-10-05 20:04:43 +00006514 else if (VT == MVT::f80) {
Dale Johannesen73328d12007-09-19 23:55:34 +00006515 assert(isSigned);
Dale Johannesen161e8972007-10-05 20:04:43 +00006516 LC = RTLIB::SINTTOFP_I64_F80;
6517 }
6518 else if (VT == MVT::ppcf128) {
6519 assert(isSigned);
6520 LC = RTLIB::SINTTOFP_I64_PPCF128;
Dale Johannesen73328d12007-09-19 23:55:34 +00006521 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006522 } else {
6523 if (VT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00006524 LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
Evan Cheng7df28dc2006-12-19 01:44:04 +00006525 else
Evan Cheng56966222007-01-12 02:11:51 +00006526 LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
Evan Cheng7df28dc2006-12-19 01:44:04 +00006527 }
6528
6529 // Promote the operand if needed.
6530 if (getTypeAction(SrcVT) == Promote) {
6531 SDOperand Tmp = PromoteOp(Node->getOperand(0));
6532 Tmp = isSigned
6533 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6534 DAG.getValueType(SrcVT))
6535 : DAG.getZeroExtendInReg(Tmp, SrcVT);
6536 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
6537 }
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006538
6539 const char *LibCall = TLI.getLibcallName(LC);
6540 if (LibCall)
6541 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Hi);
6542 else {
6543 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6544 Node->getOperand(0));
6545 if (getTypeAction(Lo.getValueType()) == Expand)
6546 ExpandOp(Lo, Lo, Hi);
6547 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006548 break;
6549 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006550 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006551
Chris Lattner83397362005-12-21 18:02:52 +00006552 // Make sure the resultant values have been legalized themselves, unless this
6553 // is a type that requires multi-step expansion.
6554 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6555 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00006556 if (Hi.Val)
6557 // Don't legalize the high part if it is expanded to a single node.
6558 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006559 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006560
6561 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00006562 bool isNew = ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi)));
Evan Cheng05a2d562006-01-09 18:31:59 +00006563 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006564}
6565
Dan Gohman7f321562007-06-25 16:23:39 +00006566/// SplitVectorOp - Given an operand of vector type, break it down into
6567/// two smaller values, still of vector type.
Chris Lattnerc7029802006-03-18 01:44:44 +00006568void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
6569 SDOperand &Hi) {
Dan Gohman7f321562007-06-25 16:23:39 +00006570 assert(MVT::isVector(Op.getValueType()) && "Cannot split non-vector type!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006571 SDNode *Node = Op.Val;
Dan Gohmane40c7b02007-09-24 15:54:53 +00006572 unsigned NumElements = MVT::getVectorNumElements(Op.getValueType());
Chris Lattnerc7029802006-03-18 01:44:44 +00006573 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00006574
Dan Gohmane40c7b02007-09-24 15:54:53 +00006575 MVT::ValueType NewEltVT = MVT::getVectorElementType(Op.getValueType());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006576
6577 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6578 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6579
6580 MVT::ValueType NewVT_Lo = MVT::getVectorType(NewEltVT, NewNumElts_Lo);
6581 MVT::ValueType NewVT_Hi = MVT::getVectorType(NewEltVT, NewNumElts_Hi);
6582
Chris Lattnerc7029802006-03-18 01:44:44 +00006583 // See if we already split it.
6584 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
6585 = SplitNodes.find(Op);
6586 if (I != SplitNodes.end()) {
6587 Lo = I->second.first;
6588 Hi = I->second.second;
6589 return;
6590 }
6591
6592 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006593 default:
6594#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006595 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006596#endif
6597 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00006598 case ISD::UNDEF:
6599 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6600 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6601 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006602 case ISD::BUILD_PAIR:
6603 Lo = Node->getOperand(0);
6604 Hi = Node->getOperand(1);
6605 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006606 case ISD::INSERT_VECTOR_ELT: {
6607 SplitVectorOp(Node->getOperand(0), Lo, Hi);
6608 unsigned Index = cast<ConstantSDNode>(Node->getOperand(2))->getValue();
6609 SDOperand ScalarOp = Node->getOperand(1);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006610 if (Index < NewNumElts_Lo)
6611 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
Dan Gohman9fe46622007-09-28 23:53:40 +00006612 DAG.getConstant(Index, TLI.getPointerTy()));
6613 else
Nate Begeman5db1afb2007-11-15 21:15:26 +00006614 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6615 DAG.getConstant(Index - NewNumElts_Lo,
6616 TLI.getPointerTy()));
Dan Gohman9fe46622007-09-28 23:53:40 +00006617 break;
6618 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00006619 case ISD::VECTOR_SHUFFLE: {
6620 // Build the low part.
6621 SDOperand Mask = Node->getOperand(2);
6622 SmallVector<SDOperand, 8> Ops;
6623 MVT::ValueType PtrVT = TLI.getPointerTy();
6624
6625 // Insert all of the elements from the input that are needed. We use
6626 // buildvector of extractelement here because the input vectors will have
6627 // to be legalized, so this makes the code simpler.
6628 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
6629 unsigned Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getValue();
6630 SDOperand InVec = Node->getOperand(0);
6631 if (Idx >= NumElements) {
6632 InVec = Node->getOperand(1);
6633 Idx -= NumElements;
6634 }
6635 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6636 DAG.getConstant(Idx, PtrVT)));
6637 }
6638 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6639 Ops.clear();
6640
6641 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
6642 unsigned Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getValue();
6643 SDOperand InVec = Node->getOperand(0);
6644 if (Idx >= NumElements) {
6645 InVec = Node->getOperand(1);
6646 Idx -= NumElements;
6647 }
6648 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6649 DAG.getConstant(Idx, PtrVT)));
6650 }
6651 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6652 break;
6653 }
Dan Gohman7f321562007-06-25 16:23:39 +00006654 case ISD::BUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006655 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00006656 Node->op_begin()+NewNumElts_Lo);
6657 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006658
Nate Begeman5db1afb2007-11-15 21:15:26 +00006659 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00006660 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006661 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006662 break;
6663 }
Dan Gohman7f321562007-06-25 16:23:39 +00006664 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00006665 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00006666 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6667 if (NewNumSubvectors == 1) {
6668 Lo = Node->getOperand(0);
6669 Hi = Node->getOperand(1);
6670 } else {
6671 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
6672 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006673 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00006674
Dan Gohman7f321562007-06-25 16:23:39 +00006675 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors,
6676 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006677 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00006678 }
Dan Gohman65956352007-06-13 15:12:02 +00006679 break;
6680 }
Dan Gohmanc6230962007-10-17 14:48:28 +00006681 case ISD::SELECT: {
6682 SDOperand Cond = Node->getOperand(0);
6683
6684 SDOperand LL, LH, RL, RH;
6685 SplitVectorOp(Node->getOperand(1), LL, LH);
6686 SplitVectorOp(Node->getOperand(2), RL, RH);
6687
6688 if (MVT::isVector(Cond.getValueType())) {
6689 // Handle a vector merge.
6690 SDOperand CL, CH;
6691 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006692 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6693 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006694 } else {
6695 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00006696 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6697 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006698 }
6699 break;
6700 }
Dan Gohman7f321562007-06-25 16:23:39 +00006701 case ISD::ADD:
6702 case ISD::SUB:
6703 case ISD::MUL:
6704 case ISD::FADD:
6705 case ISD::FSUB:
6706 case ISD::FMUL:
6707 case ISD::SDIV:
6708 case ISD::UDIV:
6709 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00006710 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006711 case ISD::AND:
6712 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00006713 case ISD::XOR:
6714 case ISD::UREM:
6715 case ISD::SREM:
6716 case ISD::FREM: {
Chris Lattnerc7029802006-03-18 01:44:44 +00006717 SDOperand LL, LH, RL, RH;
6718 SplitVectorOp(Node->getOperand(0), LL, LH);
6719 SplitVectorOp(Node->getOperand(1), RL, RH);
6720
Nate Begeman5db1afb2007-11-15 21:15:26 +00006721 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
6722 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00006723 break;
6724 }
Dan Gohman82669522007-10-11 23:57:53 +00006725 case ISD::FPOWI: {
6726 SDOperand L, H;
6727 SplitVectorOp(Node->getOperand(0), L, H);
6728
Nate Begeman5db1afb2007-11-15 21:15:26 +00006729 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
6730 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00006731 break;
6732 }
6733 case ISD::CTTZ:
6734 case ISD::CTLZ:
6735 case ISD::CTPOP:
6736 case ISD::FNEG:
6737 case ISD::FABS:
6738 case ISD::FSQRT:
6739 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00006740 case ISD::FCOS:
6741 case ISD::FP_TO_SINT:
6742 case ISD::FP_TO_UINT:
6743 case ISD::SINT_TO_FP:
6744 case ISD::UINT_TO_FP: {
Dan Gohman82669522007-10-11 23:57:53 +00006745 SDOperand L, H;
6746 SplitVectorOp(Node->getOperand(0), L, H);
6747
Nate Begeman5db1afb2007-11-15 21:15:26 +00006748 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
6749 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00006750 break;
6751 }
Dan Gohman7f321562007-06-25 16:23:39 +00006752 case ISD::LOAD: {
6753 LoadSDNode *LD = cast<LoadSDNode>(Node);
6754 SDOperand Ch = LD->getChain();
6755 SDOperand Ptr = LD->getBasePtr();
6756 const Value *SV = LD->getSrcValue();
6757 int SVOffset = LD->getSrcValueOffset();
6758 unsigned Alignment = LD->getAlignment();
6759 bool isVolatile = LD->isVolatile();
6760
Nate Begeman5db1afb2007-11-15 21:15:26 +00006761 Lo = DAG.getLoad(NewVT_Lo, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
6762 unsigned IncrementSize = NewNumElts_Lo * MVT::getSizeInBits(NewEltVT)/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00006763 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006764 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006765 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006766 Alignment = MinAlign(Alignment, IncrementSize);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006767 Hi = DAG.getLoad(NewVT_Hi, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00006768
6769 // Build a factor node to remember that this load is independent of the
6770 // other one.
6771 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
6772 Hi.getValue(1));
6773
6774 // Remember that we legalized the chain.
6775 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00006776 break;
6777 }
Dan Gohman7f321562007-06-25 16:23:39 +00006778 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00006779 // We know the result is a vector. The input may be either a vector or a
6780 // scalar value.
Dan Gohman10a7aa62007-06-29 00:09:08 +00006781 SDOperand InOp = Node->getOperand(0);
6782 if (!MVT::isVector(InOp.getValueType()) ||
6783 MVT::getVectorNumElements(InOp.getValueType()) == 1) {
6784 // The input is a scalar or single-element vector.
6785 // Lower to a store/load so that it can be split.
6786 // FIXME: this could be improved probably.
Chris Lattner85dd3be2007-10-15 17:48:57 +00006787 SDOperand Ptr = DAG.CreateStackTemporary(InOp.getValueType());
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00006788 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(Ptr.Val);
Chris Lattner7692eb42006-03-23 21:16:34 +00006789
Evan Cheng786225a2006-10-05 23:01:46 +00006790 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00006791 InOp, Ptr,
Dan Gohman3069b872008-02-07 18:41:25 +00006792 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00006793 FI->getIndex());
6794 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohman3069b872008-02-07 18:41:25 +00006795 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00006796 FI->getIndex());
Chris Lattner7692eb42006-03-23 21:16:34 +00006797 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00006798 // Split the vector and convert each of the pieces now.
6799 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006800 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
6801 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00006802 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00006803 }
Chris Lattnerc7029802006-03-18 01:44:44 +00006804 }
6805
6806 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00006807 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00006808 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00006809 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00006810}
6811
6812
Dan Gohman89b20c02007-06-27 14:06:22 +00006813/// ScalarizeVectorOp - Given an operand of single-element vector type
6814/// (e.g. v1f32), convert it into the equivalent operation that returns a
6815/// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +00006816SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) {
6817 assert(MVT::isVector(Op.getValueType()) &&
6818 "Bad ScalarizeVectorOp invocation!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006819 SDNode *Node = Op.Val;
Dan Gohman7f321562007-06-25 16:23:39 +00006820 MVT::ValueType NewVT = MVT::getVectorElementType(Op.getValueType());
6821 assert(MVT::getVectorNumElements(Op.getValueType()) == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00006822
Dan Gohman7f321562007-06-25 16:23:39 +00006823 // See if we already scalarized it.
6824 std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op);
6825 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00006826
6827 SDOperand Result;
6828 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00006829 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006830#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006831 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006832#endif
Dan Gohman7f321562007-06-25 16:23:39 +00006833 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
6834 case ISD::ADD:
6835 case ISD::FADD:
6836 case ISD::SUB:
6837 case ISD::FSUB:
6838 case ISD::MUL:
6839 case ISD::FMUL:
6840 case ISD::SDIV:
6841 case ISD::UDIV:
6842 case ISD::FDIV:
6843 case ISD::SREM:
6844 case ISD::UREM:
6845 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00006846 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006847 case ISD::AND:
6848 case ISD::OR:
6849 case ISD::XOR:
6850 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00006851 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00006852 ScalarizeVectorOp(Node->getOperand(0)),
6853 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00006854 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006855 case ISD::FNEG:
6856 case ISD::FABS:
6857 case ISD::FSQRT:
6858 case ISD::FSIN:
6859 case ISD::FCOS:
6860 Result = DAG.getNode(Node->getOpcode(),
6861 NewVT,
6862 ScalarizeVectorOp(Node->getOperand(0)));
6863 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00006864 case ISD::FPOWI:
6865 Result = DAG.getNode(Node->getOpcode(),
6866 NewVT,
6867 ScalarizeVectorOp(Node->getOperand(0)),
6868 Node->getOperand(1));
6869 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006870 case ISD::LOAD: {
6871 LoadSDNode *LD = cast<LoadSDNode>(Node);
6872 SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
6873 SDOperand Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00006874
Dan Gohman7f321562007-06-25 16:23:39 +00006875 const Value *SV = LD->getSrcValue();
6876 int SVOffset = LD->getSrcValueOffset();
6877 Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset,
6878 LD->isVolatile(), LD->getAlignment());
6879
Chris Lattnerc7029802006-03-18 01:44:44 +00006880 // Remember that we legalized the chain.
6881 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
6882 break;
6883 }
Dan Gohman7f321562007-06-25 16:23:39 +00006884 case ISD::BUILD_VECTOR:
6885 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00006886 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006887 case ISD::INSERT_VECTOR_ELT:
6888 // Returning the inserted scalar element.
6889 Result = Node->getOperand(1);
6890 break;
6891 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00006892 assert(Node->getOperand(0).getValueType() == NewVT &&
6893 "Concat of non-legal vectors not yet supported!");
6894 Result = Node->getOperand(0);
6895 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006896 case ISD::VECTOR_SHUFFLE: {
6897 // Figure out if the scalar is the LHS or RHS and return it.
6898 SDOperand EltNum = Node->getOperand(2).getOperand(0);
6899 if (cast<ConstantSDNode>(EltNum)->getValue())
6900 Result = ScalarizeVectorOp(Node->getOperand(1));
6901 else
6902 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00006903 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006904 }
6905 case ISD::EXTRACT_SUBVECTOR:
6906 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00006907 assert(Result.getValueType() == NewVT);
6908 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006909 case ISD::BIT_CONVERT:
6910 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
Chris Lattner5b2316e2006-03-28 20:24:43 +00006911 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006912 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00006913 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00006914 ScalarizeVectorOp(Op.getOperand(1)),
6915 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00006916 break;
Chris Lattnerc7029802006-03-18 01:44:44 +00006917 }
6918
6919 if (TLI.isTypeLegal(NewVT))
6920 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00006921 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
6922 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00006923 return Result;
6924}
6925
Chris Lattner3e928bb2005-01-07 07:47:09 +00006926
6927// SelectionDAG::Legalize - This is the entry point for the file.
6928//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00006929void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00006930 if (ViewLegalizeDAGs) viewGraph();
6931
Chris Lattner3e928bb2005-01-07 07:47:09 +00006932 /// run - This is the main entry point to this class.
6933 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00006934 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006935}
6936