Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1 | //===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===// |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the SelectionDAG::Legalize method. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "llvm/CodeGen/SelectionDAG.h" |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 15 | #include "llvm/CodeGen/MachineFunction.h" |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 16 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/PseudoSourceValue.h" |
Evan Cheng | 61bbbab | 2007-08-16 23:50:06 +0000 | [diff] [blame] | 20 | #include "llvm/Target/TargetFrameInfo.h" |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 21 | #include "llvm/Target/TargetLowering.h" |
Chris Lattner | e1bd822 | 2005-01-11 05:57:22 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetData.h" |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 23 | #include "llvm/Target/TargetMachine.h" |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 24 | #include "llvm/Target/TargetOptions.h" |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 25 | #include "llvm/Target/TargetSubtarget.h" |
Chris Lattner | adf6a96 | 2005-05-13 18:50:42 +0000 | [diff] [blame] | 26 | #include "llvm/CallingConv.h" |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 27 | #include "llvm/Constants.h" |
Reid Spencer | c103057 | 2007-01-19 21:13:56 +0000 | [diff] [blame] | 28 | #include "llvm/DerivedTypes.h" |
Chris Lattner | 5e46a19 | 2006-04-02 03:07:27 +0000 | [diff] [blame] | 29 | #include "llvm/Support/CommandLine.h" |
Chris Lattner | a4f0b3a | 2006-08-27 12:54:02 +0000 | [diff] [blame] | 30 | #include "llvm/Support/Compiler.h" |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 31 | #include "llvm/Support/MathExtras.h" |
Chris Lattner | 7971514 | 2007-02-03 01:12:36 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/DenseMap.h" |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/SmallVector.h" |
Chris Lattner | 00755df | 2007-02-04 00:27:56 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/SmallPtrSet.h" |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 35 | #include <map> |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 36 | using namespace llvm; |
| 37 | |
Chris Lattner | 5e46a19 | 2006-04-02 03:07:27 +0000 | [diff] [blame] | 38 | #ifndef NDEBUG |
| 39 | static cl::opt<bool> |
| 40 | ViewLegalizeDAGs("view-legalize-dags", cl::Hidden, |
| 41 | cl::desc("Pop up a window to show dags before legalize")); |
| 42 | #else |
| 43 | static const bool ViewLegalizeDAGs = 0; |
| 44 | #endif |
| 45 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 46 | //===----------------------------------------------------------------------===// |
| 47 | /// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and |
| 48 | /// hacks on it until the target machine can handle it. This involves |
| 49 | /// eliminating value sizes the machine cannot handle (promoting small sizes to |
| 50 | /// large sizes or splitting up large values into small values) as well as |
| 51 | /// eliminating operations the machine cannot handle. |
| 52 | /// |
| 53 | /// This code also does a small amount of optimization and recognition of idioms |
| 54 | /// as part of its processing. For example, if a target does not support a |
| 55 | /// 'setcc' instruction efficiently, but does support 'brcc' instruction, this |
| 56 | /// will attempt merge setcc and brc instructions into brcc's. |
| 57 | /// |
| 58 | namespace { |
Chris Lattner | 360e820 | 2006-06-28 21:58:30 +0000 | [diff] [blame] | 59 | class VISIBILITY_HIDDEN SelectionDAGLegalize { |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 60 | TargetLowering &TLI; |
| 61 | SelectionDAG &DAG; |
| 62 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 63 | // Libcall insertion helpers. |
| 64 | |
| 65 | /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been |
| 66 | /// legalized. We use this to ensure that calls are properly serialized |
| 67 | /// against each other, including inserted libcalls. |
| 68 | SDOperand LastCALLSEQ_END; |
| 69 | |
| 70 | /// IsLegalizingCall - This member is used *only* for purposes of providing |
| 71 | /// helpful assertions that a libcall isn't created while another call is |
| 72 | /// being legalized (which could lead to non-serialized call sequences). |
| 73 | bool IsLegalizingCall; |
| 74 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 75 | enum LegalizeAction { |
Chris Lattner | 68a17fe | 2006-01-29 08:42:06 +0000 | [diff] [blame] | 76 | Legal, // The target natively supports this operation. |
| 77 | Promote, // This operation should be executed in a larger type. |
Chris Lattner | d74ea2b | 2006-05-24 17:04:05 +0000 | [diff] [blame] | 78 | Expand // Try to expand this to other ops, otherwise use a libcall. |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 79 | }; |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 80 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 81 | /// ValueTypeActions - This is a bitvector that contains two bits for each |
| 82 | /// value type, where the two bits correspond to the LegalizeAction enum. |
| 83 | /// This can be queried with "getTypeAction(VT)". |
Chris Lattner | 68a17fe | 2006-01-29 08:42:06 +0000 | [diff] [blame] | 84 | TargetLowering::ValueTypeActionImpl ValueTypeActions; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 85 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 86 | /// LegalizedNodes - For nodes that are of legal width, and that have more |
| 87 | /// than one use, this map indicates what regularized operand to use. This |
| 88 | /// allows us to avoid legalizing the same thing more than once. |
Roman Levenstein | 9cac525 | 2008-04-16 16:15:27 +0000 | [diff] [blame] | 89 | DenseMap<SDOperand, SDOperand> LegalizedNodes; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 90 | |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 91 | /// PromotedNodes - For nodes that are below legal width, and that have more |
| 92 | /// than one use, this map indicates what promoted value to use. This allows |
| 93 | /// us to avoid promoting the same thing more than once. |
Roman Levenstein | 9cac525 | 2008-04-16 16:15:27 +0000 | [diff] [blame] | 94 | DenseMap<SDOperand, SDOperand> PromotedNodes; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 95 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 96 | /// ExpandedNodes - For nodes that need to be expanded this map indicates |
| 97 | /// which which operands are the expanded version of the input. This allows |
| 98 | /// us to avoid expanding the same node more than once. |
Roman Levenstein | 9cac525 | 2008-04-16 16:15:27 +0000 | [diff] [blame] | 99 | DenseMap<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 100 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 101 | /// SplitNodes - For vector nodes that need to be split, this map indicates |
| 102 | /// which which operands are the split version of the input. This allows us |
| 103 | /// to avoid splitting the same node more than once. |
| 104 | std::map<SDOperand, std::pair<SDOperand, SDOperand> > SplitNodes; |
| 105 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 106 | /// ScalarizedNodes - For nodes that need to be converted from vector types to |
| 107 | /// scalar types, this contains the mapping of ones we have already |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 108 | /// processed to the result. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 109 | std::map<SDOperand, SDOperand> ScalarizedNodes; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 110 | |
Chris Lattner | 8afc48e | 2005-01-07 22:28:47 +0000 | [diff] [blame] | 111 | void AddLegalizedOperand(SDOperand From, SDOperand To) { |
Chris Lattner | 69a889e | 2005-12-20 00:53:54 +0000 | [diff] [blame] | 112 | LegalizedNodes.insert(std::make_pair(From, To)); |
| 113 | // If someone requests legalization of the new node, return itself. |
| 114 | if (From != To) |
| 115 | LegalizedNodes.insert(std::make_pair(To, To)); |
Chris Lattner | 8afc48e | 2005-01-07 22:28:47 +0000 | [diff] [blame] | 116 | } |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 117 | void AddPromotedOperand(SDOperand From, SDOperand To) { |
Chris Lattner | 40030bf | 2007-02-04 01:17:38 +0000 | [diff] [blame] | 118 | bool isNew = PromotedNodes.insert(std::make_pair(From, To)); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 119 | assert(isNew && "Got into the map somehow?"); |
Chris Lattner | 69a889e | 2005-12-20 00:53:54 +0000 | [diff] [blame] | 120 | // If someone requests legalization of the new node, return itself. |
| 121 | LegalizedNodes.insert(std::make_pair(To, To)); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 122 | } |
Chris Lattner | 8afc48e | 2005-01-07 22:28:47 +0000 | [diff] [blame] | 123 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 124 | public: |
| 125 | |
Chris Lattner | 9c32d3b | 2005-01-23 04:42:50 +0000 | [diff] [blame] | 126 | SelectionDAGLegalize(SelectionDAG &DAG); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 127 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 128 | /// getTypeAction - Return how we should legalize values of this type, either |
| 129 | /// it is already legal or we need to expand it into multiple registers of |
| 130 | /// smaller integer type, or we need to promote it to a larger type. |
| 131 | LegalizeAction getTypeAction(MVT::ValueType VT) const { |
Chris Lattner | 68a17fe | 2006-01-29 08:42:06 +0000 | [diff] [blame] | 132 | return (LegalizeAction)ValueTypeActions.getTypeAction(VT); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | /// isTypeLegal - Return true if this type is legal on this target. |
| 136 | /// |
| 137 | bool isTypeLegal(MVT::ValueType VT) const { |
| 138 | return getTypeAction(VT) == Legal; |
| 139 | } |
| 140 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 141 | void LegalizeDAG(); |
| 142 | |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 143 | private: |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 144 | /// HandleOp - Legalize, Promote, or Expand the specified operand as |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 145 | /// appropriate for its type. |
| 146 | void HandleOp(SDOperand Op); |
| 147 | |
| 148 | /// LegalizeOp - We know that the specified value has a legal type. |
| 149 | /// Recursively ensure that the operands have legal types, then return the |
| 150 | /// result. |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 151 | SDOperand LegalizeOp(SDOperand O); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 152 | |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 153 | /// UnrollVectorOp - We know that the given vector has a legal type, however |
| 154 | /// the operation it performs is not legal and is an operation that we have |
| 155 | /// no way of lowering. "Unroll" the vector, splitting out the scalars and |
| 156 | /// operating on each element individually. |
| 157 | SDOperand UnrollVectorOp(SDOperand O); |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 158 | |
| 159 | /// PerformInsertVectorEltInMemory - Some target cannot handle a variable |
| 160 | /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it |
| 161 | /// is necessary to spill the vector being inserted into to memory, perform |
| 162 | /// the insert there, and then read the result back. |
| 163 | SDOperand PerformInsertVectorEltInMemory(SDOperand Vec, SDOperand Val, |
| 164 | SDOperand Idx); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 165 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 166 | /// PromoteOp - Given an operation that produces a value in an invalid type, |
| 167 | /// promote it to compute the value into a larger type. The produced value |
| 168 | /// will have the correct bits for the low portion of the register, but no |
| 169 | /// guarantee is made about the top bits: it may be zero, sign-extended, or |
| 170 | /// garbage. |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 171 | SDOperand PromoteOp(SDOperand O); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 172 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 173 | /// ExpandOp - Expand the specified SDOperand into its two component pieces |
| 174 | /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, |
| 175 | /// the LegalizeNodes map is filled in for any results that are not expanded, |
| 176 | /// the ExpandedNodes map is filled in for any results that are expanded, and |
| 177 | /// the Lo/Hi values are returned. This applies to integer types and Vector |
| 178 | /// types. |
| 179 | void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi); |
| 180 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 181 | /// SplitVectorOp - Given an operand of vector type, break it down into |
| 182 | /// two smaller values. |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 183 | void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi); |
| 184 | |
Dan Gohman | 89b20c0 | 2007-06-27 14:06:22 +0000 | [diff] [blame] | 185 | /// ScalarizeVectorOp - Given an operand of single-element vector type |
| 186 | /// (e.g. v1f32), convert it into the equivalent operation that returns a |
| 187 | /// scalar (e.g. f32) value. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 188 | SDOperand ScalarizeVectorOp(SDOperand O); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 189 | |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 190 | /// isShuffleLegal - Return true if a vector shuffle is legal with the |
| 191 | /// specified mask and type. Targets can specify exactly which masks they |
| 192 | /// support and the code generator is tasked with not creating illegal masks. |
| 193 | /// |
| 194 | /// Note that this will also return true for shuffles that are promoted to a |
| 195 | /// different type. |
| 196 | /// |
| 197 | /// If this is a legal shuffle, this method returns the (possibly promoted) |
| 198 | /// build_vector Mask. If it's not a legal shuffle, it returns null. |
| 199 | SDNode *isShuffleLegal(MVT::ValueType VT, SDOperand Mask) const; |
| 200 | |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 201 | bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest, |
Chris Lattner | 00755df | 2007-02-04 00:27:56 +0000 | [diff] [blame] | 202 | SmallPtrSet<SDNode*, 32> &NodesLeadingTo); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 203 | |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 204 | void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC); |
| 205 | |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 206 | SDOperand ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned, |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 207 | SDOperand &Hi); |
| 208 | SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, |
| 209 | SDOperand Source); |
Chris Lattner | cad063f | 2005-07-16 00:19:57 +0000 | [diff] [blame] | 210 | |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 211 | SDOperand EmitStackConvert(SDOperand SrcOp, MVT::ValueType SlotVT, |
| 212 | MVT::ValueType DestVT); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 213 | SDOperand ExpandBUILD_VECTOR(SDNode *Node); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 214 | SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node); |
Jim Laskey | 6269ed1 | 2005-08-17 00:39:29 +0000 | [diff] [blame] | 215 | SDOperand ExpandLegalINT_TO_FP(bool isSigned, |
| 216 | SDOperand LegalOp, |
| 217 | MVT::ValueType DestVT); |
Nate Begeman | 5a8441e | 2005-07-16 02:02:34 +0000 | [diff] [blame] | 218 | SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT, |
| 219 | bool isSigned); |
Chris Lattner | 1618beb | 2005-07-29 00:11:56 +0000 | [diff] [blame] | 220 | SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT, |
| 221 | bool isSigned); |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 222 | |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 223 | SDOperand ExpandBSWAP(SDOperand Op); |
| 224 | SDOperand ExpandBitCount(unsigned Opc, SDOperand Op); |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 225 | bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt, |
| 226 | SDOperand &Lo, SDOperand &Hi); |
Chris Lattner | 5b359c6 | 2005-04-02 04:00:59 +0000 | [diff] [blame] | 227 | void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt, |
| 228 | SDOperand &Lo, SDOperand &Hi); |
Chris Lattner | b9fa3bc | 2005-05-12 04:49:08 +0000 | [diff] [blame] | 229 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 230 | SDOperand ExpandEXTRACT_SUBVECTOR(SDOperand Op); |
Chris Lattner | 4aab2f4 | 2006-04-02 05:06:04 +0000 | [diff] [blame] | 231 | SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 232 | }; |
| 233 | } |
| 234 | |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 235 | /// isVectorShuffleLegal - Return true if a vector shuffle is legal with the |
| 236 | /// specified mask and type. Targets can specify exactly which masks they |
| 237 | /// support and the code generator is tasked with not creating illegal masks. |
| 238 | /// |
| 239 | /// Note that this will also return true for shuffles that are promoted to a |
| 240 | /// different type. |
| 241 | SDNode *SelectionDAGLegalize::isShuffleLegal(MVT::ValueType VT, |
| 242 | SDOperand Mask) const { |
| 243 | switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) { |
| 244 | default: return 0; |
| 245 | case TargetLowering::Legal: |
| 246 | case TargetLowering::Custom: |
| 247 | break; |
| 248 | case TargetLowering::Promote: { |
| 249 | // If this is promoted to a different type, convert the shuffle mask and |
| 250 | // ask if it is legal in the promoted type! |
| 251 | MVT::ValueType NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT); |
| 252 | |
| 253 | // If we changed # elements, change the shuffle mask. |
| 254 | unsigned NumEltsGrowth = |
| 255 | MVT::getVectorNumElements(NVT) / MVT::getVectorNumElements(VT); |
| 256 | assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!"); |
| 257 | if (NumEltsGrowth > 1) { |
| 258 | // Renumber the elements. |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 259 | SmallVector<SDOperand, 8> Ops; |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 260 | for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) { |
| 261 | SDOperand InOp = Mask.getOperand(i); |
| 262 | for (unsigned j = 0; j != NumEltsGrowth; ++j) { |
| 263 | if (InOp.getOpcode() == ISD::UNDEF) |
| 264 | Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32)); |
| 265 | else { |
| 266 | unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue(); |
| 267 | Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32)); |
| 268 | } |
| 269 | } |
| 270 | } |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 271 | Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size()); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 272 | } |
| 273 | VT = NVT; |
| 274 | break; |
| 275 | } |
| 276 | } |
| 277 | return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0; |
| 278 | } |
| 279 | |
Chris Lattner | 9c32d3b | 2005-01-23 04:42:50 +0000 | [diff] [blame] | 280 | SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag) |
| 281 | : TLI(dag.getTargetLoweringInfo()), DAG(dag), |
| 282 | ValueTypeActions(TLI.getValueTypeActions()) { |
Nate Begeman | 6a64861 | 2005-11-29 05:45:29 +0000 | [diff] [blame] | 283 | assert(MVT::LAST_VALUETYPE <= 32 && |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 284 | "Too many value types for ValueTypeActions to hold!"); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 285 | } |
| 286 | |
Chris Lattner | e10e6f7 | 2007-06-18 21:28:10 +0000 | [diff] [blame] | 287 | /// ComputeTopDownOrdering - Compute a top-down ordering of the dag, where Order |
| 288 | /// contains all of a nodes operands before it contains the node. |
| 289 | static void ComputeTopDownOrdering(SelectionDAG &DAG, |
| 290 | SmallVector<SDNode*, 64> &Order) { |
| 291 | |
| 292 | DenseMap<SDNode*, unsigned> Visited; |
| 293 | std::vector<SDNode*> Worklist; |
| 294 | Worklist.reserve(128); |
Chris Lattner | 32fca00 | 2005-10-06 01:20:27 +0000 | [diff] [blame] | 295 | |
Chris Lattner | e10e6f7 | 2007-06-18 21:28:10 +0000 | [diff] [blame] | 296 | // Compute ordering from all of the leaves in the graphs, those (like the |
| 297 | // entry node) that have no operands. |
| 298 | for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(), |
| 299 | E = DAG.allnodes_end(); I != E; ++I) { |
| 300 | if (I->getNumOperands() == 0) { |
| 301 | Visited[I] = 0 - 1U; |
| 302 | Worklist.push_back(I); |
| 303 | } |
Chris Lattner | 32fca00 | 2005-10-06 01:20:27 +0000 | [diff] [blame] | 304 | } |
| 305 | |
Chris Lattner | e10e6f7 | 2007-06-18 21:28:10 +0000 | [diff] [blame] | 306 | while (!Worklist.empty()) { |
| 307 | SDNode *N = Worklist.back(); |
| 308 | Worklist.pop_back(); |
| 309 | |
| 310 | if (++Visited[N] != N->getNumOperands()) |
| 311 | continue; // Haven't visited all operands yet |
| 312 | |
| 313 | Order.push_back(N); |
| 314 | |
| 315 | // Now that we have N in, add anything that uses it if all of their operands |
| 316 | // are now done. |
| 317 | for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end(); |
| 318 | UI != E; ++UI) |
Roman Levenstein | dc1adac | 2008-04-07 10:06:32 +0000 | [diff] [blame] | 319 | Worklist.push_back(UI->getUser()); |
Chris Lattner | e10e6f7 | 2007-06-18 21:28:10 +0000 | [diff] [blame] | 320 | } |
| 321 | |
| 322 | assert(Order.size() == Visited.size() && |
| 323 | Order.size() == |
| 324 | (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) && |
| 325 | "Error: DAG is cyclic!"); |
Chris Lattner | 32fca00 | 2005-10-06 01:20:27 +0000 | [diff] [blame] | 326 | } |
| 327 | |
Chris Lattner | 1618beb | 2005-07-29 00:11:56 +0000 | [diff] [blame] | 328 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 329 | void SelectionDAGLegalize::LegalizeDAG() { |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 330 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 331 | IsLegalizingCall = false; |
| 332 | |
Chris Lattner | ab510a7 | 2005-10-02 17:49:46 +0000 | [diff] [blame] | 333 | // The legalize process is inherently a bottom-up recursive process (users |
| 334 | // legalize their uses before themselves). Given infinite stack space, we |
| 335 | // could just start legalizing on the root and traverse the whole graph. In |
| 336 | // practice however, this causes us to run out of stack space on large basic |
Chris Lattner | 32fca00 | 2005-10-06 01:20:27 +0000 | [diff] [blame] | 337 | // blocks. To avoid this problem, compute an ordering of the nodes where each |
| 338 | // node is only legalized after all of its operands are legalized. |
Chris Lattner | 0ed4417 | 2007-02-04 01:20:02 +0000 | [diff] [blame] | 339 | SmallVector<SDNode*, 64> Order; |
Chris Lattner | e10e6f7 | 2007-06-18 21:28:10 +0000 | [diff] [blame] | 340 | ComputeTopDownOrdering(DAG, Order); |
Chris Lattner | ab510a7 | 2005-10-02 17:49:46 +0000 | [diff] [blame] | 341 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 342 | for (unsigned i = 0, e = Order.size(); i != e; ++i) |
| 343 | HandleOp(SDOperand(Order[i], 0)); |
Chris Lattner | 32fca00 | 2005-10-06 01:20:27 +0000 | [diff] [blame] | 344 | |
| 345 | // Finally, it's possible the root changed. Get the new root. |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 346 | SDOperand OldRoot = DAG.getRoot(); |
Chris Lattner | 32fca00 | 2005-10-06 01:20:27 +0000 | [diff] [blame] | 347 | assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?"); |
| 348 | DAG.setRoot(LegalizedNodes[OldRoot]); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 349 | |
| 350 | ExpandedNodes.clear(); |
| 351 | LegalizedNodes.clear(); |
Chris Lattner | 71c42a0 | 2005-01-16 01:11:45 +0000 | [diff] [blame] | 352 | PromotedNodes.clear(); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 353 | SplitNodes.clear(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 354 | ScalarizedNodes.clear(); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 355 | |
| 356 | // Remove dead nodes now. |
Chris Lattner | 190a418 | 2006-08-04 17:45:20 +0000 | [diff] [blame] | 357 | DAG.RemoveDeadNodes(); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 358 | } |
| 359 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 360 | |
| 361 | /// FindCallEndFromCallStart - Given a chained node that is part of a call |
| 362 | /// sequence, find the CALLSEQ_END node that terminates the call sequence. |
| 363 | static SDNode *FindCallEndFromCallStart(SDNode *Node) { |
| 364 | if (Node->getOpcode() == ISD::CALLSEQ_END) |
| 365 | return Node; |
| 366 | if (Node->use_empty()) |
| 367 | return 0; // No CallSeqEnd |
| 368 | |
| 369 | // The chain is usually at the end. |
| 370 | SDOperand TheChain(Node, Node->getNumValues()-1); |
| 371 | if (TheChain.getValueType() != MVT::Other) { |
| 372 | // Sometimes it's at the beginning. |
| 373 | TheChain = SDOperand(Node, 0); |
| 374 | if (TheChain.getValueType() != MVT::Other) { |
| 375 | // Otherwise, hunt for it. |
| 376 | for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i) |
| 377 | if (Node->getValueType(i) == MVT::Other) { |
| 378 | TheChain = SDOperand(Node, i); |
| 379 | break; |
| 380 | } |
| 381 | |
| 382 | // Otherwise, we walked into a node without a chain. |
| 383 | if (TheChain.getValueType() != MVT::Other) |
| 384 | return 0; |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | for (SDNode::use_iterator UI = Node->use_begin(), |
| 389 | E = Node->use_end(); UI != E; ++UI) { |
| 390 | |
| 391 | // Make sure to only follow users of our token chain. |
Roman Levenstein | dc1adac | 2008-04-07 10:06:32 +0000 | [diff] [blame] | 392 | SDNode *User = UI->getUser(); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 393 | for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) |
| 394 | if (User->getOperand(i) == TheChain) |
| 395 | if (SDNode *Result = FindCallEndFromCallStart(User)) |
| 396 | return Result; |
| 397 | } |
| 398 | return 0; |
| 399 | } |
| 400 | |
| 401 | /// FindCallStartFromCallEnd - Given a chained node that is part of a call |
| 402 | /// sequence, find the CALLSEQ_START node that initiates the call sequence. |
| 403 | static SDNode *FindCallStartFromCallEnd(SDNode *Node) { |
| 404 | assert(Node && "Didn't find callseq_start for a call??"); |
| 405 | if (Node->getOpcode() == ISD::CALLSEQ_START) return Node; |
| 406 | |
| 407 | assert(Node->getOperand(0).getValueType() == MVT::Other && |
| 408 | "Node doesn't have a token chain argument!"); |
| 409 | return FindCallStartFromCallEnd(Node->getOperand(0).Val); |
| 410 | } |
| 411 | |
| 412 | /// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to |
| 413 | /// see if any uses can reach Dest. If no dest operands can get to dest, |
| 414 | /// legalize them, legalize ourself, and return false, otherwise, return true. |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 415 | /// |
| 416 | /// Keep track of the nodes we fine that actually do lead to Dest in |
| 417 | /// NodesLeadingTo. This avoids retraversing them exponential number of times. |
| 418 | /// |
| 419 | bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest, |
Chris Lattner | 00755df | 2007-02-04 00:27:56 +0000 | [diff] [blame] | 420 | SmallPtrSet<SDNode*, 32> &NodesLeadingTo) { |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 421 | if (N == Dest) return true; // N certainly leads to Dest :) |
| 422 | |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 423 | // If we've already processed this node and it does lead to Dest, there is no |
| 424 | // need to reprocess it. |
| 425 | if (NodesLeadingTo.count(N)) return true; |
| 426 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 427 | // If the first result of this node has been already legalized, then it cannot |
| 428 | // reach N. |
| 429 | switch (getTypeAction(N->getValueType(0))) { |
| 430 | case Legal: |
| 431 | if (LegalizedNodes.count(SDOperand(N, 0))) return false; |
| 432 | break; |
| 433 | case Promote: |
| 434 | if (PromotedNodes.count(SDOperand(N, 0))) return false; |
| 435 | break; |
| 436 | case Expand: |
| 437 | if (ExpandedNodes.count(SDOperand(N, 0))) return false; |
| 438 | break; |
| 439 | } |
| 440 | |
| 441 | // Okay, this node has not already been legalized. Check and legalize all |
| 442 | // operands. If none lead to Dest, then we can legalize this node. |
| 443 | bool OperandsLeadToDest = false; |
| 444 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) |
| 445 | OperandsLeadToDest |= // If an operand leads to Dest, so do we. |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 446 | LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 447 | |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 448 | if (OperandsLeadToDest) { |
| 449 | NodesLeadingTo.insert(N); |
| 450 | return true; |
| 451 | } |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 452 | |
| 453 | // Okay, this node looks safe, legalize it and return false. |
Chris Lattner | 80edfb3 | 2006-04-17 22:10:08 +0000 | [diff] [blame] | 454 | HandleOp(SDOperand(N, 0)); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 455 | return false; |
| 456 | } |
| 457 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 458 | /// HandleOp - Legalize, Promote, or Expand the specified operand as |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 459 | /// appropriate for its type. |
| 460 | void SelectionDAGLegalize::HandleOp(SDOperand Op) { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 461 | MVT::ValueType VT = Op.getValueType(); |
| 462 | switch (getTypeAction(VT)) { |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 463 | default: assert(0 && "Bad type action!"); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 464 | case Legal: (void)LegalizeOp(Op); break; |
| 465 | case Promote: (void)PromoteOp(Op); break; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 466 | case Expand: |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 467 | if (!MVT::isVector(VT)) { |
| 468 | // If this is an illegal scalar, expand it into its two component |
| 469 | // pieces. |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 470 | SDOperand X, Y; |
Chris Lattner | 09ec1b0 | 2007-08-25 01:00:22 +0000 | [diff] [blame] | 471 | if (Op.getOpcode() == ISD::TargetConstant) |
| 472 | break; // Allow illegal target nodes. |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 473 | ExpandOp(Op, X, Y); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 474 | } else if (MVT::getVectorNumElements(VT) == 1) { |
| 475 | // If this is an illegal single element vector, convert it to a |
| 476 | // scalar operation. |
| 477 | (void)ScalarizeVectorOp(Op); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 478 | } else { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 479 | // Otherwise, this is an illegal multiple element vector. |
| 480 | // Split it in half and legalize both parts. |
| 481 | SDOperand X, Y; |
| 482 | SplitVectorOp(Op, X, Y); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 483 | } |
| 484 | break; |
| 485 | } |
| 486 | } |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 487 | |
Evan Cheng | 9f87788 | 2006-12-13 20:57:08 +0000 | [diff] [blame] | 488 | /// ExpandConstantFP - Expands the ConstantFP node to an integer constant or |
| 489 | /// a load from the constant pool. |
| 490 | static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP, |
Evan Cheng | 279101e | 2006-12-12 22:19:28 +0000 | [diff] [blame] | 491 | SelectionDAG &DAG, TargetLowering &TLI) { |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 492 | bool Extend = false; |
| 493 | |
| 494 | // If a FP immediate is precise when represented as a float and if the |
| 495 | // target can do an extending load from float to double, we put it into |
| 496 | // the constant pool as a float, even if it's is statically typed as a |
Chris Lattner | aa2acbb | 2008-03-05 06:46:58 +0000 | [diff] [blame] | 497 | // double. This shrinks FP constants and canonicalizes them for targets where |
| 498 | // an FP extending load is the same cost as a normal load (such as on the x87 |
| 499 | // fp stack or PPC FP unit). |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 500 | MVT::ValueType VT = CFP->getValueType(0); |
Chris Lattner | 02a260a | 2008-04-20 00:41:09 +0000 | [diff] [blame] | 501 | ConstantFP *LLVMC = ConstantFP::get(CFP->getValueAPF()); |
Evan Cheng | 9f87788 | 2006-12-13 20:57:08 +0000 | [diff] [blame] | 502 | if (!UseCP) { |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 503 | if (VT!=MVT::f64 && VT!=MVT::f32) |
| 504 | assert(0 && "Invalid type expansion"); |
Dan Gohman | 6cf9b8a | 2008-03-11 00:11:06 +0000 | [diff] [blame] | 505 | return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt(), |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 506 | (VT == MVT::f64) ? MVT::i64 : MVT::i32); |
Evan Cheng | 279101e | 2006-12-12 22:19:28 +0000 | [diff] [blame] | 507 | } |
| 508 | |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 509 | MVT::ValueType OrigVT = VT; |
| 510 | MVT::ValueType SVT = VT; |
| 511 | while (SVT != MVT::f32) { |
| 512 | SVT = (unsigned)SVT - 1; |
| 513 | if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) && |
| 514 | // Only do this if the target has a native EXTLOAD instruction from |
| 515 | // smaller type. |
Evan Cheng | 6fd599f | 2008-03-05 01:30:59 +0000 | [diff] [blame] | 516 | TLI.isLoadXLegal(ISD::EXTLOAD, SVT) && |
Chris Lattner | aa2acbb | 2008-03-05 06:46:58 +0000 | [diff] [blame] | 517 | TLI.ShouldShrinkFPConstant(OrigVT)) { |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 518 | const Type *SType = MVT::getTypeForValueType(SVT); |
| 519 | LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType)); |
| 520 | VT = SVT; |
| 521 | Extend = true; |
| 522 | } |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy()); |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 526 | if (Extend) |
| 527 | return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(), |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 528 | CPIdx, PseudoSourceValue::getConstantPool(), |
Evan Cheng | ef12057 | 2008-03-04 08:05:30 +0000 | [diff] [blame] | 529 | 0, VT); |
| 530 | return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx, |
| 531 | PseudoSourceValue::getConstantPool(), 0); |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 532 | } |
| 533 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 534 | |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 535 | /// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise |
| 536 | /// operations. |
| 537 | static |
| 538 | SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT::ValueType NVT, |
| 539 | SelectionDAG &DAG, TargetLowering &TLI) { |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 540 | MVT::ValueType VT = Node->getValueType(0); |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 541 | MVT::ValueType SrcVT = Node->getOperand(1).getValueType(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 542 | assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) && |
| 543 | "fcopysign expansion only supported for f32 and f64"); |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 544 | MVT::ValueType SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32; |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 545 | |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 546 | // First get the sign bit of second operand. |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 547 | SDOperand Mask1 = (SrcVT == MVT::f64) |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 548 | ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT) |
| 549 | : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT); |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 550 | Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1); |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 551 | SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1)); |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 552 | SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1); |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 553 | // Shift right or sign-extend it if the two operands have different types. |
| 554 | int SizeDiff = MVT::getSizeInBits(SrcNVT) - MVT::getSizeInBits(NVT); |
| 555 | if (SizeDiff > 0) { |
| 556 | SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit, |
| 557 | DAG.getConstant(SizeDiff, TLI.getShiftAmountTy())); |
| 558 | SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit); |
| 559 | } else if (SizeDiff < 0) |
| 560 | SignBit = DAG.getNode(ISD::SIGN_EXTEND, NVT, SignBit); |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 561 | |
| 562 | // Clear the sign bit of first operand. |
| 563 | SDOperand Mask2 = (VT == MVT::f64) |
| 564 | ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT) |
| 565 | : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT); |
| 566 | Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2); |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 567 | SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0)); |
Evan Cheng | 068c5f4 | 2007-01-05 21:31:51 +0000 | [diff] [blame] | 568 | Result = DAG.getNode(ISD::AND, NVT, Result, Mask2); |
| 569 | |
| 570 | // Or the value with the sign bit. |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 571 | Result = DAG.getNode(ISD::OR, NVT, Result, SignBit); |
| 572 | return Result; |
| 573 | } |
| 574 | |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 575 | /// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores. |
| 576 | static |
| 577 | SDOperand ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG, |
| 578 | TargetLowering &TLI) { |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 579 | SDOperand Chain = ST->getChain(); |
| 580 | SDOperand Ptr = ST->getBasePtr(); |
| 581 | SDOperand Val = ST->getValue(); |
| 582 | MVT::ValueType VT = Val.getValueType(); |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 583 | int Alignment = ST->getAlignment(); |
| 584 | int SVOffset = ST->getSrcValueOffset(); |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 585 | if (MVT::isFloatingPoint(ST->getMemoryVT()) || |
| 586 | MVT::isVector(ST->getMemoryVT())) { |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 587 | // Expand to a bitconvert of the value to the integer type of the |
| 588 | // same size, then a (misaligned) int store. |
| 589 | MVT::ValueType intVT; |
Dale Johannesen | 3c8b59c | 2008-03-01 03:40:57 +0000 | [diff] [blame] | 590 | if (MVT::is128BitVector(VT) || VT == MVT::ppcf128 || VT == MVT::f128) |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 591 | intVT = MVT::i128; |
Dale Johannesen | 3c8b59c | 2008-03-01 03:40:57 +0000 | [diff] [blame] | 592 | else if (MVT::is64BitVector(VT) || VT==MVT::f64) |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 593 | intVT = MVT::i64; |
| 594 | else if (VT==MVT::f32) |
| 595 | intVT = MVT::i32; |
| 596 | else |
Dale Johannesen | cd9f174 | 2008-02-28 18:36:51 +0000 | [diff] [blame] | 597 | assert(0 && "Unaligned store of unsupported type"); |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 598 | |
| 599 | SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val); |
| 600 | return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(), |
| 601 | SVOffset, ST->isVolatile(), Alignment); |
| 602 | } |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 603 | assert(MVT::isInteger(ST->getMemoryVT()) && |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 604 | !MVT::isVector(ST->getMemoryVT()) && |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 605 | "Unaligned store of unknown type."); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 606 | // Get the half-size VT |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 607 | MVT::ValueType NewStoredVT = ST->getMemoryVT() - 1; |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 608 | int NumBits = MVT::getSizeInBits(NewStoredVT); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 609 | int IncrementSize = NumBits / 8; |
| 610 | |
| 611 | // Divide the stored value in two parts. |
| 612 | SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy()); |
| 613 | SDOperand Lo = Val; |
| 614 | SDOperand Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount); |
| 615 | |
| 616 | // Store the two parts |
| 617 | SDOperand Store1, Store2; |
| 618 | Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr, |
| 619 | ST->getSrcValue(), SVOffset, NewStoredVT, |
| 620 | ST->isVolatile(), Alignment); |
| 621 | Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr, |
| 622 | DAG.getConstant(IncrementSize, TLI.getPointerTy())); |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 623 | Alignment = MinAlign(Alignment, IncrementSize); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 624 | Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr, |
| 625 | ST->getSrcValue(), SVOffset + IncrementSize, |
| 626 | NewStoredVT, ST->isVolatile(), Alignment); |
| 627 | |
| 628 | return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2); |
| 629 | } |
| 630 | |
| 631 | /// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads. |
| 632 | static |
| 633 | SDOperand ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG, |
| 634 | TargetLowering &TLI) { |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 635 | int SVOffset = LD->getSrcValueOffset(); |
| 636 | SDOperand Chain = LD->getChain(); |
| 637 | SDOperand Ptr = LD->getBasePtr(); |
| 638 | MVT::ValueType VT = LD->getValueType(0); |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 639 | MVT::ValueType LoadedVT = LD->getMemoryVT(); |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 640 | if (MVT::isFloatingPoint(VT) || MVT::isVector(VT)) { |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 641 | // Expand to a (misaligned) integer load of the same size, |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 642 | // then bitconvert to floating point or vector. |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 643 | MVT::ValueType intVT; |
Dale Johannesen | 3c8b59c | 2008-03-01 03:40:57 +0000 | [diff] [blame] | 644 | if (MVT::is128BitVector(LoadedVT) || |
| 645 | LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128) |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 646 | intVT = MVT::i128; |
Dale Johannesen | 3c8b59c | 2008-03-01 03:40:57 +0000 | [diff] [blame] | 647 | else if (MVT::is64BitVector(LoadedVT) || LoadedVT == MVT::f64) |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 648 | intVT = MVT::i64; |
Chris Lattner | e400af8 | 2007-11-19 21:38:03 +0000 | [diff] [blame] | 649 | else if (LoadedVT == MVT::f32) |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 650 | intVT = MVT::i32; |
| 651 | else |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 652 | assert(0 && "Unaligned load of unsupported type"); |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 653 | |
| 654 | SDOperand newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(), |
| 655 | SVOffset, LD->isVolatile(), |
| 656 | LD->getAlignment()); |
| 657 | SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad); |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 658 | if (MVT::isFloatingPoint(VT) && LoadedVT != VT) |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 659 | Result = DAG.getNode(ISD::FP_EXTEND, VT, Result); |
| 660 | |
| 661 | SDOperand Ops[] = { Result, Chain }; |
| 662 | return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other), |
| 663 | Ops, 2); |
| 664 | } |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 665 | assert(MVT::isInteger(LoadedVT) && !MVT::isVector(LoadedVT) && |
Chris Lattner | e400af8 | 2007-11-19 21:38:03 +0000 | [diff] [blame] | 666 | "Unaligned load of unsupported type."); |
| 667 | |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 668 | // Compute the new VT that is half the size of the old one. This is an |
| 669 | // integer MVT. |
Chris Lattner | e400af8 | 2007-11-19 21:38:03 +0000 | [diff] [blame] | 670 | unsigned NumBits = MVT::getSizeInBits(LoadedVT); |
| 671 | MVT::ValueType NewLoadedVT; |
Dale Johannesen | 8155d64 | 2008-02-27 22:36:00 +0000 | [diff] [blame] | 672 | NewLoadedVT = MVT::getIntegerType(NumBits/2); |
Chris Lattner | e400af8 | 2007-11-19 21:38:03 +0000 | [diff] [blame] | 673 | NumBits >>= 1; |
| 674 | |
| 675 | unsigned Alignment = LD->getAlignment(); |
| 676 | unsigned IncrementSize = NumBits / 8; |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 677 | ISD::LoadExtType HiExtType = LD->getExtensionType(); |
| 678 | |
| 679 | // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD. |
| 680 | if (HiExtType == ISD::NON_EXTLOAD) |
| 681 | HiExtType = ISD::ZEXTLOAD; |
| 682 | |
| 683 | // Load the value in two parts |
| 684 | SDOperand Lo, Hi; |
| 685 | if (TLI.isLittleEndian()) { |
| 686 | Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(), |
| 687 | SVOffset, NewLoadedVT, LD->isVolatile(), Alignment); |
| 688 | Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr, |
| 689 | DAG.getConstant(IncrementSize, TLI.getPointerTy())); |
| 690 | Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), |
| 691 | SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(), |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 692 | MinAlign(Alignment, IncrementSize)); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 693 | } else { |
| 694 | Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset, |
| 695 | NewLoadedVT,LD->isVolatile(), Alignment); |
| 696 | Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr, |
| 697 | DAG.getConstant(IncrementSize, TLI.getPointerTy())); |
| 698 | Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(), |
| 699 | SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(), |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 700 | MinAlign(Alignment, IncrementSize)); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 701 | } |
| 702 | |
| 703 | // aggregate the two parts |
| 704 | SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy()); |
| 705 | SDOperand Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount); |
| 706 | Result = DAG.getNode(ISD::OR, VT, Result, Lo); |
| 707 | |
| 708 | SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1), |
| 709 | Hi.getValue(1)); |
| 710 | |
| 711 | SDOperand Ops[] = { Result, TF }; |
| 712 | return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other), Ops, 2); |
| 713 | } |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 714 | |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 715 | /// UnrollVectorOp - We know that the given vector has a legal type, however |
| 716 | /// the operation it performs is not legal and is an operation that we have |
| 717 | /// no way of lowering. "Unroll" the vector, splitting out the scalars and |
| 718 | /// operating on each element individually. |
| 719 | SDOperand SelectionDAGLegalize::UnrollVectorOp(SDOperand Op) { |
| 720 | MVT::ValueType VT = Op.getValueType(); |
| 721 | assert(isTypeLegal(VT) && |
| 722 | "Caller should expand or promote operands that are not legal!"); |
| 723 | assert(Op.Val->getNumValues() == 1 && |
| 724 | "Can't unroll a vector with multiple results!"); |
| 725 | unsigned NE = MVT::getVectorNumElements(VT); |
| 726 | MVT::ValueType EltVT = MVT::getVectorElementType(VT); |
| 727 | |
| 728 | SmallVector<SDOperand, 8> Scalars; |
| 729 | SmallVector<SDOperand, 4> Operands(Op.getNumOperands()); |
| 730 | for (unsigned i = 0; i != NE; ++i) { |
| 731 | for (unsigned j = 0; j != Op.getNumOperands(); ++j) { |
| 732 | SDOperand Operand = Op.getOperand(j); |
| 733 | MVT::ValueType OperandVT = Operand.getValueType(); |
| 734 | if (MVT::isVector(OperandVT)) { |
| 735 | // A vector operand; extract a single element. |
| 736 | MVT::ValueType OperandEltVT = MVT::getVectorElementType(OperandVT); |
| 737 | Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, |
| 738 | OperandEltVT, |
| 739 | Operand, |
| 740 | DAG.getConstant(i, MVT::i32)); |
| 741 | } else { |
| 742 | // A scalar operand; just use it as is. |
| 743 | Operands[j] = Operand; |
| 744 | } |
| 745 | } |
| 746 | Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT, |
| 747 | &Operands[0], Operands.size())); |
| 748 | } |
| 749 | |
| 750 | return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size()); |
| 751 | } |
| 752 | |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 753 | /// GetFPLibCall - Return the right libcall for the given floating point type. |
| 754 | static RTLIB::Libcall GetFPLibCall(MVT::ValueType VT, |
| 755 | RTLIB::Libcall Call_F32, |
| 756 | RTLIB::Libcall Call_F64, |
| 757 | RTLIB::Libcall Call_F80, |
| 758 | RTLIB::Libcall Call_PPCF128) { |
| 759 | return |
| 760 | VT == MVT::f32 ? Call_F32 : |
| 761 | VT == MVT::f64 ? Call_F64 : |
| 762 | VT == MVT::f80 ? Call_F80 : |
| 763 | VT == MVT::ppcf128 ? Call_PPCF128 : |
| 764 | RTLIB::UNKNOWN_LIBCALL; |
| 765 | } |
| 766 | |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 767 | /// PerformInsertVectorEltInMemory - Some target cannot handle a variable |
| 768 | /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it |
| 769 | /// is necessary to spill the vector being inserted into to memory, perform |
| 770 | /// the insert there, and then read the result back. |
| 771 | SDOperand SelectionDAGLegalize:: |
| 772 | PerformInsertVectorEltInMemory(SDOperand Vec, SDOperand Val, SDOperand Idx) { |
| 773 | SDOperand Tmp1 = Vec; |
| 774 | SDOperand Tmp2 = Val; |
| 775 | SDOperand Tmp3 = Idx; |
| 776 | |
| 777 | // If the target doesn't support this, we have to spill the input vector |
| 778 | // to a temporary stack slot, update the element, then reload it. This is |
| 779 | // badness. We could also load the value into a vector register (either |
| 780 | // with a "move to register" or "extload into register" instruction, then |
| 781 | // permute it into place, if the idx is a constant and if the idx is |
| 782 | // supported by the target. |
| 783 | MVT::ValueType VT = Tmp1.getValueType(); |
| 784 | MVT::ValueType EltVT = MVT::getVectorElementType(VT); |
| 785 | MVT::ValueType IdxVT = Tmp3.getValueType(); |
| 786 | MVT::ValueType PtrVT = TLI.getPointerTy(); |
| 787 | SDOperand StackPtr = DAG.CreateStackTemporary(VT); |
| 788 | |
| 789 | FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr.Val); |
| 790 | int SPFI = StackPtrFI->getIndex(); |
| 791 | |
| 792 | // Store the vector. |
| 793 | SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr, |
| 794 | PseudoSourceValue::getFixedStack(), |
| 795 | SPFI); |
| 796 | |
| 797 | // Truncate or zero extend offset to target pointer type. |
| 798 | unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND; |
| 799 | Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3); |
| 800 | // Add the offset to the index. |
| 801 | unsigned EltSize = MVT::getSizeInBits(EltVT)/8; |
| 802 | Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT)); |
| 803 | SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr); |
| 804 | // Store the scalar value. |
| 805 | Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2, |
| 806 | PseudoSourceValue::getFixedStack(), SPFI, EltVT); |
| 807 | // Load the updated vector. |
| 808 | return DAG.getLoad(VT, Ch, StackPtr, PseudoSourceValue::getFixedStack(),SPFI); |
| 809 | } |
| 810 | |
Dan Gohman | a346615 | 2007-07-13 20:14:11 +0000 | [diff] [blame] | 811 | /// LegalizeOp - We know that the specified value has a legal type, and |
| 812 | /// that its operands are legal. Now ensure that the operation itself |
| 813 | /// is legal, recursively ensuring that the operands' operations remain |
| 814 | /// legal. |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 815 | SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) { |
Chris Lattner | 09ec1b0 | 2007-08-25 01:00:22 +0000 | [diff] [blame] | 816 | if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes. |
| 817 | return Op; |
| 818 | |
Chris Lattner | c9c60f6 | 2005-08-24 16:35:28 +0000 | [diff] [blame] | 819 | assert(isTypeLegal(Op.getValueType()) && |
Chris Lattner | e3304a3 | 2005-01-08 20:35:13 +0000 | [diff] [blame] | 820 | "Caller should expand or promote operands that are not legal!"); |
Chris Lattner | 45982da | 2005-05-12 16:53:42 +0000 | [diff] [blame] | 821 | SDNode *Node = Op.Val; |
Chris Lattner | e3304a3 | 2005-01-08 20:35:13 +0000 | [diff] [blame] | 822 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 823 | // If this operation defines any values that cannot be represented in a |
Chris Lattner | e3304a3 | 2005-01-08 20:35:13 +0000 | [diff] [blame] | 824 | // register on this target, make sure to expand or promote them. |
Chris Lattner | 45982da | 2005-05-12 16:53:42 +0000 | [diff] [blame] | 825 | if (Node->getNumValues() > 1) { |
| 826 | for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 827 | if (getTypeAction(Node->getValueType(i)) != Legal) { |
| 828 | HandleOp(Op.getValue(i)); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 829 | assert(LegalizedNodes.count(Op) && |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 830 | "Handling didn't add legal operands!"); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 831 | return LegalizedNodes[Op]; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 832 | } |
| 833 | } |
| 834 | |
Chris Lattner | 45982da | 2005-05-12 16:53:42 +0000 | [diff] [blame] | 835 | // Note that LegalizeOp may be reentered even from single-use nodes, which |
| 836 | // means that we always must cache transformed nodes. |
Roman Levenstein | 9cac525 | 2008-04-16 16:15:27 +0000 | [diff] [blame] | 837 | DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op); |
Chris Lattner | e1bd822 | 2005-01-11 05:57:22 +0000 | [diff] [blame] | 838 | if (I != LegalizedNodes.end()) return I->second; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 839 | |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 840 | SDOperand Tmp1, Tmp2, Tmp3, Tmp4; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 841 | SDOperand Result = Op; |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 842 | bool isCustom = false; |
| 843 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 844 | switch (Node->getOpcode()) { |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 845 | case ISD::FrameIndex: |
| 846 | case ISD::EntryToken: |
| 847 | case ISD::Register: |
| 848 | case ISD::BasicBlock: |
| 849 | case ISD::TargetFrameIndex: |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 850 | case ISD::TargetJumpTable: |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 851 | case ISD::TargetConstant: |
Chris Lattner | 3181a77 | 2006-01-29 06:26:56 +0000 | [diff] [blame] | 852 | case ISD::TargetConstantFP: |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 853 | case ISD::TargetConstantPool: |
| 854 | case ISD::TargetGlobalAddress: |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 855 | case ISD::TargetGlobalTLSAddress: |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 856 | case ISD::TargetExternalSymbol: |
| 857 | case ISD::VALUETYPE: |
| 858 | case ISD::SRCVALUE: |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 859 | case ISD::MEMOPERAND: |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 860 | case ISD::STRING: |
| 861 | case ISD::CONDCODE: |
Duncan Sands | 276dcbd | 2008-03-21 09:14:45 +0000 | [diff] [blame] | 862 | case ISD::ARG_FLAGS: |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 863 | // Primitives must all be legal. |
Duncan Sands | a7c97a7 | 2007-10-16 09:07:20 +0000 | [diff] [blame] | 864 | assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) && |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 865 | "This must be legal!"); |
| 866 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 867 | default: |
Chris Lattner | d73cc5d | 2005-05-14 06:34:48 +0000 | [diff] [blame] | 868 | if (Node->getOpcode() >= ISD::BUILTIN_OP_END) { |
| 869 | // If this is a target node, legalize it by legalizing the operands then |
| 870 | // passing it through. |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 871 | SmallVector<SDOperand, 8> Ops; |
Chris Lattner | c5d7d7c | 2006-05-17 18:00:08 +0000 | [diff] [blame] | 872 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) |
Chris Lattner | d73cc5d | 2005-05-14 06:34:48 +0000 | [diff] [blame] | 873 | Ops.push_back(LegalizeOp(Node->getOperand(i))); |
Chris Lattner | c5d7d7c | 2006-05-17 18:00:08 +0000 | [diff] [blame] | 874 | |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 875 | Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size()); |
Chris Lattner | d73cc5d | 2005-05-14 06:34:48 +0000 | [diff] [blame] | 876 | |
| 877 | for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) |
| 878 | AddLegalizedOperand(Op.getValue(i), Result.getValue(i)); |
| 879 | return Result.getValue(Op.ResNo); |
| 880 | } |
| 881 | // Otherwise this is an unhandled builtin node. splat. |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 882 | #ifndef NDEBUG |
Dan Gohman | 3983358 | 2007-06-04 16:17:33 +0000 | [diff] [blame] | 883 | cerr << "NODE: "; Node->dump(&DAG); cerr << "\n"; |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 884 | #endif |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 885 | assert(0 && "Do not know how to legalize this operator!"); |
| 886 | abort(); |
Lauro Ramos Venancio | 0d3b678 | 2007-04-20 23:02:39 +0000 | [diff] [blame] | 887 | case ISD::GLOBAL_OFFSET_TABLE: |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 888 | case ISD::GlobalAddress: |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 889 | case ISD::GlobalTLSAddress: |
Chris Lattner | 03c0cf8 | 2005-01-07 21:45:56 +0000 | [diff] [blame] | 890 | case ISD::ExternalSymbol: |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 891 | case ISD::ConstantPool: |
| 892 | case ISD::JumpTable: // Nothing to do. |
Chris Lattner | 0c8fbe3 | 2005-11-17 06:41:44 +0000 | [diff] [blame] | 893 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
| 894 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 948c1b1 | 2006-01-28 08:31:04 +0000 | [diff] [blame] | 895 | case TargetLowering::Custom: |
| 896 | Tmp1 = TLI.LowerOperation(Op, DAG); |
| 897 | if (Tmp1.Val) Result = Tmp1; |
| 898 | // FALLTHROUGH if the target doesn't want to lower this op after all. |
Chris Lattner | 0c8fbe3 | 2005-11-17 06:41:44 +0000 | [diff] [blame] | 899 | case TargetLowering::Legal: |
Chris Lattner | 0c8fbe3 | 2005-11-17 06:41:44 +0000 | [diff] [blame] | 900 | break; |
| 901 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 902 | break; |
Nate Begeman | bcc5f36 | 2007-01-29 22:58:52 +0000 | [diff] [blame] | 903 | case ISD::FRAMEADDR: |
| 904 | case ISD::RETURNADDR: |
| 905 | // The only option for these nodes is to custom lower them. If the target |
| 906 | // does not custom lower them, then return zero. |
| 907 | Tmp1 = TLI.LowerOperation(Op, DAG); |
| 908 | if (Tmp1.Val) |
| 909 | Result = Tmp1; |
| 910 | else |
| 911 | Result = DAG.getConstant(0, TLI.getPointerTy()); |
| 912 | break; |
Anton Korobeynikov | 055c544 | 2007-08-29 23:18:48 +0000 | [diff] [blame] | 913 | case ISD::FRAME_TO_ARGS_OFFSET: { |
Anton Korobeynikov | 066f7b4 | 2007-08-29 19:28:29 +0000 | [diff] [blame] | 914 | MVT::ValueType VT = Node->getValueType(0); |
| 915 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 916 | default: assert(0 && "This action is not supported yet!"); |
| 917 | case TargetLowering::Custom: |
| 918 | Result = TLI.LowerOperation(Op, DAG); |
| 919 | if (Result.Val) break; |
| 920 | // Fall Thru |
| 921 | case TargetLowering::Legal: |
| 922 | Result = DAG.getConstant(0, VT); |
| 923 | break; |
| 924 | } |
Anton Korobeynikov | 055c544 | 2007-08-29 23:18:48 +0000 | [diff] [blame] | 925 | } |
Anton Korobeynikov | 066f7b4 | 2007-08-29 19:28:29 +0000 | [diff] [blame] | 926 | break; |
Jim Laskey | 2bc210d | 2007-02-22 15:37:19 +0000 | [diff] [blame] | 927 | case ISD::EXCEPTIONADDR: { |
| 928 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 929 | MVT::ValueType VT = Node->getValueType(0); |
| 930 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 931 | default: assert(0 && "This action is not supported yet!"); |
| 932 | case TargetLowering::Expand: { |
Jim Laskey | 8782d48 | 2007-02-28 20:43:58 +0000 | [diff] [blame] | 933 | unsigned Reg = TLI.getExceptionAddressRegister(); |
Duncan Sands | b027fa0 | 2007-12-31 18:35:50 +0000 | [diff] [blame] | 934 | Result = DAG.getCopyFromReg(Tmp1, Reg, VT); |
Jim Laskey | 2bc210d | 2007-02-22 15:37:19 +0000 | [diff] [blame] | 935 | } |
| 936 | break; |
| 937 | case TargetLowering::Custom: |
| 938 | Result = TLI.LowerOperation(Op, DAG); |
| 939 | if (Result.Val) break; |
| 940 | // Fall Thru |
Chris Lattner | eb7f34f | 2007-04-27 17:12:52 +0000 | [diff] [blame] | 941 | case TargetLowering::Legal: { |
| 942 | SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp1 }; |
| 943 | Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other), |
Duncan Sands | b027fa0 | 2007-12-31 18:35:50 +0000 | [diff] [blame] | 944 | Ops, 2); |
Jim Laskey | 2bc210d | 2007-02-22 15:37:19 +0000 | [diff] [blame] | 945 | break; |
| 946 | } |
| 947 | } |
Chris Lattner | eb7f34f | 2007-04-27 17:12:52 +0000 | [diff] [blame] | 948 | } |
Duncan Sands | b027fa0 | 2007-12-31 18:35:50 +0000 | [diff] [blame] | 949 | if (Result.Val->getNumValues() == 1) break; |
| 950 | |
| 951 | assert(Result.Val->getNumValues() == 2 && |
| 952 | "Cannot return more than two values!"); |
| 953 | |
| 954 | // Since we produced two values, make sure to remember that we |
| 955 | // legalized both of them. |
| 956 | Tmp1 = LegalizeOp(Result); |
| 957 | Tmp2 = LegalizeOp(Result.getValue(1)); |
| 958 | AddLegalizedOperand(Op.getValue(0), Tmp1); |
| 959 | AddLegalizedOperand(Op.getValue(1), Tmp2); |
| 960 | return Op.ResNo ? Tmp2 : Tmp1; |
Jim Laskey | 8782d48 | 2007-02-28 20:43:58 +0000 | [diff] [blame] | 961 | case ISD::EHSELECTION: { |
| 962 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 963 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 964 | MVT::ValueType VT = Node->getValueType(0); |
| 965 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 966 | default: assert(0 && "This action is not supported yet!"); |
| 967 | case TargetLowering::Expand: { |
| 968 | unsigned Reg = TLI.getExceptionSelectorRegister(); |
Duncan Sands | b027fa0 | 2007-12-31 18:35:50 +0000 | [diff] [blame] | 969 | Result = DAG.getCopyFromReg(Tmp2, Reg, VT); |
Jim Laskey | 8782d48 | 2007-02-28 20:43:58 +0000 | [diff] [blame] | 970 | } |
| 971 | break; |
| 972 | case TargetLowering::Custom: |
| 973 | Result = TLI.LowerOperation(Op, DAG); |
| 974 | if (Result.Val) break; |
| 975 | // Fall Thru |
Chris Lattner | eb7f34f | 2007-04-27 17:12:52 +0000 | [diff] [blame] | 976 | case TargetLowering::Legal: { |
| 977 | SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp2 }; |
| 978 | Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other), |
Duncan Sands | b027fa0 | 2007-12-31 18:35:50 +0000 | [diff] [blame] | 979 | Ops, 2); |
Jim Laskey | 8782d48 | 2007-02-28 20:43:58 +0000 | [diff] [blame] | 980 | break; |
| 981 | } |
| 982 | } |
Chris Lattner | eb7f34f | 2007-04-27 17:12:52 +0000 | [diff] [blame] | 983 | } |
Duncan Sands | b027fa0 | 2007-12-31 18:35:50 +0000 | [diff] [blame] | 984 | if (Result.Val->getNumValues() == 1) break; |
| 985 | |
| 986 | assert(Result.Val->getNumValues() == 2 && |
| 987 | "Cannot return more than two values!"); |
| 988 | |
| 989 | // Since we produced two values, make sure to remember that we |
| 990 | // legalized both of them. |
| 991 | Tmp1 = LegalizeOp(Result); |
| 992 | Tmp2 = LegalizeOp(Result.getValue(1)); |
| 993 | AddLegalizedOperand(Op.getValue(0), Tmp1); |
| 994 | AddLegalizedOperand(Op.getValue(1), Tmp2); |
| 995 | return Op.ResNo ? Tmp2 : Tmp1; |
Nick Lewycky | 6d4b711 | 2007-07-14 15:11:14 +0000 | [diff] [blame] | 996 | case ISD::EH_RETURN: { |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 997 | MVT::ValueType VT = Node->getValueType(0); |
| 998 | // The only "good" option for this node is to custom lower it. |
| 999 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 1000 | default: assert(0 && "This action is not supported at all!"); |
| 1001 | case TargetLowering::Custom: |
| 1002 | Result = TLI.LowerOperation(Op, DAG); |
| 1003 | if (Result.Val) break; |
| 1004 | // Fall Thru |
| 1005 | case TargetLowering::Legal: |
| 1006 | // Target does not know, how to lower this, lower to noop |
| 1007 | Result = LegalizeOp(Node->getOperand(0)); |
| 1008 | break; |
| 1009 | } |
Nick Lewycky | 6d4b711 | 2007-07-14 15:11:14 +0000 | [diff] [blame] | 1010 | } |
Anton Korobeynikov | 2365f51 | 2007-07-14 14:06:15 +0000 | [diff] [blame] | 1011 | break; |
Chris Lattner | 08951a3 | 2005-09-02 01:15:01 +0000 | [diff] [blame] | 1012 | case ISD::AssertSext: |
| 1013 | case ISD::AssertZext: |
| 1014 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1015 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Chris Lattner | 08951a3 | 2005-09-02 01:15:01 +0000 | [diff] [blame] | 1016 | break; |
Chris Lattner | 308575b | 2005-11-20 22:56:56 +0000 | [diff] [blame] | 1017 | case ISD::MERGE_VALUES: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1018 | // Legalize eliminates MERGE_VALUES nodes. |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 1019 | Result = Node->getOperand(Op.ResNo); |
| 1020 | break; |
Chris Lattner | 69a5215 | 2005-01-14 22:38:01 +0000 | [diff] [blame] | 1021 | case ISD::CopyFromReg: |
| 1022 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 1023 | Result = Op.getValue(0); |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 1024 | if (Node->getNumValues() == 2) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1025 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 1026 | } else { |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 1027 | assert(Node->getNumValues() == 3 && "Invalid copyfromreg!"); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1028 | if (Node->getNumOperands() == 3) { |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 1029 | Tmp2 = LegalizeOp(Node->getOperand(2)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1030 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2); |
| 1031 | } else { |
| 1032 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
| 1033 | } |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 1034 | AddLegalizedOperand(Op.getValue(2), Result.getValue(2)); |
| 1035 | } |
Chris Lattner | 13c184d | 2005-01-28 06:27:38 +0000 | [diff] [blame] | 1036 | // Since CopyFromReg produces two values, make sure to remember that we |
| 1037 | // legalized both of them. |
| 1038 | AddLegalizedOperand(Op.getValue(0), Result); |
| 1039 | AddLegalizedOperand(Op.getValue(1), Result.getValue(1)); |
| 1040 | return Result.getValue(Op.ResNo); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 1041 | case ISD::UNDEF: { |
| 1042 | MVT::ValueType VT = Op.getValueType(); |
| 1043 | switch (TLI.getOperationAction(ISD::UNDEF, VT)) { |
Nate Begeman | ea19cd5 | 2005-04-02 00:41:14 +0000 | [diff] [blame] | 1044 | default: assert(0 && "This action is not supported yet!"); |
| 1045 | case TargetLowering::Expand: |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 1046 | if (MVT::isInteger(VT)) |
| 1047 | Result = DAG.getConstant(0, VT); |
| 1048 | else if (MVT::isFloatingPoint(VT)) |
Dale Johannesen | f41db21 | 2007-09-26 17:26:49 +0000 | [diff] [blame] | 1049 | Result = DAG.getConstantFP(APFloat(APInt(MVT::getSizeInBits(VT), 0)), |
| 1050 | VT); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 1051 | else |
| 1052 | assert(0 && "Unknown value type!"); |
| 1053 | break; |
Nate Begeman | ea19cd5 | 2005-04-02 00:41:14 +0000 | [diff] [blame] | 1054 | case TargetLowering::Legal: |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 1055 | break; |
| 1056 | } |
| 1057 | break; |
| 1058 | } |
Chris Lattner | d1f04d4 | 2006-03-24 02:26:29 +0000 | [diff] [blame] | 1059 | |
Chris Lattner | 48b61a7 | 2006-03-28 00:40:33 +0000 | [diff] [blame] | 1060 | case ISD::INTRINSIC_W_CHAIN: |
| 1061 | case ISD::INTRINSIC_WO_CHAIN: |
| 1062 | case ISD::INTRINSIC_VOID: { |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1063 | SmallVector<SDOperand, 8> Ops; |
Chris Lattner | d1f04d4 | 2006-03-24 02:26:29 +0000 | [diff] [blame] | 1064 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) |
| 1065 | Ops.push_back(LegalizeOp(Node->getOperand(i))); |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1066 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 10d7fa6 | 2006-03-26 09:12:51 +0000 | [diff] [blame] | 1067 | |
| 1068 | // Allow the target to custom lower its intrinsics if it wants to. |
Chris Lattner | 48b61a7 | 2006-03-28 00:40:33 +0000 | [diff] [blame] | 1069 | if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) == |
Chris Lattner | 10d7fa6 | 2006-03-26 09:12:51 +0000 | [diff] [blame] | 1070 | TargetLowering::Custom) { |
| 1071 | Tmp3 = TLI.LowerOperation(Result, DAG); |
| 1072 | if (Tmp3.Val) Result = Tmp3; |
Chris Lattner | 13fc2f1 | 2006-03-27 20:28:29 +0000 | [diff] [blame] | 1073 | } |
| 1074 | |
| 1075 | if (Result.Val->getNumValues() == 1) break; |
| 1076 | |
| 1077 | // Must have return value and chain result. |
| 1078 | assert(Result.Val->getNumValues() == 2 && |
| 1079 | "Cannot return more than two values!"); |
| 1080 | |
| 1081 | // Since loads produce two values, make sure to remember that we |
| 1082 | // legalized both of them. |
| 1083 | AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0)); |
| 1084 | AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1)); |
| 1085 | return Result.getValue(Op.ResNo); |
Chris Lattner | d1f04d4 | 2006-03-24 02:26:29 +0000 | [diff] [blame] | 1086 | } |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1087 | |
| 1088 | case ISD::LOCATION: |
| 1089 | assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!"); |
| 1090 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain. |
| 1091 | |
| 1092 | switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) { |
| 1093 | case TargetLowering::Promote: |
| 1094 | default: assert(0 && "This action is not supported yet!"); |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1095 | case TargetLowering::Expand: { |
Jim Laskey | 44c3b9f | 2007-01-26 21:22:28 +0000 | [diff] [blame] | 1096 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1097 | bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other); |
Jim Laskey | 1ee2925 | 2007-01-26 14:34:52 +0000 | [diff] [blame] | 1098 | bool useLABEL = TLI.isOperationLegal(ISD::LABEL, MVT::Other); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1099 | |
Jim Laskey | 44c3b9f | 2007-01-26 21:22:28 +0000 | [diff] [blame] | 1100 | if (MMI && (useDEBUG_LOC || useLABEL)) { |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1101 | const std::string &FName = |
| 1102 | cast<StringSDNode>(Node->getOperand(3))->getValue(); |
| 1103 | const std::string &DirName = |
| 1104 | cast<StringSDNode>(Node->getOperand(4))->getValue(); |
Jim Laskey | 44c3b9f | 2007-01-26 21:22:28 +0000 | [diff] [blame] | 1105 | unsigned SrcFile = MMI->RecordSource(DirName, FName); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1106 | |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1107 | SmallVector<SDOperand, 8> Ops; |
Jim Laskey | e81aecb | 2005-12-21 20:51:37 +0000 | [diff] [blame] | 1108 | Ops.push_back(Tmp1); // chain |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1109 | SDOperand LineOp = Node->getOperand(1); |
| 1110 | SDOperand ColOp = Node->getOperand(2); |
| 1111 | |
| 1112 | if (useDEBUG_LOC) { |
| 1113 | Ops.push_back(LineOp); // line # |
| 1114 | Ops.push_back(ColOp); // col # |
| 1115 | Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1116 | Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size()); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1117 | } else { |
Jim Laskey | d0e58e3 | 2006-02-15 19:34:44 +0000 | [diff] [blame] | 1118 | unsigned Line = cast<ConstantSDNode>(LineOp)->getValue(); |
| 1119 | unsigned Col = cast<ConstantSDNode>(ColOp)->getValue(); |
Evan Cheng | a647c92 | 2008-02-01 02:05:57 +0000 | [diff] [blame] | 1120 | unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1121 | Ops.push_back(DAG.getConstant(ID, MVT::i32)); |
Evan Cheng | bb81d97 | 2008-01-31 09:59:15 +0000 | [diff] [blame] | 1122 | Ops.push_back(DAG.getConstant(0, MVT::i32)); // a debug label |
| 1123 | Result = DAG.getNode(ISD::LABEL, MVT::Other, &Ops[0], Ops.size()); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1124 | } |
Jim Laskey | e81aecb | 2005-12-21 20:51:37 +0000 | [diff] [blame] | 1125 | } else { |
| 1126 | Result = Tmp1; // chain |
| 1127 | } |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1128 | break; |
Chris Lattner | e773673 | 2005-12-18 23:54:29 +0000 | [diff] [blame] | 1129 | } |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1130 | case TargetLowering::Legal: |
Chris Lattner | 9ad17c9 | 2005-12-01 18:21:35 +0000 | [diff] [blame] | 1131 | if (Tmp1 != Node->getOperand(0) || |
| 1132 | getTypeAction(Node->getOperand(1).getValueType()) == Promote) { |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1133 | SmallVector<SDOperand, 8> Ops; |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1134 | Ops.push_back(Tmp1); |
Chris Lattner | 9ad17c9 | 2005-12-01 18:21:35 +0000 | [diff] [blame] | 1135 | if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) { |
| 1136 | Ops.push_back(Node->getOperand(1)); // line # must be legal. |
| 1137 | Ops.push_back(Node->getOperand(2)); // col # must be legal. |
| 1138 | } else { |
| 1139 | // Otherwise promote them. |
| 1140 | Ops.push_back(PromoteOp(Node->getOperand(1))); |
| 1141 | Ops.push_back(PromoteOp(Node->getOperand(2))); |
| 1142 | } |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1143 | Ops.push_back(Node->getOperand(3)); // filename must be legal. |
| 1144 | Ops.push_back(Node->getOperand(4)); // working dir # must be legal. |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1145 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1146 | } |
| 1147 | break; |
| 1148 | } |
| 1149 | break; |
Evan Cheng | a844bde | 2008-02-02 04:07:54 +0000 | [diff] [blame] | 1150 | |
| 1151 | case ISD::DECLARE: |
| 1152 | assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!"); |
| 1153 | switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) { |
| 1154 | default: assert(0 && "This action is not supported yet!"); |
| 1155 | case TargetLowering::Legal: |
| 1156 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1157 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address. |
| 1158 | Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable. |
| 1159 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
| 1160 | break; |
Chris Lattner | e07415d | 2008-02-28 05:53:40 +0000 | [diff] [blame] | 1161 | case TargetLowering::Expand: |
| 1162 | Result = LegalizeOp(Node->getOperand(0)); |
| 1163 | break; |
Evan Cheng | a844bde | 2008-02-02 04:07:54 +0000 | [diff] [blame] | 1164 | } |
| 1165 | break; |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1166 | |
| 1167 | case ISD::DEBUG_LOC: |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1168 | assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!"); |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1169 | switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) { |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1170 | default: assert(0 && "This action is not supported yet!"); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1171 | case TargetLowering::Legal: |
| 1172 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1173 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #. |
| 1174 | Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #. |
| 1175 | Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1176 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4); |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1177 | break; |
| 1178 | } |
| 1179 | break; |
| 1180 | |
Jim Laskey | 1ee2925 | 2007-01-26 14:34:52 +0000 | [diff] [blame] | 1181 | case ISD::LABEL: |
Evan Cheng | bb81d97 | 2008-01-31 09:59:15 +0000 | [diff] [blame] | 1182 | assert(Node->getNumOperands() == 3 && "Invalid LABEL node!"); |
Jim Laskey | 1ee2925 | 2007-01-26 14:34:52 +0000 | [diff] [blame] | 1183 | switch (TLI.getOperationAction(ISD::LABEL, MVT::Other)) { |
Jim Laskey | abf6d17 | 2006-01-05 01:25:28 +0000 | [diff] [blame] | 1184 | default: assert(0 && "This action is not supported yet!"); |
| 1185 | case TargetLowering::Legal: |
| 1186 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1187 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id. |
Evan Cheng | bb81d97 | 2008-01-31 09:59:15 +0000 | [diff] [blame] | 1188 | Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the "flavor" operand. |
| 1189 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1190 | break; |
Chris Lattner | a9569f1 | 2007-03-03 19:21:38 +0000 | [diff] [blame] | 1191 | case TargetLowering::Expand: |
| 1192 | Result = LegalizeOp(Node->getOperand(0)); |
| 1193 | break; |
Jim Laskey | f5395ce | 2005-12-16 22:45:29 +0000 | [diff] [blame] | 1194 | } |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 1195 | break; |
Chris Lattner | 36ce691 | 2005-11-29 06:21:05 +0000 | [diff] [blame] | 1196 | |
Evan Cheng | 27b7db5 | 2008-03-08 00:58:38 +0000 | [diff] [blame] | 1197 | case ISD::PREFETCH: |
| 1198 | assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!"); |
| 1199 | switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) { |
| 1200 | default: assert(0 && "This action is not supported yet!"); |
| 1201 | case TargetLowering::Legal: |
| 1202 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1203 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address. |
| 1204 | Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier. |
| 1205 | Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier. |
| 1206 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4); |
| 1207 | break; |
| 1208 | case TargetLowering::Expand: |
| 1209 | // It's a noop. |
| 1210 | Result = LegalizeOp(Node->getOperand(0)); |
| 1211 | break; |
| 1212 | } |
| 1213 | break; |
| 1214 | |
Andrew Lenharth | 22c5c1b | 2008-02-16 01:24:58 +0000 | [diff] [blame] | 1215 | case ISD::MEMBARRIER: { |
| 1216 | assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!"); |
Andrew Lenharth | d497d9f | 2008-02-16 14:46:26 +0000 | [diff] [blame] | 1217 | switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) { |
| 1218 | default: assert(0 && "This action is not supported yet!"); |
| 1219 | case TargetLowering::Legal: { |
| 1220 | SDOperand Ops[6]; |
| 1221 | Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Duncan Sands | e90a615 | 2008-02-27 08:53:44 +0000 | [diff] [blame] | 1222 | for (int x = 1; x < 6; ++x) { |
| 1223 | Ops[x] = Node->getOperand(x); |
| 1224 | if (!isTypeLegal(Ops[x].getValueType())) |
| 1225 | Ops[x] = PromoteOp(Ops[x]); |
| 1226 | } |
Andrew Lenharth | d497d9f | 2008-02-16 14:46:26 +0000 | [diff] [blame] | 1227 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6); |
| 1228 | break; |
| 1229 | } |
| 1230 | case TargetLowering::Expand: |
| 1231 | //There is no libgcc call for this op |
| 1232 | Result = Node->getOperand(0); // Noop |
| 1233 | break; |
| 1234 | } |
Andrew Lenharth | 22c5c1b | 2008-02-16 01:24:58 +0000 | [diff] [blame] | 1235 | break; |
| 1236 | } |
| 1237 | |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 1238 | case ISD::ATOMIC_LCS: |
| 1239 | case ISD::ATOMIC_LAS: |
| 1240 | case ISD::ATOMIC_SWAP: { |
| 1241 | assert(((Node->getNumOperands() == 4 && Node->getOpcode() == ISD::ATOMIC_LCS) || |
| 1242 | (Node->getNumOperands() == 3 && Node->getOpcode() == ISD::ATOMIC_LAS) || |
| 1243 | (Node->getNumOperands() == 3 && Node->getOpcode() == ISD::ATOMIC_SWAP)) && |
Andrew Lenharth | 26ed869 | 2008-03-01 21:52:34 +0000 | [diff] [blame] | 1244 | "Invalid Atomic node!"); |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 1245 | int num = Node->getOpcode() == ISD::ATOMIC_LCS ? 4 : 3; |
Andrew Lenharth | 26ed869 | 2008-03-01 21:52:34 +0000 | [diff] [blame] | 1246 | SDOperand Ops[4]; |
| 1247 | for (int x = 0; x < num; ++x) |
| 1248 | Ops[x] = LegalizeOp(Node->getOperand(x)); |
| 1249 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], num); |
| 1250 | |
| 1251 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 1252 | default: assert(0 && "This action is not supported yet!"); |
Andrew Lenharth | 26ed869 | 2008-03-01 21:52:34 +0000 | [diff] [blame] | 1253 | case TargetLowering::Custom: |
| 1254 | Result = TLI.LowerOperation(Result, DAG); |
| 1255 | break; |
| 1256 | case TargetLowering::Legal: |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 1257 | break; |
| 1258 | } |
Andrew Lenharth | 26ed869 | 2008-03-01 21:52:34 +0000 | [diff] [blame] | 1259 | AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0)); |
| 1260 | AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1)); |
| 1261 | return Result.getValue(Op.ResNo); |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 1262 | } |
| 1263 | |
Scott Michel | c1513d2 | 2007-08-08 23:23:31 +0000 | [diff] [blame] | 1264 | case ISD::Constant: { |
| 1265 | ConstantSDNode *CN = cast<ConstantSDNode>(Node); |
| 1266 | unsigned opAction = |
| 1267 | TLI.getOperationAction(ISD::Constant, CN->getValueType(0)); |
| 1268 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1269 | // We know we don't need to expand constants here, constants only have one |
| 1270 | // value and we check that it is fine above. |
| 1271 | |
Scott Michel | c1513d2 | 2007-08-08 23:23:31 +0000 | [diff] [blame] | 1272 | if (opAction == TargetLowering::Custom) { |
| 1273 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 1274 | if (Tmp1.Val) |
| 1275 | Result = Tmp1; |
| 1276 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1277 | break; |
Scott Michel | c1513d2 | 2007-08-08 23:23:31 +0000 | [diff] [blame] | 1278 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1279 | case ISD::ConstantFP: { |
| 1280 | // Spill FP immediates to the constant pool if the target cannot directly |
| 1281 | // codegen them. Targets often have some immediate values that can be |
| 1282 | // efficiently generated into an FP register without a load. We explicitly |
| 1283 | // leave these constants as ConstantFP nodes for the target to deal with. |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1284 | ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node); |
| 1285 | |
Chris Lattner | 3181a77 | 2006-01-29 06:26:56 +0000 | [diff] [blame] | 1286 | switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) { |
| 1287 | default: assert(0 && "This action is not supported yet!"); |
Nate Begeman | e179584 | 2008-02-14 08:57:00 +0000 | [diff] [blame] | 1288 | case TargetLowering::Legal: |
| 1289 | break; |
Chris Lattner | 3181a77 | 2006-01-29 06:26:56 +0000 | [diff] [blame] | 1290 | case TargetLowering::Custom: |
| 1291 | Tmp3 = TLI.LowerOperation(Result, DAG); |
| 1292 | if (Tmp3.Val) { |
| 1293 | Result = Tmp3; |
| 1294 | break; |
| 1295 | } |
| 1296 | // FALLTHROUGH |
Nate Begeman | e179584 | 2008-02-14 08:57:00 +0000 | [diff] [blame] | 1297 | case TargetLowering::Expand: { |
| 1298 | // Check to see if this FP immediate is already legal. |
| 1299 | bool isLegal = false; |
| 1300 | for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(), |
| 1301 | E = TLI.legal_fpimm_end(); I != E; ++I) { |
| 1302 | if (CFP->isExactlyValue(*I)) { |
| 1303 | isLegal = true; |
| 1304 | break; |
| 1305 | } |
| 1306 | } |
| 1307 | // If this is a legal constant, turn it into a TargetConstantFP node. |
| 1308 | if (isLegal) |
| 1309 | break; |
Evan Cheng | 279101e | 2006-12-12 22:19:28 +0000 | [diff] [blame] | 1310 | Result = ExpandConstantFP(CFP, true, DAG, TLI); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1311 | } |
Nate Begeman | e179584 | 2008-02-14 08:57:00 +0000 | [diff] [blame] | 1312 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1313 | break; |
| 1314 | } |
Chris Lattner | 040c11c | 2005-11-09 18:48:57 +0000 | [diff] [blame] | 1315 | case ISD::TokenFactor: |
| 1316 | if (Node->getNumOperands() == 2) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1317 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 1318 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 1319 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 1320 | } else if (Node->getNumOperands() == 3) { |
| 1321 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 1322 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 1323 | Tmp3 = LegalizeOp(Node->getOperand(2)); |
| 1324 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | 040c11c | 2005-11-09 18:48:57 +0000 | [diff] [blame] | 1325 | } else { |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1326 | SmallVector<SDOperand, 8> Ops; |
Chris Lattner | 040c11c | 2005-11-09 18:48:57 +0000 | [diff] [blame] | 1327 | // Legalize the operands. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1328 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) |
| 1329 | Ops.push_back(LegalizeOp(Node->getOperand(i))); |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1330 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | a385e9b | 2005-01-13 17:59:25 +0000 | [diff] [blame] | 1331 | } |
Chris Lattner | a385e9b | 2005-01-13 17:59:25 +0000 | [diff] [blame] | 1332 | break; |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 1333 | |
| 1334 | case ISD::FORMAL_ARGUMENTS: |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 1335 | case ISD::CALL: |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 1336 | // The only option for this is to custom lower it. |
Chris Lattner | b248e16 | 2006-05-17 17:55:45 +0000 | [diff] [blame] | 1337 | Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG); |
| 1338 | assert(Tmp3.Val && "Target didn't custom lower this node!"); |
Dale Johannesen | 0ea0356 | 2008-03-05 19:14:03 +0000 | [diff] [blame] | 1339 | // A call within a calling sequence must be legalized to something |
| 1340 | // other than the normal CALLSEQ_END. Violating this gets Legalize |
| 1341 | // into an infinite loop. |
| 1342 | assert ((!IsLegalizingCall || |
| 1343 | Node->getOpcode() != ISD::CALL || |
| 1344 | Tmp3.Val->getOpcode() != ISD::CALLSEQ_END) && |
| 1345 | "Nested CALLSEQ_START..CALLSEQ_END not supported."); |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 1346 | |
| 1347 | // The number of incoming and outgoing values should match; unless the final |
| 1348 | // outgoing value is a flag. |
| 1349 | assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() || |
| 1350 | (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 && |
| 1351 | Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) == |
| 1352 | MVT::Flag)) && |
Chris Lattner | b248e16 | 2006-05-17 17:55:45 +0000 | [diff] [blame] | 1353 | "Lowering call/formal_arguments produced unexpected # results!"); |
Chris Lattner | e2e4173 | 2006-05-16 05:49:56 +0000 | [diff] [blame] | 1354 | |
Chris Lattner | f4ec817 | 2006-05-16 22:53:20 +0000 | [diff] [blame] | 1355 | // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to |
Chris Lattner | e2e4173 | 2006-05-16 05:49:56 +0000 | [diff] [blame] | 1356 | // remember that we legalized all of them, so it doesn't get relegalized. |
Chris Lattner | b248e16 | 2006-05-17 17:55:45 +0000 | [diff] [blame] | 1357 | for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) { |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 1358 | if (Tmp3.Val->getValueType(i) == MVT::Flag) |
| 1359 | continue; |
Chris Lattner | b248e16 | 2006-05-17 17:55:45 +0000 | [diff] [blame] | 1360 | Tmp1 = LegalizeOp(Tmp3.getValue(i)); |
Chris Lattner | e2e4173 | 2006-05-16 05:49:56 +0000 | [diff] [blame] | 1361 | if (Op.ResNo == i) |
| 1362 | Tmp2 = Tmp1; |
| 1363 | AddLegalizedOperand(SDOperand(Node, i), Tmp1); |
| 1364 | } |
| 1365 | return Tmp2; |
Christopher Lamb | 557c363 | 2007-07-26 07:34:40 +0000 | [diff] [blame] | 1366 | case ISD::EXTRACT_SUBREG: { |
| 1367 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 1368 | ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1)); |
| 1369 | assert(idx && "Operand must be a constant"); |
| 1370 | Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0)); |
| 1371 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 1372 | } |
| 1373 | break; |
| 1374 | case ISD::INSERT_SUBREG: { |
| 1375 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 1376 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 1377 | ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2)); |
| 1378 | assert(idx && "Operand must be a constant"); |
| 1379 | Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0)); |
| 1380 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
| 1381 | } |
| 1382 | break; |
Chris Lattner | b2827b0 | 2006-03-19 00:52:58 +0000 | [diff] [blame] | 1383 | case ISD::BUILD_VECTOR: |
| 1384 | switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) { |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1385 | default: assert(0 && "This action is not supported yet!"); |
| 1386 | case TargetLowering::Custom: |
| 1387 | Tmp3 = TLI.LowerOperation(Result, DAG); |
| 1388 | if (Tmp3.Val) { |
| 1389 | Result = Tmp3; |
| 1390 | break; |
| 1391 | } |
| 1392 | // FALLTHROUGH |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 1393 | case TargetLowering::Expand: |
| 1394 | Result = ExpandBUILD_VECTOR(Result.Val); |
Chris Lattner | b2827b0 | 2006-03-19 00:52:58 +0000 | [diff] [blame] | 1395 | break; |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1396 | } |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1397 | break; |
| 1398 | case ISD::INSERT_VECTOR_ELT: |
| 1399 | Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1400 | Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo |
Nate Begeman | 0325d90 | 2008-02-13 06:43:04 +0000 | [diff] [blame] | 1401 | |
| 1402 | // The type of the value to insert may not be legal, even though the vector |
| 1403 | // type is legal. Legalize/Promote accordingly. We do not handle Expand |
| 1404 | // here. |
| 1405 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
| 1406 | default: assert(0 && "Cannot expand insert element operand"); |
| 1407 | case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break; |
| 1408 | case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break; |
| 1409 | } |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1410 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
| 1411 | |
| 1412 | switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT, |
| 1413 | Node->getValueType(0))) { |
| 1414 | default: assert(0 && "This action is not supported yet!"); |
| 1415 | case TargetLowering::Legal: |
| 1416 | break; |
| 1417 | case TargetLowering::Custom: |
Nate Begeman | 2281a99 | 2008-01-05 20:47:37 +0000 | [diff] [blame] | 1418 | Tmp4 = TLI.LowerOperation(Result, DAG); |
| 1419 | if (Tmp4.Val) { |
| 1420 | Result = Tmp4; |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1421 | break; |
| 1422 | } |
| 1423 | // FALLTHROUGH |
| 1424 | case TargetLowering::Expand: { |
Chris Lattner | 8d5a894 | 2006-04-17 19:21:01 +0000 | [diff] [blame] | 1425 | // If the insert index is a constant, codegen this as a scalar_to_vector, |
| 1426 | // then a shuffle that inserts it into the right position in the vector. |
| 1427 | if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) { |
Nate Begeman | 0325d90 | 2008-02-13 06:43:04 +0000 | [diff] [blame] | 1428 | // SCALAR_TO_VECTOR requires that the type of the value being inserted |
| 1429 | // match the element type of the vector being created. |
| 1430 | if (Tmp2.getValueType() == |
| 1431 | MVT::getVectorElementType(Op.getValueType())) { |
| 1432 | SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, |
| 1433 | Tmp1.getValueType(), Tmp2); |
| 1434 | |
| 1435 | unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType()); |
| 1436 | MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts); |
| 1437 | MVT::ValueType ShufMaskEltVT = MVT::getVectorElementType(ShufMaskVT); |
| 1438 | |
| 1439 | // We generate a shuffle of InVec and ScVec, so the shuffle mask |
| 1440 | // should be 0,1,2,3,4,5... with the appropriate element replaced with |
| 1441 | // elt 0 of the RHS. |
| 1442 | SmallVector<SDOperand, 8> ShufOps; |
| 1443 | for (unsigned i = 0; i != NumElts; ++i) { |
| 1444 | if (i != InsertPos->getValue()) |
| 1445 | ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT)); |
| 1446 | else |
| 1447 | ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT)); |
| 1448 | } |
| 1449 | SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT, |
| 1450 | &ShufOps[0], ShufOps.size()); |
| 1451 | |
| 1452 | Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(), |
| 1453 | Tmp1, ScVec, ShufMask); |
| 1454 | Result = LegalizeOp(Result); |
| 1455 | break; |
Chris Lattner | 8d5a894 | 2006-04-17 19:21:01 +0000 | [diff] [blame] | 1456 | } |
Chris Lattner | 8d5a894 | 2006-04-17 19:21:01 +0000 | [diff] [blame] | 1457 | } |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 1458 | Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3); |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 1459 | break; |
| 1460 | } |
| 1461 | } |
| 1462 | break; |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 1463 | case ISD::SCALAR_TO_VECTOR: |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1464 | if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) { |
| 1465 | Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node)); |
| 1466 | break; |
| 1467 | } |
| 1468 | |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 1469 | Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal |
| 1470 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 1471 | switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR, |
| 1472 | Node->getValueType(0))) { |
| 1473 | default: assert(0 && "This action is not supported yet!"); |
| 1474 | case TargetLowering::Legal: |
| 1475 | break; |
Chris Lattner | 4d3abee | 2006-03-19 06:47:21 +0000 | [diff] [blame] | 1476 | case TargetLowering::Custom: |
| 1477 | Tmp3 = TLI.LowerOperation(Result, DAG); |
| 1478 | if (Tmp3.Val) { |
| 1479 | Result = Tmp3; |
| 1480 | break; |
| 1481 | } |
| 1482 | // FALLTHROUGH |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1483 | case TargetLowering::Expand: |
| 1484 | Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node)); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 1485 | break; |
| 1486 | } |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 1487 | break; |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 1488 | case ISD::VECTOR_SHUFFLE: |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 1489 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors, |
| 1490 | Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask. |
| 1491 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
| 1492 | |
| 1493 | // Allow targets to custom lower the SHUFFLEs they support. |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1494 | switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) { |
| 1495 | default: assert(0 && "Unknown operation action!"); |
| 1496 | case TargetLowering::Legal: |
| 1497 | assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) && |
| 1498 | "vector shuffle should not be created if not legal!"); |
| 1499 | break; |
| 1500 | case TargetLowering::Custom: |
Evan Cheng | 18dd6d0 | 2006-04-05 06:07:11 +0000 | [diff] [blame] | 1501 | Tmp3 = TLI.LowerOperation(Result, DAG); |
| 1502 | if (Tmp3.Val) { |
| 1503 | Result = Tmp3; |
| 1504 | break; |
| 1505 | } |
| 1506 | // FALLTHROUGH |
| 1507 | case TargetLowering::Expand: { |
| 1508 | MVT::ValueType VT = Node->getValueType(0); |
Dan Gohman | 51eaa86 | 2007-06-14 22:58:02 +0000 | [diff] [blame] | 1509 | MVT::ValueType EltVT = MVT::getVectorElementType(VT); |
Evan Cheng | 18dd6d0 | 2006-04-05 06:07:11 +0000 | [diff] [blame] | 1510 | MVT::ValueType PtrVT = TLI.getPointerTy(); |
| 1511 | SDOperand Mask = Node->getOperand(2); |
| 1512 | unsigned NumElems = Mask.getNumOperands(); |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1513 | SmallVector<SDOperand,8> Ops; |
Evan Cheng | 18dd6d0 | 2006-04-05 06:07:11 +0000 | [diff] [blame] | 1514 | for (unsigned i = 0; i != NumElems; ++i) { |
| 1515 | SDOperand Arg = Mask.getOperand(i); |
| 1516 | if (Arg.getOpcode() == ISD::UNDEF) { |
| 1517 | Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT)); |
| 1518 | } else { |
| 1519 | assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!"); |
| 1520 | unsigned Idx = cast<ConstantSDNode>(Arg)->getValue(); |
| 1521 | if (Idx < NumElems) |
| 1522 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, |
| 1523 | DAG.getConstant(Idx, PtrVT))); |
| 1524 | else |
| 1525 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, |
| 1526 | DAG.getConstant(Idx - NumElems, PtrVT))); |
| 1527 | } |
| 1528 | } |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 1529 | Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size()); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1530 | break; |
Evan Cheng | 18dd6d0 | 2006-04-05 06:07:11 +0000 | [diff] [blame] | 1531 | } |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 1532 | case TargetLowering::Promote: { |
| 1533 | // Change base type to a different vector type. |
| 1534 | MVT::ValueType OVT = Node->getValueType(0); |
| 1535 | MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT); |
| 1536 | |
| 1537 | // Cast the two input vectors. |
| 1538 | Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1); |
| 1539 | Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2); |
| 1540 | |
| 1541 | // Convert the shuffle mask to the right # elements. |
| 1542 | Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0); |
| 1543 | assert(Tmp3.Val && "Shuffle not legal?"); |
| 1544 | Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3); |
| 1545 | Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result); |
| 1546 | break; |
| 1547 | } |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 1548 | } |
| 1549 | break; |
Chris Lattner | 384504c | 2006-03-21 20:44:12 +0000 | [diff] [blame] | 1550 | |
| 1551 | case ISD::EXTRACT_VECTOR_ELT: |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1552 | Tmp1 = Node->getOperand(0); |
Chris Lattner | 384504c | 2006-03-21 20:44:12 +0000 | [diff] [blame] | 1553 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 1554 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1555 | Result = ExpandEXTRACT_VECTOR_ELT(Result); |
Chris Lattner | 384504c | 2006-03-21 20:44:12 +0000 | [diff] [blame] | 1556 | break; |
| 1557 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1558 | case ISD::EXTRACT_SUBVECTOR: |
| 1559 | Tmp1 = Node->getOperand(0); |
| 1560 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 1561 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 1562 | Result = ExpandEXTRACT_SUBVECTOR(Result); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 1563 | break; |
| 1564 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1565 | case ISD::CALLSEQ_START: { |
| 1566 | SDNode *CallEnd = FindCallEndFromCallStart(Node); |
| 1567 | |
| 1568 | // Recursively Legalize all of the inputs of the call end that do not lead |
| 1569 | // to this call start. This ensures that any libcalls that need be inserted |
| 1570 | // are inserted *before* the CALLSEQ_START. |
Chris Lattner | 00755df | 2007-02-04 00:27:56 +0000 | [diff] [blame] | 1571 | {SmallPtrSet<SDNode*, 32> NodesLeadingTo; |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1572 | for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i) |
Chris Lattner | c9cf4f1 | 2006-07-26 23:55:56 +0000 | [diff] [blame] | 1573 | LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node, |
| 1574 | NodesLeadingTo); |
| 1575 | } |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1576 | |
| 1577 | // Now that we legalized all of the inputs (which may have inserted |
| 1578 | // libcalls) create the new CALLSEQ_START node. |
| 1579 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1580 | |
| 1581 | // Merge in the last call, to ensure that this call start after the last |
| 1582 | // call ended. |
Chris Lattner | c5d7d7c | 2006-05-17 18:00:08 +0000 | [diff] [blame] | 1583 | if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) { |
Chris Lattner | b248e16 | 2006-05-17 17:55:45 +0000 | [diff] [blame] | 1584 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 1585 | Tmp1 = LegalizeOp(Tmp1); |
| 1586 | } |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1587 | |
| 1588 | // Do not try to legalize the target-specific arguments (#1+). |
| 1589 | if (Tmp1 != Node->getOperand(0)) { |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1590 | SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end()); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1591 | Ops[0] = Tmp1; |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1592 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1593 | } |
| 1594 | |
| 1595 | // Remember that the CALLSEQ_START is legalized. |
Chris Lattner | 4b653a0 | 2006-02-14 00:55:02 +0000 | [diff] [blame] | 1596 | AddLegalizedOperand(Op.getValue(0), Result); |
| 1597 | if (Node->getNumValues() == 2) // If this has a flag result, remember it. |
| 1598 | AddLegalizedOperand(Op.getValue(1), Result.getValue(1)); |
| 1599 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1600 | // Now that the callseq_start and all of the non-call nodes above this call |
| 1601 | // sequence have been legalized, legalize the call itself. During this |
| 1602 | // process, no libcalls can/will be inserted, guaranteeing that no calls |
| 1603 | // can overlap. |
| 1604 | assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!"); |
| 1605 | SDOperand InCallSEQ = LastCALLSEQ_END; |
| 1606 | // Note that we are selecting this call! |
| 1607 | LastCALLSEQ_END = SDOperand(CallEnd, 0); |
| 1608 | IsLegalizingCall = true; |
| 1609 | |
| 1610 | // Legalize the call, starting from the CALLSEQ_END. |
| 1611 | LegalizeOp(LastCALLSEQ_END); |
| 1612 | assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!"); |
| 1613 | return Result; |
| 1614 | } |
Chris Lattner | 16cd04d | 2005-05-12 23:24:06 +0000 | [diff] [blame] | 1615 | case ISD::CALLSEQ_END: |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1616 | // If the CALLSEQ_START node hasn't been legalized first, legalize it. This |
| 1617 | // will cause this node to be legalized as well as handling libcalls right. |
| 1618 | if (LastCALLSEQ_END.Val != Node) { |
| 1619 | LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0)); |
Roman Levenstein | 9cac525 | 2008-04-16 16:15:27 +0000 | [diff] [blame] | 1620 | DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1621 | assert(I != LegalizedNodes.end() && |
| 1622 | "Legalizing the call start should have legalized this node!"); |
| 1623 | return I->second; |
| 1624 | } |
| 1625 | |
| 1626 | // Otherwise, the call start has been legalized and everything is going |
| 1627 | // according to plan. Just legalize ourselves normally here. |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 1628 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | 70814bc | 2006-01-29 07:58:15 +0000 | [diff] [blame] | 1629 | // Do not try to legalize the target-specific arguments (#1+), except for |
| 1630 | // an optional flag input. |
| 1631 | if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){ |
| 1632 | if (Tmp1 != Node->getOperand(0)) { |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1633 | SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end()); |
Chris Lattner | 70814bc | 2006-01-29 07:58:15 +0000 | [diff] [blame] | 1634 | Ops[0] = Tmp1; |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1635 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 70814bc | 2006-01-29 07:58:15 +0000 | [diff] [blame] | 1636 | } |
| 1637 | } else { |
| 1638 | Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1)); |
| 1639 | if (Tmp1 != Node->getOperand(0) || |
| 1640 | Tmp2 != Node->getOperand(Node->getNumOperands()-1)) { |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1641 | SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end()); |
Chris Lattner | 70814bc | 2006-01-29 07:58:15 +0000 | [diff] [blame] | 1642 | Ops[0] = Tmp1; |
| 1643 | Ops.back() = Tmp2; |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1644 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 70814bc | 2006-01-29 07:58:15 +0000 | [diff] [blame] | 1645 | } |
Chris Lattner | 6a54289 | 2006-01-24 05:48:21 +0000 | [diff] [blame] | 1646 | } |
Chris Lattner | 4b653a0 | 2006-02-14 00:55:02 +0000 | [diff] [blame] | 1647 | assert(IsLegalizingCall && "Call sequence imbalance between start/end?"); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1648 | // This finishes up call legalization. |
| 1649 | IsLegalizingCall = false; |
Chris Lattner | 4b653a0 | 2006-02-14 00:55:02 +0000 | [diff] [blame] | 1650 | |
| 1651 | // If the CALLSEQ_END node has a flag, remember that we legalized it. |
| 1652 | AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0)); |
| 1653 | if (Node->getNumValues() == 2) |
| 1654 | AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1)); |
| 1655 | return Result.getValue(Op.ResNo); |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1656 | case ISD::DYNAMIC_STACKALLOC: { |
Evan Cheng | 61bbbab | 2007-08-16 23:50:06 +0000 | [diff] [blame] | 1657 | MVT::ValueType VT = Node->getValueType(0); |
Chris Lattner | fa404e8 | 2005-01-09 19:03:49 +0000 | [diff] [blame] | 1658 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1659 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size. |
| 1660 | Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1661 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | fa404e8 | 2005-01-09 19:03:49 +0000 | [diff] [blame] | 1662 | |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1663 | Tmp1 = Result.getValue(0); |
Chris Lattner | 5f65229 | 2006-01-15 08:43:08 +0000 | [diff] [blame] | 1664 | Tmp2 = Result.getValue(1); |
Evan Cheng | 61bbbab | 2007-08-16 23:50:06 +0000 | [diff] [blame] | 1665 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1666 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1667 | case TargetLowering::Expand: { |
| 1668 | unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore(); |
| 1669 | assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and" |
| 1670 | " not tell us which reg is the stack pointer!"); |
| 1671 | SDOperand Chain = Tmp1.getOperand(0); |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 1672 | |
| 1673 | // Chain the dynamic stack allocation so that it doesn't modify the stack |
| 1674 | // pointer when other instructions are using the stack. |
| 1675 | Chain = DAG.getCALLSEQ_START(Chain, |
| 1676 | DAG.getConstant(0, TLI.getPointerTy())); |
| 1677 | |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1678 | SDOperand Size = Tmp2.getOperand(1); |
Evan Cheng | 61bbbab | 2007-08-16 23:50:06 +0000 | [diff] [blame] | 1679 | SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT); |
| 1680 | Chain = SP.getValue(1); |
| 1681 | unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue(); |
| 1682 | unsigned StackAlign = |
| 1683 | TLI.getTargetMachine().getFrameInfo()->getStackAlignment(); |
| 1684 | if (Align > StackAlign) |
Evan Cheng | 3e20bba | 2007-08-17 18:02:22 +0000 | [diff] [blame] | 1685 | SP = DAG.getNode(ISD::AND, VT, SP, |
| 1686 | DAG.getConstant(-(uint64_t)Align, VT)); |
Evan Cheng | 61bbbab | 2007-08-16 23:50:06 +0000 | [diff] [blame] | 1687 | Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value |
Bill Wendling | 0f8d9c0 | 2007-11-13 00:44:25 +0000 | [diff] [blame] | 1688 | Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain |
| 1689 | |
| 1690 | Tmp2 = |
| 1691 | DAG.getCALLSEQ_END(Chain, |
| 1692 | DAG.getConstant(0, TLI.getPointerTy()), |
| 1693 | DAG.getConstant(0, TLI.getPointerTy()), |
| 1694 | SDOperand()); |
| 1695 | |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1696 | Tmp1 = LegalizeOp(Tmp1); |
| 1697 | Tmp2 = LegalizeOp(Tmp2); |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1698 | break; |
| 1699 | } |
| 1700 | case TargetLowering::Custom: |
Chris Lattner | 5f65229 | 2006-01-15 08:43:08 +0000 | [diff] [blame] | 1701 | Tmp3 = TLI.LowerOperation(Tmp1, DAG); |
| 1702 | if (Tmp3.Val) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1703 | Tmp1 = LegalizeOp(Tmp3); |
| 1704 | Tmp2 = LegalizeOp(Tmp3.getValue(1)); |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1705 | } |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1706 | break; |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1707 | case TargetLowering::Legal: |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1708 | break; |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1709 | } |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1710 | // Since this op produce two values, make sure to remember that we |
| 1711 | // legalized both of them. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1712 | AddLegalizedOperand(SDOperand(Node, 0), Tmp1); |
| 1713 | AddLegalizedOperand(SDOperand(Node, 1), Tmp2); |
Chris Lattner | 903d278 | 2006-01-15 08:54:32 +0000 | [diff] [blame] | 1714 | return Op.ResNo ? Tmp2 : Tmp1; |
Evan Cheng | a7dce3c | 2006-01-11 22:14:47 +0000 | [diff] [blame] | 1715 | } |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1716 | case ISD::INLINEASM: { |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1717 | SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end()); |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1718 | bool Changed = false; |
| 1719 | // Legalize all of the operands of the inline asm, in case they are nodes |
| 1720 | // that need to be expanded or something. Note we skip the asm string and |
| 1721 | // all of the TargetConstant flags. |
| 1722 | SDOperand Op = LegalizeOp(Ops[0]); |
| 1723 | Changed = Op != Ops[0]; |
| 1724 | Ops[0] = Op; |
| 1725 | |
| 1726 | bool HasInFlag = Ops.back().getValueType() == MVT::Flag; |
| 1727 | for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) { |
| 1728 | unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3; |
| 1729 | for (++i; NumVals; ++i, --NumVals) { |
| 1730 | SDOperand Op = LegalizeOp(Ops[i]); |
| 1731 | if (Op != Ops[i]) { |
| 1732 | Changed = true; |
| 1733 | Ops[i] = Op; |
| 1734 | } |
| 1735 | } |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1736 | } |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1737 | |
| 1738 | if (HasInFlag) { |
| 1739 | Op = LegalizeOp(Ops.back()); |
| 1740 | Changed |= Op != Ops.back(); |
| 1741 | Ops.back() = Op; |
| 1742 | } |
| 1743 | |
| 1744 | if (Changed) |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 1745 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1746 | |
| 1747 | // INLINE asm returns a chain and flag, make sure to add both to the map. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1748 | AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0)); |
Chris Lattner | ce7518c | 2006-01-26 22:24:51 +0000 | [diff] [blame] | 1749 | AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1)); |
| 1750 | return Result.getValue(Op.ResNo); |
Chris Lattner | 25a022c | 2006-07-11 01:40:09 +0000 | [diff] [blame] | 1751 | } |
Chris Lattner | c7af179 | 2005-01-07 22:12:08 +0000 | [diff] [blame] | 1752 | case ISD::BR: |
| 1753 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1754 | // Ensure that libcalls are emitted before a branch. |
| 1755 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 1756 | Tmp1 = LegalizeOp(Tmp1); |
| 1757 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 1758 | |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1759 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Chris Lattner | c7af179 | 2005-01-07 22:12:08 +0000 | [diff] [blame] | 1760 | break; |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1761 | case ISD::BRIND: |
| 1762 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1763 | // Ensure that libcalls are emitted before a branch. |
| 1764 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 1765 | Tmp1 = LegalizeOp(Tmp1); |
| 1766 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 1767 | |
| 1768 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
| 1769 | default: assert(0 && "Indirect target must be legal type (pointer)!"); |
| 1770 | case Legal: |
| 1771 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition. |
| 1772 | break; |
| 1773 | } |
| 1774 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 1775 | break; |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 1776 | case ISD::BR_JT: |
| 1777 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 1778 | // Ensure that libcalls are emitted before a branch. |
| 1779 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 1780 | Tmp1 = LegalizeOp(Tmp1); |
| 1781 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 1782 | |
| 1783 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node. |
| 1784 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
| 1785 | |
| 1786 | switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) { |
| 1787 | default: assert(0 && "This action is not supported yet!"); |
| 1788 | case TargetLowering::Legal: break; |
| 1789 | case TargetLowering::Custom: |
| 1790 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 1791 | if (Tmp1.Val) Result = Tmp1; |
| 1792 | break; |
| 1793 | case TargetLowering::Expand: { |
| 1794 | SDOperand Chain = Result.getOperand(0); |
| 1795 | SDOperand Table = Result.getOperand(1); |
| 1796 | SDOperand Index = Result.getOperand(2); |
| 1797 | |
| 1798 | MVT::ValueType PTy = TLI.getPointerTy(); |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 1799 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1800 | unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize(); |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 1801 | Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy)); |
| 1802 | SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table); |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 1803 | |
| 1804 | SDOperand LD; |
| 1805 | switch (EntrySize) { |
| 1806 | default: assert(0 && "Size of jump table not supported yet."); break; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 1807 | case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 1808 | PseudoSourceValue::getJumpTable(), 0); break; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 1809 | case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 1810 | PseudoSourceValue::getJumpTable(), 0); break; |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 1811 | } |
| 1812 | |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 1813 | Addr = LD; |
Jim Laskey | acd80ac | 2006-12-14 19:17:33 +0000 | [diff] [blame] | 1814 | if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) { |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 1815 | // For PIC, the sequence is: |
| 1816 | // BRIND(load(Jumptable + index) + RelocBase) |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 1817 | // RelocBase can be JumpTable, GOT or some sort of global base. |
| 1818 | if (PTy != MVT::i32) |
| 1819 | Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr); |
| 1820 | Addr = DAG.getNode(ISD::ADD, PTy, Addr, |
| 1821 | TLI.getPICJumpTableRelocBase(Table, DAG)); |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 1822 | } |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 1823 | Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr); |
Evan Cheng | 3d4ce11 | 2006-10-30 08:00:44 +0000 | [diff] [blame] | 1824 | } |
| 1825 | } |
| 1826 | break; |
Chris Lattner | c18ae4c | 2005-01-07 08:19:42 +0000 | [diff] [blame] | 1827 | case ISD::BRCOND: |
| 1828 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1829 | // Ensure that libcalls are emitted before a return. |
| 1830 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 1831 | Tmp1 = LegalizeOp(Tmp1); |
| 1832 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 1833 | |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 1834 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
| 1835 | case Expand: assert(0 && "It's impossible to expand bools"); |
| 1836 | case Legal: |
| 1837 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition. |
| 1838 | break; |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1839 | case Promote: { |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 1840 | Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition. |
Chris Lattner | f990817 | 2006-11-27 04:39:56 +0000 | [diff] [blame] | 1841 | |
| 1842 | // The top bits of the promoted condition are not necessarily zero, ensure |
| 1843 | // that the value is properly zero extended. |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1844 | unsigned BitWidth = Tmp2.getValueSizeInBits(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1845 | if (!DAG.MaskedValueIsZero(Tmp2, |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1846 | APInt::getHighBitsSet(BitWidth, BitWidth-1))) |
Chris Lattner | f990817 | 2006-11-27 04:39:56 +0000 | [diff] [blame] | 1847 | Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1); |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 1848 | break; |
| 1849 | } |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1850 | } |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 1851 | |
| 1852 | // Basic block destination (Op#2) is always legal. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1853 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
Nate Begeman | 7cbd525 | 2005-08-16 19:49:35 +0000 | [diff] [blame] | 1854 | |
| 1855 | switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) { |
| 1856 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 1857 | case TargetLowering::Legal: break; |
| 1858 | case TargetLowering::Custom: |
| 1859 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 1860 | if (Tmp1.Val) Result = Tmp1; |
| 1861 | break; |
Nate Begeman | 7cbd525 | 2005-08-16 19:49:35 +0000 | [diff] [blame] | 1862 | case TargetLowering::Expand: |
| 1863 | // Expand brcond's setcc into its constituent parts and create a BR_CC |
| 1864 | // Node. |
| 1865 | if (Tmp2.getOpcode() == ISD::SETCC) { |
| 1866 | Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2), |
| 1867 | Tmp2.getOperand(0), Tmp2.getOperand(1), |
| 1868 | Node->getOperand(2)); |
| 1869 | } else { |
| 1870 | Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, |
| 1871 | DAG.getCondCode(ISD::SETNE), Tmp2, |
| 1872 | DAG.getConstant(0, Tmp2.getValueType()), |
| 1873 | Node->getOperand(2)); |
| 1874 | } |
| 1875 | break; |
Nate Begeman | 7cbd525 | 2005-08-16 19:49:35 +0000 | [diff] [blame] | 1876 | } |
| 1877 | break; |
| 1878 | case ISD::BR_CC: |
| 1879 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 1880 | // Ensure that libcalls are emitted before a branch. |
| 1881 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 1882 | Tmp1 = LegalizeOp(Tmp1); |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 1883 | Tmp2 = Node->getOperand(2); // LHS |
| 1884 | Tmp3 = Node->getOperand(3); // RHS |
| 1885 | Tmp4 = Node->getOperand(1); // CC |
| 1886 | |
| 1887 | LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4); |
Evan Cheng | 722cb36 | 2006-12-18 22:55:34 +0000 | [diff] [blame] | 1888 | LastCALLSEQ_END = DAG.getEntryNode(); |
| 1889 | |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 1890 | // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands, |
| 1891 | // the LHS is a legal SETCC itself. In this case, we need to compare |
| 1892 | // the result against zero to select between true and false values. |
| 1893 | if (Tmp3.Val == 0) { |
| 1894 | Tmp3 = DAG.getConstant(0, Tmp2.getValueType()); |
| 1895 | Tmp4 = DAG.getCondCode(ISD::SETNE); |
Chris Lattner | 181b7a3 | 2005-12-17 23:46:46 +0000 | [diff] [blame] | 1896 | } |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 1897 | |
| 1898 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3, |
| 1899 | Node->getOperand(4)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 1900 | |
Chris Lattner | 181b7a3 | 2005-12-17 23:46:46 +0000 | [diff] [blame] | 1901 | switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) { |
| 1902 | default: assert(0 && "Unexpected action for BR_CC!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 1903 | case TargetLowering::Legal: break; |
| 1904 | case TargetLowering::Custom: |
| 1905 | Tmp4 = TLI.LowerOperation(Result, DAG); |
| 1906 | if (Tmp4.Val) Result = Tmp4; |
Chris Lattner | 181b7a3 | 2005-12-17 23:46:46 +0000 | [diff] [blame] | 1907 | break; |
Nate Begeman | 7cbd525 | 2005-08-16 19:49:35 +0000 | [diff] [blame] | 1908 | } |
Chris Lattner | c18ae4c | 2005-01-07 08:19:42 +0000 | [diff] [blame] | 1909 | break; |
Evan Cheng | f3fd9fe | 2005-12-23 07:29:34 +0000 | [diff] [blame] | 1910 | case ISD::LOAD: { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1911 | LoadSDNode *LD = cast<LoadSDNode>(Node); |
| 1912 | Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain. |
| 1913 | Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer. |
Andrew Lenharth | 2d86ea2 | 2005-04-27 20:10:01 +0000 | [diff] [blame] | 1914 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1915 | ISD::LoadExtType ExtType = LD->getExtensionType(); |
| 1916 | if (ExtType == ISD::NON_EXTLOAD) { |
| 1917 | MVT::ValueType VT = Node->getValueType(0); |
| 1918 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset()); |
| 1919 | Tmp3 = Result.getValue(0); |
| 1920 | Tmp4 = Result.getValue(1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 1921 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1922 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 1923 | default: assert(0 && "This action is not supported yet!"); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 1924 | case TargetLowering::Legal: |
| 1925 | // If this is an unaligned load and the target doesn't support it, |
| 1926 | // expand it. |
| 1927 | if (!TLI.allowsUnalignedMemoryAccesses()) { |
| 1928 | unsigned ABIAlignment = TLI.getTargetData()-> |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 1929 | getABITypeAlignment(MVT::getTypeForValueType(LD->getMemoryVT())); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 1930 | if (LD->getAlignment() < ABIAlignment){ |
| 1931 | Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG, |
| 1932 | TLI); |
| 1933 | Tmp3 = Result.getOperand(0); |
| 1934 | Tmp4 = Result.getOperand(1); |
Dale Johannesen | 907f28c | 2007-09-08 19:29:23 +0000 | [diff] [blame] | 1935 | Tmp3 = LegalizeOp(Tmp3); |
| 1936 | Tmp4 = LegalizeOp(Tmp4); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 1937 | } |
| 1938 | } |
| 1939 | break; |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1940 | case TargetLowering::Custom: |
| 1941 | Tmp1 = TLI.LowerOperation(Tmp3, DAG); |
| 1942 | if (Tmp1.Val) { |
| 1943 | Tmp3 = LegalizeOp(Tmp1); |
| 1944 | Tmp4 = LegalizeOp(Tmp1.getValue(1)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 1945 | } |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1946 | break; |
| 1947 | case TargetLowering::Promote: { |
| 1948 | // Only promote a load of vector type to another. |
| 1949 | assert(MVT::isVector(VT) && "Cannot promote this load!"); |
| 1950 | // Change base type to a different vector type. |
| 1951 | MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT); |
| 1952 | |
| 1953 | Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 1954 | LD->getSrcValueOffset(), |
| 1955 | LD->isVolatile(), LD->getAlignment()); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1956 | Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1)); |
| 1957 | Tmp4 = LegalizeOp(Tmp1.getValue(1)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 1958 | break; |
Andrew Lenharth | 9d416f7 | 2005-06-30 19:22:37 +0000 | [diff] [blame] | 1959 | } |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 1960 | } |
| 1961 | // Since loads produce two values, make sure to remember that we |
| 1962 | // legalized both of them. |
| 1963 | AddLegalizedOperand(SDOperand(Node, 0), Tmp3); |
| 1964 | AddLegalizedOperand(SDOperand(Node, 1), Tmp4); |
| 1965 | return Op.ResNo ? Tmp4 : Tmp3; |
| 1966 | } else { |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 1967 | MVT::ValueType SrcVT = LD->getMemoryVT(); |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 1968 | unsigned SrcWidth = MVT::getSizeInBits(SrcVT); |
| 1969 | int SVOffset = LD->getSrcValueOffset(); |
| 1970 | unsigned Alignment = LD->getAlignment(); |
| 1971 | bool isVolatile = LD->isVolatile(); |
| 1972 | |
| 1973 | if (SrcWidth != MVT::getStoreSizeInBits(SrcVT) && |
| 1974 | // Some targets pretend to have an i1 loading operation, and actually |
| 1975 | // load an i8. This trick is correct for ZEXTLOAD because the top 7 |
| 1976 | // bits are guaranteed to be zero; it helps the optimizers understand |
| 1977 | // that these bits are zero. It is also useful for EXTLOAD, since it |
| 1978 | // tells the optimizers that those bits are undefined. It would be |
| 1979 | // nice to have an effective generic way of getting these benefits... |
| 1980 | // Until such a way is found, don't insist on promoting i1 here. |
| 1981 | (SrcVT != MVT::i1 || |
| 1982 | TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) { |
| 1983 | // Promote to a byte-sized load if not loading an integral number of |
| 1984 | // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24. |
| 1985 | unsigned NewWidth = MVT::getStoreSizeInBits(SrcVT); |
| 1986 | MVT::ValueType NVT = MVT::getIntegerType(NewWidth); |
| 1987 | SDOperand Ch; |
| 1988 | |
| 1989 | // The extra bits are guaranteed to be zero, since we stored them that |
| 1990 | // way. A zext load from NVT thus automatically gives zext from SrcVT. |
| 1991 | |
| 1992 | ISD::LoadExtType NewExtType = |
| 1993 | ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD; |
| 1994 | |
| 1995 | Result = DAG.getExtLoad(NewExtType, Node->getValueType(0), |
| 1996 | Tmp1, Tmp2, LD->getSrcValue(), SVOffset, |
| 1997 | NVT, isVolatile, Alignment); |
| 1998 | |
| 1999 | Ch = Result.getValue(1); // The chain. |
| 2000 | |
| 2001 | if (ExtType == ISD::SEXTLOAD) |
| 2002 | // Having the top bits zero doesn't help when sign extending. |
| 2003 | Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(), |
| 2004 | Result, DAG.getValueType(SrcVT)); |
| 2005 | else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType()) |
| 2006 | // All the top bits are guaranteed to be zero - inform the optimizers. |
| 2007 | Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result, |
| 2008 | DAG.getValueType(SrcVT)); |
| 2009 | |
| 2010 | Tmp1 = LegalizeOp(Result); |
| 2011 | Tmp2 = LegalizeOp(Ch); |
| 2012 | } else if (SrcWidth & (SrcWidth - 1)) { |
| 2013 | // If not loading a power-of-2 number of bits, expand as two loads. |
| 2014 | assert(MVT::isExtendedVT(SrcVT) && !MVT::isVector(SrcVT) && |
| 2015 | "Unsupported extload!"); |
| 2016 | unsigned RoundWidth = 1 << Log2_32(SrcWidth); |
| 2017 | assert(RoundWidth < SrcWidth); |
| 2018 | unsigned ExtraWidth = SrcWidth - RoundWidth; |
| 2019 | assert(ExtraWidth < RoundWidth); |
| 2020 | assert(!(RoundWidth % 8) && !(ExtraWidth % 8) && |
| 2021 | "Load size not an integral number of bytes!"); |
| 2022 | MVT::ValueType RoundVT = MVT::getIntegerType(RoundWidth); |
| 2023 | MVT::ValueType ExtraVT = MVT::getIntegerType(ExtraWidth); |
| 2024 | SDOperand Lo, Hi, Ch; |
| 2025 | unsigned IncrementSize; |
| 2026 | |
| 2027 | if (TLI.isLittleEndian()) { |
| 2028 | // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16) |
| 2029 | // Load the bottom RoundWidth bits. |
| 2030 | Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2, |
| 2031 | LD->getSrcValue(), SVOffset, RoundVT, isVolatile, |
| 2032 | Alignment); |
| 2033 | |
| 2034 | // Load the remaining ExtraWidth bits. |
| 2035 | IncrementSize = RoundWidth / 8; |
| 2036 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
| 2037 | DAG.getIntPtrConstant(IncrementSize)); |
| 2038 | Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2, |
| 2039 | LD->getSrcValue(), SVOffset + IncrementSize, |
| 2040 | ExtraVT, isVolatile, |
| 2041 | MinAlign(Alignment, IncrementSize)); |
| 2042 | |
| 2043 | // Build a factor node to remember that this load is independent of the |
| 2044 | // other one. |
| 2045 | Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1), |
| 2046 | Hi.getValue(1)); |
| 2047 | |
| 2048 | // Move the top bits to the right place. |
| 2049 | Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi, |
| 2050 | DAG.getConstant(RoundWidth, TLI.getShiftAmountTy())); |
| 2051 | |
| 2052 | // Join the hi and lo parts. |
| 2053 | Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2054 | } else { |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2055 | // Big endian - avoid unaligned loads. |
| 2056 | // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8 |
| 2057 | // Load the top RoundWidth bits. |
| 2058 | Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2, |
| 2059 | LD->getSrcValue(), SVOffset, RoundVT, isVolatile, |
| 2060 | Alignment); |
| 2061 | |
| 2062 | // Load the remaining ExtraWidth bits. |
| 2063 | IncrementSize = RoundWidth / 8; |
| 2064 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
| 2065 | DAG.getIntPtrConstant(IncrementSize)); |
| 2066 | Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2, |
| 2067 | LD->getSrcValue(), SVOffset + IncrementSize, |
| 2068 | ExtraVT, isVolatile, |
| 2069 | MinAlign(Alignment, IncrementSize)); |
| 2070 | |
| 2071 | // Build a factor node to remember that this load is independent of the |
| 2072 | // other one. |
| 2073 | Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1), |
| 2074 | Hi.getValue(1)); |
| 2075 | |
| 2076 | // Move the top bits to the right place. |
| 2077 | Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi, |
| 2078 | DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy())); |
| 2079 | |
| 2080 | // Join the hi and lo parts. |
| 2081 | Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi); |
| 2082 | } |
| 2083 | |
| 2084 | Tmp1 = LegalizeOp(Result); |
| 2085 | Tmp2 = LegalizeOp(Ch); |
| 2086 | } else { |
| 2087 | switch (TLI.getLoadXAction(ExtType, SrcVT)) { |
| 2088 | default: assert(0 && "This action is not supported yet!"); |
| 2089 | case TargetLowering::Custom: |
| 2090 | isCustom = true; |
| 2091 | // FALLTHROUGH |
| 2092 | case TargetLowering::Legal: |
| 2093 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset()); |
| 2094 | Tmp1 = Result.getValue(0); |
| 2095 | Tmp2 = Result.getValue(1); |
| 2096 | |
| 2097 | if (isCustom) { |
| 2098 | Tmp3 = TLI.LowerOperation(Result, DAG); |
| 2099 | if (Tmp3.Val) { |
| 2100 | Tmp1 = LegalizeOp(Tmp3); |
| 2101 | Tmp2 = LegalizeOp(Tmp3.getValue(1)); |
| 2102 | } |
| 2103 | } else { |
| 2104 | // If this is an unaligned load and the target doesn't support it, |
| 2105 | // expand it. |
| 2106 | if (!TLI.allowsUnalignedMemoryAccesses()) { |
| 2107 | unsigned ABIAlignment = TLI.getTargetData()-> |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 2108 | getABITypeAlignment(MVT::getTypeForValueType(LD->getMemoryVT())); |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2109 | if (LD->getAlignment() < ABIAlignment){ |
| 2110 | Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG, |
| 2111 | TLI); |
| 2112 | Tmp1 = Result.getOperand(0); |
| 2113 | Tmp2 = Result.getOperand(1); |
| 2114 | Tmp1 = LegalizeOp(Tmp1); |
| 2115 | Tmp2 = LegalizeOp(Tmp2); |
| 2116 | } |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2117 | } |
| 2118 | } |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2119 | break; |
| 2120 | case TargetLowering::Expand: |
| 2121 | // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND |
| 2122 | if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) { |
| 2123 | SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(), |
| 2124 | LD->getSrcValueOffset(), |
| 2125 | LD->isVolatile(), LD->getAlignment()); |
| 2126 | Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load); |
| 2127 | Tmp1 = LegalizeOp(Result); // Relegalize new nodes. |
| 2128 | Tmp2 = LegalizeOp(Load.getValue(1)); |
| 2129 | break; |
| 2130 | } |
| 2131 | assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!"); |
| 2132 | // Turn the unsupported load into an EXTLOAD followed by an explicit |
| 2133 | // zero/sign extend inreg. |
| 2134 | Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0), |
| 2135 | Tmp1, Tmp2, LD->getSrcValue(), |
| 2136 | LD->getSrcValueOffset(), SrcVT, |
| 2137 | LD->isVolatile(), LD->getAlignment()); |
| 2138 | SDOperand ValRes; |
| 2139 | if (ExtType == ISD::SEXTLOAD) |
| 2140 | ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(), |
| 2141 | Result, DAG.getValueType(SrcVT)); |
| 2142 | else |
| 2143 | ValRes = DAG.getZeroExtendInReg(Result, SrcVT); |
| 2144 | Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes. |
| 2145 | Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes. |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2146 | break; |
| 2147 | } |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2148 | } |
Duncan Sands | f9c98e6 | 2008-01-23 20:39:46 +0000 | [diff] [blame] | 2149 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 2150 | // Since loads produce two values, make sure to remember that we legalized |
| 2151 | // both of them. |
| 2152 | AddLegalizedOperand(SDOperand(Node, 0), Tmp1); |
| 2153 | AddLegalizedOperand(SDOperand(Node, 1), Tmp2); |
| 2154 | return Op.ResNo ? Tmp2 : Tmp1; |
Chris Lattner | 01ff721 | 2005-04-10 22:54:25 +0000 | [diff] [blame] | 2155 | } |
Chris Lattner | 01ff721 | 2005-04-10 22:54:25 +0000 | [diff] [blame] | 2156 | } |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2157 | case ISD::EXTRACT_ELEMENT: { |
| 2158 | MVT::ValueType OpTy = Node->getOperand(0).getValueType(); |
| 2159 | switch (getTypeAction(OpTy)) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2160 | default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!"); |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2161 | case Legal: |
| 2162 | if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) { |
| 2163 | // 1 -> Hi |
| 2164 | Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0), |
| 2165 | DAG.getConstant(MVT::getSizeInBits(OpTy)/2, |
| 2166 | TLI.getShiftAmountTy())); |
| 2167 | Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result); |
| 2168 | } else { |
| 2169 | // 0 -> Lo |
| 2170 | Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), |
| 2171 | Node->getOperand(0)); |
| 2172 | } |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2173 | break; |
| 2174 | case Expand: |
| 2175 | // Get both the low and high parts. |
| 2176 | ExpandOp(Node->getOperand(0), Tmp1, Tmp2); |
| 2177 | if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) |
| 2178 | Result = Tmp2; // 1 -> Hi |
| 2179 | else |
| 2180 | Result = Tmp1; // 0 -> Lo |
| 2181 | break; |
| 2182 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2183 | break; |
Nate Begeman | 5dc897b | 2005-10-19 00:06:56 +0000 | [diff] [blame] | 2184 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2185 | |
| 2186 | case ISD::CopyToReg: |
| 2187 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2188 | |
Chris Lattner | c9c60f6 | 2005-08-24 16:35:28 +0000 | [diff] [blame] | 2189 | assert(isTypeLegal(Node->getOperand(2).getValueType()) && |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 2190 | "Register type must be legal!"); |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 2191 | // Legalize the incoming value (must be a legal type). |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 2192 | Tmp2 = LegalizeOp(Node->getOperand(2)); |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 2193 | if (Node->getNumValues() == 1) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2194 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2); |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 2195 | } else { |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 2196 | assert(Node->getNumValues() == 2 && "Unknown CopyToReg"); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2197 | if (Node->getNumOperands() == 4) { |
Chris Lattner | f1a47c3 | 2005-12-18 15:36:21 +0000 | [diff] [blame] | 2198 | Tmp3 = LegalizeOp(Node->getOperand(3)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2199 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2, |
| 2200 | Tmp3); |
| 2201 | } else { |
| 2202 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2); |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 2203 | } |
| 2204 | |
| 2205 | // Since this produces two values, make sure to remember that we legalized |
| 2206 | // both of them. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2207 | AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0)); |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 2208 | AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2209 | return Result; |
Chris Lattner | 7310fb1 | 2005-12-18 15:27:43 +0000 | [diff] [blame] | 2210 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2211 | break; |
| 2212 | |
| 2213 | case ISD::RET: |
| 2214 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 2215 | |
| 2216 | // Ensure that libcalls are emitted before a return. |
| 2217 | Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END); |
| 2218 | Tmp1 = LegalizeOp(Tmp1); |
| 2219 | LastCALLSEQ_END = DAG.getEntryNode(); |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2220 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2221 | switch (Node->getNumOperands()) { |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2222 | case 3: // ret val |
Evan Cheng | 98f8aeb | 2006-04-11 06:33:39 +0000 | [diff] [blame] | 2223 | Tmp2 = Node->getOperand(1); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2224 | Tmp3 = Node->getOperand(2); // Signness |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2225 | switch (getTypeAction(Tmp2.getValueType())) { |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2226 | case Legal: |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2227 | Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2228 | break; |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2229 | case Expand: |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2230 | if (!MVT::isVector(Tmp2.getValueType())) { |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2231 | SDOperand Lo, Hi; |
| 2232 | ExpandOp(Tmp2, Lo, Hi); |
Chris Lattner | edf2e8d | 2007-03-06 20:01:06 +0000 | [diff] [blame] | 2233 | |
| 2234 | // Big endian systems want the hi reg first. |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 2235 | if (TLI.isBigEndian()) |
Chris Lattner | edf2e8d | 2007-03-06 20:01:06 +0000 | [diff] [blame] | 2236 | std::swap(Lo, Hi); |
| 2237 | |
Evan Cheng | 13acce3 | 2006-12-11 19:27:14 +0000 | [diff] [blame] | 2238 | if (Hi.Val) |
| 2239 | Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3); |
| 2240 | else |
| 2241 | Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3); |
Chris Lattner | f921a51 | 2006-08-21 20:24:53 +0000 | [diff] [blame] | 2242 | Result = LegalizeOp(Result); |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2243 | } else { |
| 2244 | SDNode *InVal = Tmp2.Val; |
Dale Johannesen | e526962 | 2007-10-20 00:07:52 +0000 | [diff] [blame] | 2245 | int InIx = Tmp2.ResNo; |
| 2246 | unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx)); |
| 2247 | MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx)); |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2248 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2249 | // Figure out if there is a simple type corresponding to this Vector |
Reid Spencer | ac9dcb9 | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 2250 | // type. If so, convert to the vector type. |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2251 | MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2252 | if (TLI.isTypeLegal(TVT)) { |
Reid Spencer | ac9dcb9 | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 2253 | // Turn this into a return of the vector type. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2254 | Tmp2 = LegalizeOp(Tmp2); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2255 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2256 | } else if (NumElems == 1) { |
| 2257 | // Turn this into a return of the scalar type. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2258 | Tmp2 = ScalarizeVectorOp(Tmp2); |
| 2259 | Tmp2 = LegalizeOp(Tmp2); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2260 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | b49e52c | 2006-04-11 02:00:08 +0000 | [diff] [blame] | 2261 | |
| 2262 | // FIXME: Returns of gcc generic vectors smaller than a legal type |
| 2263 | // should be returned in integer registers! |
| 2264 | |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2265 | // The scalarized value type may not be legal, e.g. it might require |
| 2266 | // promotion or expansion. Relegalize the return. |
| 2267 | Result = LegalizeOp(Result); |
| 2268 | } else { |
Chris Lattner | b49e52c | 2006-04-11 02:00:08 +0000 | [diff] [blame] | 2269 | // FIXME: Returns of gcc generic vectors larger than a legal vector |
| 2270 | // type should be returned by reference! |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2271 | SDOperand Lo, Hi; |
| 2272 | SplitVectorOp(Tmp2, Lo, Hi); |
Chris Lattner | fea997a | 2007-02-01 04:55:59 +0000 | [diff] [blame] | 2273 | Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3); |
Chris Lattner | f87324e | 2006-04-11 01:31:51 +0000 | [diff] [blame] | 2274 | Result = LegalizeOp(Result); |
| 2275 | } |
| 2276 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2277 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2278 | case Promote: |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 2279 | Tmp2 = PromoteOp(Node->getOperand(1)); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2280 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2281 | Result = LegalizeOp(Result); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 2282 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2283 | } |
| 2284 | break; |
| 2285 | case 1: // ret void |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2286 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2287 | break; |
| 2288 | default: { // ret <values> |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 2289 | SmallVector<SDOperand, 8> NewValues; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2290 | NewValues.push_back(Tmp1); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2291 | for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2) |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2292 | switch (getTypeAction(Node->getOperand(i).getValueType())) { |
| 2293 | case Legal: |
Chris Lattner | 4e6c746 | 2005-01-08 19:27:05 +0000 | [diff] [blame] | 2294 | NewValues.push_back(LegalizeOp(Node->getOperand(i))); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2295 | NewValues.push_back(Node->getOperand(i+1)); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2296 | break; |
| 2297 | case Expand: { |
| 2298 | SDOperand Lo, Hi; |
Dan Gohman | 6595cb3 | 2007-06-27 16:08:04 +0000 | [diff] [blame] | 2299 | assert(!MVT::isExtendedVT(Node->getOperand(i).getValueType()) && |
Chris Lattner | b49e52c | 2006-04-11 02:00:08 +0000 | [diff] [blame] | 2300 | "FIXME: TODO: implement returning non-legal vector types!"); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2301 | ExpandOp(Node->getOperand(i), Lo, Hi); |
| 2302 | NewValues.push_back(Lo); |
Evan Cheng | 8e7d056 | 2006-05-26 23:09:09 +0000 | [diff] [blame] | 2303 | NewValues.push_back(Node->getOperand(i+1)); |
Evan Cheng | 13acce3 | 2006-12-11 19:27:14 +0000 | [diff] [blame] | 2304 | if (Hi.Val) { |
| 2305 | NewValues.push_back(Hi); |
| 2306 | NewValues.push_back(Node->getOperand(i+1)); |
| 2307 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2308 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2309 | } |
| 2310 | case Promote: |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 2311 | assert(0 && "Can't promote multiple return value yet!"); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2312 | } |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2313 | |
| 2314 | if (NewValues.size() == Node->getNumOperands()) |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 2315 | Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size()); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2316 | else |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 2317 | Result = DAG.getNode(ISD::RET, MVT::Other, |
| 2318 | &NewValues[0], NewValues.size()); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2319 | break; |
| 2320 | } |
| 2321 | } |
Evan Cheng | 17c428e | 2006-01-06 00:41:43 +0000 | [diff] [blame] | 2322 | |
Chris Lattner | 6862dbc | 2006-01-29 21:02:23 +0000 | [diff] [blame] | 2323 | if (Result.getOpcode() == ISD::RET) { |
| 2324 | switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) { |
| 2325 | default: assert(0 && "This action is not supported yet!"); |
| 2326 | case TargetLowering::Legal: break; |
| 2327 | case TargetLowering::Custom: |
| 2328 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 2329 | if (Tmp1.Val) Result = Tmp1; |
| 2330 | break; |
| 2331 | } |
Evan Cheng | 17c428e | 2006-01-06 00:41:43 +0000 | [diff] [blame] | 2332 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2333 | break; |
Evan Cheng | f3fd9fe | 2005-12-23 07:29:34 +0000 | [diff] [blame] | 2334 | case ISD::STORE: { |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2335 | StoreSDNode *ST = cast<StoreSDNode>(Node); |
| 2336 | Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain. |
| 2337 | Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer. |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2338 | int SVOffset = ST->getSrcValueOffset(); |
| 2339 | unsigned Alignment = ST->getAlignment(); |
| 2340 | bool isVolatile = ST->isVolatile(); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2341 | |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2342 | if (!ST->isTruncatingStore()) { |
Chris Lattner | d93d46e | 2006-12-12 04:18:56 +0000 | [diff] [blame] | 2343 | // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr' |
| 2344 | // FIXME: We shouldn't do this for TargetConstantFP's. |
| 2345 | // FIXME: move this to the DAG Combiner! Note that we can't regress due |
| 2346 | // to phase ordering between legalized code and the dag combiner. This |
| 2347 | // probably means that we need to integrate dag combiner and legalizer |
| 2348 | // together. |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 2349 | // We generally can't do this one for long doubles. |
Chris Lattner | 2b4c279 | 2007-10-13 06:35:54 +0000 | [diff] [blame] | 2350 | if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) { |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2351 | if (CFP->getValueType(0) == MVT::f32 && |
| 2352 | getTypeAction(MVT::i32) == Legal) { |
Dan Gohman | 6cf9b8a | 2008-03-11 00:11:06 +0000 | [diff] [blame] | 2353 | Tmp3 = DAG.getConstant(CFP->getValueAPF(). |
| 2354 | convertToAPInt().zextOrTrunc(32), |
Dale Johannesen | 3f6eb74 | 2007-09-11 18:32:33 +0000 | [diff] [blame] | 2355 | MVT::i32); |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 2356 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2357 | SVOffset, isVolatile, Alignment); |
| 2358 | break; |
| 2359 | } else if (CFP->getValueType(0) == MVT::f64) { |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2360 | // If this target supports 64-bit registers, do a single 64-bit store. |
| 2361 | if (getTypeAction(MVT::i64) == Legal) { |
| 2362 | Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt(). |
Dan Gohman | 6cf9b8a | 2008-03-11 00:11:06 +0000 | [diff] [blame] | 2363 | zextOrTrunc(64), MVT::i64); |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2364 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2365 | SVOffset, isVolatile, Alignment); |
| 2366 | break; |
| 2367 | } else if (getTypeAction(MVT::i32) == Legal) { |
| 2368 | // Otherwise, if the target supports 32-bit registers, use 2 32-bit |
| 2369 | // stores. If the target supports neither 32- nor 64-bits, this |
| 2370 | // xform is certainly not worth it. |
Dan Gohman | 6cf9b8a | 2008-03-11 00:11:06 +0000 | [diff] [blame] | 2371 | const APInt &IntVal =CFP->getValueAPF().convertToAPInt(); |
| 2372 | SDOperand Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32); |
| 2373 | SDOperand Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32); |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 2374 | if (TLI.isBigEndian()) std::swap(Lo, Hi); |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2375 | |
| 2376 | Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(), |
| 2377 | SVOffset, isVolatile, Alignment); |
| 2378 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 2379 | DAG.getIntPtrConstant(4)); |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2380 | Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4, |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 2381 | isVolatile, MinAlign(Alignment, 4U)); |
Chris Lattner | 3cb9351 | 2007-10-15 05:46:06 +0000 | [diff] [blame] | 2382 | |
| 2383 | Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi); |
| 2384 | break; |
| 2385 | } |
Chris Lattner | d93d46e | 2006-12-12 04:18:56 +0000 | [diff] [blame] | 2386 | } |
Chris Lattner | d93d46e | 2006-12-12 04:18:56 +0000 | [diff] [blame] | 2387 | } |
| 2388 | |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 2389 | switch (getTypeAction(ST->getMemoryVT())) { |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2390 | case Legal: { |
| 2391 | Tmp3 = LegalizeOp(ST->getValue()); |
| 2392 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2, |
| 2393 | ST->getOffset()); |
Evan Cheng | f3fd9fe | 2005-12-23 07:29:34 +0000 | [diff] [blame] | 2394 | |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2395 | MVT::ValueType VT = Tmp3.getValueType(); |
| 2396 | switch (TLI.getOperationAction(ISD::STORE, VT)) { |
| 2397 | default: assert(0 && "This action is not supported yet!"); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2398 | case TargetLowering::Legal: |
| 2399 | // If this is an unaligned store and the target doesn't support it, |
| 2400 | // expand it. |
| 2401 | if (!TLI.allowsUnalignedMemoryAccesses()) { |
| 2402 | unsigned ABIAlignment = TLI.getTargetData()-> |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 2403 | getABITypeAlignment(MVT::getTypeForValueType(ST->getMemoryVT())); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2404 | if (ST->getAlignment() < ABIAlignment) |
| 2405 | Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG, |
| 2406 | TLI); |
| 2407 | } |
| 2408 | break; |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2409 | case TargetLowering::Custom: |
| 2410 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 2411 | if (Tmp1.Val) Result = Tmp1; |
| 2412 | break; |
| 2413 | case TargetLowering::Promote: |
| 2414 | assert(MVT::isVector(VT) && "Unknown legal promote case!"); |
| 2415 | Tmp3 = DAG.getNode(ISD::BIT_CONVERT, |
| 2416 | TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3); |
| 2417 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2418 | ST->getSrcValue(), SVOffset, isVolatile, |
| 2419 | Alignment); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2420 | break; |
| 2421 | } |
| 2422 | break; |
| 2423 | } |
| 2424 | case Promote: |
| 2425 | // Truncate the value and store the result. |
| 2426 | Tmp3 = PromoteOp(ST->getValue()); |
| 2427 | Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 2428 | SVOffset, ST->getMemoryVT(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2429 | isVolatile, Alignment); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2430 | break; |
| 2431 | |
| 2432 | case Expand: |
| 2433 | unsigned IncrementSize = 0; |
| 2434 | SDOperand Lo, Hi; |
| 2435 | |
| 2436 | // If this is a vector type, then we have to calculate the increment as |
| 2437 | // the product of the element size in bytes, and the number of elements |
| 2438 | // in the high half of the vector. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2439 | if (MVT::isVector(ST->getValue().getValueType())) { |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2440 | SDNode *InVal = ST->getValue().Val; |
Dale Johannesen | e526962 | 2007-10-20 00:07:52 +0000 | [diff] [blame] | 2441 | int InIx = ST->getValue().ResNo; |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 2442 | MVT::ValueType InVT = InVal->getValueType(InIx); |
| 2443 | unsigned NumElems = MVT::getVectorNumElements(InVT); |
| 2444 | MVT::ValueType EVT = MVT::getVectorElementType(InVT); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2445 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2446 | // Figure out if there is a simple type corresponding to this Vector |
Reid Spencer | ac9dcb9 | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 2447 | // type. If so, convert to the vector type. |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2448 | MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 2449 | if (TLI.isTypeLegal(TVT)) { |
Reid Spencer | ac9dcb9 | 2007-02-15 03:39:18 +0000 | [diff] [blame] | 2450 | // Turn this into a normal store of the vector type. |
Dan Gohman | 21be384 | 2008-02-15 18:11:59 +0000 | [diff] [blame] | 2451 | Tmp3 = LegalizeOp(ST->getValue()); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2452 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2453 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2454 | Result = LegalizeOp(Result); |
| 2455 | break; |
| 2456 | } else if (NumElems == 1) { |
| 2457 | // Turn this into a normal store of the scalar type. |
Dan Gohman | 21be384 | 2008-02-15 18:11:59 +0000 | [diff] [blame] | 2458 | Tmp3 = ScalarizeVectorOp(ST->getValue()); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2459 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2460 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2461 | // The scalarized value type may not be legal, e.g. it might require |
| 2462 | // promotion or expansion. Relegalize the scalar store. |
| 2463 | Result = LegalizeOp(Result); |
| 2464 | break; |
| 2465 | } else { |
Dan Gohman | 21be384 | 2008-02-15 18:11:59 +0000 | [diff] [blame] | 2466 | SplitVectorOp(ST->getValue(), Lo, Hi); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 2467 | IncrementSize = MVT::getVectorNumElements(Lo.Val->getValueType(0)) * |
| 2468 | MVT::getSizeInBits(EVT)/8; |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2469 | } |
| 2470 | } else { |
Dan Gohman | 21be384 | 2008-02-15 18:11:59 +0000 | [diff] [blame] | 2471 | ExpandOp(ST->getValue(), Lo, Hi); |
Evan Cheng | 7b2b5c8 | 2006-12-12 19:53:13 +0000 | [diff] [blame] | 2472 | IncrementSize = Hi.Val ? MVT::getSizeInBits(Hi.getValueType())/8 : 0; |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2473 | |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 2474 | if (TLI.isBigEndian()) |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2475 | std::swap(Lo, Hi); |
| 2476 | } |
| 2477 | |
| 2478 | Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2479 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 7b2b5c8 | 2006-12-12 19:53:13 +0000 | [diff] [blame] | 2480 | |
| 2481 | if (Hi.Val == NULL) { |
| 2482 | // Must be int <-> float one-to-one expansion. |
| 2483 | Result = Lo; |
| 2484 | break; |
| 2485 | } |
| 2486 | |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2487 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 2488 | DAG.getIntPtrConstant(IncrementSize)); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2489 | assert(isTypeLegal(Tmp2.getValueType()) && |
| 2490 | "Pointers must be legal!"); |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2491 | SVOffset += IncrementSize; |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 2492 | Alignment = MinAlign(Alignment, IncrementSize); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2493 | Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 2494 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2495 | Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi); |
| 2496 | break; |
| 2497 | } |
| 2498 | } else { |
Chris Lattner | ddf8956 | 2008-01-17 19:59:44 +0000 | [diff] [blame] | 2499 | switch (getTypeAction(ST->getValue().getValueType())) { |
| 2500 | case Legal: |
| 2501 | Tmp3 = LegalizeOp(ST->getValue()); |
| 2502 | break; |
| 2503 | case Promote: |
| 2504 | // We can promote the value, the truncstore will still take care of it. |
| 2505 | Tmp3 = PromoteOp(ST->getValue()); |
| 2506 | break; |
| 2507 | case Expand: |
| 2508 | // Just store the low part. This may become a non-trunc store, so make |
| 2509 | // sure to use getTruncStore, not UpdateNodeOperands below. |
| 2510 | ExpandOp(ST->getValue(), Tmp3, Tmp4); |
| 2511 | return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2512 | SVOffset, MVT::i8, isVolatile, Alignment); |
| 2513 | } |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 2514 | |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 2515 | MVT::ValueType StVT = ST->getMemoryVT(); |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2516 | unsigned StWidth = MVT::getSizeInBits(StVT); |
| 2517 | |
| 2518 | if (StWidth != MVT::getStoreSizeInBits(StVT)) { |
| 2519 | // Promote to a byte-sized store with upper bits zero if not |
| 2520 | // storing an integral number of bytes. For example, promote |
| 2521 | // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1) |
| 2522 | MVT::ValueType NVT = MVT::getIntegerType(MVT::getStoreSizeInBits(StVT)); |
| 2523 | Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT); |
| 2524 | Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2525 | SVOffset, NVT, isVolatile, Alignment); |
| 2526 | } else if (StWidth & (StWidth - 1)) { |
| 2527 | // If not storing a power-of-2 number of bits, expand as two stores. |
| 2528 | assert(MVT::isExtendedVT(StVT) && !MVT::isVector(StVT) && |
| 2529 | "Unsupported truncstore!"); |
| 2530 | unsigned RoundWidth = 1 << Log2_32(StWidth); |
| 2531 | assert(RoundWidth < StWidth); |
| 2532 | unsigned ExtraWidth = StWidth - RoundWidth; |
| 2533 | assert(ExtraWidth < RoundWidth); |
| 2534 | assert(!(RoundWidth % 8) && !(ExtraWidth % 8) && |
| 2535 | "Store size not an integral number of bytes!"); |
| 2536 | MVT::ValueType RoundVT = MVT::getIntegerType(RoundWidth); |
| 2537 | MVT::ValueType ExtraVT = MVT::getIntegerType(ExtraWidth); |
| 2538 | SDOperand Lo, Hi; |
| 2539 | unsigned IncrementSize; |
| 2540 | |
| 2541 | if (TLI.isLittleEndian()) { |
| 2542 | // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16) |
| 2543 | // Store the bottom RoundWidth bits. |
| 2544 | Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2545 | SVOffset, RoundVT, |
| 2546 | isVolatile, Alignment); |
| 2547 | |
| 2548 | // Store the remaining ExtraWidth bits. |
| 2549 | IncrementSize = RoundWidth / 8; |
| 2550 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
| 2551 | DAG.getIntPtrConstant(IncrementSize)); |
| 2552 | Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3, |
| 2553 | DAG.getConstant(RoundWidth, TLI.getShiftAmountTy())); |
| 2554 | Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), |
| 2555 | SVOffset + IncrementSize, ExtraVT, isVolatile, |
| 2556 | MinAlign(Alignment, IncrementSize)); |
| 2557 | } else { |
| 2558 | // Big endian - avoid unaligned stores. |
| 2559 | // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X |
| 2560 | // Store the top RoundWidth bits. |
| 2561 | Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3, |
| 2562 | DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy())); |
| 2563 | Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset, |
| 2564 | RoundVT, isVolatile, Alignment); |
| 2565 | |
| 2566 | // Store the remaining ExtraWidth bits. |
| 2567 | IncrementSize = RoundWidth / 8; |
| 2568 | Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2, |
| 2569 | DAG.getIntPtrConstant(IncrementSize)); |
| 2570 | Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), |
| 2571 | SVOffset + IncrementSize, ExtraVT, isVolatile, |
| 2572 | MinAlign(Alignment, IncrementSize)); |
Lauro Ramos Venancio | f3c13c8 | 2007-08-01 19:34:21 +0000 | [diff] [blame] | 2573 | } |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2574 | |
| 2575 | // The order of the stores doesn't matter. |
| 2576 | Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi); |
| 2577 | } else { |
| 2578 | if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() || |
| 2579 | Tmp2 != ST->getBasePtr()) |
| 2580 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2, |
| 2581 | ST->getOffset()); |
| 2582 | |
| 2583 | switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) { |
| 2584 | default: assert(0 && "This action is not supported yet!"); |
| 2585 | case TargetLowering::Legal: |
| 2586 | // If this is an unaligned store and the target doesn't support it, |
| 2587 | // expand it. |
| 2588 | if (!TLI.allowsUnalignedMemoryAccesses()) { |
| 2589 | unsigned ABIAlignment = TLI.getTargetData()-> |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 2590 | getABITypeAlignment(MVT::getTypeForValueType(ST->getMemoryVT())); |
Duncan Sands | 7e85720 | 2008-01-22 07:17:34 +0000 | [diff] [blame] | 2591 | if (ST->getAlignment() < ABIAlignment) |
| 2592 | Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG, |
| 2593 | TLI); |
| 2594 | } |
| 2595 | break; |
| 2596 | case TargetLowering::Custom: |
| 2597 | Result = TLI.LowerOperation(Result, DAG); |
| 2598 | break; |
| 2599 | case Expand: |
| 2600 | // TRUNCSTORE:i16 i32 -> STORE i16 |
| 2601 | assert(isTypeLegal(StVT) && "Do not know how to expand this store!"); |
| 2602 | Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3); |
| 2603 | Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset, |
| 2604 | isVolatile, Alignment); |
| 2605 | break; |
| 2606 | } |
Evan Cheng | f3fd9fe | 2005-12-23 07:29:34 +0000 | [diff] [blame] | 2607 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2608 | } |
| 2609 | break; |
Evan Cheng | f3fd9fe | 2005-12-23 07:29:34 +0000 | [diff] [blame] | 2610 | } |
Andrew Lenharth | 9576212 | 2005-03-31 21:24:06 +0000 | [diff] [blame] | 2611 | case ISD::PCMARKER: |
| 2612 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2613 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Andrew Lenharth | 9576212 | 2005-03-31 21:24:06 +0000 | [diff] [blame] | 2614 | break; |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2615 | case ISD::STACKSAVE: |
| 2616 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2617 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 2618 | Tmp1 = Result.getValue(0); |
| 2619 | Tmp2 = Result.getValue(1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2620 | |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2621 | switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) { |
| 2622 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2623 | case TargetLowering::Legal: break; |
| 2624 | case TargetLowering::Custom: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2625 | Tmp3 = TLI.LowerOperation(Result, DAG); |
| 2626 | if (Tmp3.Val) { |
| 2627 | Tmp1 = LegalizeOp(Tmp3); |
| 2628 | Tmp2 = LegalizeOp(Tmp3.getValue(1)); |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2629 | } |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2630 | break; |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2631 | case TargetLowering::Expand: |
Chris Lattner | 4f0d8e4 | 2006-01-13 17:48:44 +0000 | [diff] [blame] | 2632 | // Expand to CopyFromReg if the target set |
| 2633 | // StackPointerRegisterToSaveRestore. |
| 2634 | if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2635 | Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP, |
Chris Lattner | 4f0d8e4 | 2006-01-13 17:48:44 +0000 | [diff] [blame] | 2636 | Node->getValueType(0)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2637 | Tmp2 = Tmp1.getValue(1); |
Chris Lattner | 4f0d8e4 | 2006-01-13 17:48:44 +0000 | [diff] [blame] | 2638 | } else { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2639 | Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0)); |
| 2640 | Tmp2 = Node->getOperand(0); |
Chris Lattner | 4f0d8e4 | 2006-01-13 17:48:44 +0000 | [diff] [blame] | 2641 | } |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2642 | break; |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2643 | } |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2644 | |
| 2645 | // Since stacksave produce two values, make sure to remember that we |
| 2646 | // legalized both of them. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2647 | AddLegalizedOperand(SDOperand(Node, 0), Tmp1); |
| 2648 | AddLegalizedOperand(SDOperand(Node, 1), Tmp2); |
| 2649 | return Op.ResNo ? Tmp2 : Tmp1; |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2650 | |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2651 | case ISD::STACKRESTORE: |
| 2652 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 2653 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer. |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2654 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2655 | |
| 2656 | switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) { |
| 2657 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2658 | case TargetLowering::Legal: break; |
| 2659 | case TargetLowering::Custom: |
| 2660 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 2661 | if (Tmp1.Val) Result = Tmp1; |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2662 | break; |
| 2663 | case TargetLowering::Expand: |
Chris Lattner | 4f0d8e4 | 2006-01-13 17:48:44 +0000 | [diff] [blame] | 2664 | // Expand to CopyToReg if the target set |
| 2665 | // StackPointerRegisterToSaveRestore. |
| 2666 | if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) { |
| 2667 | Result = DAG.getCopyToReg(Tmp1, SP, Tmp2); |
| 2668 | } else { |
| 2669 | Result = Tmp1; |
| 2670 | } |
Chris Lattner | 140d53c | 2006-01-13 02:50:02 +0000 | [diff] [blame] | 2671 | break; |
| 2672 | } |
| 2673 | break; |
| 2674 | |
Andrew Lenharth | 51b8d54 | 2005-11-11 16:47:30 +0000 | [diff] [blame] | 2675 | case ISD::READCYCLECOUNTER: |
| 2676 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2677 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Evan Cheng | f0b3ba6 | 2006-11-29 08:26:18 +0000 | [diff] [blame] | 2678 | switch (TLI.getOperationAction(ISD::READCYCLECOUNTER, |
| 2679 | Node->getValueType(0))) { |
| 2680 | default: assert(0 && "This action is not supported yet!"); |
Evan Cheng | 6a16c5a | 2006-11-29 19:13:47 +0000 | [diff] [blame] | 2681 | case TargetLowering::Legal: |
| 2682 | Tmp1 = Result.getValue(0); |
| 2683 | Tmp2 = Result.getValue(1); |
| 2684 | break; |
Evan Cheng | f0b3ba6 | 2006-11-29 08:26:18 +0000 | [diff] [blame] | 2685 | case TargetLowering::Custom: |
| 2686 | Result = TLI.LowerOperation(Result, DAG); |
Evan Cheng | 6a16c5a | 2006-11-29 19:13:47 +0000 | [diff] [blame] | 2687 | Tmp1 = LegalizeOp(Result.getValue(0)); |
| 2688 | Tmp2 = LegalizeOp(Result.getValue(1)); |
Evan Cheng | f0b3ba6 | 2006-11-29 08:26:18 +0000 | [diff] [blame] | 2689 | break; |
| 2690 | } |
Andrew Lenharth | 49c709f | 2005-12-02 04:56:24 +0000 | [diff] [blame] | 2691 | |
| 2692 | // Since rdcc produce two values, make sure to remember that we legalized |
| 2693 | // both of them. |
Evan Cheng | 6a16c5a | 2006-11-29 19:13:47 +0000 | [diff] [blame] | 2694 | AddLegalizedOperand(SDOperand(Node, 0), Tmp1); |
| 2695 | AddLegalizedOperand(SDOperand(Node, 1), Tmp2); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2696 | return Result; |
Andrew Lenharth | f70e30b | 2005-11-20 21:32:07 +0000 | [diff] [blame] | 2697 | |
Chris Lattner | 2ee743f | 2005-01-14 22:08:15 +0000 | [diff] [blame] | 2698 | case ISD::SELECT: |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 2699 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 2700 | case Expand: assert(0 && "It's impossible to expand bools"); |
| 2701 | case Legal: |
| 2702 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition. |
| 2703 | break; |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2704 | case Promote: { |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 2705 | Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition. |
Chris Lattner | b6c8060 | 2006-11-28 01:03:30 +0000 | [diff] [blame] | 2706 | // Make sure the condition is either zero or one. |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2707 | unsigned BitWidth = Tmp1.getValueSizeInBits(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2708 | if (!DAG.MaskedValueIsZero(Tmp1, |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2709 | APInt::getHighBitsSet(BitWidth, BitWidth-1))) |
Chris Lattner | b6c8060 | 2006-11-28 01:03:30 +0000 | [diff] [blame] | 2710 | Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1); |
Chris Lattner | 47e9223 | 2005-01-18 19:27:06 +0000 | [diff] [blame] | 2711 | break; |
| 2712 | } |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 2713 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2714 | Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal |
Chris Lattner | 2ee743f | 2005-01-14 22:08:15 +0000 | [diff] [blame] | 2715 | Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2716 | |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2717 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2718 | |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 2719 | switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) { |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2720 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2721 | case TargetLowering::Legal: break; |
| 2722 | case TargetLowering::Custom: { |
| 2723 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 2724 | if (Tmp1.Val) Result = Tmp1; |
| 2725 | break; |
| 2726 | } |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 2727 | case TargetLowering::Expand: |
| 2728 | if (Tmp1.getOpcode() == ISD::SETCC) { |
| 2729 | Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1), |
| 2730 | Tmp2, Tmp3, |
| 2731 | cast<CondCodeSDNode>(Tmp1.getOperand(2))->get()); |
| 2732 | } else { |
| 2733 | Result = DAG.getSelectCC(Tmp1, |
| 2734 | DAG.getConstant(0, Tmp1.getValueType()), |
| 2735 | Tmp2, Tmp3, ISD::SETNE); |
| 2736 | } |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2737 | break; |
| 2738 | case TargetLowering::Promote: { |
| 2739 | MVT::ValueType NVT = |
| 2740 | TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType()); |
| 2741 | unsigned ExtOp, TruncOp; |
Evan Cheng | 41f6cbb | 2006-04-12 16:33:18 +0000 | [diff] [blame] | 2742 | if (MVT::isVector(Tmp2.getValueType())) { |
| 2743 | ExtOp = ISD::BIT_CONVERT; |
| 2744 | TruncOp = ISD::BIT_CONVERT; |
| 2745 | } else if (MVT::isInteger(Tmp2.getValueType())) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2746 | ExtOp = ISD::ANY_EXTEND; |
| 2747 | TruncOp = ISD::TRUNCATE; |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2748 | } else { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2749 | ExtOp = ISD::FP_EXTEND; |
| 2750 | TruncOp = ISD::FP_ROUND; |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2751 | } |
| 2752 | // Promote each of the values to the new type. |
| 2753 | Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2); |
| 2754 | Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3); |
| 2755 | // Perform the larger operation, then round down. |
| 2756 | Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 2757 | if (TruncOp != ISD::FP_ROUND) |
| 2758 | Result = DAG.getNode(TruncOp, Node->getValueType(0), Result); |
| 2759 | else |
| 2760 | Result = DAG.getNode(TruncOp, Node->getValueType(0), Result, |
| 2761 | DAG.getIntPtrConstant(0)); |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 2762 | break; |
| 2763 | } |
| 2764 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2765 | break; |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 2766 | case ISD::SELECT_CC: { |
| 2767 | Tmp1 = Node->getOperand(0); // LHS |
| 2768 | Tmp2 = Node->getOperand(1); // RHS |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 2769 | Tmp3 = LegalizeOp(Node->getOperand(2)); // True |
| 2770 | Tmp4 = LegalizeOp(Node->getOperand(3)); // False |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 2771 | SDOperand CC = Node->getOperand(4); |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 2772 | |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 2773 | LegalizeSetCCOperands(Tmp1, Tmp2, CC); |
| 2774 | |
| 2775 | // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands, |
| 2776 | // the LHS is a legal SETCC itself. In this case, we need to compare |
| 2777 | // the result against zero to select between true and false values. |
| 2778 | if (Tmp2.Val == 0) { |
| 2779 | Tmp2 = DAG.getConstant(0, Tmp1.getValueType()); |
| 2780 | CC = DAG.getCondCode(ISD::SETNE); |
| 2781 | } |
| 2782 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC); |
| 2783 | |
| 2784 | // Everything is legal, see if we should expand this op or something. |
| 2785 | switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) { |
| 2786 | default: assert(0 && "This action is not supported yet!"); |
| 2787 | case TargetLowering::Legal: break; |
| 2788 | case TargetLowering::Custom: |
| 2789 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 2790 | if (Tmp1.Val) Result = Tmp1; |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 2791 | break; |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 2792 | } |
| 2793 | break; |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 2794 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2795 | case ISD::SETCC: |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 2796 | Tmp1 = Node->getOperand(0); |
| 2797 | Tmp2 = Node->getOperand(1); |
| 2798 | Tmp3 = Node->getOperand(2); |
| 2799 | LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3); |
| 2800 | |
| 2801 | // If we had to Expand the SetCC operands into a SELECT node, then it may |
| 2802 | // not always be possible to return a true LHS & RHS. In this case, just |
| 2803 | // return the value we legalized, returned in the LHS |
| 2804 | if (Tmp2.Val == 0) { |
| 2805 | Result = Tmp1; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2806 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2807 | } |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 2808 | |
Chris Lattner | 73e142f | 2006-01-30 22:43:50 +0000 | [diff] [blame] | 2809 | switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2810 | default: assert(0 && "Cannot handle this action for SETCC yet!"); |
| 2811 | case TargetLowering::Custom: |
| 2812 | isCustom = true; |
| 2813 | // FALLTHROUGH. |
| 2814 | case TargetLowering::Legal: |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 2815 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2816 | if (isCustom) { |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 2817 | Tmp4 = TLI.LowerOperation(Result, DAG); |
| 2818 | if (Tmp4.Val) Result = Tmp4; |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2819 | } |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 2820 | break; |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 2821 | case TargetLowering::Promote: { |
| 2822 | // First step, figure out the appropriate operation to use. |
| 2823 | // Allow SETCC to not be supported for all legal data types |
| 2824 | // Mostly this targets FP |
| 2825 | MVT::ValueType NewInTy = Node->getOperand(0).getValueType(); |
Chris Lattner | 00755df | 2007-02-04 00:27:56 +0000 | [diff] [blame] | 2826 | MVT::ValueType OldVT = NewInTy; OldVT = OldVT; |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 2827 | |
| 2828 | // Scan for the appropriate larger type to use. |
| 2829 | while (1) { |
| 2830 | NewInTy = (MVT::ValueType)(NewInTy+1); |
| 2831 | |
| 2832 | assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) && |
| 2833 | "Fell off of the edge of the integer world"); |
| 2834 | assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) && |
| 2835 | "Fell off of the edge of the floating point world"); |
| 2836 | |
| 2837 | // If the target supports SETCC of this type, use it. |
Chris Lattner | 1ccf26a | 2005-12-22 05:23:45 +0000 | [diff] [blame] | 2838 | if (TLI.isOperationLegal(ISD::SETCC, NewInTy)) |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 2839 | break; |
| 2840 | } |
| 2841 | if (MVT::isInteger(NewInTy)) |
| 2842 | assert(0 && "Cannot promote Legal Integer SETCC yet"); |
| 2843 | else { |
| 2844 | Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1); |
| 2845 | Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2); |
| 2846 | } |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2847 | Tmp1 = LegalizeOp(Tmp1); |
| 2848 | Tmp2 = LegalizeOp(Tmp2); |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 2849 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
Evan Cheng | 433f8ac | 2006-01-17 19:47:13 +0000 | [diff] [blame] | 2850 | Result = LegalizeOp(Result); |
Andrew Lenharth | 5e3efbc | 2005-08-29 20:46:51 +0000 | [diff] [blame] | 2851 | break; |
Andrew Lenharth | ae35575 | 2005-11-30 17:12:26 +0000 | [diff] [blame] | 2852 | } |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 2853 | case TargetLowering::Expand: |
| 2854 | // Expand a setcc node into a select_cc of the same condition, lhs, and |
| 2855 | // rhs that selects between const 1 (true) and const 0 (false). |
| 2856 | MVT::ValueType VT = Node->getValueType(0); |
| 2857 | Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2, |
| 2858 | DAG.getConstant(1, VT), DAG.getConstant(0, VT), |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 2859 | Tmp3); |
Nate Begeman | b942a3d | 2005-08-23 04:29:48 +0000 | [diff] [blame] | 2860 | break; |
| 2861 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2862 | break; |
Chris Lattner | 52d08bd | 2005-05-09 20:23:03 +0000 | [diff] [blame] | 2863 | |
Chris Lattner | 5b359c6 | 2005-04-02 04:00:59 +0000 | [diff] [blame] | 2864 | case ISD::SHL_PARTS: |
| 2865 | case ISD::SRA_PARTS: |
| 2866 | case ISD::SRL_PARTS: { |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 2867 | SmallVector<SDOperand, 8> Ops; |
Chris Lattner | 84f6788 | 2005-01-20 18:52:28 +0000 | [diff] [blame] | 2868 | bool Changed = false; |
| 2869 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) { |
| 2870 | Ops.push_back(LegalizeOp(Node->getOperand(i))); |
| 2871 | Changed |= Ops.back() != Node->getOperand(i); |
| 2872 | } |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2873 | if (Changed) |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 2874 | Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size()); |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 2875 | |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 2876 | switch (TLI.getOperationAction(Node->getOpcode(), |
| 2877 | Node->getValueType(0))) { |
| 2878 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2879 | case TargetLowering::Legal: break; |
| 2880 | case TargetLowering::Custom: |
| 2881 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 2882 | if (Tmp1.Val) { |
| 2883 | SDOperand Tmp2, RetVal(0, 0); |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 2884 | for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2885 | Tmp2 = LegalizeOp(Tmp1.getValue(i)); |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 2886 | AddLegalizedOperand(SDOperand(Node, i), Tmp2); |
| 2887 | if (i == Op.ResNo) |
Evan Cheng | 12f2274 | 2006-01-19 04:54:52 +0000 | [diff] [blame] | 2888 | RetVal = Tmp2; |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 2889 | } |
Chris Lattner | 269f8c0 | 2006-01-10 19:43:26 +0000 | [diff] [blame] | 2890 | assert(RetVal.Val && "Illegal result number"); |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 2891 | return RetVal; |
| 2892 | } |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 2893 | break; |
| 2894 | } |
| 2895 | |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 2896 | // Since these produce multiple values, make sure to remember that we |
| 2897 | // legalized all of them. |
| 2898 | for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) |
| 2899 | AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i)); |
| 2900 | return Result.getValue(Op.ResNo); |
Chris Lattner | 84f6788 | 2005-01-20 18:52:28 +0000 | [diff] [blame] | 2901 | } |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 2902 | |
| 2903 | // Binary operators |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2904 | case ISD::ADD: |
| 2905 | case ISD::SUB: |
| 2906 | case ISD::MUL: |
Nate Begeman | c7c1657 | 2005-04-11 03:01:51 +0000 | [diff] [blame] | 2907 | case ISD::MULHS: |
| 2908 | case ISD::MULHU: |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2909 | case ISD::UDIV: |
| 2910 | case ISD::SDIV: |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2911 | case ISD::AND: |
| 2912 | case ISD::OR: |
| 2913 | case ISD::XOR: |
Chris Lattner | 03c0cf8 | 2005-01-07 21:45:56 +0000 | [diff] [blame] | 2914 | case ISD::SHL: |
| 2915 | case ISD::SRL: |
| 2916 | case ISD::SRA: |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 2917 | case ISD::FADD: |
| 2918 | case ISD::FSUB: |
| 2919 | case ISD::FMUL: |
| 2920 | case ISD::FDIV: |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 2921 | case ISD::FPOW: |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 2922 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
Andrew Lenharth | f2eb139 | 2005-07-05 19:52:39 +0000 | [diff] [blame] | 2923 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
| 2924 | case Expand: assert(0 && "Not possible"); |
| 2925 | case Legal: |
| 2926 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS. |
| 2927 | break; |
| 2928 | case Promote: |
| 2929 | Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS. |
| 2930 | break; |
| 2931 | } |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 2932 | |
| 2933 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2934 | |
Andrew Lenharth | e8f65f1 | 2005-12-24 23:42:32 +0000 | [diff] [blame] | 2935 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Chris Lattner | bc70cf8 | 2006-04-02 03:57:31 +0000 | [diff] [blame] | 2936 | default: assert(0 && "BinOp legalize operation not supported"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 2937 | case TargetLowering::Legal: break; |
| 2938 | case TargetLowering::Custom: |
| 2939 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 2940 | if (Tmp1.Val) Result = Tmp1; |
Andrew Lenharth | 57030e3 | 2005-12-25 01:07:37 +0000 | [diff] [blame] | 2941 | break; |
Chris Lattner | bc70cf8 | 2006-04-02 03:57:31 +0000 | [diff] [blame] | 2942 | case TargetLowering::Expand: { |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 2943 | MVT::ValueType VT = Op.getValueType(); |
| 2944 | |
| 2945 | // See if multiply or divide can be lowered using two-result operations. |
| 2946 | SDVTList VTs = DAG.getVTList(VT, VT); |
| 2947 | if (Node->getOpcode() == ISD::MUL) { |
| 2948 | // We just need the low half of the multiply; try both the signed |
| 2949 | // and unsigned forms. If the target supports both SMUL_LOHI and |
| 2950 | // UMUL_LOHI, form a preference by checking which forms of plain |
| 2951 | // MULH it supports. |
| 2952 | bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT); |
| 2953 | bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT); |
| 2954 | bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT); |
| 2955 | bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT); |
| 2956 | unsigned OpToUse = 0; |
| 2957 | if (HasSMUL_LOHI && !HasMULHS) { |
| 2958 | OpToUse = ISD::SMUL_LOHI; |
| 2959 | } else if (HasUMUL_LOHI && !HasMULHU) { |
| 2960 | OpToUse = ISD::UMUL_LOHI; |
| 2961 | } else if (HasSMUL_LOHI) { |
| 2962 | OpToUse = ISD::SMUL_LOHI; |
| 2963 | } else if (HasUMUL_LOHI) { |
| 2964 | OpToUse = ISD::UMUL_LOHI; |
| 2965 | } |
| 2966 | if (OpToUse) { |
| 2967 | Result = SDOperand(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0); |
| 2968 | break; |
| 2969 | } |
| 2970 | } |
| 2971 | if (Node->getOpcode() == ISD::MULHS && |
| 2972 | TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) { |
| 2973 | Result = SDOperand(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1); |
| 2974 | break; |
| 2975 | } |
| 2976 | if (Node->getOpcode() == ISD::MULHU && |
| 2977 | TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) { |
| 2978 | Result = SDOperand(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1); |
| 2979 | break; |
| 2980 | } |
| 2981 | if (Node->getOpcode() == ISD::SDIV && |
| 2982 | TLI.isOperationLegal(ISD::SDIVREM, VT)) { |
| 2983 | Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0); |
| 2984 | break; |
| 2985 | } |
| 2986 | if (Node->getOpcode() == ISD::UDIV && |
| 2987 | TLI.isOperationLegal(ISD::UDIVREM, VT)) { |
| 2988 | Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0); |
| 2989 | break; |
| 2990 | } |
| 2991 | |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 2992 | // Check to see if we have a libcall for this operator. |
| 2993 | RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; |
| 2994 | bool isSigned = false; |
| 2995 | switch (Node->getOpcode()) { |
| 2996 | case ISD::UDIV: |
| 2997 | case ISD::SDIV: |
| 2998 | if (VT == MVT::i32) { |
| 2999 | LC = Node->getOpcode() == ISD::UDIV |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3000 | ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32; |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3001 | isSigned = Node->getOpcode() == ISD::SDIV; |
| 3002 | } |
| 3003 | break; |
| 3004 | case ISD::FPOW: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3005 | LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80, |
| 3006 | RTLIB::POW_PPCF128); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3007 | break; |
| 3008 | default: break; |
| 3009 | } |
| 3010 | if (LC != RTLIB::UNKNOWN_LIBCALL) { |
| 3011 | SDOperand Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3012 | Result = ExpandLibCall(LC, Node, isSigned, Dummy); |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3013 | break; |
| 3014 | } |
| 3015 | |
Chris Lattner | bc70cf8 | 2006-04-02 03:57:31 +0000 | [diff] [blame] | 3016 | assert(MVT::isVector(Node->getValueType(0)) && |
| 3017 | "Cannot expand this binary operator!"); |
| 3018 | // Expand the operation into a bunch of nasty scalar code. |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3019 | Result = LegalizeOp(UnrollVectorOp(Op)); |
Chris Lattner | bc70cf8 | 2006-04-02 03:57:31 +0000 | [diff] [blame] | 3020 | break; |
| 3021 | } |
Evan Cheng | cc98761 | 2006-04-12 21:20:24 +0000 | [diff] [blame] | 3022 | case TargetLowering::Promote: { |
| 3023 | switch (Node->getOpcode()) { |
| 3024 | default: assert(0 && "Do not know how to promote this BinOp!"); |
| 3025 | case ISD::AND: |
| 3026 | case ISD::OR: |
| 3027 | case ISD::XOR: { |
| 3028 | MVT::ValueType OVT = Node->getValueType(0); |
| 3029 | MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT); |
| 3030 | assert(MVT::isVector(OVT) && "Cannot promote this BinOp!"); |
| 3031 | // Bit convert each of the values to the new type. |
| 3032 | Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1); |
| 3033 | Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2); |
| 3034 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2); |
| 3035 | // Bit convert the result back the original type. |
| 3036 | Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result); |
| 3037 | break; |
| 3038 | } |
| 3039 | } |
| 3040 | } |
Andrew Lenharth | e8f65f1 | 2005-12-24 23:42:32 +0000 | [diff] [blame] | 3041 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3042 | break; |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 3043 | |
Dan Gohman | e14ea86 | 2007-10-05 14:17:22 +0000 | [diff] [blame] | 3044 | case ISD::SMUL_LOHI: |
| 3045 | case ISD::UMUL_LOHI: |
| 3046 | case ISD::SDIVREM: |
| 3047 | case ISD::UDIVREM: |
| 3048 | // These nodes will only be produced by target-specific lowering, so |
| 3049 | // they shouldn't be here if they aren't legal. |
Duncan Sands | a7c97a7 | 2007-10-16 09:07:20 +0000 | [diff] [blame] | 3050 | assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) && |
Dan Gohman | e14ea86 | 2007-10-05 14:17:22 +0000 | [diff] [blame] | 3051 | "This must be legal!"); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3052 | |
| 3053 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
| 3054 | Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS |
| 3055 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Dan Gohman | e14ea86 | 2007-10-05 14:17:22 +0000 | [diff] [blame] | 3056 | break; |
| 3057 | |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 3058 | case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type! |
| 3059 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
| 3060 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
| 3061 | case Expand: assert(0 && "Not possible"); |
| 3062 | case Legal: |
| 3063 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS. |
| 3064 | break; |
| 3065 | case Promote: |
| 3066 | Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS. |
| 3067 | break; |
| 3068 | } |
| 3069 | |
| 3070 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 3071 | |
| 3072 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
| 3073 | default: assert(0 && "Operation not supported"); |
| 3074 | case TargetLowering::Custom: |
| 3075 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3076 | if (Tmp1.Val) Result = Tmp1; |
Chris Lattner | 8f4191d | 2006-03-13 06:08:38 +0000 | [diff] [blame] | 3077 | break; |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 3078 | case TargetLowering::Legal: break; |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 3079 | case TargetLowering::Expand: { |
Evan Cheng | 636c753 | 2007-01-05 23:33:44 +0000 | [diff] [blame] | 3080 | // If this target supports fabs/fneg natively and select is cheap, |
| 3081 | // do this efficiently. |
| 3082 | if (!TLI.isSelectExpensive() && |
| 3083 | TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) == |
| 3084 | TargetLowering::Legal && |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 3085 | TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) == |
Evan Cheng | 636c753 | 2007-01-05 23:33:44 +0000 | [diff] [blame] | 3086 | TargetLowering::Legal) { |
Chris Lattner | 8f4191d | 2006-03-13 06:08:38 +0000 | [diff] [blame] | 3087 | // Get the sign bit of the RHS. |
| 3088 | MVT::ValueType IVT = |
| 3089 | Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64; |
| 3090 | SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2); |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 3091 | SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit), |
Chris Lattner | 8f4191d | 2006-03-13 06:08:38 +0000 | [diff] [blame] | 3092 | SignBit, DAG.getConstant(0, IVT), ISD::SETLT); |
| 3093 | // Get the absolute value of the result. |
| 3094 | SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1); |
| 3095 | // Select between the nabs and abs value based on the sign bit of |
| 3096 | // the input. |
| 3097 | Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit, |
| 3098 | DAG.getNode(ISD::FNEG, AbsVal.getValueType(), |
| 3099 | AbsVal), |
| 3100 | AbsVal); |
| 3101 | Result = LegalizeOp(Result); |
| 3102 | break; |
| 3103 | } |
| 3104 | |
| 3105 | // Otherwise, do bitwise ops! |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 3106 | MVT::ValueType NVT = |
| 3107 | Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64; |
| 3108 | Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI); |
| 3109 | Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result); |
| 3110 | Result = LegalizeOp(Result); |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 3111 | break; |
| 3112 | } |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 3113 | } |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 3114 | break; |
| 3115 | |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 3116 | case ISD::ADDC: |
| 3117 | case ISD::SUBC: |
| 3118 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 3119 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 3120 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
| 3121 | // Since this produces two values, make sure to remember that we legalized |
| 3122 | // both of them. |
| 3123 | AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0)); |
| 3124 | AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1)); |
| 3125 | return Result; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 3126 | |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 3127 | case ISD::ADDE: |
| 3128 | case ISD::SUBE: |
| 3129 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 3130 | Tmp2 = LegalizeOp(Node->getOperand(1)); |
| 3131 | Tmp3 = LegalizeOp(Node->getOperand(2)); |
| 3132 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3); |
| 3133 | // Since this produces two values, make sure to remember that we legalized |
| 3134 | // both of them. |
| 3135 | AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0)); |
| 3136 | AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1)); |
| 3137 | return Result; |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 3138 | |
Nate Begeman | 419f8b6 | 2005-10-18 00:27:41 +0000 | [diff] [blame] | 3139 | case ISD::BUILD_PAIR: { |
| 3140 | MVT::ValueType PairTy = Node->getValueType(0); |
| 3141 | // TODO: handle the case where the Lo and Hi operands are not of legal type |
| 3142 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo |
| 3143 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi |
| 3144 | switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3145 | case TargetLowering::Promote: |
| 3146 | case TargetLowering::Custom: |
| 3147 | assert(0 && "Cannot promote/custom this yet!"); |
Nate Begeman | 419f8b6 | 2005-10-18 00:27:41 +0000 | [diff] [blame] | 3148 | case TargetLowering::Legal: |
| 3149 | if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1)) |
| 3150 | Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2); |
| 3151 | break; |
Nate Begeman | 419f8b6 | 2005-10-18 00:27:41 +0000 | [diff] [blame] | 3152 | case TargetLowering::Expand: |
| 3153 | Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1); |
| 3154 | Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2); |
| 3155 | Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2, |
| 3156 | DAG.getConstant(MVT::getSizeInBits(PairTy)/2, |
| 3157 | TLI.getShiftAmountTy())); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3158 | Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2); |
Nate Begeman | 419f8b6 | 2005-10-18 00:27:41 +0000 | [diff] [blame] | 3159 | break; |
| 3160 | } |
| 3161 | break; |
| 3162 | } |
| 3163 | |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3164 | case ISD::UREM: |
| 3165 | case ISD::SREM: |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 3166 | case ISD::FREM: |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3167 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
| 3168 | Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3169 | |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3170 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3171 | case TargetLowering::Promote: assert(0 && "Cannot promote this yet!"); |
| 3172 | case TargetLowering::Custom: |
| 3173 | isCustom = true; |
| 3174 | // FALLTHROUGH |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3175 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3176 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3177 | if (isCustom) { |
| 3178 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3179 | if (Tmp1.Val) Result = Tmp1; |
| 3180 | } |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3181 | break; |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3182 | case TargetLowering::Expand: { |
Evan Cheng | 6b5578f | 2006-09-18 23:28:33 +0000 | [diff] [blame] | 3183 | unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV; |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 3184 | bool isSigned = DivOpc == ISD::SDIV; |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3185 | MVT::ValueType VT = Node->getValueType(0); |
| 3186 | |
| 3187 | // See if remainder can be lowered using two-result operations. |
| 3188 | SDVTList VTs = DAG.getVTList(VT, VT); |
| 3189 | if (Node->getOpcode() == ISD::SREM && |
| 3190 | TLI.isOperationLegal(ISD::SDIVREM, VT)) { |
| 3191 | Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1); |
| 3192 | break; |
| 3193 | } |
| 3194 | if (Node->getOpcode() == ISD::UREM && |
| 3195 | TLI.isOperationLegal(ISD::UDIVREM, VT)) { |
| 3196 | Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1); |
| 3197 | break; |
| 3198 | } |
| 3199 | |
| 3200 | if (MVT::isInteger(VT)) { |
| 3201 | if (TLI.getOperationAction(DivOpc, VT) == |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3202 | TargetLowering::Legal) { |
| 3203 | // X % Y -> X-X/Y*Y |
Evan Cheng | 6b5578f | 2006-09-18 23:28:33 +0000 | [diff] [blame] | 3204 | Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2); |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3205 | Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2); |
| 3206 | Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result); |
Dan Gohman | 8017631 | 2007-11-05 23:35:22 +0000 | [diff] [blame] | 3207 | } else if (MVT::isVector(VT)) { |
| 3208 | Result = LegalizeOp(UnrollVectorOp(Op)); |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3209 | } else { |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3210 | assert(VT == MVT::i32 && |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3211 | "Cannot expand this binary operator!"); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3212 | RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM |
| 3213 | ? RTLIB::UREM_I32 : RTLIB::SREM_I32; |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3214 | SDOperand Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3215 | Result = ExpandLibCall(LC, Node, isSigned, Dummy); |
Evan Cheng | 52cc1ea | 2006-09-18 21:49:04 +0000 | [diff] [blame] | 3216 | } |
Dan Gohman | 0d97426 | 2007-11-06 22:11:54 +0000 | [diff] [blame] | 3217 | } else { |
| 3218 | assert(MVT::isFloatingPoint(VT) && |
| 3219 | "remainder op must have integer or floating-point type"); |
Dan Gohman | 8017631 | 2007-11-05 23:35:22 +0000 | [diff] [blame] | 3220 | if (MVT::isVector(VT)) { |
| 3221 | Result = LegalizeOp(UnrollVectorOp(Op)); |
| 3222 | } else { |
| 3223 | // Floating point mod -> fmod libcall. |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3224 | RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64, |
| 3225 | RTLIB::REM_F80, RTLIB::REM_PPCF128); |
Dan Gohman | 8017631 | 2007-11-05 23:35:22 +0000 | [diff] [blame] | 3226 | SDOperand Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3227 | Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy); |
Dan Gohman | 8017631 | 2007-11-05 23:35:22 +0000 | [diff] [blame] | 3228 | } |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3229 | } |
| 3230 | break; |
| 3231 | } |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 3232 | } |
Nate Begeman | c105e19 | 2005-04-06 00:23:54 +0000 | [diff] [blame] | 3233 | break; |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3234 | case ISD::VAARG: { |
| 3235 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 3236 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer. |
| 3237 | |
Chris Lattner | 5c62f33 | 2006-01-28 07:42:08 +0000 | [diff] [blame] | 3238 | MVT::ValueType VT = Node->getValueType(0); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3239 | switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) { |
| 3240 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3241 | case TargetLowering::Custom: |
| 3242 | isCustom = true; |
| 3243 | // FALLTHROUGH |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3244 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3245 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
| 3246 | Result = Result.getValue(0); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3247 | Tmp1 = Result.getValue(1); |
| 3248 | |
| 3249 | if (isCustom) { |
| 3250 | Tmp2 = TLI.LowerOperation(Result, DAG); |
| 3251 | if (Tmp2.Val) { |
| 3252 | Result = LegalizeOp(Tmp2); |
| 3253 | Tmp1 = LegalizeOp(Tmp2.getValue(1)); |
| 3254 | } |
| 3255 | } |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3256 | break; |
| 3257 | case TargetLowering::Expand: { |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 3258 | const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue(); |
| 3259 | SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3260 | // Increment the pointer, VAList, to the next vaarg |
| 3261 | Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList, |
| 3262 | DAG.getConstant(MVT::getSizeInBits(VT)/8, |
| 3263 | TLI.getPointerTy())); |
| 3264 | // Store the incremented VAList to the legalized pointer |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 3265 | Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3266 | // Load the actual argument out of the pointer VAList |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 3267 | Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3268 | Tmp1 = LegalizeOp(Result.getValue(1)); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3269 | Result = LegalizeOp(Result); |
| 3270 | break; |
| 3271 | } |
| 3272 | } |
| 3273 | // Since VAARG produces two values, make sure to remember that we |
| 3274 | // legalized both of them. |
| 3275 | AddLegalizedOperand(SDOperand(Node, 0), Result); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3276 | AddLegalizedOperand(SDOperand(Node, 1), Tmp1); |
| 3277 | return Op.ResNo ? Tmp1 : Result; |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3278 | } |
| 3279 | |
| 3280 | case ISD::VACOPY: |
| 3281 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 3282 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer. |
| 3283 | Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer. |
| 3284 | |
| 3285 | switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) { |
| 3286 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3287 | case TargetLowering::Custom: |
| 3288 | isCustom = true; |
| 3289 | // FALLTHROUGH |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3290 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3291 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, |
| 3292 | Node->getOperand(3), Node->getOperand(4)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3293 | if (isCustom) { |
| 3294 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3295 | if (Tmp1.Val) Result = Tmp1; |
| 3296 | } |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3297 | break; |
| 3298 | case TargetLowering::Expand: |
| 3299 | // This defaults to loading a pointer from the input and storing it to the |
| 3300 | // output, returning the chain. |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 3301 | const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue(); |
| 3302 | const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue(); |
Dan Gohman | 499c1bd | 2008-04-17 02:09:26 +0000 | [diff] [blame] | 3303 | Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0); |
| 3304 | Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3305 | break; |
| 3306 | } |
| 3307 | break; |
| 3308 | |
| 3309 | case ISD::VAEND: |
| 3310 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 3311 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer. |
| 3312 | |
| 3313 | switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) { |
| 3314 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3315 | case TargetLowering::Custom: |
| 3316 | isCustom = true; |
| 3317 | // FALLTHROUGH |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3318 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3319 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3320 | if (isCustom) { |
| 3321 | Tmp1 = TLI.LowerOperation(Tmp1, DAG); |
| 3322 | if (Tmp1.Val) Result = Tmp1; |
| 3323 | } |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3324 | break; |
| 3325 | case TargetLowering::Expand: |
| 3326 | Result = Tmp1; // Default to a no-op, return the chain |
| 3327 | break; |
| 3328 | } |
| 3329 | break; |
| 3330 | |
| 3331 | case ISD::VASTART: |
| 3332 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain. |
| 3333 | Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer. |
| 3334 | |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3335 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2)); |
| 3336 | |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3337 | switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) { |
| 3338 | default: assert(0 && "This action is not supported yet!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3339 | case TargetLowering::Legal: break; |
| 3340 | case TargetLowering::Custom: |
| 3341 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3342 | if (Tmp1.Val) Result = Tmp1; |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 3343 | break; |
| 3344 | } |
| 3345 | break; |
| 3346 | |
Nate Begeman | 35ef913 | 2006-01-11 21:21:00 +0000 | [diff] [blame] | 3347 | case ISD::ROTL: |
| 3348 | case ISD::ROTR: |
| 3349 | Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS |
| 3350 | Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3351 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2); |
Scott Michel | c9dc114 | 2007-04-02 21:36:32 +0000 | [diff] [blame] | 3352 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
| 3353 | default: |
| 3354 | assert(0 && "ROTL/ROTR legalize operation not supported"); |
| 3355 | break; |
| 3356 | case TargetLowering::Legal: |
| 3357 | break; |
| 3358 | case TargetLowering::Custom: |
| 3359 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3360 | if (Tmp1.Val) Result = Tmp1; |
| 3361 | break; |
| 3362 | case TargetLowering::Promote: |
| 3363 | assert(0 && "Do not know how to promote ROTL/ROTR"); |
| 3364 | break; |
| 3365 | case TargetLowering::Expand: |
| 3366 | assert(0 && "Do not know how to expand ROTL/ROTR"); |
| 3367 | break; |
| 3368 | } |
Nate Begeman | 35ef913 | 2006-01-11 21:21:00 +0000 | [diff] [blame] | 3369 | break; |
| 3370 | |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 3371 | case ISD::BSWAP: |
| 3372 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Op |
| 3373 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3374 | case TargetLowering::Custom: |
| 3375 | assert(0 && "Cannot custom legalize this yet!"); |
| 3376 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3377 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3378 | break; |
| 3379 | case TargetLowering::Promote: { |
| 3380 | MVT::ValueType OVT = Tmp1.getValueType(); |
| 3381 | MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT); |
Dan Gohman | b55757e | 2007-05-18 17:52:13 +0000 | [diff] [blame] | 3382 | unsigned DiffBits = MVT::getSizeInBits(NVT) - MVT::getSizeInBits(OVT); |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 3383 | |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3384 | Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1); |
| 3385 | Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1); |
| 3386 | Result = DAG.getNode(ISD::SRL, NVT, Tmp1, |
| 3387 | DAG.getConstant(DiffBits, TLI.getShiftAmountTy())); |
| 3388 | break; |
| 3389 | } |
| 3390 | case TargetLowering::Expand: |
| 3391 | Result = ExpandBSWAP(Tmp1); |
| 3392 | break; |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 3393 | } |
| 3394 | break; |
| 3395 | |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3396 | case ISD::CTPOP: |
| 3397 | case ISD::CTTZ: |
| 3398 | case ISD::CTLZ: |
| 3399 | Tmp1 = LegalizeOp(Node->getOperand(0)); // Op |
| 3400 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Scott Michel | 910b66d | 2007-07-30 21:00:31 +0000 | [diff] [blame] | 3401 | case TargetLowering::Custom: |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3402 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3403 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Scott Michel | 910b66d | 2007-07-30 21:00:31 +0000 | [diff] [blame] | 3404 | if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) == |
Scott Michel | 335f4f7 | 2007-08-02 02:22:46 +0000 | [diff] [blame] | 3405 | TargetLowering::Custom) { |
| 3406 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3407 | if (Tmp1.Val) { |
| 3408 | Result = Tmp1; |
| 3409 | } |
Scott Michel | 910b66d | 2007-07-30 21:00:31 +0000 | [diff] [blame] | 3410 | } |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3411 | break; |
| 3412 | case TargetLowering::Promote: { |
| 3413 | MVT::ValueType OVT = Tmp1.getValueType(); |
| 3414 | MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT); |
Chris Lattner | edb1add | 2005-05-11 04:51:16 +0000 | [diff] [blame] | 3415 | |
| 3416 | // Zero extend the argument. |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3417 | Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1); |
| 3418 | // Perform the larger operation, then subtract if needed. |
| 3419 | Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3420 | switch (Node->getOpcode()) { |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3421 | case ISD::CTPOP: |
| 3422 | Result = Tmp1; |
| 3423 | break; |
| 3424 | case ISD::CTTZ: |
| 3425 | //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT) |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 3426 | Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, |
Dan Gohman | b55757e | 2007-05-18 17:52:13 +0000 | [diff] [blame] | 3427 | DAG.getConstant(MVT::getSizeInBits(NVT), NVT), |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 3428 | ISD::SETEQ); |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 3429 | Result = DAG.getNode(ISD::SELECT, NVT, Tmp2, |
Scott Michel | 910b66d | 2007-07-30 21:00:31 +0000 | [diff] [blame] | 3430 | DAG.getConstant(MVT::getSizeInBits(OVT),NVT), Tmp1); |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3431 | break; |
| 3432 | case ISD::CTLZ: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3433 | // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT)) |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 3434 | Result = DAG.getNode(ISD::SUB, NVT, Tmp1, |
Dan Gohman | b55757e | 2007-05-18 17:52:13 +0000 | [diff] [blame] | 3435 | DAG.getConstant(MVT::getSizeInBits(NVT) - |
| 3436 | MVT::getSizeInBits(OVT), NVT)); |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3437 | break; |
| 3438 | } |
| 3439 | break; |
| 3440 | } |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3441 | case TargetLowering::Expand: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3442 | Result = ExpandBitCount(Node->getOpcode(), Tmp1); |
Andrew Lenharth | 691ef2b | 2005-05-03 17:19:30 +0000 | [diff] [blame] | 3443 | break; |
| 3444 | } |
| 3445 | break; |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 3446 | |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3447 | // Unary operators |
| 3448 | case ISD::FABS: |
| 3449 | case ISD::FNEG: |
Chris Lattner | da6ba87 | 2005-04-28 21:44:33 +0000 | [diff] [blame] | 3450 | case ISD::FSQRT: |
| 3451 | case ISD::FSIN: |
| 3452 | case ISD::FCOS: |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3453 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 3454 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3455 | case TargetLowering::Promote: |
| 3456 | case TargetLowering::Custom: |
Evan Cheng | 59ad781 | 2006-01-31 18:14:25 +0000 | [diff] [blame] | 3457 | isCustom = true; |
| 3458 | // FALLTHROUGH |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3459 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3460 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Evan Cheng | 59ad781 | 2006-01-31 18:14:25 +0000 | [diff] [blame] | 3461 | if (isCustom) { |
| 3462 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3463 | if (Tmp1.Val) Result = Tmp1; |
| 3464 | } |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3465 | break; |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3466 | case TargetLowering::Expand: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3467 | switch (Node->getOpcode()) { |
| 3468 | default: assert(0 && "Unreachable!"); |
| 3469 | case ISD::FNEG: |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3470 | // Expand Y = FNEG(X) -> Y = SUB -0.0, X |
| 3471 | Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3472 | Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1); |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3473 | break; |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3474 | case ISD::FABS: { |
Chris Lattner | 4af6e0d | 2005-04-02 05:26:37 +0000 | [diff] [blame] | 3475 | // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X). |
| 3476 | MVT::ValueType VT = Node->getValueType(0); |
| 3477 | Tmp2 = DAG.getConstantFP(0.0, VT); |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 3478 | Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2, |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 3479 | ISD::SETUGT); |
Chris Lattner | 4af6e0d | 2005-04-02 05:26:37 +0000 | [diff] [blame] | 3480 | Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1); |
| 3481 | Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3); |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3482 | break; |
| 3483 | } |
| 3484 | case ISD::FSQRT: |
| 3485 | case ISD::FSIN: |
| 3486 | case ISD::FCOS: { |
| 3487 | MVT::ValueType VT = Node->getValueType(0); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3488 | |
| 3489 | // Expand unsupported unary vector operators by unrolling them. |
| 3490 | if (MVT::isVector(VT)) { |
| 3491 | Result = LegalizeOp(UnrollVectorOp(Op)); |
| 3492 | break; |
| 3493 | } |
| 3494 | |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3495 | RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3496 | switch(Node->getOpcode()) { |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3497 | case ISD::FSQRT: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3498 | LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64, |
| 3499 | RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3500 | break; |
| 3501 | case ISD::FSIN: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3502 | LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64, |
| 3503 | RTLIB::SIN_F80, RTLIB::SIN_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3504 | break; |
| 3505 | case ISD::FCOS: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3506 | LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64, |
| 3507 | RTLIB::COS_F80, RTLIB::COS_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3508 | break; |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3509 | default: assert(0 && "Unreachable!"); |
| 3510 | } |
Nate Begeman | 2ac4fc0 | 2005-08-04 21:43:28 +0000 | [diff] [blame] | 3511 | SDOperand Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3512 | Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy); |
Chris Lattner | f76e7dc | 2005-04-30 04:43:14 +0000 | [diff] [blame] | 3513 | break; |
| 3514 | } |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3515 | } |
| 3516 | break; |
| 3517 | } |
| 3518 | break; |
Chris Lattner | 6ddf8ed | 2006-09-09 06:03:30 +0000 | [diff] [blame] | 3519 | case ISD::FPOWI: { |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 3520 | MVT::ValueType VT = Node->getValueType(0); |
| 3521 | |
| 3522 | // Expand unsupported unary vector operators by unrolling them. |
| 3523 | if (MVT::isVector(VT)) { |
| 3524 | Result = LegalizeOp(UnrollVectorOp(Op)); |
| 3525 | break; |
| 3526 | } |
| 3527 | |
| 3528 | // We always lower FPOWI into a libcall. No target support for it yet. |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 3529 | RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, |
| 3530 | RTLIB::POWI_F80, RTLIB::POWI_PPCF128); |
Chris Lattner | 6ddf8ed | 2006-09-09 06:03:30 +0000 | [diff] [blame] | 3531 | SDOperand Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3532 | Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy); |
Chris Lattner | 6ddf8ed | 2006-09-09 06:03:30 +0000 | [diff] [blame] | 3533 | break; |
| 3534 | } |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 3535 | case ISD::BIT_CONVERT: |
Chris Lattner | 67993f7 | 2006-01-23 07:30:46 +0000 | [diff] [blame] | 3536 | if (!isTypeLegal(Node->getOperand(0).getValueType())) { |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 3537 | Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0), |
| 3538 | Node->getValueType(0)); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 3539 | } else if (MVT::isVector(Op.getOperand(0).getValueType())) { |
| 3540 | // The input has to be a vector type, we have to either scalarize it, pack |
| 3541 | // it, or convert it based on whether the input vector type is legal. |
| 3542 | SDNode *InVal = Node->getOperand(0).Val; |
Dale Johannesen | e526962 | 2007-10-20 00:07:52 +0000 | [diff] [blame] | 3543 | int InIx = Node->getOperand(0).ResNo; |
| 3544 | unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx)); |
| 3545 | MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx)); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 3546 | |
| 3547 | // Figure out if there is a simple type corresponding to this Vector |
| 3548 | // type. If so, convert to the vector type. |
| 3549 | MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems); |
| 3550 | if (TLI.isTypeLegal(TVT)) { |
Dan Gohman | 07a9676 | 2007-07-16 14:29:03 +0000 | [diff] [blame] | 3551 | // Turn this into a bit convert of the vector input. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 3552 | Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), |
| 3553 | LegalizeOp(Node->getOperand(0))); |
| 3554 | break; |
| 3555 | } else if (NumElems == 1) { |
| 3556 | // Turn this into a bit convert of the scalar input. |
| 3557 | Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), |
| 3558 | ScalarizeVectorOp(Node->getOperand(0))); |
| 3559 | break; |
| 3560 | } else { |
| 3561 | // FIXME: UNIMP! Store then reload |
| 3562 | assert(0 && "Cast from unsupported vector type not implemented yet!"); |
| 3563 | } |
Chris Lattner | 67993f7 | 2006-01-23 07:30:46 +0000 | [diff] [blame] | 3564 | } else { |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 3565 | switch (TLI.getOperationAction(ISD::BIT_CONVERT, |
| 3566 | Node->getOperand(0).getValueType())) { |
| 3567 | default: assert(0 && "Unknown operation action!"); |
| 3568 | case TargetLowering::Expand: |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 3569 | Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0), |
| 3570 | Node->getValueType(0)); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 3571 | break; |
| 3572 | case TargetLowering::Legal: |
| 3573 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3574 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 3575 | break; |
| 3576 | } |
| 3577 | } |
| 3578 | break; |
Chris Lattner | d1f04d4 | 2006-03-24 02:26:29 +0000 | [diff] [blame] | 3579 | |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 3580 | // Conversion operators. The source and destination have different types. |
Chris Lattner | ae0aacb | 2005-01-08 08:08:56 +0000 | [diff] [blame] | 3581 | case ISD::SINT_TO_FP: |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3582 | case ISD::UINT_TO_FP: { |
| 3583 | bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3584 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 3585 | case Legal: |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 3586 | switch (TLI.getOperationAction(Node->getOpcode(), |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3587 | Node->getOperand(0).getValueType())) { |
| 3588 | default: assert(0 && "Unknown operation action!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3589 | case TargetLowering::Custom: |
| 3590 | isCustom = true; |
| 3591 | // FALLTHROUGH |
| 3592 | case TargetLowering::Legal: |
| 3593 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3594 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3595 | if (isCustom) { |
| 3596 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3597 | if (Tmp1.Val) Result = Tmp1; |
| 3598 | } |
| 3599 | break; |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3600 | case TargetLowering::Expand: |
Jim Laskey | 6269ed1 | 2005-08-17 00:39:29 +0000 | [diff] [blame] | 3601 | Result = ExpandLegalINT_TO_FP(isSigned, |
| 3602 | LegalizeOp(Node->getOperand(0)), |
| 3603 | Node->getValueType(0)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3604 | break; |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3605 | case TargetLowering::Promote: |
| 3606 | Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)), |
| 3607 | Node->getValueType(0), |
| 3608 | isSigned); |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3609 | break; |
Andrew Lenharth | 5b5b8c2 | 2005-11-30 06:43:03 +0000 | [diff] [blame] | 3610 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3611 | break; |
Chris Lattner | b00a642 | 2005-01-07 22:37:48 +0000 | [diff] [blame] | 3612 | case Expand: |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3613 | Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, |
| 3614 | Node->getValueType(0), Node->getOperand(0)); |
| 3615 | break; |
| 3616 | case Promote: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3617 | Tmp1 = PromoteOp(Node->getOperand(0)); |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3618 | if (isSigned) { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3619 | Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(), |
| 3620 | Tmp1, DAG.getValueType(Node->getOperand(0).getValueType())); |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3621 | } else { |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3622 | Tmp1 = DAG.getZeroExtendInReg(Tmp1, |
| 3623 | Node->getOperand(0).getValueType()); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 3624 | } |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3625 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 3626 | Result = LegalizeOp(Result); // The 'op' is not necessarily legal! |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3627 | break; |
| 3628 | } |
| 3629 | break; |
| 3630 | } |
| 3631 | case ISD::TRUNCATE: |
| 3632 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 3633 | case Legal: |
| 3634 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3635 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3636 | break; |
| 3637 | case Expand: |
| 3638 | ExpandOp(Node->getOperand(0), Tmp1, Tmp2); |
| 3639 | |
| 3640 | // Since the result is legal, we should just be able to truncate the low |
| 3641 | // part of the source. |
| 3642 | Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1); |
| 3643 | break; |
| 3644 | case Promote: |
| 3645 | Result = PromoteOp(Node->getOperand(0)); |
| 3646 | Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result); |
| 3647 | break; |
| 3648 | } |
| 3649 | break; |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 3650 | |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3651 | case ISD::FP_TO_SINT: |
| 3652 | case ISD::FP_TO_UINT: |
| 3653 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 3654 | case Legal: |
Chris Lattner | f1fa74e | 2005-07-30 00:04:12 +0000 | [diff] [blame] | 3655 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 3656 | |
Chris Lattner | 1618beb | 2005-07-29 00:11:56 +0000 | [diff] [blame] | 3657 | switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){ |
| 3658 | default: assert(0 && "Unknown operation action!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3659 | case TargetLowering::Custom: |
| 3660 | isCustom = true; |
| 3661 | // FALLTHROUGH |
| 3662 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3663 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3664 | if (isCustom) { |
| 3665 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3666 | if (Tmp1.Val) Result = Tmp1; |
| 3667 | } |
| 3668 | break; |
| 3669 | case TargetLowering::Promote: |
| 3670 | Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0), |
| 3671 | Node->getOpcode() == ISD::FP_TO_SINT); |
| 3672 | break; |
Chris Lattner | 1618beb | 2005-07-29 00:11:56 +0000 | [diff] [blame] | 3673 | case TargetLowering::Expand: |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 3674 | if (Node->getOpcode() == ISD::FP_TO_UINT) { |
| 3675 | SDOperand True, False; |
| 3676 | MVT::ValueType VT = Node->getOperand(0).getValueType(); |
| 3677 | MVT::ValueType NVT = Node->getValueType(0); |
Dale Johannesen | 73328d1 | 2007-09-19 23:55:34 +0000 | [diff] [blame] | 3678 | const uint64_t zero[] = {0, 0}; |
| 3679 | APFloat apf = APFloat(APInt(MVT::getSizeInBits(VT), 2, zero)); |
Dan Gohman | c7773bf | 2008-02-29 01:44:25 +0000 | [diff] [blame] | 3680 | APInt x = APInt::getSignBit(MVT::getSizeInBits(NVT)); |
| 3681 | (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven); |
Dale Johannesen | 73328d1 | 2007-09-19 23:55:34 +0000 | [diff] [blame] | 3682 | Tmp2 = DAG.getConstantFP(apf, VT); |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 3683 | Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)), |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 3684 | Node->getOperand(0), Tmp2, ISD::SETLT); |
| 3685 | True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0)); |
| 3686 | False = DAG.getNode(ISD::FP_TO_SINT, NVT, |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 3687 | DAG.getNode(ISD::FSUB, VT, Node->getOperand(0), |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 3688 | Tmp2)); |
| 3689 | False = DAG.getNode(ISD::XOR, NVT, False, |
Dan Gohman | c7773bf | 2008-02-29 01:44:25 +0000 | [diff] [blame] | 3690 | DAG.getConstant(x, NVT)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3691 | Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False); |
| 3692 | break; |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 3693 | } else { |
| 3694 | assert(0 && "Do not know how to expand FP_TO_SINT yet!"); |
| 3695 | } |
| 3696 | break; |
Chris Lattner | 07dffd6 | 2005-08-26 00:14:16 +0000 | [diff] [blame] | 3697 | } |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3698 | break; |
Evan Cheng | 6af00d5 | 2006-12-13 01:57:55 +0000 | [diff] [blame] | 3699 | case Expand: { |
Evan Cheng | 6af00d5 | 2006-12-13 01:57:55 +0000 | [diff] [blame] | 3700 | MVT::ValueType VT = Op.getValueType(); |
Dale Johannesen | 6eaeff2 | 2007-10-10 01:01:31 +0000 | [diff] [blame] | 3701 | MVT::ValueType OVT = Node->getOperand(0).getValueType(); |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 3702 | // Convert ppcf128 to i32 |
Dale Johannesen | 6eaeff2 | 2007-10-10 01:01:31 +0000 | [diff] [blame] | 3703 | if (OVT == MVT::ppcf128 && VT == MVT::i32) { |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3704 | if (Node->getOpcode() == ISD::FP_TO_SINT) { |
| 3705 | Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128, |
| 3706 | Node->getOperand(0), DAG.getValueType(MVT::f64)); |
| 3707 | Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result, |
| 3708 | DAG.getIntPtrConstant(1)); |
| 3709 | Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result); |
| 3710 | } else { |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 3711 | const uint64_t TwoE31[] = {0x41e0000000000000LL, 0}; |
| 3712 | APFloat apf = APFloat(APInt(128, 2, TwoE31)); |
| 3713 | Tmp2 = DAG.getConstantFP(apf, OVT); |
| 3714 | // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X |
| 3715 | // FIXME: generated code sucks. |
| 3716 | Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2, |
| 3717 | DAG.getNode(ISD::ADD, MVT::i32, |
| 3718 | DAG.getNode(ISD::FP_TO_SINT, VT, |
| 3719 | DAG.getNode(ISD::FSUB, OVT, |
| 3720 | Node->getOperand(0), Tmp2)), |
| 3721 | DAG.getConstant(0x80000000, MVT::i32)), |
| 3722 | DAG.getNode(ISD::FP_TO_SINT, VT, |
| 3723 | Node->getOperand(0)), |
| 3724 | DAG.getCondCode(ISD::SETGE)); |
| 3725 | } |
Dale Johannesen | 6eaeff2 | 2007-10-10 01:01:31 +0000 | [diff] [blame] | 3726 | break; |
| 3727 | } |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 3728 | // Convert f32 / f64 to i32 / i64 / i128. |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 3729 | RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; |
Evan Cheng | 6af00d5 | 2006-12-13 01:57:55 +0000 | [diff] [blame] | 3730 | switch (Node->getOpcode()) { |
Dale Johannesen | 73328d1 | 2007-09-19 23:55:34 +0000 | [diff] [blame] | 3731 | case ISD::FP_TO_SINT: { |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 3732 | if (VT == MVT::i32) { |
| 3733 | if (OVT == MVT::f32) |
| 3734 | LC = RTLIB::FPTOSINT_F32_I32; |
| 3735 | else if (OVT == MVT::f64) |
| 3736 | LC = RTLIB::FPTOSINT_F64_I32; |
| 3737 | else |
| 3738 | assert(0 && "Unexpected i32-to-fp conversion!"); |
| 3739 | } else if (VT == MVT::i64) { |
| 3740 | if (OVT == MVT::f32) |
| 3741 | LC = RTLIB::FPTOSINT_F32_I64; |
| 3742 | else if (OVT == MVT::f64) |
| 3743 | LC = RTLIB::FPTOSINT_F64_I64; |
| 3744 | else if (OVT == MVT::f80) |
| 3745 | LC = RTLIB::FPTOSINT_F80_I64; |
| 3746 | else if (OVT == MVT::ppcf128) |
| 3747 | LC = RTLIB::FPTOSINT_PPCF128_I64; |
| 3748 | else |
| 3749 | assert(0 && "Unexpected i64-to-fp conversion!"); |
| 3750 | } else if (VT == MVT::i128) { |
| 3751 | if (OVT == MVT::f32) |
| 3752 | LC = RTLIB::FPTOSINT_F32_I128; |
| 3753 | else if (OVT == MVT::f64) |
| 3754 | LC = RTLIB::FPTOSINT_F64_I128; |
| 3755 | else if (OVT == MVT::f80) |
| 3756 | LC = RTLIB::FPTOSINT_F80_I128; |
| 3757 | else if (OVT == MVT::ppcf128) |
| 3758 | LC = RTLIB::FPTOSINT_PPCF128_I128; |
| 3759 | else |
| 3760 | assert(0 && "Unexpected i128-to-fp conversion!"); |
| 3761 | } else { |
| 3762 | assert(0 && "Unexpectd int-to-fp conversion!"); |
Dale Johannesen | 73328d1 | 2007-09-19 23:55:34 +0000 | [diff] [blame] | 3763 | } |
Evan Cheng | 6af00d5 | 2006-12-13 01:57:55 +0000 | [diff] [blame] | 3764 | break; |
Dale Johannesen | 73328d1 | 2007-09-19 23:55:34 +0000 | [diff] [blame] | 3765 | } |
| 3766 | case ISD::FP_TO_UINT: { |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 3767 | if (VT == MVT::i32) { |
| 3768 | if (OVT == MVT::f32) |
| 3769 | LC = RTLIB::FPTOUINT_F32_I32; |
| 3770 | else if (OVT == MVT::f64) |
| 3771 | LC = RTLIB::FPTOUINT_F64_I32; |
| 3772 | else if (OVT == MVT::f80) |
| 3773 | LC = RTLIB::FPTOUINT_F80_I32; |
| 3774 | else |
| 3775 | assert(0 && "Unexpected i32-to-fp conversion!"); |
| 3776 | } else if (VT == MVT::i64) { |
| 3777 | if (OVT == MVT::f32) |
| 3778 | LC = RTLIB::FPTOUINT_F32_I64; |
| 3779 | else if (OVT == MVT::f64) |
| 3780 | LC = RTLIB::FPTOUINT_F64_I64; |
| 3781 | else if (OVT == MVT::f80) |
| 3782 | LC = RTLIB::FPTOUINT_F80_I64; |
| 3783 | else if (OVT == MVT::ppcf128) |
| 3784 | LC = RTLIB::FPTOUINT_PPCF128_I64; |
| 3785 | else |
| 3786 | assert(0 && "Unexpected i64-to-fp conversion!"); |
| 3787 | } else if (VT == MVT::i128) { |
| 3788 | if (OVT == MVT::f32) |
| 3789 | LC = RTLIB::FPTOUINT_F32_I128; |
| 3790 | else if (OVT == MVT::f64) |
| 3791 | LC = RTLIB::FPTOUINT_F64_I128; |
| 3792 | else if (OVT == MVT::f80) |
| 3793 | LC = RTLIB::FPTOUINT_F80_I128; |
| 3794 | else if (OVT == MVT::ppcf128) |
| 3795 | LC = RTLIB::FPTOUINT_PPCF128_I128; |
| 3796 | else |
| 3797 | assert(0 && "Unexpected i128-to-fp conversion!"); |
| 3798 | } else { |
| 3799 | assert(0 && "Unexpectd int-to-fp conversion!"); |
Dale Johannesen | 73328d1 | 2007-09-19 23:55:34 +0000 | [diff] [blame] | 3800 | } |
Evan Cheng | 6af00d5 | 2006-12-13 01:57:55 +0000 | [diff] [blame] | 3801 | break; |
Dale Johannesen | 73328d1 | 2007-09-19 23:55:34 +0000 | [diff] [blame] | 3802 | } |
Evan Cheng | 6af00d5 | 2006-12-13 01:57:55 +0000 | [diff] [blame] | 3803 | default: assert(0 && "Unreachable!"); |
| 3804 | } |
| 3805 | SDOperand Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 3806 | Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy); |
Evan Cheng | 6af00d5 | 2006-12-13 01:57:55 +0000 | [diff] [blame] | 3807 | break; |
| 3808 | } |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3809 | case Promote: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3810 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 3811 | Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1)); |
| 3812 | Result = LegalizeOp(Result); |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3813 | break; |
| 3814 | } |
| 3815 | break; |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 3816 | |
Chris Lattner | f2670a8 | 2008-01-16 06:57:07 +0000 | [diff] [blame] | 3817 | case ISD::FP_EXTEND: { |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3818 | MVT::ValueType DstVT = Op.getValueType(); |
| 3819 | MVT::ValueType SrcVT = Op.getOperand(0).getValueType(); |
| 3820 | if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) { |
| 3821 | // The only other way we can lower this is to turn it into a STORE, |
| 3822 | // LOAD pair, targetting a temporary location (a stack slot). |
| 3823 | Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT); |
| 3824 | break; |
Chris Lattner | f2670a8 | 2008-01-16 06:57:07 +0000 | [diff] [blame] | 3825 | } |
| 3826 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 3827 | case Expand: assert(0 && "Shouldn't need to expand other operators here!"); |
| 3828 | case Legal: |
| 3829 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 3830 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 3831 | break; |
| 3832 | case Promote: |
| 3833 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 3834 | Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1); |
| 3835 | break; |
| 3836 | } |
| 3837 | break; |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3838 | } |
Dale Johannesen | 5411a39 | 2007-08-09 01:04:01 +0000 | [diff] [blame] | 3839 | case ISD::FP_ROUND: { |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3840 | MVT::ValueType DstVT = Op.getValueType(); |
| 3841 | MVT::ValueType SrcVT = Op.getOperand(0).getValueType(); |
| 3842 | if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) { |
| 3843 | if (SrcVT == MVT::ppcf128) { |
Dale Johannesen | 713ed3f | 2008-01-20 01:18:38 +0000 | [diff] [blame] | 3844 | SDOperand Lo; |
| 3845 | ExpandOp(Node->getOperand(0), Lo, Result); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3846 | // Round it the rest of the way (e.g. to f32) if needed. |
Dale Johannesen | 713ed3f | 2008-01-20 01:18:38 +0000 | [diff] [blame] | 3847 | if (DstVT!=MVT::f64) |
| 3848 | Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1)); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3849 | break; |
Dale Johannesen | 5411a39 | 2007-08-09 01:04:01 +0000 | [diff] [blame] | 3850 | } |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3851 | // The only other way we can lower this is to turn it into a STORE, |
| 3852 | // LOAD pair, targetting a temporary location (a stack slot). |
| 3853 | Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT); |
| 3854 | break; |
Dale Johannesen | 849f214 | 2007-07-03 00:53:03 +0000 | [diff] [blame] | 3855 | } |
Chris Lattner | f2670a8 | 2008-01-16 06:57:07 +0000 | [diff] [blame] | 3856 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 3857 | case Expand: assert(0 && "Shouldn't need to expand other operators here!"); |
| 3858 | case Legal: |
| 3859 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3860 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Chris Lattner | f2670a8 | 2008-01-16 06:57:07 +0000 | [diff] [blame] | 3861 | break; |
| 3862 | case Promote: |
| 3863 | Tmp1 = PromoteOp(Node->getOperand(0)); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3864 | Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1, |
| 3865 | Node->getOperand(1)); |
Chris Lattner | f2670a8 | 2008-01-16 06:57:07 +0000 | [diff] [blame] | 3866 | break; |
| 3867 | } |
| 3868 | break; |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 3869 | } |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 3870 | case ISD::ANY_EXTEND: |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3871 | case ISD::ZERO_EXTEND: |
| 3872 | case ISD::SIGN_EXTEND: |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3873 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 3874 | case Expand: assert(0 && "Shouldn't need to expand other operators here!"); |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3875 | case Legal: |
| 3876 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Scott Michel | 82747a5 | 2008-04-30 00:26:38 +0000 | [diff] [blame] | 3877 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
Scott Michel | 0123b7d | 2008-02-15 23:05:48 +0000 | [diff] [blame] | 3878 | if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) == |
| 3879 | TargetLowering::Custom) { |
Scott Michel | 82747a5 | 2008-04-30 00:26:38 +0000 | [diff] [blame] | 3880 | Tmp1 = TLI.LowerOperation(Result, DAG); |
| 3881 | if (Tmp1.Val) Result = Tmp1; |
Scott Michel | 0123b7d | 2008-02-15 23:05:48 +0000 | [diff] [blame] | 3882 | } |
Chris Lattner | fa9c801 | 2005-07-28 23:31:12 +0000 | [diff] [blame] | 3883 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 3884 | case Promote: |
| 3885 | switch (Node->getOpcode()) { |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 3886 | case ISD::ANY_EXTEND: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3887 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 3888 | Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1); |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 3889 | break; |
Chris Lattner | 1713e73 | 2005-01-16 00:38:00 +0000 | [diff] [blame] | 3890 | case ISD::ZERO_EXTEND: |
| 3891 | Result = PromoteOp(Node->getOperand(0)); |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 3892 | Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result); |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 3893 | Result = DAG.getZeroExtendInReg(Result, |
| 3894 | Node->getOperand(0).getValueType()); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 3895 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 3896 | case ISD::SIGN_EXTEND: |
Chris Lattner | 1713e73 | 2005-01-16 00:38:00 +0000 | [diff] [blame] | 3897 | Result = PromoteOp(Node->getOperand(0)); |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 3898 | Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result); |
Chris Lattner | 1713e73 | 2005-01-16 00:38:00 +0000 | [diff] [blame] | 3899 | Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(), |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 3900 | Result, |
| 3901 | DAG.getValueType(Node->getOperand(0).getValueType())); |
Chris Lattner | 1713e73 | 2005-01-16 00:38:00 +0000 | [diff] [blame] | 3902 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 3903 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3904 | } |
| 3905 | break; |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 3906 | case ISD::FP_ROUND_INREG: |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 3907 | case ISD::SIGN_EXTEND_INREG: { |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 3908 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 3909 | MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT(); |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 3910 | |
| 3911 | // If this operation is not supported, convert it to a shl/shr or load/store |
| 3912 | // pair. |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 3913 | switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) { |
| 3914 | default: assert(0 && "This action not supported for this op yet!"); |
| 3915 | case TargetLowering::Legal: |
Chris Lattner | c52ad4f | 2006-01-28 10:58:55 +0000 | [diff] [blame] | 3916 | Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1)); |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 3917 | break; |
| 3918 | case TargetLowering::Expand: |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 3919 | // If this is an integer extend and shifts are supported, do that. |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 3920 | if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) { |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 3921 | // NOTE: we could fall back on load/store here too for targets without |
| 3922 | // SAR. However, it is doubtful that any exist. |
| 3923 | unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) - |
| 3924 | MVT::getSizeInBits(ExtraVT); |
Chris Lattner | 27ff112 | 2005-01-22 00:31:52 +0000 | [diff] [blame] | 3925 | SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy()); |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 3926 | Result = DAG.getNode(ISD::SHL, Node->getValueType(0), |
| 3927 | Node->getOperand(0), ShiftCst); |
| 3928 | Result = DAG.getNode(ISD::SRA, Node->getValueType(0), |
| 3929 | Result, ShiftCst); |
| 3930 | } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) { |
Jim Laskey | 2d84c4c | 2006-10-11 17:52:19 +0000 | [diff] [blame] | 3931 | // The only way we can lower this is to turn it into a TRUNCSTORE, |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 3932 | // EXTLOAD pair, targetting a temporary location (a stack slot). |
| 3933 | |
| 3934 | // NOTE: there is a choice here between constantly creating new stack |
| 3935 | // slots and always reusing the same one. We currently always create |
| 3936 | // new ones, as reuse may inhibit scheduling. |
Chris Lattner | a66bb39 | 2008-01-16 07:51:34 +0000 | [diff] [blame] | 3937 | Result = EmitStackConvert(Node->getOperand(0), ExtraVT, |
| 3938 | Node->getValueType(0)); |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 3939 | } else { |
| 3940 | assert(0 && "Unknown op"); |
| 3941 | } |
Chris Lattner | 55ba8fb | 2005-01-16 07:29:19 +0000 | [diff] [blame] | 3942 | break; |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 3943 | } |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 3944 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 3945 | } |
Duncan Sands | 36397f5 | 2007-07-27 12:58:54 +0000 | [diff] [blame] | 3946 | case ISD::TRAMPOLINE: { |
| 3947 | SDOperand Ops[6]; |
| 3948 | for (unsigned i = 0; i != 6; ++i) |
| 3949 | Ops[i] = LegalizeOp(Node->getOperand(i)); |
| 3950 | Result = DAG.UpdateNodeOperands(Result, Ops, 6); |
| 3951 | // The only option for this node is to custom lower it. |
| 3952 | Result = TLI.LowerOperation(Result, DAG); |
| 3953 | assert(Result.Val && "Should always custom lower!"); |
Duncan Sands | f7331b3 | 2007-09-11 14:10:23 +0000 | [diff] [blame] | 3954 | |
| 3955 | // Since trampoline produces two values, make sure to remember that we |
| 3956 | // legalized both of them. |
| 3957 | Tmp1 = LegalizeOp(Result.getValue(1)); |
| 3958 | Result = LegalizeOp(Result); |
| 3959 | AddLegalizedOperand(SDOperand(Node, 0), Result); |
| 3960 | AddLegalizedOperand(SDOperand(Node, 1), Tmp1); |
| 3961 | return Op.ResNo ? Tmp1 : Result; |
Duncan Sands | 36397f5 | 2007-07-27 12:58:54 +0000 | [diff] [blame] | 3962 | } |
Dan Gohman | 1a02486 | 2008-01-31 00:41:03 +0000 | [diff] [blame] | 3963 | case ISD::FLT_ROUNDS_: { |
Anton Korobeynikov | 917c2a6 | 2007-11-15 23:25:33 +0000 | [diff] [blame] | 3964 | MVT::ValueType VT = Node->getValueType(0); |
| 3965 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 3966 | default: assert(0 && "This action not supported for this op yet!"); |
| 3967 | case TargetLowering::Custom: |
| 3968 | Result = TLI.LowerOperation(Op, DAG); |
| 3969 | if (Result.Val) break; |
| 3970 | // Fall Thru |
| 3971 | case TargetLowering::Legal: |
| 3972 | // If this operation is not supported, lower it to constant 1 |
| 3973 | Result = DAG.getConstant(1, VT); |
| 3974 | break; |
| 3975 | } |
| 3976 | } |
Chris Lattner | 41bab0b | 2008-01-15 21:58:08 +0000 | [diff] [blame] | 3977 | case ISD::TRAP: { |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 3978 | MVT::ValueType VT = Node->getValueType(0); |
| 3979 | switch (TLI.getOperationAction(Node->getOpcode(), VT)) { |
| 3980 | default: assert(0 && "This action not supported for this op yet!"); |
Chris Lattner | 41bab0b | 2008-01-15 21:58:08 +0000 | [diff] [blame] | 3981 | case TargetLowering::Legal: |
| 3982 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
| 3983 | Result = DAG.UpdateNodeOperands(Result, Tmp1); |
| 3984 | break; |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 3985 | case TargetLowering::Custom: |
| 3986 | Result = TLI.LowerOperation(Op, DAG); |
| 3987 | if (Result.Val) break; |
| 3988 | // Fall Thru |
Chris Lattner | 41bab0b | 2008-01-15 21:58:08 +0000 | [diff] [blame] | 3989 | case TargetLowering::Expand: |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 3990 | // If this operation is not supported, lower it to 'abort()' call |
Chris Lattner | 41bab0b | 2008-01-15 21:58:08 +0000 | [diff] [blame] | 3991 | Tmp1 = LegalizeOp(Node->getOperand(0)); |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 3992 | TargetLowering::ArgListTy Args; |
| 3993 | std::pair<SDOperand,SDOperand> CallResult = |
Duncan Sands | 00fee65 | 2008-02-14 17:28:50 +0000 | [diff] [blame] | 3994 | TLI.LowerCallTo(Tmp1, Type::VoidTy, |
| 3995 | false, false, false, CallingConv::C, false, |
Chris Lattner | 034f12e | 2008-01-15 22:09:33 +0000 | [diff] [blame] | 3996 | DAG.getExternalSymbol("abort", TLI.getPointerTy()), |
| 3997 | Args, DAG); |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 3998 | Result = CallResult.second; |
| 3999 | break; |
| 4000 | } |
Chris Lattner | 41bab0b | 2008-01-15 21:58:08 +0000 | [diff] [blame] | 4001 | break; |
Anton Korobeynikov | 66fac79 | 2008-01-15 07:02:33 +0000 | [diff] [blame] | 4002 | } |
Chris Lattner | 45b8caf | 2005-01-15 07:15:18 +0000 | [diff] [blame] | 4003 | } |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4004 | |
Chris Lattner | 4ddd283 | 2006-04-08 04:13:17 +0000 | [diff] [blame] | 4005 | assert(Result.getValueType() == Op.getValueType() && |
| 4006 | "Bad legalization!"); |
| 4007 | |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4008 | // Make sure that the generated code is itself legal. |
| 4009 | if (Result != Op) |
| 4010 | Result = LegalizeOp(Result); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 4011 | |
Chris Lattner | 45982da | 2005-05-12 16:53:42 +0000 | [diff] [blame] | 4012 | // Note that LegalizeOp may be reentered even from single-use nodes, which |
| 4013 | // means that we always must cache transformed nodes. |
| 4014 | AddLegalizedOperand(Op, Result); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 4015 | return Result; |
| 4016 | } |
| 4017 | |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4018 | /// PromoteOp - Given an operation that produces a value in an invalid type, |
| 4019 | /// promote it to compute the value into a larger type. The produced value will |
| 4020 | /// have the correct bits for the low portion of the register, but no guarantee |
| 4021 | /// is made about the top bits: it may be zero, sign-extended, or garbage. |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4022 | SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) { |
| 4023 | MVT::ValueType VT = Op.getValueType(); |
Chris Lattner | 71c42a0 | 2005-01-16 01:11:45 +0000 | [diff] [blame] | 4024 | MVT::ValueType NVT = TLI.getTypeToTransformTo(VT); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4025 | assert(getTypeAction(VT) == Promote && |
| 4026 | "Caller should expand or legalize operands that are not promotable!"); |
| 4027 | assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) && |
| 4028 | "Cannot promote to smaller type!"); |
| 4029 | |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4030 | SDOperand Tmp1, Tmp2, Tmp3; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4031 | SDOperand Result; |
| 4032 | SDNode *Node = Op.Val; |
| 4033 | |
Roman Levenstein | 9cac525 | 2008-04-16 16:15:27 +0000 | [diff] [blame] | 4034 | DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op); |
Chris Lattner | 6fdcb25 | 2005-09-02 20:32:45 +0000 | [diff] [blame] | 4035 | if (I != PromotedNodes.end()) return I->second; |
Chris Lattner | 45982da | 2005-05-12 16:53:42 +0000 | [diff] [blame] | 4036 | |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4037 | switch (Node->getOpcode()) { |
Chris Lattner | d5d0f9b | 2005-08-16 21:55:35 +0000 | [diff] [blame] | 4038 | case ISD::CopyFromReg: |
| 4039 | assert(0 && "CopyFromReg must be legal!"); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4040 | default: |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 4041 | #ifndef NDEBUG |
Dan Gohman | 3983358 | 2007-06-04 16:17:33 +0000 | [diff] [blame] | 4042 | cerr << "NODE: "; Node->dump(&DAG); cerr << "\n"; |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 4043 | #endif |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4044 | assert(0 && "Do not know how to promote this operator!"); |
| 4045 | abort(); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 4046 | case ISD::UNDEF: |
| 4047 | Result = DAG.getNode(ISD::UNDEF, NVT); |
| 4048 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4049 | case ISD::Constant: |
Chris Lattner | ec176e3 | 2005-08-30 16:56:19 +0000 | [diff] [blame] | 4050 | if (VT != MVT::i1) |
| 4051 | Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op); |
| 4052 | else |
| 4053 | Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4054 | assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?"); |
| 4055 | break; |
| 4056 | case ISD::ConstantFP: |
| 4057 | Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op); |
| 4058 | assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?"); |
| 4059 | break; |
Chris Lattner | ef5cd1d | 2005-01-18 17:54:55 +0000 | [diff] [blame] | 4060 | |
Chris Lattner | 82fbfb6 | 2005-01-18 02:59:52 +0000 | [diff] [blame] | 4061 | case ISD::SETCC: |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4062 | assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0))) |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 4063 | && "SetCC type is not legal??"); |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4064 | Result = DAG.getNode(ISD::SETCC, |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 4065 | TLI.getSetCCResultType(Node->getOperand(0)), |
| 4066 | Node->getOperand(0), Node->getOperand(1), |
| 4067 | Node->getOperand(2)); |
Chris Lattner | 82fbfb6 | 2005-01-18 02:59:52 +0000 | [diff] [blame] | 4068 | break; |
Chris Lattner | fdfded5 | 2006-04-12 16:20:43 +0000 | [diff] [blame] | 4069 | |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4070 | case ISD::TRUNCATE: |
| 4071 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4072 | case Legal: |
| 4073 | Result = LegalizeOp(Node->getOperand(0)); |
| 4074 | assert(Result.getValueType() >= NVT && |
| 4075 | "This truncation doesn't make sense!"); |
| 4076 | if (Result.getValueType() > NVT) // Truncate to NVT instead of VT |
| 4077 | Result = DAG.getNode(ISD::TRUNCATE, NVT, Result); |
| 4078 | break; |
Chris Lattner | e76ad6d | 2005-01-28 22:52:50 +0000 | [diff] [blame] | 4079 | case Promote: |
| 4080 | // The truncation is not required, because we don't guarantee anything |
| 4081 | // about high bits anyway. |
| 4082 | Result = PromoteOp(Node->getOperand(0)); |
| 4083 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4084 | case Expand: |
Nate Begeman | 79e46ac | 2005-04-04 00:57:08 +0000 | [diff] [blame] | 4085 | ExpandOp(Node->getOperand(0), Tmp1, Tmp2); |
| 4086 | // Truncate the low part of the expanded value to the result type |
Chris Lattner | e21c305 | 2005-08-01 18:16:37 +0000 | [diff] [blame] | 4087 | Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4088 | } |
| 4089 | break; |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4090 | case ISD::SIGN_EXTEND: |
| 4091 | case ISD::ZERO_EXTEND: |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 4092 | case ISD::ANY_EXTEND: |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4093 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4094 | case Expand: assert(0 && "BUG: Smaller reg should have been promoted!"); |
| 4095 | case Legal: |
| 4096 | // Input is legal? Just do extend all the way to the larger type. |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4097 | Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4098 | break; |
| 4099 | case Promote: |
| 4100 | // Promote the reg if it's smaller. |
| 4101 | Result = PromoteOp(Node->getOperand(0)); |
| 4102 | // The high bits are not guaranteed to be anything. Insert an extend. |
| 4103 | if (Node->getOpcode() == ISD::SIGN_EXTEND) |
Chris Lattner | 595dc54 | 2005-02-04 18:39:19 +0000 | [diff] [blame] | 4104 | Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result, |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4105 | DAG.getValueType(Node->getOperand(0).getValueType())); |
Chris Lattner | 13c78e2 | 2005-09-02 00:18:10 +0000 | [diff] [blame] | 4106 | else if (Node->getOpcode() == ISD::ZERO_EXTEND) |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 4107 | Result = DAG.getZeroExtendInReg(Result, |
| 4108 | Node->getOperand(0).getValueType()); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4109 | break; |
| 4110 | } |
| 4111 | break; |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 4112 | case ISD::BIT_CONVERT: |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4113 | Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0), |
| 4114 | Node->getValueType(0)); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 4115 | Result = PromoteOp(Result); |
| 4116 | break; |
| 4117 | |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4118 | case ISD::FP_EXTEND: |
| 4119 | assert(0 && "Case not implemented. Dynamically dead with 2 FP types!"); |
| 4120 | case ISD::FP_ROUND: |
| 4121 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4122 | case Expand: assert(0 && "BUG: Cannot expand FP regs!"); |
| 4123 | case Promote: assert(0 && "Unreachable with 2 FP types!"); |
| 4124 | case Legal: |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4125 | if (Node->getConstantOperandVal(1) == 0) { |
| 4126 | // Input is legal? Do an FP_ROUND_INREG. |
| 4127 | Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0), |
| 4128 | DAG.getValueType(VT)); |
| 4129 | } else { |
| 4130 | // Just remove the truncate, it isn't affecting the value. |
| 4131 | Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0), |
| 4132 | Node->getOperand(1)); |
| 4133 | } |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4134 | break; |
| 4135 | } |
| 4136 | break; |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4137 | case ISD::SINT_TO_FP: |
| 4138 | case ISD::UINT_TO_FP: |
| 4139 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4140 | case Legal: |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 4141 | // No extra round required here. |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4142 | Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4143 | break; |
| 4144 | |
| 4145 | case Promote: |
| 4146 | Result = PromoteOp(Node->getOperand(0)); |
| 4147 | if (Node->getOpcode() == ISD::SINT_TO_FP) |
| 4148 | Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(), |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4149 | Result, |
| 4150 | DAG.getValueType(Node->getOperand(0).getValueType())); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4151 | else |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 4152 | Result = DAG.getZeroExtendInReg(Result, |
| 4153 | Node->getOperand(0).getValueType()); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 4154 | // No extra round required here. |
| 4155 | Result = DAG.getNode(Node->getOpcode(), NVT, Result); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4156 | break; |
| 4157 | case Expand: |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 4158 | Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT, |
| 4159 | Node->getOperand(0)); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 4160 | // Round if we cannot tolerate excess precision. |
| 4161 | if (NoExcessFPPrecision) |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4162 | Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result, |
| 4163 | DAG.getValueType(VT)); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 4164 | break; |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4165 | } |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4166 | break; |
| 4167 | |
Chris Lattner | 5e3c5b4 | 2005-12-09 17:32:47 +0000 | [diff] [blame] | 4168 | case ISD::SIGN_EXTEND_INREG: |
| 4169 | Result = PromoteOp(Node->getOperand(0)); |
| 4170 | Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result, |
| 4171 | Node->getOperand(1)); |
| 4172 | break; |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4173 | case ISD::FP_TO_SINT: |
| 4174 | case ISD::FP_TO_UINT: |
| 4175 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 4176 | case Legal: |
Evan Cheng | 0b1b9dc | 2006-12-16 02:10:30 +0000 | [diff] [blame] | 4177 | case Expand: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4178 | Tmp1 = Node->getOperand(0); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4179 | break; |
| 4180 | case Promote: |
| 4181 | // The input result is prerounded, so we don't have to do anything |
| 4182 | // special. |
| 4183 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4184 | break; |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4185 | } |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 4186 | // If we're promoting a UINT to a larger size, check to see if the new node |
| 4187 | // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since |
| 4188 | // we can use that instead. This allows us to generate better code for |
| 4189 | // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not |
| 4190 | // legal, such as PowerPC. |
| 4191 | if (Node->getOpcode() == ISD::FP_TO_UINT && |
Chris Lattner | c9c60f6 | 2005-08-24 16:35:28 +0000 | [diff] [blame] | 4192 | !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) && |
Nate Begeman | b7f6ef1 | 2005-10-25 23:47:25 +0000 | [diff] [blame] | 4193 | (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) || |
| 4194 | TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){ |
Nate Begeman | d2558e3 | 2005-08-14 01:20:53 +0000 | [diff] [blame] | 4195 | Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1); |
| 4196 | } else { |
| 4197 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1); |
| 4198 | } |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4199 | break; |
| 4200 | |
Chris Lattner | 2c8086f | 2005-04-02 05:00:07 +0000 | [diff] [blame] | 4201 | case ISD::FABS: |
| 4202 | case ISD::FNEG: |
| 4203 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4204 | assert(Tmp1.getValueType() == NVT); |
| 4205 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1); |
| 4206 | // NOTE: we do not have to do any extra rounding here for |
| 4207 | // NoExcessFPPrecision, because we know the input will have the appropriate |
| 4208 | // precision, and these operations don't modify precision at all. |
| 4209 | break; |
| 4210 | |
Chris Lattner | da6ba87 | 2005-04-28 21:44:33 +0000 | [diff] [blame] | 4211 | case ISD::FSQRT: |
| 4212 | case ISD::FSIN: |
| 4213 | case ISD::FCOS: |
| 4214 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4215 | assert(Tmp1.getValueType() == NVT); |
| 4216 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4217 | if (NoExcessFPPrecision) |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4218 | Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result, |
| 4219 | DAG.getValueType(VT)); |
Chris Lattner | da6ba87 | 2005-04-28 21:44:33 +0000 | [diff] [blame] | 4220 | break; |
| 4221 | |
Chris Lattner | 8b2d42c | 2007-03-03 23:43:21 +0000 | [diff] [blame] | 4222 | case ISD::FPOWI: { |
| 4223 | // Promote f32 powi to f64 powi. Note that this could insert a libcall |
| 4224 | // directly as well, which may be better. |
| 4225 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4226 | assert(Tmp1.getValueType() == NVT); |
| 4227 | Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1)); |
| 4228 | if (NoExcessFPPrecision) |
| 4229 | Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result, |
| 4230 | DAG.getValueType(VT)); |
| 4231 | break; |
| 4232 | } |
| 4233 | |
Andrew Lenharth | ab0b949 | 2008-02-21 06:45:13 +0000 | [diff] [blame] | 4234 | case ISD::ATOMIC_LCS: { |
| 4235 | Tmp2 = PromoteOp(Node->getOperand(2)); |
| 4236 | Tmp3 = PromoteOp(Node->getOperand(3)); |
| 4237 | Result = DAG.getAtomic(Node->getOpcode(), Node->getOperand(0), |
| 4238 | Node->getOperand(1), Tmp2, Tmp3, |
| 4239 | cast<AtomicSDNode>(Node)->getVT()); |
| 4240 | // Remember that we legalized the chain. |
| 4241 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1))); |
| 4242 | break; |
| 4243 | } |
| 4244 | case ISD::ATOMIC_LAS: |
| 4245 | case ISD::ATOMIC_SWAP: { |
| 4246 | Tmp2 = PromoteOp(Node->getOperand(2)); |
| 4247 | Result = DAG.getAtomic(Node->getOpcode(), Node->getOperand(0), |
| 4248 | Node->getOperand(1), Tmp2, |
| 4249 | cast<AtomicSDNode>(Node)->getVT()); |
| 4250 | // Remember that we legalized the chain. |
| 4251 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1))); |
| 4252 | break; |
| 4253 | } |
| 4254 | |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4255 | case ISD::AND: |
| 4256 | case ISD::OR: |
| 4257 | case ISD::XOR: |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 4258 | case ISD::ADD: |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4259 | case ISD::SUB: |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 4260 | case ISD::MUL: |
| 4261 | // The input may have strange things in the top bits of the registers, but |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4262 | // these operations don't care. They may have weird bits going out, but |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 4263 | // that too is okay if they are integer operations. |
| 4264 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4265 | Tmp2 = PromoteOp(Node->getOperand(1)); |
| 4266 | assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT); |
| 4267 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2); |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4268 | break; |
| 4269 | case ISD::FADD: |
| 4270 | case ISD::FSUB: |
| 4271 | case ISD::FMUL: |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4272 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4273 | Tmp2 = PromoteOp(Node->getOperand(1)); |
| 4274 | assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT); |
| 4275 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2); |
| 4276 | |
| 4277 | // Floating point operations will give excess precision that we may not be |
| 4278 | // able to tolerate. If we DO allow excess precision, just leave it, |
| 4279 | // otherwise excise it. |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4280 | // FIXME: Why would we need to round FP ops more than integer ones? |
| 4281 | // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C)) |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4282 | if (NoExcessFPPrecision) |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4283 | Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result, |
| 4284 | DAG.getValueType(VT)); |
Chris Lattner | 0f69b29 | 2005-01-15 06:18:18 +0000 | [diff] [blame] | 4285 | break; |
| 4286 | |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4287 | case ISD::SDIV: |
| 4288 | case ISD::SREM: |
| 4289 | // These operators require that their input be sign extended. |
| 4290 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4291 | Tmp2 = PromoteOp(Node->getOperand(1)); |
| 4292 | if (MVT::isInteger(NVT)) { |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4293 | Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1, |
| 4294 | DAG.getValueType(VT)); |
| 4295 | Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2, |
| 4296 | DAG.getValueType(VT)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4297 | } |
| 4298 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2); |
| 4299 | |
| 4300 | // Perform FP_ROUND: this is probably overly pessimistic. |
| 4301 | if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision) |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4302 | Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result, |
| 4303 | DAG.getValueType(VT)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4304 | break; |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4305 | case ISD::FDIV: |
| 4306 | case ISD::FREM: |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 4307 | case ISD::FCOPYSIGN: |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4308 | // These operators require that their input be fp extended. |
Nate Begeman | ec57fd9 | 2006-05-09 18:20:51 +0000 | [diff] [blame] | 4309 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4310 | case Expand: assert(0 && "not implemented"); |
| 4311 | case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break; |
| 4312 | case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break; |
Nate Begeman | ec57fd9 | 2006-05-09 18:20:51 +0000 | [diff] [blame] | 4313 | } |
| 4314 | switch (getTypeAction(Node->getOperand(1).getValueType())) { |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 4315 | case Expand: assert(0 && "not implemented"); |
| 4316 | case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break; |
| 4317 | case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break; |
Nate Begeman | ec57fd9 | 2006-05-09 18:20:51 +0000 | [diff] [blame] | 4318 | } |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4319 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2); |
| 4320 | |
| 4321 | // Perform FP_ROUND: this is probably overly pessimistic. |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 4322 | if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN) |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 4323 | Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result, |
| 4324 | DAG.getValueType(VT)); |
| 4325 | break; |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4326 | |
| 4327 | case ISD::UDIV: |
| 4328 | case ISD::UREM: |
| 4329 | // These operators require that their input be zero extended. |
| 4330 | Tmp1 = PromoteOp(Node->getOperand(0)); |
| 4331 | Tmp2 = PromoteOp(Node->getOperand(1)); |
| 4332 | assert(MVT::isInteger(NVT) && "Operators don't apply to FP!"); |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 4333 | Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT); |
| 4334 | Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4335 | Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2); |
| 4336 | break; |
| 4337 | |
| 4338 | case ISD::SHL: |
| 4339 | Tmp1 = PromoteOp(Node->getOperand(0)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4340 | Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4341 | break; |
| 4342 | case ISD::SRA: |
| 4343 | // The input value must be properly sign extended. |
| 4344 | Tmp1 = PromoteOp(Node->getOperand(0)); |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 4345 | Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1, |
| 4346 | DAG.getValueType(VT)); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4347 | Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4348 | break; |
| 4349 | case ISD::SRL: |
| 4350 | // The input value must be properly zero extended. |
| 4351 | Tmp1 = PromoteOp(Node->getOperand(0)); |
Chris Lattner | 2399356 | 2005-04-13 02:38:47 +0000 | [diff] [blame] | 4352 | Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4353 | Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1)); |
Chris Lattner | 8b6fa22 | 2005-01-15 22:16:26 +0000 | [diff] [blame] | 4354 | break; |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4355 | |
| 4356 | case ISD::VAARG: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4357 | Tmp1 = Node->getOperand(0); // Get the chain. |
| 4358 | Tmp2 = Node->getOperand(1); // Get the pointer. |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4359 | if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) { |
| 4360 | Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2)); |
| 4361 | Result = TLI.CustomPromoteOperation(Tmp3, DAG); |
| 4362 | } else { |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4363 | const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue(); |
| 4364 | SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0); |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4365 | // Increment the pointer, VAList, to the next vaarg |
| 4366 | Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList, |
| 4367 | DAG.getConstant(MVT::getSizeInBits(VT)/8, |
| 4368 | TLI.getPointerTy())); |
| 4369 | // Store the incremented VAList to the legalized pointer |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4370 | Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0); |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4371 | // Load the actual argument out of the pointer VAList |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 4372 | Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT); |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4373 | } |
| 4374 | // Remember that we legalized the chain. |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4375 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1))); |
Nate Begeman | 0aed784 | 2006-01-28 03:14:31 +0000 | [diff] [blame] | 4376 | break; |
| 4377 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 4378 | case ISD::LOAD: { |
| 4379 | LoadSDNode *LD = cast<LoadSDNode>(Node); |
Evan Cheng | 62f2a3c | 2006-10-10 07:51:21 +0000 | [diff] [blame] | 4380 | ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node) |
| 4381 | ? ISD::EXTLOAD : LD->getExtensionType(); |
| 4382 | Result = DAG.getExtLoad(ExtType, NVT, |
| 4383 | LD->getChain(), LD->getBasePtr(), |
Chris Lattner | 55b5708 | 2006-10-10 18:54:19 +0000 | [diff] [blame] | 4384 | LD->getSrcValue(), LD->getSrcValueOffset(), |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 4385 | LD->getMemoryVT(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 4386 | LD->isVolatile(), |
| 4387 | LD->getAlignment()); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4388 | // Remember that we legalized the chain. |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4389 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1))); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4390 | break; |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 4391 | } |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4392 | case ISD::SELECT: |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4393 | Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0 |
| 4394 | Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1 |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4395 | Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3); |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4396 | break; |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 4397 | case ISD::SELECT_CC: |
| 4398 | Tmp2 = PromoteOp(Node->getOperand(2)); // True |
| 4399 | Tmp3 = PromoteOp(Node->getOperand(3)); // False |
| 4400 | Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0), |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4401 | Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4)); |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 4402 | break; |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 4403 | case ISD::BSWAP: |
| 4404 | Tmp1 = Node->getOperand(0); |
| 4405 | Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1); |
| 4406 | Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1); |
| 4407 | Result = DAG.getNode(ISD::SRL, NVT, Tmp1, |
Dan Gohman | b55757e | 2007-05-18 17:52:13 +0000 | [diff] [blame] | 4408 | DAG.getConstant(MVT::getSizeInBits(NVT) - |
| 4409 | MVT::getSizeInBits(VT), |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 4410 | TLI.getShiftAmountTy())); |
| 4411 | break; |
Andrew Lenharth | fecf095 | 2005-05-04 19:11:05 +0000 | [diff] [blame] | 4412 | case ISD::CTPOP: |
| 4413 | case ISD::CTTZ: |
| 4414 | case ISD::CTLZ: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4415 | // Zero extend the argument |
| 4416 | Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0)); |
Andrew Lenharth | fecf095 | 2005-05-04 19:11:05 +0000 | [diff] [blame] | 4417 | // Perform the larger operation, then subtract if needed. |
| 4418 | Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4419 | switch(Node->getOpcode()) { |
Andrew Lenharth | fecf095 | 2005-05-04 19:11:05 +0000 | [diff] [blame] | 4420 | case ISD::CTPOP: |
| 4421 | Result = Tmp1; |
| 4422 | break; |
| 4423 | case ISD::CTTZ: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4424 | // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT) |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4425 | Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, |
Dan Gohman | b55757e | 2007-05-18 17:52:13 +0000 | [diff] [blame] | 4426 | DAG.getConstant(MVT::getSizeInBits(NVT), NVT), |
| 4427 | ISD::SETEQ); |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 4428 | Result = DAG.getNode(ISD::SELECT, NVT, Tmp2, |
Dan Gohman | b55757e | 2007-05-18 17:52:13 +0000 | [diff] [blame] | 4429 | DAG.getConstant(MVT::getSizeInBits(VT), NVT), Tmp1); |
Andrew Lenharth | fecf095 | 2005-05-04 19:11:05 +0000 | [diff] [blame] | 4430 | break; |
| 4431 | case ISD::CTLZ: |
| 4432 | //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT)) |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 4433 | Result = DAG.getNode(ISD::SUB, NVT, Tmp1, |
Dan Gohman | b55757e | 2007-05-18 17:52:13 +0000 | [diff] [blame] | 4434 | DAG.getConstant(MVT::getSizeInBits(NVT) - |
| 4435 | MVT::getSizeInBits(VT), NVT)); |
Andrew Lenharth | fecf095 | 2005-05-04 19:11:05 +0000 | [diff] [blame] | 4436 | break; |
| 4437 | } |
| 4438 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4439 | case ISD::EXTRACT_SUBVECTOR: |
| 4440 | Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op)); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 4441 | break; |
Chris Lattner | 4aab2f4 | 2006-04-02 05:06:04 +0000 | [diff] [blame] | 4442 | case ISD::EXTRACT_VECTOR_ELT: |
| 4443 | Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op)); |
| 4444 | break; |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4445 | } |
| 4446 | |
| 4447 | assert(Result.Val && "Didn't set a result!"); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 4448 | |
| 4449 | // Make sure the result is itself legal. |
| 4450 | Result = LegalizeOp(Result); |
| 4451 | |
| 4452 | // Remember that we promoted this! |
Chris Lattner | 03c8546 | 2005-01-15 05:21:40 +0000 | [diff] [blame] | 4453 | AddPromotedOperand(Op, Result); |
| 4454 | return Result; |
| 4455 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 4456 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4457 | /// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into |
| 4458 | /// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic, |
| 4459 | /// based on the vector type. The return type of this matches the element type |
| 4460 | /// of the vector, which may not be legal for the target. |
| 4461 | SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) { |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4462 | // We know that operand #0 is the Vec vector. If the index is a constant |
| 4463 | // or if the invec is a supported hardware type, we can use it. Otherwise, |
| 4464 | // lower to a store then an indexed load. |
| 4465 | SDOperand Vec = Op.getOperand(0); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4466 | SDOperand Idx = Op.getOperand(1); |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4467 | |
Dan Gohman | e40c7b0 | 2007-09-24 15:54:53 +0000 | [diff] [blame] | 4468 | MVT::ValueType TVT = Vec.getValueType(); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4469 | unsigned NumElems = MVT::getVectorNumElements(TVT); |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4470 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4471 | switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) { |
| 4472 | default: assert(0 && "This action is not supported yet!"); |
| 4473 | case TargetLowering::Custom: { |
| 4474 | Vec = LegalizeOp(Vec); |
| 4475 | Op = DAG.UpdateNodeOperands(Op, Vec, Idx); |
| 4476 | SDOperand Tmp3 = TLI.LowerOperation(Op, DAG); |
| 4477 | if (Tmp3.Val) |
| 4478 | return Tmp3; |
| 4479 | break; |
| 4480 | } |
| 4481 | case TargetLowering::Legal: |
| 4482 | if (isTypeLegal(TVT)) { |
| 4483 | Vec = LegalizeOp(Vec); |
| 4484 | Op = DAG.UpdateNodeOperands(Op, Vec, Idx); |
Christopher Lamb | 844228a | 2007-07-26 03:33:13 +0000 | [diff] [blame] | 4485 | return Op; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4486 | } |
| 4487 | break; |
| 4488 | case TargetLowering::Expand: |
| 4489 | break; |
| 4490 | } |
| 4491 | |
| 4492 | if (NumElems == 1) { |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4493 | // This must be an access of the only element. Return it. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4494 | Op = ScalarizeVectorOp(Vec); |
| 4495 | } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) { |
Nate Begeman | 55030dc | 2008-01-29 02:24:00 +0000 | [diff] [blame] | 4496 | unsigned NumLoElts = 1 << Log2_32(NumElems-1); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4497 | ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx); |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4498 | SDOperand Lo, Hi; |
| 4499 | SplitVectorOp(Vec, Lo, Hi); |
Nate Begeman | 55030dc | 2008-01-29 02:24:00 +0000 | [diff] [blame] | 4500 | if (CIdx->getValue() < NumLoElts) { |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4501 | Vec = Lo; |
| 4502 | } else { |
| 4503 | Vec = Hi; |
Nate Begeman | 55030dc | 2008-01-29 02:24:00 +0000 | [diff] [blame] | 4504 | Idx = DAG.getConstant(CIdx->getValue() - NumLoElts, |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4505 | Idx.getValueType()); |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4506 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4507 | |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4508 | // It's now an extract from the appropriate high or low part. Recurse. |
| 4509 | Op = DAG.UpdateNodeOperands(Op, Vec, Idx); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4510 | Op = ExpandEXTRACT_VECTOR_ELT(Op); |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4511 | } else { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4512 | // Store the value to a temporary stack slot, then LOAD the scalar |
| 4513 | // element back out. |
Chris Lattner | 85dd3be | 2007-10-15 17:48:57 +0000 | [diff] [blame] | 4514 | SDOperand StackPtr = DAG.CreateStackTemporary(Vec.getValueType()); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4515 | SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0); |
| 4516 | |
| 4517 | // Add the offset to the index. |
| 4518 | unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8; |
| 4519 | Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx, |
| 4520 | DAG.getConstant(EltSize, Idx.getValueType())); |
Bill Wendling | 90bfc2d | 2007-10-18 08:32:37 +0000 | [diff] [blame] | 4521 | |
| 4522 | if (MVT::getSizeInBits(Idx.getValueType()) > |
| 4523 | MVT::getSizeInBits(TLI.getPointerTy())) |
Chris Lattner | f185e67 | 2007-10-19 16:47:35 +0000 | [diff] [blame] | 4524 | Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx); |
Bill Wendling | 90bfc2d | 2007-10-18 08:32:37 +0000 | [diff] [blame] | 4525 | else |
Chris Lattner | f185e67 | 2007-10-19 16:47:35 +0000 | [diff] [blame] | 4526 | Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx); |
Bill Wendling | 90bfc2d | 2007-10-18 08:32:37 +0000 | [diff] [blame] | 4527 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4528 | StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr); |
| 4529 | |
| 4530 | Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0); |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4531 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4532 | return Op; |
Chris Lattner | 1597221 | 2006-03-31 17:55:51 +0000 | [diff] [blame] | 4533 | } |
| 4534 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4535 | /// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 4536 | /// we assume the operation can be split if it is not already legal. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4537 | SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) { |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 4538 | // We know that operand #0 is the Vec vector. For now we assume the index |
| 4539 | // is a constant and that the extracted result is a supported hardware type. |
| 4540 | SDOperand Vec = Op.getOperand(0); |
| 4541 | SDOperand Idx = LegalizeOp(Op.getOperand(1)); |
| 4542 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4543 | unsigned NumElems = MVT::getVectorNumElements(Vec.getValueType()); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 4544 | |
| 4545 | if (NumElems == MVT::getVectorNumElements(Op.getValueType())) { |
| 4546 | // This must be an access of the desired vector length. Return it. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4547 | return Vec; |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 4548 | } |
| 4549 | |
| 4550 | ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx); |
| 4551 | SDOperand Lo, Hi; |
| 4552 | SplitVectorOp(Vec, Lo, Hi); |
| 4553 | if (CIdx->getValue() < NumElems/2) { |
| 4554 | Vec = Lo; |
| 4555 | } else { |
| 4556 | Vec = Hi; |
| 4557 | Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType()); |
| 4558 | } |
| 4559 | |
| 4560 | // It's now an extract from the appropriate high or low part. Recurse. |
| 4561 | Op = DAG.UpdateNodeOperands(Op, Vec, Idx); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4562 | return ExpandEXTRACT_SUBVECTOR(Op); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 4563 | } |
| 4564 | |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4565 | /// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC |
| 4566 | /// with condition CC on the current target. This usually involves legalizing |
| 4567 | /// or promoting the arguments. In the case where LHS and RHS must be expanded, |
| 4568 | /// there may be no choice but to create a new SetCC node to represent the |
| 4569 | /// legalized value of setcc lhs, rhs. In this case, the value is returned in |
| 4570 | /// LHS, and the SDOperand returned in RHS has a nil SDNode value. |
| 4571 | void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS, |
| 4572 | SDOperand &RHS, |
| 4573 | SDOperand &CC) { |
Dale Johannesen | 638ccd5 | 2007-10-06 01:24:11 +0000 | [diff] [blame] | 4574 | SDOperand Tmp1, Tmp2, Tmp3, Result; |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4575 | |
| 4576 | switch (getTypeAction(LHS.getValueType())) { |
| 4577 | case Legal: |
| 4578 | Tmp1 = LegalizeOp(LHS); // LHS |
| 4579 | Tmp2 = LegalizeOp(RHS); // RHS |
| 4580 | break; |
| 4581 | case Promote: |
| 4582 | Tmp1 = PromoteOp(LHS); // LHS |
| 4583 | Tmp2 = PromoteOp(RHS); // RHS |
| 4584 | |
| 4585 | // If this is an FP compare, the operands have already been extended. |
| 4586 | if (MVT::isInteger(LHS.getValueType())) { |
| 4587 | MVT::ValueType VT = LHS.getValueType(); |
| 4588 | MVT::ValueType NVT = TLI.getTypeToTransformTo(VT); |
| 4589 | |
| 4590 | // Otherwise, we have to insert explicit sign or zero extends. Note |
| 4591 | // that we could insert sign extends for ALL conditions, but zero extend |
| 4592 | // is cheaper on many machines (an AND instead of two shifts), so prefer |
| 4593 | // it. |
| 4594 | switch (cast<CondCodeSDNode>(CC)->get()) { |
| 4595 | default: assert(0 && "Unknown integer comparison!"); |
| 4596 | case ISD::SETEQ: |
| 4597 | case ISD::SETNE: |
| 4598 | case ISD::SETUGE: |
| 4599 | case ISD::SETUGT: |
| 4600 | case ISD::SETULE: |
| 4601 | case ISD::SETULT: |
| 4602 | // ALL of these operations will work if we either sign or zero extend |
| 4603 | // the operands (including the unsigned comparisons!). Zero extend is |
| 4604 | // usually a simpler/cheaper operation, so prefer it. |
| 4605 | Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT); |
| 4606 | Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT); |
| 4607 | break; |
| 4608 | case ISD::SETGE: |
| 4609 | case ISD::SETGT: |
| 4610 | case ISD::SETLT: |
| 4611 | case ISD::SETLE: |
| 4612 | Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1, |
| 4613 | DAG.getValueType(VT)); |
| 4614 | Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2, |
| 4615 | DAG.getValueType(VT)); |
| 4616 | break; |
| 4617 | } |
| 4618 | } |
| 4619 | break; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4620 | case Expand: { |
| 4621 | MVT::ValueType VT = LHS.getValueType(); |
| 4622 | if (VT == MVT::f32 || VT == MVT::f64) { |
| 4623 | // Expand into one or more soft-fp libcall(s). |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4624 | RTLIB::Libcall LC1, LC2 = RTLIB::UNKNOWN_LIBCALL; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4625 | switch (cast<CondCodeSDNode>(CC)->get()) { |
| 4626 | case ISD::SETEQ: |
| 4627 | case ISD::SETOEQ: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4628 | LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4629 | break; |
| 4630 | case ISD::SETNE: |
| 4631 | case ISD::SETUNE: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4632 | LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4633 | break; |
| 4634 | case ISD::SETGE: |
| 4635 | case ISD::SETOGE: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4636 | LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4637 | break; |
| 4638 | case ISD::SETLT: |
| 4639 | case ISD::SETOLT: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4640 | LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4641 | break; |
| 4642 | case ISD::SETLE: |
| 4643 | case ISD::SETOLE: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4644 | LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4645 | break; |
| 4646 | case ISD::SETGT: |
| 4647 | case ISD::SETOGT: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4648 | LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4649 | break; |
| 4650 | case ISD::SETUO: |
Evan Cheng | d385fd6 | 2007-01-31 09:29:11 +0000 | [diff] [blame] | 4651 | LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64; |
| 4652 | break; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4653 | case ISD::SETO: |
Evan Cheng | 5efdecc | 2007-02-03 00:43:46 +0000 | [diff] [blame] | 4654 | LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4655 | break; |
| 4656 | default: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4657 | LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4658 | switch (cast<CondCodeSDNode>(CC)->get()) { |
| 4659 | case ISD::SETONE: |
| 4660 | // SETONE = SETOLT | SETOGT |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4661 | LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4662 | // Fallthrough |
| 4663 | case ISD::SETUGT: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4664 | LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4665 | break; |
| 4666 | case ISD::SETUGE: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4667 | LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4668 | break; |
| 4669 | case ISD::SETULT: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4670 | LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4671 | break; |
| 4672 | case ISD::SETULE: |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4673 | LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4674 | break; |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4675 | case ISD::SETUEQ: |
| 4676 | LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64; |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4677 | break; |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4678 | default: assert(0 && "Unsupported FP setcc!"); |
| 4679 | } |
| 4680 | } |
| 4681 | |
| 4682 | SDOperand Dummy; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 4683 | Tmp1 = ExpandLibCall(LC1, |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 4684 | DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val, |
Reid Spencer | b47b25c | 2007-01-03 04:22:32 +0000 | [diff] [blame] | 4685 | false /*sign irrelevant*/, Dummy); |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4686 | Tmp2 = DAG.getConstant(0, MVT::i32); |
Evan Cheng | d385fd6 | 2007-01-31 09:29:11 +0000 | [diff] [blame] | 4687 | CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1)); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 4688 | if (LC2 != RTLIB::UNKNOWN_LIBCALL) { |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4689 | Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2, |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 4690 | CC); |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 4691 | LHS = ExpandLibCall(LC2, |
| 4692 | DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val, |
Reid Spencer | b47b25c | 2007-01-03 04:22:32 +0000 | [diff] [blame] | 4693 | false /*sign irrelevant*/, Dummy); |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4694 | Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2, |
Evan Cheng | d385fd6 | 2007-01-31 09:29:11 +0000 | [diff] [blame] | 4695 | DAG.getCondCode(TLI.getCmpLibcallCC(LC2))); |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4696 | Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2); |
| 4697 | Tmp2 = SDOperand(); |
| 4698 | } |
| 4699 | LHS = Tmp1; |
| 4700 | RHS = Tmp2; |
| 4701 | return; |
| 4702 | } |
| 4703 | |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4704 | SDOperand LHSLo, LHSHi, RHSLo, RHSHi; |
| 4705 | ExpandOp(LHS, LHSLo, LHSHi); |
Dale Johannesen | 638ccd5 | 2007-10-06 01:24:11 +0000 | [diff] [blame] | 4706 | ExpandOp(RHS, RHSLo, RHSHi); |
| 4707 | ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get(); |
| 4708 | |
| 4709 | if (VT==MVT::ppcf128) { |
| 4710 | // FIXME: This generated code sucks. We want to generate |
| 4711 | // FCMP crN, hi1, hi2 |
| 4712 | // BNE crN, L: |
| 4713 | // FCMP crN, lo1, lo2 |
| 4714 | // The following can be improved, but not that much. |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4715 | Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETEQ); |
| 4716 | Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode); |
Dale Johannesen | 638ccd5 | 2007-10-06 01:24:11 +0000 | [diff] [blame] | 4717 | Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2); |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4718 | Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETNE); |
| 4719 | Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode); |
Dale Johannesen | 638ccd5 | 2007-10-06 01:24:11 +0000 | [diff] [blame] | 4720 | Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2); |
| 4721 | Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3); |
| 4722 | Tmp2 = SDOperand(); |
| 4723 | break; |
| 4724 | } |
| 4725 | |
| 4726 | switch (CCCode) { |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4727 | case ISD::SETEQ: |
| 4728 | case ISD::SETNE: |
| 4729 | if (RHSLo == RHSHi) |
| 4730 | if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo)) |
| 4731 | if (RHSCST->isAllOnesValue()) { |
| 4732 | // Comparison to -1. |
| 4733 | Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi); |
| 4734 | Tmp2 = RHSLo; |
| 4735 | break; |
| 4736 | } |
| 4737 | |
| 4738 | Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo); |
| 4739 | Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi); |
| 4740 | Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2); |
| 4741 | Tmp2 = DAG.getConstant(0, Tmp1.getValueType()); |
| 4742 | break; |
| 4743 | default: |
| 4744 | // If this is a comparison of the sign bit, just look at the top part. |
| 4745 | // X > -1, x < 0 |
| 4746 | if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS)) |
| 4747 | if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT && |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 4748 | CST->isNullValue()) || // X < 0 |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4749 | (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT && |
| 4750 | CST->isAllOnesValue())) { // X > -1 |
| 4751 | Tmp1 = LHSHi; |
| 4752 | Tmp2 = RHSHi; |
| 4753 | break; |
| 4754 | } |
| 4755 | |
| 4756 | // FIXME: This generated code sucks. |
| 4757 | ISD::CondCode LowCC; |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4758 | switch (CCCode) { |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4759 | default: assert(0 && "Unknown integer setcc!"); |
| 4760 | case ISD::SETLT: |
| 4761 | case ISD::SETULT: LowCC = ISD::SETULT; break; |
| 4762 | case ISD::SETGT: |
| 4763 | case ISD::SETUGT: LowCC = ISD::SETUGT; break; |
| 4764 | case ISD::SETLE: |
| 4765 | case ISD::SETULE: LowCC = ISD::SETULE; break; |
| 4766 | case ISD::SETGE: |
| 4767 | case ISD::SETUGE: LowCC = ISD::SETUGE; break; |
| 4768 | } |
| 4769 | |
| 4770 | // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison |
| 4771 | // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands |
| 4772 | // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2; |
| 4773 | |
| 4774 | // NOTE: on targets without efficient SELECT of bools, we can always use |
| 4775 | // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3) |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4776 | TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL); |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4777 | Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 4778 | LowCC, false, DagCombineInfo); |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4779 | if (!Tmp1.Val) |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4780 | Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC); |
| 4781 | Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4782 | CCCode, false, DagCombineInfo); |
| 4783 | if (!Tmp2.Val) |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4784 | Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi, |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 4785 | RHSHi,CC); |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4786 | |
| 4787 | ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val); |
| 4788 | ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val); |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 4789 | if ((Tmp1C && Tmp1C->isNullValue()) || |
| 4790 | (Tmp2C && Tmp2C->isNullValue() && |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4791 | (CCCode == ISD::SETLE || CCCode == ISD::SETGE || |
| 4792 | CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) || |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 4793 | (Tmp2C && Tmp2C->getAPIntValue() == 1 && |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4794 | (CCCode == ISD::SETLT || CCCode == ISD::SETGT || |
| 4795 | CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) { |
| 4796 | // low part is known false, returns high part. |
| 4797 | // For LE / GE, if high part is known false, ignore the low part. |
| 4798 | // For LT / GT, if high part is known true, ignore the low part. |
| 4799 | Tmp1 = Tmp2; |
| 4800 | Tmp2 = SDOperand(); |
| 4801 | } else { |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4802 | Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4803 | ISD::SETEQ, false, DagCombineInfo); |
| 4804 | if (!Result.Val) |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 4805 | Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 4806 | ISD::SETEQ); |
Evan Cheng | 2e67781 | 2007-02-08 22:16:19 +0000 | [diff] [blame] | 4807 | Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(), |
| 4808 | Result, Tmp1, Tmp2)); |
| 4809 | Tmp1 = Result; |
| 4810 | Tmp2 = SDOperand(); |
| 4811 | } |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4812 | } |
| 4813 | } |
Evan Cheng | 2b49c50 | 2006-12-15 02:59:56 +0000 | [diff] [blame] | 4814 | } |
Nate Begeman | 750ac1b | 2006-02-01 07:19:44 +0000 | [diff] [blame] | 4815 | LHS = Tmp1; |
| 4816 | RHS = Tmp2; |
| 4817 | } |
| 4818 | |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4819 | /// EmitStackConvert - Emit a store/load combination to the stack. This stores |
| 4820 | /// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does |
| 4821 | /// a load from the stack slot to DestVT, extending it if needed. |
| 4822 | /// The resultant code need not be legal. |
| 4823 | SDOperand SelectionDAGLegalize::EmitStackConvert(SDOperand SrcOp, |
| 4824 | MVT::ValueType SlotVT, |
| 4825 | MVT::ValueType DestVT) { |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 4826 | // Create the stack frame object. |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4827 | SDOperand FIPtr = DAG.CreateStackTemporary(SlotVT); |
| 4828 | |
Dan Gohman | bbbbb9c | 2008-02-11 18:58:42 +0000 | [diff] [blame] | 4829 | FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4830 | int SPFI = StackPtrFI->getIndex(); |
| 4831 | |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4832 | unsigned SrcSize = MVT::getSizeInBits(SrcOp.getValueType()); |
| 4833 | unsigned SlotSize = MVT::getSizeInBits(SlotVT); |
| 4834 | unsigned DestSize = MVT::getSizeInBits(DestVT); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 4835 | |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4836 | // Emit a store to the stack slot. Use a truncstore if the input value is |
| 4837 | // later than DestVT. |
| 4838 | SDOperand Store; |
| 4839 | if (SrcSize > SlotSize) |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4840 | Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 4841 | PseudoSourceValue::getFixedStack(), |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4842 | SPFI, SlotVT); |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4843 | else { |
| 4844 | assert(SrcSize == SlotSize && "Invalid store"); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4845 | Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 4846 | PseudoSourceValue::getFixedStack(), |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4847 | SPFI, SlotVT); |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4848 | } |
| 4849 | |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 4850 | // Result is a load from the stack slot. |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 4851 | if (SlotSize == DestSize) |
| 4852 | return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0); |
| 4853 | |
| 4854 | assert(SlotSize < DestSize && "Unknown extension!"); |
| 4855 | return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 4856 | } |
| 4857 | |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 4858 | SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) { |
| 4859 | // Create a vector sized/aligned stack slot, store the value to element #0, |
| 4860 | // then load the whole vector back out. |
Chris Lattner | 85dd3be | 2007-10-15 17:48:57 +0000 | [diff] [blame] | 4861 | SDOperand StackPtr = DAG.CreateStackTemporary(Node->getValueType(0)); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4862 | |
Dan Gohman | bbbbb9c | 2008-02-11 18:58:42 +0000 | [diff] [blame] | 4863 | FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4864 | int SPFI = StackPtrFI->getIndex(); |
| 4865 | |
Evan Cheng | 786225a | 2006-10-05 23:01:46 +0000 | [diff] [blame] | 4866 | SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 4867 | PseudoSourceValue::getFixedStack(), SPFI); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4868 | return DAG.getLoad(Node->getValueType(0), Ch, StackPtr, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 4869 | PseudoSourceValue::getFixedStack(), SPFI); |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 4870 | } |
| 4871 | |
| 4872 | |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 4873 | /// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't |
Dan Gohman | 07a9676 | 2007-07-16 14:29:03 +0000 | [diff] [blame] | 4874 | /// support the operation, but do support the resultant vector type. |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 4875 | SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) { |
| 4876 | |
| 4877 | // If the only non-undef value is the low element, turn this into a |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 4878 | // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X. |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4879 | unsigned NumElems = Node->getNumOperands(); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 4880 | bool isOnlyLowElement = true; |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 4881 | SDOperand SplatValue = Node->getOperand(0); |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 4882 | |
| 4883 | // FIXME: it would be far nicer to change this into map<SDOperand,uint64_t> |
| 4884 | // and use a bitmask instead of a list of elements. |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4885 | std::map<SDOperand, std::vector<unsigned> > Values; |
| 4886 | Values[SplatValue].push_back(0); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4887 | bool isConstant = true; |
| 4888 | if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) && |
| 4889 | SplatValue.getOpcode() != ISD::UNDEF) |
| 4890 | isConstant = false; |
| 4891 | |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4892 | for (unsigned i = 1; i < NumElems; ++i) { |
| 4893 | SDOperand V = Node->getOperand(i); |
Chris Lattner | 89a1b38 | 2006-04-19 23:17:50 +0000 | [diff] [blame] | 4894 | Values[V].push_back(i); |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4895 | if (V.getOpcode() != ISD::UNDEF) |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 4896 | isOnlyLowElement = false; |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4897 | if (SplatValue != V) |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 4898 | SplatValue = SDOperand(0,0); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4899 | |
| 4900 | // If this isn't a constant element or an undef, we can't use a constant |
| 4901 | // pool load. |
| 4902 | if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) && |
| 4903 | V.getOpcode() != ISD::UNDEF) |
| 4904 | isConstant = false; |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 4905 | } |
| 4906 | |
| 4907 | if (isOnlyLowElement) { |
| 4908 | // If the low element is an undef too, then this whole things is an undef. |
| 4909 | if (Node->getOperand(0).getOpcode() == ISD::UNDEF) |
| 4910 | return DAG.getNode(ISD::UNDEF, Node->getValueType(0)); |
| 4911 | // Otherwise, turn this into a scalar_to_vector node. |
| 4912 | return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), |
| 4913 | Node->getOperand(0)); |
| 4914 | } |
| 4915 | |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4916 | // If all elements are constants, create a load from the constant pool. |
| 4917 | if (isConstant) { |
| 4918 | MVT::ValueType VT = Node->getValueType(0); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4919 | std::vector<Constant*> CV; |
| 4920 | for (unsigned i = 0, e = NumElems; i != e; ++i) { |
| 4921 | if (ConstantFPSDNode *V = |
| 4922 | dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) { |
Chris Lattner | 02a260a | 2008-04-20 00:41:09 +0000 | [diff] [blame] | 4923 | CV.push_back(ConstantFP::get(V->getValueAPF())); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4924 | } else if (ConstantSDNode *V = |
Chris Lattner | 02a260a | 2008-04-20 00:41:09 +0000 | [diff] [blame] | 4925 | dyn_cast<ConstantSDNode>(Node->getOperand(i))) { |
| 4926 | CV.push_back(ConstantInt::get(V->getAPIntValue())); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4927 | } else { |
| 4928 | assert(Node->getOperand(i).getOpcode() == ISD::UNDEF); |
Chris Lattner | 02a260a | 2008-04-20 00:41:09 +0000 | [diff] [blame] | 4929 | const Type *OpNTy = |
| 4930 | MVT::getTypeForValueType(Node->getOperand(0).getValueType()); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4931 | CV.push_back(UndefValue::get(OpNTy)); |
| 4932 | } |
| 4933 | } |
Reid Spencer | 9d6565a | 2007-02-15 02:26:10 +0000 | [diff] [blame] | 4934 | Constant *CP = ConstantVector::get(CV); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4935 | SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy()); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 4936 | return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 4937 | PseudoSourceValue::getConstantPool(), 0); |
Chris Lattner | 2eb8653 | 2006-03-24 07:29:17 +0000 | [diff] [blame] | 4938 | } |
| 4939 | |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 4940 | if (SplatValue.Val) { // Splat of one value? |
| 4941 | // Build the shuffle constant vector: <0, 0, 0, 0> |
| 4942 | MVT::ValueType MaskVT = |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4943 | MVT::getIntVectorWithNumElements(NumElems); |
Dan Gohman | 51eaa86 | 2007-06-14 22:58:02 +0000 | [diff] [blame] | 4944 | SDOperand Zero = DAG.getConstant(0, MVT::getVectorElementType(MaskVT)); |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4945 | std::vector<SDOperand> ZeroVec(NumElems, Zero); |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 4946 | SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, |
| 4947 | &ZeroVec[0], ZeroVec.size()); |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 4948 | |
| 4949 | // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it. |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 4950 | if (isShuffleLegal(Node->getValueType(0), SplatMask)) { |
Chris Lattner | 87100e0 | 2006-03-20 01:52:29 +0000 | [diff] [blame] | 4951 | // Get the splatted value into the low element of a vector register. |
| 4952 | SDOperand LowValVec = |
| 4953 | DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue); |
| 4954 | |
| 4955 | // Return shuffle(LowValVec, undef, <0,0,0,0>) |
| 4956 | return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec, |
| 4957 | DAG.getNode(ISD::UNDEF, Node->getValueType(0)), |
| 4958 | SplatMask); |
| 4959 | } |
| 4960 | } |
| 4961 | |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4962 | // If there are only two unique elements, we may be able to turn this into a |
| 4963 | // vector shuffle. |
| 4964 | if (Values.size() == 2) { |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 4965 | // Get the two values in deterministic order. |
| 4966 | SDOperand Val1 = Node->getOperand(1); |
| 4967 | SDOperand Val2; |
| 4968 | std::map<SDOperand, std::vector<unsigned> >::iterator MI = Values.begin(); |
| 4969 | if (MI->first != Val1) |
| 4970 | Val2 = MI->first; |
| 4971 | else |
| 4972 | Val2 = (++MI)->first; |
| 4973 | |
| 4974 | // If Val1 is an undef, make sure end ends up as Val2, to ensure that our |
| 4975 | // vector shuffle has the undef vector on the RHS. |
| 4976 | if (Val1.getOpcode() == ISD::UNDEF) |
| 4977 | std::swap(Val1, Val2); |
| 4978 | |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4979 | // Build the shuffle constant vector: e.g. <0, 4, 0, 4> |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 4980 | MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems); |
| 4981 | MVT::ValueType MaskEltVT = MVT::getVectorElementType(MaskVT); |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4982 | std::vector<SDOperand> MaskVec(NumElems); |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 4983 | |
| 4984 | // Set elements of the shuffle mask for Val1. |
| 4985 | std::vector<unsigned> &Val1Elts = Values[Val1]; |
| 4986 | for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i) |
| 4987 | MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT); |
| 4988 | |
| 4989 | // Set elements of the shuffle mask for Val2. |
| 4990 | std::vector<unsigned> &Val2Elts = Values[Val2]; |
| 4991 | for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i) |
| 4992 | if (Val2.getOpcode() != ISD::UNDEF) |
| 4993 | MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT); |
| 4994 | else |
| 4995 | MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT); |
| 4996 | |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 4997 | SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, |
| 4998 | &MaskVec[0], MaskVec.size()); |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 4999 | |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 5000 | // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it. |
Chris Lattner | 4352cc9 | 2006-04-04 17:23:26 +0000 | [diff] [blame] | 5001 | if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) && |
| 5002 | isShuffleLegal(Node->getValueType(0), ShuffleMask)) { |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 5003 | Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1); |
| 5004 | Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2); |
| 5005 | SDOperand Ops[] = { Val1, Val2, ShuffleMask }; |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 5006 | |
| 5007 | // Return shuffle(LoValVec, HiValVec, <0,1,0,1>) |
Chris Lattner | f9d95c8 | 2008-03-09 00:29:42 +0000 | [diff] [blame] | 5008 | return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3); |
Evan Cheng | 033e681 | 2006-03-24 01:17:21 +0000 | [diff] [blame] | 5009 | } |
| 5010 | } |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5011 | |
| 5012 | // Otherwise, we can't handle this case efficiently. Allocate a sufficiently |
| 5013 | // aligned object on the stack, store each element into it, then load |
| 5014 | // the result as a vector. |
| 5015 | MVT::ValueType VT = Node->getValueType(0); |
| 5016 | // Create the stack frame object. |
Chris Lattner | 85dd3be | 2007-10-15 17:48:57 +0000 | [diff] [blame] | 5017 | SDOperand FIPtr = DAG.CreateStackTemporary(VT); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5018 | |
| 5019 | // Emit a store of each element to the stack slot. |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 5020 | SmallVector<SDOperand, 8> Stores; |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5021 | unsigned TypeByteSize = |
| 5022 | MVT::getSizeInBits(Node->getOperand(0).getValueType())/8; |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5023 | // Store (in the right endianness) the elements to memory. |
| 5024 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) { |
| 5025 | // Ignore undef elements. |
| 5026 | if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue; |
| 5027 | |
Chris Lattner | 841c882 | 2006-03-22 01:46:54 +0000 | [diff] [blame] | 5028 | unsigned Offset = TypeByteSize*i; |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5029 | |
| 5030 | SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType()); |
| 5031 | Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx); |
| 5032 | |
Evan Cheng | 786225a | 2006-10-05 23:01:46 +0000 | [diff] [blame] | 5033 | Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx, |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 5034 | NULL, 0)); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5035 | } |
| 5036 | |
| 5037 | SDOperand StoreChain; |
| 5038 | if (!Stores.empty()) // Not all undef elements? |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 5039 | StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other, |
| 5040 | &Stores[0], Stores.size()); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5041 | else |
| 5042 | StoreChain = DAG.getEntryNode(); |
| 5043 | |
| 5044 | // Result is a load from the stack slot. |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5045 | return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 5046 | } |
| 5047 | |
Chris Lattner | 5b359c6 | 2005-04-02 04:00:59 +0000 | [diff] [blame] | 5048 | void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp, |
| 5049 | SDOperand Op, SDOperand Amt, |
| 5050 | SDOperand &Lo, SDOperand &Hi) { |
| 5051 | // Expand the subcomponents. |
| 5052 | SDOperand LHSL, LHSH; |
| 5053 | ExpandOp(Op, LHSL, LHSH); |
| 5054 | |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 5055 | SDOperand Ops[] = { LHSL, LHSH, Amt }; |
Chris Lattner | f9f37fc | 2006-08-14 23:53:35 +0000 | [diff] [blame] | 5056 | MVT::ValueType VT = LHSL.getValueType(); |
| 5057 | Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3); |
Chris Lattner | 5b359c6 | 2005-04-02 04:00:59 +0000 | [diff] [blame] | 5058 | Hi = Lo.getValue(1); |
| 5059 | } |
| 5060 | |
| 5061 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 5062 | /// ExpandShift - Try to find a clever way to expand this shift operation out to |
| 5063 | /// smaller elements. If we can't find a way that is more efficient than a |
| 5064 | /// libcall on this target, return false. Otherwise, return true with the |
| 5065 | /// low-parts expanded into Lo and Hi. |
| 5066 | bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt, |
| 5067 | SDOperand &Lo, SDOperand &Hi) { |
| 5068 | assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) && |
| 5069 | "This is not a shift!"); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5070 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 5071 | MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType()); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5072 | SDOperand ShAmt = LegalizeOp(Amt); |
| 5073 | MVT::ValueType ShTy = ShAmt.getValueType(); |
Dan Gohman | 91dc17b | 2008-02-20 16:57:27 +0000 | [diff] [blame] | 5074 | unsigned ShBits = MVT::getSizeInBits(ShTy); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5075 | unsigned VTBits = MVT::getSizeInBits(Op.getValueType()); |
| 5076 | unsigned NVTBits = MVT::getSizeInBits(NVT); |
| 5077 | |
Chris Lattner | 7a3c855 | 2007-10-14 20:35:12 +0000 | [diff] [blame] | 5078 | // Handle the case when Amt is an immediate. |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5079 | if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) { |
| 5080 | unsigned Cst = CN->getValue(); |
| 5081 | // Expand the incoming operand to be shifted, so that we have its parts |
| 5082 | SDOperand InL, InH; |
| 5083 | ExpandOp(Op, InL, InH); |
| 5084 | switch(Opc) { |
| 5085 | case ISD::SHL: |
| 5086 | if (Cst > VTBits) { |
| 5087 | Lo = DAG.getConstant(0, NVT); |
| 5088 | Hi = DAG.getConstant(0, NVT); |
| 5089 | } else if (Cst > NVTBits) { |
| 5090 | Lo = DAG.getConstant(0, NVT); |
| 5091 | Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy)); |
Chris Lattner | ee27f57 | 2005-04-11 20:08:52 +0000 | [diff] [blame] | 5092 | } else if (Cst == NVTBits) { |
| 5093 | Lo = DAG.getConstant(0, NVT); |
| 5094 | Hi = InL; |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5095 | } else { |
| 5096 | Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy)); |
| 5097 | Hi = DAG.getNode(ISD::OR, NVT, |
| 5098 | DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)), |
| 5099 | DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy))); |
| 5100 | } |
| 5101 | return true; |
| 5102 | case ISD::SRL: |
| 5103 | if (Cst > VTBits) { |
| 5104 | Lo = DAG.getConstant(0, NVT); |
| 5105 | Hi = DAG.getConstant(0, NVT); |
| 5106 | } else if (Cst > NVTBits) { |
| 5107 | Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy)); |
| 5108 | Hi = DAG.getConstant(0, NVT); |
Chris Lattner | ee27f57 | 2005-04-11 20:08:52 +0000 | [diff] [blame] | 5109 | } else if (Cst == NVTBits) { |
| 5110 | Lo = InH; |
| 5111 | Hi = DAG.getConstant(0, NVT); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5112 | } else { |
| 5113 | Lo = DAG.getNode(ISD::OR, NVT, |
| 5114 | DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)), |
| 5115 | DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy))); |
| 5116 | Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy)); |
| 5117 | } |
| 5118 | return true; |
| 5119 | case ISD::SRA: |
| 5120 | if (Cst > VTBits) { |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5121 | Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH, |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5122 | DAG.getConstant(NVTBits-1, ShTy)); |
| 5123 | } else if (Cst > NVTBits) { |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5124 | Lo = DAG.getNode(ISD::SRA, NVT, InH, |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5125 | DAG.getConstant(Cst-NVTBits, ShTy)); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5126 | Hi = DAG.getNode(ISD::SRA, NVT, InH, |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5127 | DAG.getConstant(NVTBits-1, ShTy)); |
Chris Lattner | ee27f57 | 2005-04-11 20:08:52 +0000 | [diff] [blame] | 5128 | } else if (Cst == NVTBits) { |
| 5129 | Lo = InH; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5130 | Hi = DAG.getNode(ISD::SRA, NVT, InH, |
Chris Lattner | ee27f57 | 2005-04-11 20:08:52 +0000 | [diff] [blame] | 5131 | DAG.getConstant(NVTBits-1, ShTy)); |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5132 | } else { |
| 5133 | Lo = DAG.getNode(ISD::OR, NVT, |
| 5134 | DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)), |
| 5135 | DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy))); |
| 5136 | Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy)); |
| 5137 | } |
| 5138 | return true; |
| 5139 | } |
| 5140 | } |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5141 | |
| 5142 | // Okay, the shift amount isn't constant. However, if we can tell that it is |
| 5143 | // >= 32 or < 32, we can still simplify it, without knowing the actual value. |
Dan Gohman | 91dc17b | 2008-02-20 16:57:27 +0000 | [diff] [blame] | 5144 | APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits)); |
| 5145 | APInt KnownZero, KnownOne; |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 5146 | DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne); |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5147 | |
Dan Gohman | 9e255b7 | 2008-02-22 01:12:31 +0000 | [diff] [blame] | 5148 | // If we know that if any of the high bits of the shift amount are one, then |
| 5149 | // we can do this as a couple of simple shifts. |
Dan Gohman | 91dc17b | 2008-02-20 16:57:27 +0000 | [diff] [blame] | 5150 | if (KnownOne.intersects(Mask)) { |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5151 | // Mask out the high bit, which we know is set. |
| 5152 | Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt, |
Dan Gohman | 91dc17b | 2008-02-20 16:57:27 +0000 | [diff] [blame] | 5153 | DAG.getConstant(~Mask, Amt.getValueType())); |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5154 | |
| 5155 | // Expand the incoming operand to be shifted, so that we have its parts |
| 5156 | SDOperand InL, InH; |
| 5157 | ExpandOp(Op, InL, InH); |
| 5158 | switch(Opc) { |
| 5159 | case ISD::SHL: |
| 5160 | Lo = DAG.getConstant(0, NVT); // Low part is zero. |
| 5161 | Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part. |
| 5162 | return true; |
| 5163 | case ISD::SRL: |
| 5164 | Hi = DAG.getConstant(0, NVT); // Hi part is zero. |
| 5165 | Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part. |
| 5166 | return true; |
| 5167 | case ISD::SRA: |
| 5168 | Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part. |
| 5169 | DAG.getConstant(NVTBits-1, Amt.getValueType())); |
| 5170 | Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part. |
| 5171 | return true; |
| 5172 | } |
| 5173 | } |
| 5174 | |
Dan Gohman | 9e255b7 | 2008-02-22 01:12:31 +0000 | [diff] [blame] | 5175 | // If we know that the high bits of the shift amount are all zero, then we can |
| 5176 | // do this as a couple of simple shifts. |
| 5177 | if ((KnownZero & Mask) == Mask) { |
Chris Lattner | 0ea26ca | 2006-09-20 03:38:48 +0000 | [diff] [blame] | 5178 | // Compute 32-amt. |
| 5179 | SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(), |
| 5180 | DAG.getConstant(NVTBits, Amt.getValueType()), |
| 5181 | Amt); |
| 5182 | |
| 5183 | // Expand the incoming operand to be shifted, so that we have its parts |
| 5184 | SDOperand InL, InH; |
| 5185 | ExpandOp(Op, InL, InH); |
| 5186 | switch(Opc) { |
| 5187 | case ISD::SHL: |
| 5188 | Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt); |
| 5189 | Hi = DAG.getNode(ISD::OR, NVT, |
| 5190 | DAG.getNode(ISD::SHL, NVT, InH, Amt), |
| 5191 | DAG.getNode(ISD::SRL, NVT, InL, Amt2)); |
| 5192 | return true; |
| 5193 | case ISD::SRL: |
| 5194 | Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt); |
| 5195 | Lo = DAG.getNode(ISD::OR, NVT, |
| 5196 | DAG.getNode(ISD::SRL, NVT, InL, Amt), |
| 5197 | DAG.getNode(ISD::SHL, NVT, InH, Amt2)); |
| 5198 | return true; |
| 5199 | case ISD::SRA: |
| 5200 | Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt); |
| 5201 | Lo = DAG.getNode(ISD::OR, NVT, |
| 5202 | DAG.getNode(ISD::SRL, NVT, InL, Amt), |
| 5203 | DAG.getNode(ISD::SHL, NVT, InH, Amt2)); |
| 5204 | return true; |
| 5205 | } |
| 5206 | } |
| 5207 | |
Nate Begeman | f1fe32e | 2005-04-06 21:13:14 +0000 | [diff] [blame] | 5208 | return false; |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 5209 | } |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5210 | |
Chris Lattner | 9c32d3b | 2005-01-23 04:42:50 +0000 | [diff] [blame] | 5211 | |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5212 | // ExpandLibCall - Expand a node into a call to a libcall. If the result value |
| 5213 | // does not fit into a register, return the lo part and set the hi part to the |
| 5214 | // by-reg argument. If it does fit into a single register, return the result |
| 5215 | // and leave the Hi part unset. |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 5216 | SDOperand SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 5217 | bool isSigned, SDOperand &Hi) { |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 5218 | assert(!IsLegalizingCall && "Cannot overlap legalization of calls!"); |
| 5219 | // The input chain to this libcall is the entry node of the function. |
| 5220 | // Legalizing the call will automatically add the previous call to the |
| 5221 | // dependence. |
| 5222 | SDOperand InChain = DAG.getEntryNode(); |
| 5223 | |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5224 | TargetLowering::ArgListTy Args; |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 5225 | TargetLowering::ArgListEntry Entry; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5226 | for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) { |
| 5227 | MVT::ValueType ArgVT = Node->getOperand(i).getValueType(); |
| 5228 | const Type *ArgTy = MVT::getTypeForValueType(ArgVT); |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 5229 | Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy; |
Anton Korobeynikov | d0b82b3 | 2007-03-07 16:25:09 +0000 | [diff] [blame] | 5230 | Entry.isSExt = isSigned; |
Duncan Sands | 00fee65 | 2008-02-14 17:28:50 +0000 | [diff] [blame] | 5231 | Entry.isZExt = !isSigned; |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 5232 | Args.push_back(Entry); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5233 | } |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 5234 | SDOperand Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC), |
| 5235 | TLI.getPointerTy()); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5236 | |
Chris Lattner | 0d67f0c | 2005-05-11 19:02:11 +0000 | [diff] [blame] | 5237 | // Splice the libcall in wherever FindInputOutputChains tells us to. |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5238 | const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0)); |
Chris Lattner | 0d67f0c | 2005-05-11 19:02:11 +0000 | [diff] [blame] | 5239 | std::pair<SDOperand,SDOperand> CallInfo = |
Duncan Sands | 00fee65 | 2008-02-14 17:28:50 +0000 | [diff] [blame] | 5240 | TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, CallingConv::C, |
| 5241 | false, Callee, Args, DAG); |
Chris Lattner | b9fa3bc | 2005-05-12 04:49:08 +0000 | [diff] [blame] | 5242 | |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 5243 | // Legalize the call sequence, starting with the chain. This will advance |
| 5244 | // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that |
| 5245 | // was added by LowerCallTo (guaranteeing proper serialization of calls). |
| 5246 | LegalizeOp(CallInfo.second); |
Chris Lattner | 99c25b8 | 2005-09-02 20:26:58 +0000 | [diff] [blame] | 5247 | SDOperand Result; |
Chris Lattner | 0d67f0c | 2005-05-11 19:02:11 +0000 | [diff] [blame] | 5248 | switch (getTypeAction(CallInfo.first.getValueType())) { |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5249 | default: assert(0 && "Unknown thing"); |
| 5250 | case Legal: |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 5251 | Result = CallInfo.first; |
Chris Lattner | 99c25b8 | 2005-09-02 20:26:58 +0000 | [diff] [blame] | 5252 | break; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5253 | case Expand: |
Chris Lattner | 99c25b8 | 2005-09-02 20:26:58 +0000 | [diff] [blame] | 5254 | ExpandOp(CallInfo.first, Result, Hi); |
Chris Lattner | 99c25b8 | 2005-09-02 20:26:58 +0000 | [diff] [blame] | 5255 | break; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5256 | } |
Chris Lattner | 99c25b8 | 2005-09-02 20:26:58 +0000 | [diff] [blame] | 5257 | return Result; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5258 | } |
| 5259 | |
Chris Lattner | 9c32d3b | 2005-01-23 04:42:50 +0000 | [diff] [blame] | 5260 | |
Evan Cheng | 4c6cfad | 2007-04-27 07:33:31 +0000 | [diff] [blame] | 5261 | /// ExpandIntToFP - Expand a [US]INT_TO_FP operation. |
| 5262 | /// |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5263 | SDOperand SelectionDAGLegalize:: |
| 5264 | ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) { |
Dan Gohman | d91446d | 2008-03-05 01:08:17 +0000 | [diff] [blame] | 5265 | MVT::ValueType SourceVT = Source.getValueType(); |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 5266 | bool ExpandSource = getTypeAction(SourceVT) == Expand; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5267 | |
Evan Cheng | 9845eb5 | 2008-04-01 02:18:22 +0000 | [diff] [blame] | 5268 | // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc. |
| 5269 | if (!isSigned && SourceVT != MVT::i32) { |
Dan Gohman | 34bc178 | 2008-03-05 02:07:31 +0000 | [diff] [blame] | 5270 | // The integer value loaded will be incorrectly if the 'sign bit' of the |
Chris Lattner | e9c35e7 | 2005-04-13 05:09:42 +0000 | [diff] [blame] | 5271 | // incoming integer is set. To handle this, we dynamically test to see if |
| 5272 | // it is set, and, if so, add a fudge factor. |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 5273 | SDOperand Hi; |
| 5274 | if (ExpandSource) { |
| 5275 | SDOperand Lo; |
| 5276 | ExpandOp(Source, Lo, Hi); |
| 5277 | Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi); |
| 5278 | } else { |
| 5279 | // The comparison for the sign bit will use the entire operand. |
| 5280 | Hi = Source; |
| 5281 | } |
Chris Lattner | e9c35e7 | 2005-04-13 05:09:42 +0000 | [diff] [blame] | 5282 | |
Chris Lattner | 66de05b | 2005-05-13 04:45:13 +0000 | [diff] [blame] | 5283 | // If this is unsigned, and not supported, first perform the conversion to |
| 5284 | // signed, then adjust the result if the sign bit is set. |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 5285 | SDOperand SignedConv = ExpandIntToFP(true, DestTy, Source); |
Chris Lattner | 66de05b | 2005-05-13 04:45:13 +0000 | [diff] [blame] | 5286 | |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 5287 | SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi, |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 5288 | DAG.getConstant(0, Hi.getValueType()), |
| 5289 | ISD::SETLT); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 5290 | SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4); |
Chris Lattner | e9c35e7 | 2005-04-13 05:09:42 +0000 | [diff] [blame] | 5291 | SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(), |
| 5292 | SignSet, Four, Zero); |
Chris Lattner | 383203b | 2005-05-12 18:52:34 +0000 | [diff] [blame] | 5293 | uint64_t FF = 0x5f800000ULL; |
| 5294 | if (TLI.isLittleEndian()) FF <<= 32; |
Dan Gohman | 34bc178 | 2008-03-05 02:07:31 +0000 | [diff] [blame] | 5295 | static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF); |
Chris Lattner | e9c35e7 | 2005-04-13 05:09:42 +0000 | [diff] [blame] | 5296 | |
Chris Lattner | 5839bf2 | 2005-08-26 17:15:30 +0000 | [diff] [blame] | 5297 | SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy()); |
Chris Lattner | e9c35e7 | 2005-04-13 05:09:42 +0000 | [diff] [blame] | 5298 | CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset); |
| 5299 | SDOperand FudgeInReg; |
| 5300 | if (DestTy == MVT::f32) |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 5301 | FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 5302 | PseudoSourceValue::getConstantPool(), 0); |
Dale Johannesen | 118cd9d | 2007-09-16 16:51:49 +0000 | [diff] [blame] | 5303 | else if (MVT::getSizeInBits(DestTy) > MVT::getSizeInBits(MVT::f32)) |
Evan Cheng | 4c6cfad | 2007-04-27 07:33:31 +0000 | [diff] [blame] | 5304 | // FIXME: Avoid the extend by construction the right constantpool? |
Dale Johannesen | 118cd9d | 2007-09-16 16:51:49 +0000 | [diff] [blame] | 5305 | FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(), |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 5306 | CPIdx, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 5307 | PseudoSourceValue::getConstantPool(), 0, |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 5308 | MVT::f32); |
Dale Johannesen | 9e3d3ab | 2007-09-14 22:26:36 +0000 | [diff] [blame] | 5309 | else |
| 5310 | assert(0 && "Unexpected conversion"); |
| 5311 | |
Evan Cheng | 4c6cfad | 2007-04-27 07:33:31 +0000 | [diff] [blame] | 5312 | MVT::ValueType SCVT = SignedConv.getValueType(); |
| 5313 | if (SCVT != DestTy) { |
| 5314 | // Destination type needs to be expanded as well. The FADD now we are |
| 5315 | // constructing will be expanded into a libcall. |
| 5316 | if (MVT::getSizeInBits(SCVT) != MVT::getSizeInBits(DestTy)) { |
Dan Gohman | d91446d | 2008-03-05 01:08:17 +0000 | [diff] [blame] | 5317 | assert(MVT::getSizeInBits(SCVT) * 2 == MVT::getSizeInBits(DestTy)); |
| 5318 | SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy, |
Evan Cheng | 4c6cfad | 2007-04-27 07:33:31 +0000 | [diff] [blame] | 5319 | SignedConv, SignedConv.getValue(1)); |
| 5320 | } |
| 5321 | SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv); |
| 5322 | } |
Chris Lattner | 473a990 | 2005-09-29 06:44:39 +0000 | [diff] [blame] | 5323 | return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg); |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5324 | } |
Chris Lattner | 0d67f0c | 2005-05-11 19:02:11 +0000 | [diff] [blame] | 5325 | |
Chris Lattner | a88a260 | 2005-05-14 05:33:54 +0000 | [diff] [blame] | 5326 | // Check to see if the target has a custom way to lower this. If so, use it. |
Dan Gohman | d91446d | 2008-03-05 01:08:17 +0000 | [diff] [blame] | 5327 | switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) { |
Chris Lattner | a88a260 | 2005-05-14 05:33:54 +0000 | [diff] [blame] | 5328 | default: assert(0 && "This action not implemented for this operation!"); |
| 5329 | case TargetLowering::Legal: |
| 5330 | case TargetLowering::Expand: |
| 5331 | break; // This case is handled below. |
Chris Lattner | 07dffd6 | 2005-08-26 00:14:16 +0000 | [diff] [blame] | 5332 | case TargetLowering::Custom: { |
| 5333 | SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy, |
| 5334 | Source), DAG); |
| 5335 | if (NV.Val) |
| 5336 | return LegalizeOp(NV); |
| 5337 | break; // The target decided this was legal after all |
| 5338 | } |
Chris Lattner | a88a260 | 2005-05-14 05:33:54 +0000 | [diff] [blame] | 5339 | } |
| 5340 | |
Chris Lattner | 13689e2 | 2005-05-12 07:00:44 +0000 | [diff] [blame] | 5341 | // Expand the source, then glue it back together for the call. We must expand |
| 5342 | // the source in case it is shared (this pass of legalize must traverse it). |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 5343 | if (ExpandSource) { |
| 5344 | SDOperand SrcLo, SrcHi; |
| 5345 | ExpandOp(Source, SrcLo, SrcHi); |
| 5346 | Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi); |
| 5347 | } |
Chris Lattner | 13689e2 | 2005-05-12 07:00:44 +0000 | [diff] [blame] | 5348 | |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 5349 | RTLIB::Libcall LC; |
Evan Cheng | 110cf48 | 2008-04-01 01:50:16 +0000 | [diff] [blame] | 5350 | if (SourceVT == MVT::i32) { |
| 5351 | if (DestTy == MVT::f32) |
Evan Cheng | db45d1c | 2008-04-01 02:00:09 +0000 | [diff] [blame] | 5352 | LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32; |
Evan Cheng | 110cf48 | 2008-04-01 01:50:16 +0000 | [diff] [blame] | 5353 | else { |
| 5354 | assert(DestTy == MVT::f64 && "Unknown fp value type!"); |
| 5355 | LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64; |
| 5356 | } |
| 5357 | } else if (SourceVT == MVT::i64) { |
Dan Gohman | d91446d | 2008-03-05 01:08:17 +0000 | [diff] [blame] | 5358 | if (DestTy == MVT::f32) |
| 5359 | LC = RTLIB::SINTTOFP_I64_F32; |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 5360 | else if (DestTy == MVT::f64) |
Dan Gohman | d91446d | 2008-03-05 01:08:17 +0000 | [diff] [blame] | 5361 | LC = RTLIB::SINTTOFP_I64_F64; |
Dan Gohman | 034f60e | 2008-03-11 01:59:03 +0000 | [diff] [blame] | 5362 | else if (DestTy == MVT::f80) |
| 5363 | LC = RTLIB::SINTTOFP_I64_F80; |
| 5364 | else { |
| 5365 | assert(DestTy == MVT::ppcf128 && "Unknown fp value type!"); |
| 5366 | LC = RTLIB::SINTTOFP_I64_PPCF128; |
Dan Gohman | d91446d | 2008-03-05 01:08:17 +0000 | [diff] [blame] | 5367 | } |
| 5368 | } else if (SourceVT == MVT::i128) { |
| 5369 | if (DestTy == MVT::f32) |
| 5370 | LC = RTLIB::SINTTOFP_I128_F32; |
| 5371 | else if (DestTy == MVT::f64) |
| 5372 | LC = RTLIB::SINTTOFP_I128_F64; |
| 5373 | else if (DestTy == MVT::f80) |
| 5374 | LC = RTLIB::SINTTOFP_I128_F80; |
| 5375 | else { |
| 5376 | assert(DestTy == MVT::ppcf128 && "Unknown fp value type!"); |
| 5377 | LC = RTLIB::SINTTOFP_I128_PPCF128; |
| 5378 | } |
| 5379 | } else { |
| 5380 | assert(0 && "Unknown int value type"); |
Chris Lattner | 0d67f0c | 2005-05-11 19:02:11 +0000 | [diff] [blame] | 5381 | } |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 5382 | |
Evan Cheng | 4c6cfad | 2007-04-27 07:33:31 +0000 | [diff] [blame] | 5383 | assert(TLI.getLibcallName(LC) && "Don't know how to expand this SINT_TO_FP!"); |
Chris Lattner | 6831a81 | 2006-02-13 09:18:02 +0000 | [diff] [blame] | 5384 | Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source); |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 5385 | SDOperand HiPart; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 5386 | SDOperand Result = ExpandLibCall(LC, Source.Val, isSigned, HiPart); |
Evan Cheng | 110cf48 | 2008-04-01 01:50:16 +0000 | [diff] [blame] | 5387 | if (Result.getValueType() != DestTy && HiPart.Val) |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 5388 | Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart); |
| 5389 | return Result; |
Chris Lattner | 77e77a6 | 2005-01-21 06:05:23 +0000 | [diff] [blame] | 5390 | } |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5391 | |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5392 | /// ExpandLegalINT_TO_FP - This function is responsible for legalizing a |
| 5393 | /// INT_TO_FP operation of the specified operand when the target requests that |
| 5394 | /// we expand it. At this point, we know that the result and operand types are |
| 5395 | /// legal for the target. |
| 5396 | SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned, |
| 5397 | SDOperand Op0, |
| 5398 | MVT::ValueType DestVT) { |
| 5399 | if (Op0.getValueType() == MVT::i32) { |
| 5400 | // simple 32-bit [signed|unsigned] integer to float/double expansion |
| 5401 | |
Chris Lattner | 23594d4 | 2008-01-16 07:03:22 +0000 | [diff] [blame] | 5402 | // Get the stack frame index of a 8 byte buffer. |
| 5403 | SDOperand StackSlot = DAG.CreateStackTemporary(MVT::f64); |
| 5404 | |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5405 | // word offset constant for Hi/Lo address computation |
| 5406 | SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy()); |
| 5407 | // set up Hi and Lo (into buffer) address based on endian |
Chris Lattner | 408c428 | 2006-03-23 05:29:04 +0000 | [diff] [blame] | 5408 | SDOperand Hi = StackSlot; |
| 5409 | SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff); |
| 5410 | if (TLI.isLittleEndian()) |
| 5411 | std::swap(Hi, Lo); |
| 5412 | |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5413 | // if signed map to unsigned space |
| 5414 | SDOperand Op0Mapped; |
| 5415 | if (isSigned) { |
| 5416 | // constant used to invert sign bit (signed to unsigned mapping) |
| 5417 | SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32); |
| 5418 | Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit); |
| 5419 | } else { |
| 5420 | Op0Mapped = Op0; |
| 5421 | } |
| 5422 | // store the lo of the constructed double - based on integer input |
Evan Cheng | 786225a | 2006-10-05 23:01:46 +0000 | [diff] [blame] | 5423 | SDOperand Store1 = DAG.getStore(DAG.getEntryNode(), |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 5424 | Op0Mapped, Lo, NULL, 0); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5425 | // initial hi portion of constructed double |
| 5426 | SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32); |
| 5427 | // store the hi of the constructed double - biased exponent |
Evan Cheng | 8b2794a | 2006-10-13 21:14:26 +0000 | [diff] [blame] | 5428 | SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5429 | // load the constructed double |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5430 | SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5431 | // FP constant to bias correct the final result |
| 5432 | SDOperand Bias = DAG.getConstantFP(isSigned ? |
| 5433 | BitsToDouble(0x4330000080000000ULL) |
| 5434 | : BitsToDouble(0x4330000000000000ULL), |
| 5435 | MVT::f64); |
| 5436 | // subtract the bias |
| 5437 | SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias); |
| 5438 | // final result |
| 5439 | SDOperand Result; |
| 5440 | // handle final rounding |
| 5441 | if (DestVT == MVT::f64) { |
| 5442 | // do nothing |
| 5443 | Result = Sub; |
Dale Johannesen | 118cd9d | 2007-09-16 16:51:49 +0000 | [diff] [blame] | 5444 | } else if (MVT::getSizeInBits(DestVT) < MVT::getSizeInBits(MVT::f64)) { |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 5445 | Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub, |
| 5446 | DAG.getIntPtrConstant(0)); |
Dale Johannesen | 118cd9d | 2007-09-16 16:51:49 +0000 | [diff] [blame] | 5447 | } else if (MVT::getSizeInBits(DestVT) > MVT::getSizeInBits(MVT::f64)) { |
| 5448 | Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5449 | } |
| 5450 | return Result; |
| 5451 | } |
| 5452 | assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet"); |
| 5453 | SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0); |
| 5454 | |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 5455 | SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0, |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5456 | DAG.getConstant(0, Op0.getValueType()), |
| 5457 | ISD::SETLT); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 5458 | SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5459 | SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(), |
| 5460 | SignSet, Four, Zero); |
| 5461 | |
| 5462 | // If the sign bit of the integer is set, the large number will be treated |
| 5463 | // as a negative number. To counteract this, the dynamic code adds an |
| 5464 | // offset depending on the data type. |
| 5465 | uint64_t FF; |
| 5466 | switch (Op0.getValueType()) { |
| 5467 | default: assert(0 && "Unsupported integer type!"); |
| 5468 | case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float) |
| 5469 | case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float) |
| 5470 | case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float) |
| 5471 | case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float) |
| 5472 | } |
| 5473 | if (TLI.isLittleEndian()) FF <<= 32; |
Reid Spencer | 4785781 | 2006-12-31 05:55:36 +0000 | [diff] [blame] | 5474 | static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5475 | |
| 5476 | SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy()); |
| 5477 | CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset); |
| 5478 | SDOperand FudgeInReg; |
| 5479 | if (DestVT == MVT::f32) |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 5480 | FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 5481 | PseudoSourceValue::getConstantPool(), 0); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5482 | else { |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 5483 | FudgeInReg = |
| 5484 | LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT, |
| 5485 | DAG.getEntryNode(), CPIdx, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 5486 | PseudoSourceValue::getConstantPool(), 0, |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 5487 | MVT::f32)); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5488 | } |
| 5489 | |
| 5490 | return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg); |
| 5491 | } |
| 5492 | |
| 5493 | /// PromoteLegalINT_TO_FP - This function is responsible for legalizing a |
| 5494 | /// *INT_TO_FP operation of the specified operand when the target requests that |
| 5495 | /// we promote it. At this point, we know that the result and operand types are |
| 5496 | /// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP |
| 5497 | /// operation that takes a larger input. |
| 5498 | SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp, |
| 5499 | MVT::ValueType DestVT, |
| 5500 | bool isSigned) { |
| 5501 | // First step, figure out the appropriate *INT_TO_FP operation to use. |
| 5502 | MVT::ValueType NewInTy = LegalOp.getValueType(); |
| 5503 | |
| 5504 | unsigned OpToUse = 0; |
| 5505 | |
| 5506 | // Scan for the appropriate larger type to use. |
| 5507 | while (1) { |
| 5508 | NewInTy = (MVT::ValueType)(NewInTy+1); |
| 5509 | assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!"); |
| 5510 | |
| 5511 | // If the target supports SINT_TO_FP of this type, use it. |
| 5512 | switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) { |
| 5513 | default: break; |
| 5514 | case TargetLowering::Legal: |
| 5515 | if (!TLI.isTypeLegal(NewInTy)) |
| 5516 | break; // Can't use this datatype. |
| 5517 | // FALL THROUGH. |
| 5518 | case TargetLowering::Custom: |
| 5519 | OpToUse = ISD::SINT_TO_FP; |
| 5520 | break; |
| 5521 | } |
| 5522 | if (OpToUse) break; |
| 5523 | if (isSigned) continue; |
| 5524 | |
| 5525 | // If the target supports UINT_TO_FP of this type, use it. |
| 5526 | switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) { |
| 5527 | default: break; |
| 5528 | case TargetLowering::Legal: |
| 5529 | if (!TLI.isTypeLegal(NewInTy)) |
| 5530 | break; // Can't use this datatype. |
| 5531 | // FALL THROUGH. |
| 5532 | case TargetLowering::Custom: |
| 5533 | OpToUse = ISD::UINT_TO_FP; |
| 5534 | break; |
| 5535 | } |
| 5536 | if (OpToUse) break; |
| 5537 | |
| 5538 | // Otherwise, try a larger type. |
| 5539 | } |
| 5540 | |
| 5541 | // Okay, we found the operation and type to use. Zero extend our input to the |
| 5542 | // desired type then run the operation on it. |
| 5543 | return DAG.getNode(OpToUse, DestVT, |
| 5544 | DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND, |
| 5545 | NewInTy, LegalOp)); |
| 5546 | } |
| 5547 | |
| 5548 | /// PromoteLegalFP_TO_INT - This function is responsible for legalizing a |
| 5549 | /// FP_TO_*INT operation of the specified operand when the target requests that |
| 5550 | /// we promote it. At this point, we know that the result and operand types are |
| 5551 | /// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT |
| 5552 | /// operation that returns a larger result. |
| 5553 | SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp, |
| 5554 | MVT::ValueType DestVT, |
| 5555 | bool isSigned) { |
| 5556 | // First step, figure out the appropriate FP_TO*INT operation to use. |
| 5557 | MVT::ValueType NewOutTy = DestVT; |
| 5558 | |
| 5559 | unsigned OpToUse = 0; |
| 5560 | |
| 5561 | // Scan for the appropriate larger type to use. |
| 5562 | while (1) { |
| 5563 | NewOutTy = (MVT::ValueType)(NewOutTy+1); |
| 5564 | assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!"); |
| 5565 | |
| 5566 | // If the target supports FP_TO_SINT returning this type, use it. |
| 5567 | switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) { |
| 5568 | default: break; |
| 5569 | case TargetLowering::Legal: |
| 5570 | if (!TLI.isTypeLegal(NewOutTy)) |
| 5571 | break; // Can't use this datatype. |
| 5572 | // FALL THROUGH. |
| 5573 | case TargetLowering::Custom: |
| 5574 | OpToUse = ISD::FP_TO_SINT; |
| 5575 | break; |
| 5576 | } |
| 5577 | if (OpToUse) break; |
| 5578 | |
| 5579 | // If the target supports FP_TO_UINT of this type, use it. |
| 5580 | switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) { |
| 5581 | default: break; |
| 5582 | case TargetLowering::Legal: |
| 5583 | if (!TLI.isTypeLegal(NewOutTy)) |
| 5584 | break; // Can't use this datatype. |
| 5585 | // FALL THROUGH. |
| 5586 | case TargetLowering::Custom: |
| 5587 | OpToUse = ISD::FP_TO_UINT; |
| 5588 | break; |
| 5589 | } |
| 5590 | if (OpToUse) break; |
| 5591 | |
| 5592 | // Otherwise, try a larger type. |
| 5593 | } |
| 5594 | |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 5595 | |
| 5596 | // Okay, we found the operation and type to use. |
| 5597 | SDOperand Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp); |
| 5598 | |
| 5599 | // If the operation produces an invalid type, it must be custom lowered. Use |
| 5600 | // the target lowering hooks to expand it. Just keep the low part of the |
| 5601 | // expanded operation, we know that we're truncating anyway. |
| 5602 | if (getTypeAction(NewOutTy) == Expand) { |
| 5603 | Operation = SDOperand(TLI.ExpandOperationResult(Operation.Val, DAG), 0); |
| 5604 | assert(Operation.Val && "Didn't return anything"); |
| 5605 | } |
| 5606 | |
| 5607 | // Truncate the result of the extended FP_TO_*INT operation to the desired |
| 5608 | // size. |
| 5609 | return DAG.getNode(ISD::TRUNCATE, DestVT, Operation); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5610 | } |
| 5611 | |
| 5612 | /// ExpandBSWAP - Open code the operations for BSWAP of the specified operation. |
| 5613 | /// |
| 5614 | SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) { |
| 5615 | MVT::ValueType VT = Op.getValueType(); |
| 5616 | MVT::ValueType SHVT = TLI.getShiftAmountTy(); |
| 5617 | SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8; |
| 5618 | switch (VT) { |
| 5619 | default: assert(0 && "Unhandled Expand type in BSWAP!"); abort(); |
| 5620 | case MVT::i16: |
| 5621 | Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT)); |
| 5622 | Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT)); |
| 5623 | return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2); |
| 5624 | case MVT::i32: |
| 5625 | Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT)); |
| 5626 | Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT)); |
| 5627 | Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT)); |
| 5628 | Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT)); |
| 5629 | Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT)); |
| 5630 | Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT)); |
| 5631 | Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3); |
| 5632 | Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1); |
| 5633 | return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2); |
| 5634 | case MVT::i64: |
| 5635 | Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT)); |
| 5636 | Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT)); |
| 5637 | Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT)); |
| 5638 | Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT)); |
| 5639 | Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT)); |
| 5640 | Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT)); |
| 5641 | Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT)); |
| 5642 | Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT)); |
| 5643 | Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT)); |
| 5644 | Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT)); |
| 5645 | Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT)); |
| 5646 | Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT)); |
| 5647 | Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT)); |
| 5648 | Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT)); |
| 5649 | Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7); |
| 5650 | Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5); |
| 5651 | Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3); |
| 5652 | Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1); |
| 5653 | Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6); |
| 5654 | Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2); |
| 5655 | return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4); |
| 5656 | } |
| 5657 | } |
| 5658 | |
| 5659 | /// ExpandBitCount - Expand the specified bitcount instruction into operations. |
| 5660 | /// |
| 5661 | SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) { |
| 5662 | switch (Opc) { |
| 5663 | default: assert(0 && "Cannot expand this yet!"); |
| 5664 | case ISD::CTPOP: { |
| 5665 | static const uint64_t mask[6] = { |
| 5666 | 0x5555555555555555ULL, 0x3333333333333333ULL, |
| 5667 | 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL, |
| 5668 | 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL |
| 5669 | }; |
| 5670 | MVT::ValueType VT = Op.getValueType(); |
| 5671 | MVT::ValueType ShVT = TLI.getShiftAmountTy(); |
Dan Gohman | b55757e | 2007-05-18 17:52:13 +0000 | [diff] [blame] | 5672 | unsigned len = MVT::getSizeInBits(VT); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5673 | for (unsigned i = 0; (1U << i) <= (len / 2); ++i) { |
| 5674 | //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8]) |
| 5675 | SDOperand Tmp2 = DAG.getConstant(mask[i], VT); |
| 5676 | SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT); |
| 5677 | Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2), |
| 5678 | DAG.getNode(ISD::AND, VT, |
| 5679 | DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2)); |
| 5680 | } |
| 5681 | return Op; |
| 5682 | } |
| 5683 | case ISD::CTLZ: { |
| 5684 | // for now, we do this: |
| 5685 | // x = x | (x >> 1); |
| 5686 | // x = x | (x >> 2); |
| 5687 | // ... |
| 5688 | // x = x | (x >>16); |
| 5689 | // x = x | (x >>32); // for 64-bit input |
| 5690 | // return popcount(~x); |
| 5691 | // |
| 5692 | // but see also: http://www.hackersdelight.org/HDcode/nlz.cc |
| 5693 | MVT::ValueType VT = Op.getValueType(); |
| 5694 | MVT::ValueType ShVT = TLI.getShiftAmountTy(); |
Dan Gohman | b55757e | 2007-05-18 17:52:13 +0000 | [diff] [blame] | 5695 | unsigned len = MVT::getSizeInBits(VT); |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5696 | for (unsigned i = 0; (1U << i) <= (len / 2); ++i) { |
| 5697 | SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT); |
| 5698 | Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3)); |
| 5699 | } |
| 5700 | Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT)); |
| 5701 | return DAG.getNode(ISD::CTPOP, VT, Op); |
| 5702 | } |
| 5703 | case ISD::CTTZ: { |
| 5704 | // for now, we use: { return popcount(~x & (x - 1)); } |
| 5705 | // unless the target has ctlz but not ctpop, in which case we use: |
| 5706 | // { return 32 - nlz(~x & (x-1)); } |
| 5707 | // see also http://www.hackersdelight.org/HDcode/ntz.cc |
| 5708 | MVT::ValueType VT = Op.getValueType(); |
| 5709 | SDOperand Tmp2 = DAG.getConstant(~0ULL, VT); |
| 5710 | SDOperand Tmp3 = DAG.getNode(ISD::AND, VT, |
| 5711 | DAG.getNode(ISD::XOR, VT, Op, Tmp2), |
| 5712 | DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT))); |
| 5713 | // If ISD::CTLZ is legal and CTPOP isn't, then do that instead. |
| 5714 | if (!TLI.isOperationLegal(ISD::CTPOP, VT) && |
| 5715 | TLI.isOperationLegal(ISD::CTLZ, VT)) |
| 5716 | return DAG.getNode(ISD::SUB, VT, |
Dan Gohman | b55757e | 2007-05-18 17:52:13 +0000 | [diff] [blame] | 5717 | DAG.getConstant(MVT::getSizeInBits(VT), VT), |
Chris Lattner | 22cde6a | 2006-01-28 08:25:58 +0000 | [diff] [blame] | 5718 | DAG.getNode(ISD::CTLZ, VT, Tmp3)); |
| 5719 | return DAG.getNode(ISD::CTPOP, VT, Tmp3); |
| 5720 | } |
| 5721 | } |
| 5722 | } |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 5723 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5724 | /// ExpandOp - Expand the specified SDOperand into its two component pieces |
| 5725 | /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the |
| 5726 | /// LegalizeNodes map is filled in for any results that are not expanded, the |
| 5727 | /// ExpandedNodes map is filled in for any results that are expanded, and the |
| 5728 | /// Lo/Hi values are returned. |
| 5729 | void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){ |
| 5730 | MVT::ValueType VT = Op.getValueType(); |
Chris Lattner | 71c42a0 | 2005-01-16 01:11:45 +0000 | [diff] [blame] | 5731 | MVT::ValueType NVT = TLI.getTypeToTransformTo(VT); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5732 | SDNode *Node = Op.Val; |
| 5733 | assert(getTypeAction(VT) == Expand && "Not an expanded type!"); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 5734 | assert(((MVT::isInteger(NVT) && NVT < VT) || MVT::isFloatingPoint(VT) || |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5735 | MVT::isVector(VT)) && |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5736 | "Cannot expand to FP value or to larger int value!"); |
| 5737 | |
Chris Lattner | 6fdcb25 | 2005-09-02 20:32:45 +0000 | [diff] [blame] | 5738 | // See if we already expanded it. |
Roman Levenstein | 9cac525 | 2008-04-16 16:15:27 +0000 | [diff] [blame] | 5739 | DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I |
Chris Lattner | 6fdcb25 | 2005-09-02 20:32:45 +0000 | [diff] [blame] | 5740 | = ExpandedNodes.find(Op); |
| 5741 | if (I != ExpandedNodes.end()) { |
| 5742 | Lo = I->second.first; |
| 5743 | Hi = I->second.second; |
| 5744 | return; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5745 | } |
| 5746 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5747 | switch (Node->getOpcode()) { |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 5748 | case ISD::CopyFromReg: |
| 5749 | assert(0 && "CopyFromReg must be legal!"); |
Dale Johannesen | 6eaeff2 | 2007-10-10 01:01:31 +0000 | [diff] [blame] | 5750 | case ISD::FP_ROUND_INREG: |
| 5751 | if (VT == MVT::ppcf128 && |
| 5752 | TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) == |
| 5753 | TargetLowering::Custom) { |
Dale Johannesen | fcf4d24 | 2007-10-11 23:32:15 +0000 | [diff] [blame] | 5754 | SDOperand SrcLo, SrcHi, Src; |
| 5755 | ExpandOp(Op.getOperand(0), SrcLo, SrcHi); |
| 5756 | Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi); |
| 5757 | SDOperand Result = TLI.LowerOperation( |
| 5758 | DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG); |
Dale Johannesen | 6eaeff2 | 2007-10-10 01:01:31 +0000 | [diff] [blame] | 5759 | assert(Result.Val->getOpcode() == ISD::BUILD_PAIR); |
| 5760 | Lo = Result.Val->getOperand(0); |
| 5761 | Hi = Result.Val->getOperand(1); |
| 5762 | break; |
| 5763 | } |
| 5764 | // fall through |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 5765 | default: |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 5766 | #ifndef NDEBUG |
Dan Gohman | 3983358 | 2007-06-04 16:17:33 +0000 | [diff] [blame] | 5767 | cerr << "NODE: "; Node->dump(&DAG); cerr << "\n"; |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 5768 | #endif |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5769 | assert(0 && "Do not know how to expand this operator!"); |
| 5770 | abort(); |
Dan Gohman | 1953ecb | 2008-02-27 01:52:30 +0000 | [diff] [blame] | 5771 | case ISD::EXTRACT_ELEMENT: |
| 5772 | ExpandOp(Node->getOperand(0), Lo, Hi); |
| 5773 | if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) |
| 5774 | return ExpandOp(Hi, Lo, Hi); |
Dan Gohman | 18714ae | 2008-02-27 19:44:57 +0000 | [diff] [blame] | 5775 | return ExpandOp(Lo, Lo, Hi); |
Dale Johannesen | 25f1d08 | 2007-10-31 00:32:36 +0000 | [diff] [blame] | 5776 | case ISD::EXTRACT_VECTOR_ELT: |
| 5777 | assert(VT==MVT::i64 && "Do not know how to expand this operator!"); |
| 5778 | // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types. |
| 5779 | Lo = ExpandEXTRACT_VECTOR_ELT(Op); |
| 5780 | return ExpandOp(Lo, Lo, Hi); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 5781 | case ISD::UNDEF: |
Evan Cheng | aa975c1 | 2006-12-16 02:20:50 +0000 | [diff] [blame] | 5782 | NVT = TLI.getTypeToExpandTo(VT); |
Nate Begeman | fc1b1da | 2005-04-01 22:34:39 +0000 | [diff] [blame] | 5783 | Lo = DAG.getNode(ISD::UNDEF, NVT); |
| 5784 | Hi = DAG.getNode(ISD::UNDEF, NVT); |
| 5785 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5786 | case ISD::Constant: { |
Dan Gohman | 050f550 | 2008-03-03 22:20:46 +0000 | [diff] [blame] | 5787 | unsigned NVTBits = MVT::getSizeInBits(NVT); |
| 5788 | const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue(); |
| 5789 | Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT); |
| 5790 | Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5791 | break; |
| 5792 | } |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 5793 | case ISD::ConstantFP: { |
| 5794 | ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node); |
Dale Johannesen | a471c2e | 2007-10-11 18:07:22 +0000 | [diff] [blame] | 5795 | if (CFP->getValueType(0) == MVT::ppcf128) { |
| 5796 | APInt api = CFP->getValueAPF().convertToAPInt(); |
| 5797 | Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])), |
| 5798 | MVT::f64); |
| 5799 | Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])), |
| 5800 | MVT::f64); |
| 5801 | break; |
| 5802 | } |
Evan Cheng | 279101e | 2006-12-12 22:19:28 +0000 | [diff] [blame] | 5803 | Lo = ExpandConstantFP(CFP, false, DAG, TLI); |
Evan Cheng | 9f87788 | 2006-12-13 20:57:08 +0000 | [diff] [blame] | 5804 | if (getTypeAction(Lo.getValueType()) == Expand) |
| 5805 | ExpandOp(Lo, Lo, Hi); |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 5806 | break; |
| 5807 | } |
Chris Lattner | d4e50bb | 2005-03-28 22:03:13 +0000 | [diff] [blame] | 5808 | case ISD::BUILD_PAIR: |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 5809 | // Return the operands. |
| 5810 | Lo = Node->getOperand(0); |
| 5811 | Hi = Node->getOperand(1); |
Chris Lattner | d4e50bb | 2005-03-28 22:03:13 +0000 | [diff] [blame] | 5812 | break; |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 5813 | |
| 5814 | case ISD::MERGE_VALUES: |
Chris Lattner | c58d558 | 2007-11-24 19:12:15 +0000 | [diff] [blame] | 5815 | if (Node->getNumValues() == 1) { |
| 5816 | ExpandOp(Op.getOperand(0), Lo, Hi); |
| 5817 | break; |
| 5818 | } |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 5819 | // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y) |
| 5820 | assert(Op.ResNo == 0 && Node->getNumValues() == 2 && |
| 5821 | Op.getValue(1).getValueType() == MVT::Other && |
| 5822 | "unhandled MERGE_VALUES"); |
| 5823 | ExpandOp(Op.getOperand(0), Lo, Hi); |
| 5824 | // Remember that we legalized the chain. |
| 5825 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1))); |
| 5826 | break; |
Chris Lattner | 58f7963 | 2005-12-12 22:27:43 +0000 | [diff] [blame] | 5827 | |
| 5828 | case ISD::SIGN_EXTEND_INREG: |
| 5829 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Chris Lattner | 4bdd275 | 2006-10-06 17:34:12 +0000 | [diff] [blame] | 5830 | // sext_inreg the low part if needed. |
| 5831 | Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1)); |
| 5832 | |
| 5833 | // The high part gets the sign extension from the lo-part. This handles |
| 5834 | // things like sextinreg V:i64 from i8. |
Chris Lattner | 58f7963 | 2005-12-12 22:27:43 +0000 | [diff] [blame] | 5835 | Hi = DAG.getNode(ISD::SRA, NVT, Lo, |
| 5836 | DAG.getConstant(MVT::getSizeInBits(NVT)-1, |
| 5837 | TLI.getShiftAmountTy())); |
Chris Lattner | 58f7963 | 2005-12-12 22:27:43 +0000 | [diff] [blame] | 5838 | break; |
Chris Lattner | d4e50bb | 2005-03-28 22:03:13 +0000 | [diff] [blame] | 5839 | |
Nate Begeman | d88fc03 | 2006-01-14 03:14:10 +0000 | [diff] [blame] | 5840 | case ISD::BSWAP: { |
| 5841 | ExpandOp(Node->getOperand(0), Lo, Hi); |
| 5842 | SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi); |
| 5843 | Hi = DAG.getNode(ISD::BSWAP, NVT, Lo); |
| 5844 | Lo = TempLo; |
| 5845 | break; |
| 5846 | } |
| 5847 | |
Chris Lattner | edb1add | 2005-05-11 04:51:16 +0000 | [diff] [blame] | 5848 | case ISD::CTPOP: |
| 5849 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Chris Lattner | 9b583b4 | 2005-05-11 05:09:47 +0000 | [diff] [blame] | 5850 | Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L) |
| 5851 | DAG.getNode(ISD::CTPOP, NVT, Lo), |
| 5852 | DAG.getNode(ISD::CTPOP, NVT, Hi)); |
Chris Lattner | edb1add | 2005-05-11 04:51:16 +0000 | [diff] [blame] | 5853 | Hi = DAG.getConstant(0, NVT); |
| 5854 | break; |
| 5855 | |
Chris Lattner | 39a8f33 | 2005-05-12 19:05:01 +0000 | [diff] [blame] | 5856 | case ISD::CTLZ: { |
| 5857 | // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32) |
Chris Lattner | 3becf20 | 2005-05-12 19:27:51 +0000 | [diff] [blame] | 5858 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Chris Lattner | 39a8f33 | 2005-05-12 19:05:01 +0000 | [diff] [blame] | 5859 | SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT); |
| 5860 | SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi); |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 5861 | SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC, |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 5862 | ISD::SETNE); |
Chris Lattner | 39a8f33 | 2005-05-12 19:05:01 +0000 | [diff] [blame] | 5863 | SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo); |
| 5864 | LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC); |
| 5865 | |
| 5866 | Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart); |
| 5867 | Hi = DAG.getConstant(0, NVT); |
| 5868 | break; |
| 5869 | } |
| 5870 | |
| 5871 | case ISD::CTTZ: { |
| 5872 | // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32) |
Chris Lattner | 3becf20 | 2005-05-12 19:27:51 +0000 | [diff] [blame] | 5873 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Chris Lattner | 39a8f33 | 2005-05-12 19:05:01 +0000 | [diff] [blame] | 5874 | SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT); |
| 5875 | SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo); |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 5876 | SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC, |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 5877 | ISD::SETNE); |
Chris Lattner | 39a8f33 | 2005-05-12 19:05:01 +0000 | [diff] [blame] | 5878 | SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi); |
| 5879 | HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC); |
| 5880 | |
| 5881 | Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart); |
| 5882 | Hi = DAG.getConstant(0, NVT); |
| 5883 | break; |
| 5884 | } |
Chris Lattner | edb1add | 2005-05-11 04:51:16 +0000 | [diff] [blame] | 5885 | |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 5886 | case ISD::VAARG: { |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 5887 | SDOperand Ch = Node->getOperand(0); // Legalize the chain. |
| 5888 | SDOperand Ptr = Node->getOperand(1); // Legalize the pointer. |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 5889 | Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2)); |
| 5890 | Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2)); |
| 5891 | |
| 5892 | // Remember that we legalized the chain. |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 5893 | Hi = LegalizeOp(Hi); |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 5894 | AddLegalizedOperand(Op.getValue(1), Hi.getValue(1)); |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 5895 | if (TLI.isBigEndian()) |
Nate Begeman | acc398c | 2006-01-25 18:21:52 +0000 | [diff] [blame] | 5896 | std::swap(Lo, Hi); |
| 5897 | break; |
| 5898 | } |
| 5899 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5900 | case ISD::LOAD: { |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5901 | LoadSDNode *LD = cast<LoadSDNode>(Node); |
| 5902 | SDOperand Ch = LD->getChain(); // Legalize the chain. |
| 5903 | SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer. |
| 5904 | ISD::LoadExtType ExtType = LD->getExtensionType(); |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 5905 | int SVOffset = LD->getSrcValueOffset(); |
| 5906 | unsigned Alignment = LD->getAlignment(); |
| 5907 | bool isVolatile = LD->isVolatile(); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5908 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5909 | if (ExtType == ISD::NON_EXTLOAD) { |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 5910 | Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset, |
| 5911 | isVolatile, Alignment); |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 5912 | if (VT == MVT::f32 || VT == MVT::f64) { |
| 5913 | // f32->i32 or f64->i64 one to one expansion. |
| 5914 | // Remember that we legalized the chain. |
| 5915 | AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1))); |
Evan Cheng | 9f87788 | 2006-12-13 20:57:08 +0000 | [diff] [blame] | 5916 | // Recursively expand the new load. |
| 5917 | if (getTypeAction(NVT) == Expand) |
| 5918 | ExpandOp(Lo, Lo, Hi); |
Evan Cheng | 0049521 | 2006-12-12 21:32:44 +0000 | [diff] [blame] | 5919 | break; |
| 5920 | } |
Chris Lattner | ec39a45 | 2005-01-19 18:02:17 +0000 | [diff] [blame] | 5921 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5922 | // Increment the pointer to the other half. |
| 5923 | unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8; |
| 5924 | Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 5925 | DAG.getIntPtrConstant(IncrementSize)); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 5926 | SVOffset += IncrementSize; |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 5927 | Alignment = MinAlign(Alignment, IncrementSize); |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 5928 | Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset, |
| 5929 | isVolatile, Alignment); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 5930 | |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5931 | // Build a factor node to remember that this load is independent of the |
| 5932 | // other one. |
| 5933 | SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1), |
| 5934 | Hi.getValue(1)); |
| 5935 | |
| 5936 | // Remember that we legalized the chain. |
| 5937 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF)); |
Duncan Sands | 0753fc1 | 2008-02-11 10:37:04 +0000 | [diff] [blame] | 5938 | if (TLI.isBigEndian()) |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5939 | std::swap(Lo, Hi); |
| 5940 | } else { |
Dan Gohman | b625f2f | 2008-01-30 00:15:11 +0000 | [diff] [blame] | 5941 | MVT::ValueType EVT = LD->getMemoryVT(); |
Evan Cheng | 548f611 | 2006-12-13 03:19:57 +0000 | [diff] [blame] | 5942 | |
Dale Johannesen | b6210fc | 2007-10-19 20:29:00 +0000 | [diff] [blame] | 5943 | if ((VT == MVT::f64 && EVT == MVT::f32) || |
| 5944 | (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) { |
Evan Cheng | 548f611 | 2006-12-13 03:19:57 +0000 | [diff] [blame] | 5945 | // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND |
| 5946 | SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 5947 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 548f611 | 2006-12-13 03:19:57 +0000 | [diff] [blame] | 5948 | // Remember that we legalized the chain. |
| 5949 | AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1))); |
| 5950 | ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi); |
| 5951 | break; |
| 5952 | } |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5953 | |
| 5954 | if (EVT == NVT) |
| 5955 | Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 5956 | SVOffset, isVolatile, Alignment); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5957 | else |
| 5958 | Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(), |
Dan Gohman | d6fd1bc | 2007-07-09 22:18:38 +0000 | [diff] [blame] | 5959 | SVOffset, EVT, isVolatile, |
| 5960 | Alignment); |
Evan Cheng | 466685d | 2006-10-09 20:57:25 +0000 | [diff] [blame] | 5961 | |
| 5962 | // Remember that we legalized the chain. |
| 5963 | AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1))); |
| 5964 | |
| 5965 | if (ExtType == ISD::SEXTLOAD) { |
| 5966 | // The high part is obtained by SRA'ing all but one of the bits of the |
| 5967 | // lo part. |
| 5968 | unsigned LoSize = MVT::getSizeInBits(Lo.getValueType()); |
| 5969 | Hi = DAG.getNode(ISD::SRA, NVT, Lo, |
| 5970 | DAG.getConstant(LoSize-1, TLI.getShiftAmountTy())); |
| 5971 | } else if (ExtType == ISD::ZEXTLOAD) { |
| 5972 | // The high part is just a zero. |
| 5973 | Hi = DAG.getConstant(0, NVT); |
| 5974 | } else /* if (ExtType == ISD::EXTLOAD) */ { |
| 5975 | // The high part is undefined. |
| 5976 | Hi = DAG.getNode(ISD::UNDEF, NVT); |
| 5977 | } |
| 5978 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5979 | break; |
| 5980 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5981 | case ISD::AND: |
| 5982 | case ISD::OR: |
| 5983 | case ISD::XOR: { // Simple logical operators -> two trivial pieces. |
| 5984 | SDOperand LL, LH, RL, RH; |
| 5985 | ExpandOp(Node->getOperand(0), LL, LH); |
| 5986 | ExpandOp(Node->getOperand(1), RL, RH); |
| 5987 | Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL); |
| 5988 | Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH); |
| 5989 | break; |
| 5990 | } |
| 5991 | case ISD::SELECT: { |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 5992 | SDOperand LL, LH, RL, RH; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 5993 | ExpandOp(Node->getOperand(1), LL, LH); |
| 5994 | ExpandOp(Node->getOperand(2), RL, RH); |
Evan Cheng | 19103b1 | 2006-12-15 22:42:55 +0000 | [diff] [blame] | 5995 | if (getTypeAction(NVT) == Expand) |
| 5996 | NVT = TLI.getTypeToExpandTo(NVT); |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 5997 | Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL); |
Evan Cheng | 19103b1 | 2006-12-15 22:42:55 +0000 | [diff] [blame] | 5998 | if (VT != MVT::f32) |
| 5999 | Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6000 | break; |
| 6001 | } |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 6002 | case ISD::SELECT_CC: { |
| 6003 | SDOperand TL, TH, FL, FH; |
| 6004 | ExpandOp(Node->getOperand(2), TL, TH); |
| 6005 | ExpandOp(Node->getOperand(3), FL, FH); |
Evan Cheng | 19103b1 | 2006-12-15 22:42:55 +0000 | [diff] [blame] | 6006 | if (getTypeAction(NVT) == Expand) |
| 6007 | NVT = TLI.getTypeToExpandTo(NVT); |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 6008 | Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0), |
| 6009 | Node->getOperand(1), TL, FL, Node->getOperand(4)); |
Evan Cheng | 19103b1 | 2006-12-15 22:42:55 +0000 | [diff] [blame] | 6010 | if (VT != MVT::f32) |
| 6011 | Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0), |
| 6012 | Node->getOperand(1), TH, FH, Node->getOperand(4)); |
Nate Begeman | 9373a81 | 2005-08-10 20:51:12 +0000 | [diff] [blame] | 6013 | break; |
| 6014 | } |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6015 | case ISD::ANY_EXTEND: |
| 6016 | // The low part is any extension of the input (which degenerates to a copy). |
| 6017 | Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0)); |
| 6018 | // The high part is undefined. |
| 6019 | Hi = DAG.getNode(ISD::UNDEF, NVT); |
| 6020 | break; |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6021 | case ISD::SIGN_EXTEND: { |
| 6022 | // The low part is just a sign extension of the input (which degenerates to |
| 6023 | // a copy). |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6024 | Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0)); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 6025 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6026 | // The high part is obtained by SRA'ing all but one of the bits of the lo |
| 6027 | // part. |
Chris Lattner | 2dad454 | 2005-01-12 18:19:52 +0000 | [diff] [blame] | 6028 | unsigned LoSize = MVT::getSizeInBits(Lo.getValueType()); |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6029 | Hi = DAG.getNode(ISD::SRA, NVT, Lo, |
| 6030 | DAG.getConstant(LoSize-1, TLI.getShiftAmountTy())); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6031 | break; |
| 6032 | } |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6033 | case ISD::ZERO_EXTEND: |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6034 | // The low part is just a zero extension of the input (which degenerates to |
| 6035 | // a copy). |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6036 | Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0)); |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 6037 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6038 | // The high part is just a zero. |
| 6039 | Hi = DAG.getConstant(0, NVT); |
| 6040 | break; |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 6041 | |
Chris Lattner | 4c948eb | 2007-02-13 23:55:16 +0000 | [diff] [blame] | 6042 | case ISD::TRUNCATE: { |
| 6043 | // The input value must be larger than this value. Expand *it*. |
| 6044 | SDOperand NewLo; |
| 6045 | ExpandOp(Node->getOperand(0), NewLo, Hi); |
| 6046 | |
| 6047 | // The low part is now either the right size, or it is closer. If not the |
| 6048 | // right size, make an illegal truncate so we recursively expand it. |
| 6049 | if (NewLo.getValueType() != Node->getValueType(0)) |
| 6050 | NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo); |
| 6051 | ExpandOp(NewLo, Lo, Hi); |
| 6052 | break; |
| 6053 | } |
| 6054 | |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 6055 | case ISD::BIT_CONVERT: { |
Chris Lattner | f3f333d | 2006-09-09 00:20:27 +0000 | [diff] [blame] | 6056 | SDOperand Tmp; |
| 6057 | if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){ |
| 6058 | // If the target wants to, allow it to lower this itself. |
| 6059 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 6060 | case Expand: assert(0 && "cannot expand FP!"); |
| 6061 | case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break; |
| 6062 | case Promote: Tmp = PromoteOp (Node->getOperand(0)); break; |
| 6063 | } |
| 6064 | Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG); |
| 6065 | } |
| 6066 | |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6067 | // f32 / f64 must be expanded to i32 / i64. |
Evan Cheng | 13acce3 | 2006-12-11 19:27:14 +0000 | [diff] [blame] | 6068 | if (VT == MVT::f32 || VT == MVT::f64) { |
| 6069 | Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0)); |
Evan Cheng | 19103b1 | 2006-12-15 22:42:55 +0000 | [diff] [blame] | 6070 | if (getTypeAction(NVT) == Expand) |
| 6071 | ExpandOp(Lo, Lo, Hi); |
Evan Cheng | 7b2b5c8 | 2006-12-12 19:53:13 +0000 | [diff] [blame] | 6072 | break; |
| 6073 | } |
| 6074 | |
| 6075 | // If source operand will be expanded to the same type as VT, i.e. |
| 6076 | // i64 <- f64, i32 <- f32, expand the source operand instead. |
| 6077 | MVT::ValueType VT0 = Node->getOperand(0).getValueType(); |
| 6078 | if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) { |
| 6079 | ExpandOp(Node->getOperand(0), Lo, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6080 | break; |
| 6081 | } |
| 6082 | |
Chris Lattner | f3f333d | 2006-09-09 00:20:27 +0000 | [diff] [blame] | 6083 | // Turn this into a load/store pair by default. |
| 6084 | if (Tmp.Val == 0) |
Chris Lattner | 1401d15 | 2008-01-16 07:45:30 +0000 | [diff] [blame] | 6085 | Tmp = EmitStackConvert(Node->getOperand(0), VT, VT); |
Chris Lattner | f3f333d | 2006-09-09 00:20:27 +0000 | [diff] [blame] | 6086 | |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 6087 | ExpandOp(Tmp, Lo, Hi); |
| 6088 | break; |
| 6089 | } |
Andrew Lenharth | f70e30b | 2005-11-20 21:32:07 +0000 | [diff] [blame] | 6090 | |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6091 | case ISD::READCYCLECOUNTER: { |
Chris Lattner | 308575b | 2005-11-20 22:56:56 +0000 | [diff] [blame] | 6092 | assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) == |
| 6093 | TargetLowering::Custom && |
| 6094 | "Must custom expand ReadCycleCounter"); |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6095 | SDOperand Tmp = TLI.LowerOperation(Op, DAG); |
| 6096 | assert(Tmp.Val && "Node must be custom expanded!"); |
| 6097 | ExpandOp(Tmp.getValue(0), Lo, Hi); |
Chris Lattner | 308575b | 2005-11-20 22:56:56 +0000 | [diff] [blame] | 6098 | AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain. |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6099 | LegalizeOp(Tmp.getValue(1))); |
Andrew Lenharth | f70e30b | 2005-11-20 21:32:07 +0000 | [diff] [blame] | 6100 | break; |
Chris Lattner | 27a6c73 | 2007-11-24 07:07:01 +0000 | [diff] [blame] | 6101 | } |
Andrew Lenharth | f70e30b | 2005-11-20 21:32:07 +0000 | [diff] [blame] | 6102 | |
Andrew Lenharth | d19189e | 2008-03-05 01:15:49 +0000 | [diff] [blame] | 6103 | case ISD::ATOMIC_LCS: { |
| 6104 | SDOperand Tmp = TLI.LowerOperation(Op, DAG); |
| 6105 | assert(Tmp.Val && "Node must be custom expanded!"); |
| 6106 | ExpandOp(Tmp.getValue(0), Lo, Hi); |
| 6107 | AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain. |
| 6108 | LegalizeOp(Tmp.getValue(1))); |
| 6109 | break; |
| 6110 | } |
| 6111 | |
| 6112 | |
| 6113 | |
Chris Lattner | 4e6c746 | 2005-01-08 19:27:05 +0000 | [diff] [blame] | 6114 | // These operators cannot be expanded directly, emit them as calls to |
| 6115 | // library functions. |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6116 | case ISD::FP_TO_SINT: { |
Chris Lattner | 80a3e94 | 2005-07-29 00:33:32 +0000 | [diff] [blame] | 6117 | if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) { |
Chris Lattner | f20d183 | 2005-07-30 01:40:57 +0000 | [diff] [blame] | 6118 | SDOperand Op; |
| 6119 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 6120 | case Expand: assert(0 && "cannot expand FP!"); |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6121 | case Legal: Op = LegalizeOp(Node->getOperand(0)); break; |
| 6122 | case Promote: Op = PromoteOp (Node->getOperand(0)); break; |
Chris Lattner | f20d183 | 2005-07-30 01:40:57 +0000 | [diff] [blame] | 6123 | } |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 6124 | |
Chris Lattner | f20d183 | 2005-07-30 01:40:57 +0000 | [diff] [blame] | 6125 | Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG); |
| 6126 | |
Chris Lattner | 80a3e94 | 2005-07-29 00:33:32 +0000 | [diff] [blame] | 6127 | // Now that the custom expander is done, expand the result, which is still |
| 6128 | // VT. |
Chris Lattner | 07dffd6 | 2005-08-26 00:14:16 +0000 | [diff] [blame] | 6129 | if (Op.Val) { |
| 6130 | ExpandOp(Op, Lo, Hi); |
| 6131 | break; |
| 6132 | } |
Chris Lattner | 80a3e94 | 2005-07-29 00:33:32 +0000 | [diff] [blame] | 6133 | } |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 6134 | |
Dale Johannesen | 161e897 | 2007-10-05 20:04:43 +0000 | [diff] [blame] | 6135 | RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 6136 | if (VT == MVT::i64) { |
| 6137 | if (Node->getOperand(0).getValueType() == MVT::f32) |
| 6138 | LC = RTLIB::FPTOSINT_F32_I64; |
| 6139 | else if (Node->getOperand(0).getValueType() == MVT::f64) |
| 6140 | LC = RTLIB::FPTOSINT_F64_I64; |
| 6141 | else if (Node->getOperand(0).getValueType() == MVT::f80) |
| 6142 | LC = RTLIB::FPTOSINT_F80_I64; |
| 6143 | else if (Node->getOperand(0).getValueType() == MVT::ppcf128) |
| 6144 | LC = RTLIB::FPTOSINT_PPCF128_I64; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6145 | Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi); |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 6146 | } else if (VT == MVT::i128) { |
| 6147 | if (Node->getOperand(0).getValueType() == MVT::f32) |
| 6148 | LC = RTLIB::FPTOSINT_F32_I128; |
| 6149 | else if (Node->getOperand(0).getValueType() == MVT::f64) |
| 6150 | LC = RTLIB::FPTOSINT_F64_I128; |
| 6151 | else if (Node->getOperand(0).getValueType() == MVT::f80) |
| 6152 | LC = RTLIB::FPTOSINT_F80_I128; |
| 6153 | else if (Node->getOperand(0).getValueType() == MVT::ppcf128) |
| 6154 | LC = RTLIB::FPTOSINT_PPCF128_I128; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6155 | Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi); |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 6156 | } else { |
| 6157 | assert(0 && "Unexpected uint-to-fp conversion!"); |
| 6158 | } |
Chris Lattner | 4e6c746 | 2005-01-08 19:27:05 +0000 | [diff] [blame] | 6159 | break; |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6160 | } |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 6161 | |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6162 | case ISD::FP_TO_UINT: { |
Chris Lattner | 80a3e94 | 2005-07-29 00:33:32 +0000 | [diff] [blame] | 6163 | if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) { |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6164 | SDOperand Op; |
| 6165 | switch (getTypeAction(Node->getOperand(0).getValueType())) { |
| 6166 | case Expand: assert(0 && "cannot expand FP!"); |
| 6167 | case Legal: Op = LegalizeOp(Node->getOperand(0)); break; |
| 6168 | case Promote: Op = PromoteOp (Node->getOperand(0)); break; |
| 6169 | } |
| 6170 | |
| 6171 | Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG); |
| 6172 | |
| 6173 | // Now that the custom expander is done, expand the result. |
Chris Lattner | 07dffd6 | 2005-08-26 00:14:16 +0000 | [diff] [blame] | 6174 | if (Op.Val) { |
| 6175 | ExpandOp(Op, Lo, Hi); |
| 6176 | break; |
| 6177 | } |
Chris Lattner | 80a3e94 | 2005-07-29 00:33:32 +0000 | [diff] [blame] | 6178 | } |
Jeff Cohen | d29b6aa | 2005-07-30 18:33:25 +0000 | [diff] [blame] | 6179 | |
Evan Cheng | daccea18 | 2007-10-05 01:09:32 +0000 | [diff] [blame] | 6180 | RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 6181 | if (VT == MVT::i64) { |
| 6182 | if (Node->getOperand(0).getValueType() == MVT::f32) |
| 6183 | LC = RTLIB::FPTOUINT_F32_I64; |
| 6184 | else if (Node->getOperand(0).getValueType() == MVT::f64) |
| 6185 | LC = RTLIB::FPTOUINT_F64_I64; |
| 6186 | else if (Node->getOperand(0).getValueType() == MVT::f80) |
| 6187 | LC = RTLIB::FPTOUINT_F80_I64; |
| 6188 | else if (Node->getOperand(0).getValueType() == MVT::ppcf128) |
| 6189 | LC = RTLIB::FPTOUINT_PPCF128_I64; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6190 | Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi); |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 6191 | } else if (VT == MVT::i128) { |
| 6192 | if (Node->getOperand(0).getValueType() == MVT::f32) |
| 6193 | LC = RTLIB::FPTOUINT_F32_I128; |
| 6194 | else if (Node->getOperand(0).getValueType() == MVT::f64) |
| 6195 | LC = RTLIB::FPTOUINT_F64_I128; |
| 6196 | else if (Node->getOperand(0).getValueType() == MVT::f80) |
| 6197 | LC = RTLIB::FPTOUINT_F80_I128; |
| 6198 | else if (Node->getOperand(0).getValueType() == MVT::ppcf128) |
| 6199 | LC = RTLIB::FPTOUINT_PPCF128_I128; |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6200 | Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi); |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 6201 | } else { |
| 6202 | assert(0 && "Unexpected uint-to-fp conversion!"); |
| 6203 | } |
Chris Lattner | 4e6c746 | 2005-01-08 19:27:05 +0000 | [diff] [blame] | 6204 | break; |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6205 | } |
Chris Lattner | 4e6c746 | 2005-01-08 19:27:05 +0000 | [diff] [blame] | 6206 | |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6207 | case ISD::SHL: { |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6208 | // If the target wants custom lowering, do so. |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6209 | SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1)); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6210 | if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) { |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6211 | SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6212 | Op = TLI.LowerOperation(Op, DAG); |
| 6213 | if (Op.Val) { |
| 6214 | // Now that the custom expander is done, expand the result, which is |
| 6215 | // still VT. |
| 6216 | ExpandOp(Op, Lo, Hi); |
| 6217 | break; |
| 6218 | } |
| 6219 | } |
| 6220 | |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6221 | // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit |
| 6222 | // this X << 1 as X+X. |
| 6223 | if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) { |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 6224 | if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) && |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6225 | TLI.isOperationLegal(ISD::ADDE, NVT)) { |
| 6226 | SDOperand LoOps[2], HiOps[3]; |
| 6227 | ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]); |
| 6228 | SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag); |
| 6229 | LoOps[1] = LoOps[0]; |
| 6230 | Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2); |
| 6231 | |
| 6232 | HiOps[1] = HiOps[0]; |
| 6233 | HiOps[2] = Lo.getValue(1); |
| 6234 | Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3); |
| 6235 | break; |
| 6236 | } |
| 6237 | } |
| 6238 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6239 | // If we can emit an efficient shift operation, do so now. |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6240 | if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi)) |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6241 | break; |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6242 | |
| 6243 | // If this target supports SHL_PARTS, use it. |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6244 | TargetLowering::LegalizeAction Action = |
| 6245 | TLI.getOperationAction(ISD::SHL_PARTS, NVT); |
| 6246 | if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) || |
| 6247 | Action == TargetLowering::Custom) { |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6248 | ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi); |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6249 | break; |
| 6250 | } |
| 6251 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6252 | // Otherwise, emit a libcall. |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6253 | Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi); |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6254 | break; |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6255 | } |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6256 | |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6257 | case ISD::SRA: { |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6258 | // If the target wants custom lowering, do so. |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6259 | SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1)); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6260 | if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) { |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6261 | SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6262 | Op = TLI.LowerOperation(Op, DAG); |
| 6263 | if (Op.Val) { |
| 6264 | // Now that the custom expander is done, expand the result, which is |
| 6265 | // still VT. |
| 6266 | ExpandOp(Op, Lo, Hi); |
| 6267 | break; |
| 6268 | } |
| 6269 | } |
| 6270 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6271 | // If we can emit an efficient shift operation, do so now. |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6272 | if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi)) |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6273 | break; |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6274 | |
| 6275 | // If this target supports SRA_PARTS, use it. |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6276 | TargetLowering::LegalizeAction Action = |
| 6277 | TLI.getOperationAction(ISD::SRA_PARTS, NVT); |
| 6278 | if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) || |
| 6279 | Action == TargetLowering::Custom) { |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6280 | ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi); |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6281 | break; |
| 6282 | } |
| 6283 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6284 | // Otherwise, emit a libcall. |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6285 | Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi); |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6286 | break; |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6287 | } |
| 6288 | |
| 6289 | case ISD::SRL: { |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6290 | // If the target wants custom lowering, do so. |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6291 | SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1)); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6292 | if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) { |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6293 | SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt); |
Chris Lattner | 50ec897 | 2005-08-31 19:01:53 +0000 | [diff] [blame] | 6294 | Op = TLI.LowerOperation(Op, DAG); |
| 6295 | if (Op.Val) { |
| 6296 | // Now that the custom expander is done, expand the result, which is |
| 6297 | // still VT. |
| 6298 | ExpandOp(Op, Lo, Hi); |
| 6299 | break; |
| 6300 | } |
| 6301 | } |
| 6302 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6303 | // If we can emit an efficient shift operation, do so now. |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6304 | if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi)) |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6305 | break; |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6306 | |
| 6307 | // If this target supports SRL_PARTS, use it. |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6308 | TargetLowering::LegalizeAction Action = |
| 6309 | TLI.getOperationAction(ISD::SRL_PARTS, NVT); |
| 6310 | if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) || |
| 6311 | Action == TargetLowering::Custom) { |
Chris Lattner | 348e93c | 2006-01-21 04:27:00 +0000 | [diff] [blame] | 6312 | ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi); |
Chris Lattner | 4759982 | 2005-04-02 03:38:53 +0000 | [diff] [blame] | 6313 | break; |
| 6314 | } |
| 6315 | |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6316 | // Otherwise, emit a libcall. |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6317 | Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi); |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6318 | break; |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6319 | } |
Chris Lattner | e34b396 | 2005-01-19 04:19:40 +0000 | [diff] [blame] | 6320 | |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 6321 | case ISD::ADD: |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6322 | case ISD::SUB: { |
| 6323 | // If the target wants to custom expand this, let them. |
| 6324 | if (TLI.getOperationAction(Node->getOpcode(), VT) == |
| 6325 | TargetLowering::Custom) { |
| 6326 | Op = TLI.LowerOperation(Op, DAG); |
| 6327 | if (Op.Val) { |
| 6328 | ExpandOp(Op, Lo, Hi); |
| 6329 | break; |
| 6330 | } |
| 6331 | } |
| 6332 | |
| 6333 | // Expand the subcomponents. |
| 6334 | SDOperand LHSL, LHSH, RHSL, RHSH; |
| 6335 | ExpandOp(Node->getOperand(0), LHSL, LHSH); |
| 6336 | ExpandOp(Node->getOperand(1), RHSL, RHSH); |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6337 | SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag); |
| 6338 | SDOperand LoOps[2], HiOps[3]; |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 6339 | LoOps[0] = LHSL; |
| 6340 | LoOps[1] = RHSL; |
| 6341 | HiOps[0] = LHSH; |
| 6342 | HiOps[1] = RHSH; |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 6343 | if (Node->getOpcode() == ISD::ADD) { |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6344 | Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2); |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 6345 | HiOps[2] = Lo.getValue(1); |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6346 | Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3); |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 6347 | } else { |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6348 | Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2); |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 6349 | HiOps[2] = Lo.getValue(1); |
Chris Lattner | 79980b0 | 2006-09-13 03:50:39 +0000 | [diff] [blame] | 6350 | Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3); |
Nate Begeman | 551bf3f | 2006-02-17 05:43:56 +0000 | [diff] [blame] | 6351 | } |
Chris Lattner | 84f6788 | 2005-01-20 18:52:28 +0000 | [diff] [blame] | 6352 | break; |
Chris Lattner | 8137c9e | 2006-01-28 05:07:51 +0000 | [diff] [blame] | 6353 | } |
Chris Lattner | b429f73 | 2007-05-17 18:15:41 +0000 | [diff] [blame] | 6354 | |
| 6355 | case ISD::ADDC: |
| 6356 | case ISD::SUBC: { |
| 6357 | // Expand the subcomponents. |
| 6358 | SDOperand LHSL, LHSH, RHSL, RHSH; |
| 6359 | ExpandOp(Node->getOperand(0), LHSL, LHSH); |
| 6360 | ExpandOp(Node->getOperand(1), RHSL, RHSH); |
| 6361 | SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag); |
| 6362 | SDOperand LoOps[2] = { LHSL, RHSL }; |
| 6363 | SDOperand HiOps[3] = { LHSH, RHSH }; |
| 6364 | |
| 6365 | if (Node->getOpcode() == ISD::ADDC) { |
| 6366 | Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2); |
| 6367 | HiOps[2] = Lo.getValue(1); |
| 6368 | Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3); |
| 6369 | } else { |
| 6370 | Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2); |
| 6371 | HiOps[2] = Lo.getValue(1); |
| 6372 | Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3); |
| 6373 | } |
| 6374 | // Remember that we legalized the flag. |
| 6375 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1))); |
| 6376 | break; |
| 6377 | } |
| 6378 | case ISD::ADDE: |
| 6379 | case ISD::SUBE: { |
| 6380 | // Expand the subcomponents. |
| 6381 | SDOperand LHSL, LHSH, RHSL, RHSH; |
| 6382 | ExpandOp(Node->getOperand(0), LHSL, LHSH); |
| 6383 | ExpandOp(Node->getOperand(1), RHSL, RHSH); |
| 6384 | SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag); |
| 6385 | SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) }; |
| 6386 | SDOperand HiOps[3] = { LHSH, RHSH }; |
| 6387 | |
| 6388 | Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3); |
| 6389 | HiOps[2] = Lo.getValue(1); |
| 6390 | Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3); |
| 6391 | |
| 6392 | // Remember that we legalized the flag. |
| 6393 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1))); |
| 6394 | break; |
| 6395 | } |
Nate Begeman | c7c1657 | 2005-04-11 03:01:51 +0000 | [diff] [blame] | 6396 | case ISD::MUL: { |
Chris Lattner | 7d7bffe | 2006-09-16 00:09:24 +0000 | [diff] [blame] | 6397 | // If the target wants to custom expand this, let them. |
| 6398 | if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) { |
Chris Lattner | 8829dc8 | 2006-09-16 05:08:34 +0000 | [diff] [blame] | 6399 | SDOperand New = TLI.LowerOperation(Op, DAG); |
| 6400 | if (New.Val) { |
| 6401 | ExpandOp(New, Lo, Hi); |
Chris Lattner | 7d7bffe | 2006-09-16 00:09:24 +0000 | [diff] [blame] | 6402 | break; |
| 6403 | } |
| 6404 | } |
| 6405 | |
Evan Cheng | 3f4fd0f | 2006-09-01 18:17:58 +0000 | [diff] [blame] | 6406 | bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT); |
| 6407 | bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 6408 | bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT); |
| 6409 | bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT); |
| 6410 | if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) { |
Nate Begeman | c7c1657 | 2005-04-11 03:01:51 +0000 | [diff] [blame] | 6411 | SDOperand LL, LH, RL, RH; |
| 6412 | ExpandOp(Node->getOperand(0), LL, LH); |
| 6413 | ExpandOp(Node->getOperand(1), RL, RH); |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 6414 | unsigned OuterBitSize = Op.getValueSizeInBits(); |
| 6415 | unsigned InnerBitSize = RH.getValueSizeInBits(); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 6416 | unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0)); |
| 6417 | unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1)); |
Dan Gohman | 76c605b | 2008-03-10 20:42:19 +0000 | [diff] [blame] | 6418 | APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize); |
| 6419 | if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) && |
| 6420 | DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) { |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 6421 | // The inputs are both zero-extended. |
| 6422 | if (HasUMUL_LOHI) { |
| 6423 | // We can emit a umul_lohi. |
| 6424 | Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL); |
| 6425 | Hi = SDOperand(Lo.Val, 1); |
| 6426 | break; |
| 6427 | } |
| 6428 | if (HasMULHU) { |
| 6429 | // We can emit a mulhu+mul. |
| 6430 | Lo = DAG.getNode(ISD::MUL, NVT, LL, RL); |
| 6431 | Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL); |
| 6432 | break; |
| 6433 | } |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 6434 | } |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 6435 | if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) { |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 6436 | // The input values are both sign-extended. |
| 6437 | if (HasSMUL_LOHI) { |
| 6438 | // We can emit a smul_lohi. |
| 6439 | Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL); |
| 6440 | Hi = SDOperand(Lo.Val, 1); |
| 6441 | break; |
| 6442 | } |
| 6443 | if (HasMULHS) { |
| 6444 | // We can emit a mulhs+mul. |
| 6445 | Lo = DAG.getNode(ISD::MUL, NVT, LL, RL); |
| 6446 | Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL); |
| 6447 | break; |
| 6448 | } |
| 6449 | } |
| 6450 | if (HasUMUL_LOHI) { |
| 6451 | // Lo,Hi = umul LHS, RHS. |
| 6452 | SDOperand UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, |
| 6453 | DAG.getVTList(NVT, NVT), LL, RL); |
| 6454 | Lo = UMulLOHI; |
| 6455 | Hi = UMulLOHI.getValue(1); |
Nate Begeman | 56eb868 | 2005-08-30 02:44:00 +0000 | [diff] [blame] | 6456 | RH = DAG.getNode(ISD::MUL, NVT, LL, RH); |
| 6457 | LH = DAG.getNode(ISD::MUL, NVT, LH, RL); |
| 6458 | Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH); |
| 6459 | Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH); |
Chris Lattner | a89654b | 2006-09-16 00:21:44 +0000 | [diff] [blame] | 6460 | break; |
Nate Begeman | 56eb868 | 2005-08-30 02:44:00 +0000 | [diff] [blame] | 6461 | } |
Dale Johannesen | 8eadd5a | 2007-10-24 22:26:08 +0000 | [diff] [blame] | 6462 | if (HasMULHU) { |
| 6463 | Lo = DAG.getNode(ISD::MUL, NVT, LL, RL); |
| 6464 | Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL); |
| 6465 | RH = DAG.getNode(ISD::MUL, NVT, LL, RH); |
| 6466 | LH = DAG.getNode(ISD::MUL, NVT, LH, RL); |
| 6467 | Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH); |
| 6468 | Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH); |
| 6469 | break; |
| 6470 | } |
Nate Begeman | c7c1657 | 2005-04-11 03:01:51 +0000 | [diff] [blame] | 6471 | } |
Evan Cheng | 3f4fd0f | 2006-09-01 18:17:58 +0000 | [diff] [blame] | 6472 | |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 6473 | // If nothing else, we can make a libcall. |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6474 | Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi); |
Nate Begeman | c7c1657 | 2005-04-11 03:01:51 +0000 | [diff] [blame] | 6475 | break; |
| 6476 | } |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6477 | case ISD::SDIV: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6478 | Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6479 | break; |
| 6480 | case ISD::UDIV: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6481 | Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6482 | break; |
| 6483 | case ISD::SREM: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6484 | Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6485 | break; |
| 6486 | case ISD::UREM: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6487 | Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6488 | break; |
Evan Cheng | 5c9ce18 | 2006-12-12 21:51:17 +0000 | [diff] [blame] | 6489 | |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6490 | case ISD::FADD: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6491 | Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32, |
| 6492 | RTLIB::ADD_F64, |
| 6493 | RTLIB::ADD_F80, |
| 6494 | RTLIB::ADD_PPCF128), |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6495 | Node, false, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6496 | break; |
| 6497 | case ISD::FSUB: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6498 | Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32, |
| 6499 | RTLIB::SUB_F64, |
| 6500 | RTLIB::SUB_F80, |
| 6501 | RTLIB::SUB_PPCF128), |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6502 | Node, false, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6503 | break; |
| 6504 | case ISD::FMUL: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6505 | Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32, |
| 6506 | RTLIB::MUL_F64, |
| 6507 | RTLIB::MUL_F80, |
| 6508 | RTLIB::MUL_PPCF128), |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6509 | Node, false, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6510 | break; |
| 6511 | case ISD::FDIV: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6512 | Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32, |
| 6513 | RTLIB::DIV_F64, |
| 6514 | RTLIB::DIV_F80, |
| 6515 | RTLIB::DIV_PPCF128), |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6516 | Node, false, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6517 | break; |
| 6518 | case ISD::FP_EXTEND: |
Dale Johannesen | ca68aaa | 2007-10-12 01:37:08 +0000 | [diff] [blame] | 6519 | if (VT == MVT::ppcf128) { |
| 6520 | assert(Node->getOperand(0).getValueType()==MVT::f32 || |
| 6521 | Node->getOperand(0).getValueType()==MVT::f64); |
| 6522 | const uint64_t zero = 0; |
| 6523 | if (Node->getOperand(0).getValueType()==MVT::f32) |
| 6524 | Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0)); |
| 6525 | else |
| 6526 | Hi = Node->getOperand(0); |
| 6527 | Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64); |
| 6528 | break; |
| 6529 | } |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6530 | Lo = ExpandLibCall(RTLIB::FPEXT_F32_F64, Node, true, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6531 | break; |
| 6532 | case ISD::FP_ROUND: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6533 | Lo = ExpandLibCall(RTLIB::FPROUND_F64_F32, Node, true, Hi); |
Evan Cheng | 1a8f1fe | 2006-12-09 02:42:38 +0000 | [diff] [blame] | 6534 | break; |
Lauro Ramos Venancio | c90f089 | 2007-08-15 22:13:27 +0000 | [diff] [blame] | 6535 | case ISD::FPOWI: |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6536 | Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::POWI_F32, |
| 6537 | RTLIB::POWI_F64, |
| 6538 | RTLIB::POWI_F80, |
| 6539 | RTLIB::POWI_PPCF128), |
Lauro Ramos Venancio | c90f089 | 2007-08-15 22:13:27 +0000 | [diff] [blame] | 6540 | Node, false, Hi); |
| 6541 | break; |
Evan Cheng | 98ff3b9 | 2006-12-13 02:38:13 +0000 | [diff] [blame] | 6542 | case ISD::FSQRT: |
| 6543 | case ISD::FSIN: |
| 6544 | case ISD::FCOS: { |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6545 | RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; |
Evan Cheng | 98ff3b9 | 2006-12-13 02:38:13 +0000 | [diff] [blame] | 6546 | switch(Node->getOpcode()) { |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6547 | case ISD::FSQRT: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 6548 | LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64, |
| 6549 | RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6550 | break; |
| 6551 | case ISD::FSIN: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 6552 | LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64, |
| 6553 | RTLIB::SIN_F80, RTLIB::SIN_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6554 | break; |
| 6555 | case ISD::FCOS: |
Duncan Sands | 007f984 | 2008-01-10 10:28:30 +0000 | [diff] [blame] | 6556 | LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64, |
| 6557 | RTLIB::COS_F80, RTLIB::COS_PPCF128); |
Evan Cheng | 5696622 | 2007-01-12 02:11:51 +0000 | [diff] [blame] | 6558 | break; |
Evan Cheng | 98ff3b9 | 2006-12-13 02:38:13 +0000 | [diff] [blame] | 6559 | default: assert(0 && "Unreachable!"); |
| 6560 | } |
Duncan Sands | 460a14e | 2008-04-12 17:14:18 +0000 | [diff] [blame] | 6561 | Lo = ExpandLibCall(LC, Node, false, Hi); |
Evan Cheng | 98ff3b9 | 2006-12-13 02:38:13 +0000 | [diff] [blame] | 6562 | break; |
| 6563 | } |
Evan Cheng | 966bf24 | 2006-12-16 00:52:40 +0000 | [diff] [blame] | 6564 | case ISD::FABS: { |
Dale Johannesen | f646774 | 2007-10-12 19:02:17 +0000 | [diff] [blame] | 6565 | if (VT == MVT::ppcf128) { |
| 6566 | SDOperand Tmp; |
| 6567 | ExpandOp(Node->getOperand(0), Lo, Tmp); |
| 6568 | Hi = DAG.getNode(ISD::FABS, NVT, Tmp); |
| 6569 | // lo = hi==fabs(hi) ? lo : -lo; |
| 6570 | Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp, |
| 6571 | Lo, DAG.getNode(ISD::FNEG, NVT, Lo), |
| 6572 | DAG.getCondCode(ISD::SETEQ)); |
| 6573 | break; |
| 6574 | } |
Evan Cheng | 966bf24 | 2006-12-16 00:52:40 +0000 | [diff] [blame] | 6575 | SDOperand Mask = (VT == MVT::f64) |
| 6576 | ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT) |
| 6577 | : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT); |
| 6578 | Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask); |
| 6579 | Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0)); |
| 6580 | Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask); |
| 6581 | if (getTypeAction(NVT) == Expand) |
| 6582 | ExpandOp(Lo, Lo, Hi); |
| 6583 | break; |
| 6584 | } |
| 6585 | case ISD::FNEG: { |
Dale Johannesen | f646774 | 2007-10-12 19:02:17 +0000 | [diff] [blame] | 6586 | if (VT == MVT::ppcf128) { |
| 6587 | ExpandOp(Node->getOperand(0), Lo, Hi); |
| 6588 | Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo); |
| 6589 | Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi); |
| 6590 | break; |
| 6591 | } |
Evan Cheng | 966bf24 | 2006-12-16 00:52:40 +0000 | [diff] [blame] | 6592 | SDOperand Mask = (VT == MVT::f64) |
| 6593 | ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT) |
| 6594 | : DAG.getConstantFP(BitsToFloat(1U << 31), VT); |
| 6595 | Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask); |
| 6596 | Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0)); |
| 6597 | Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask); |
| 6598 | if (getTypeAction(NVT) == Expand) |
| 6599 | ExpandOp(Lo, Lo, Hi); |
| 6600 | break; |
| 6601 | } |
Evan Cheng | 912095b | 2007-01-04 21:56:39 +0000 | [diff] [blame] | 6602 | case ISD::FCOPYSIGN: { |
| 6603 | Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI); |
| 6604 | if (getTypeAction(NVT) == Expand) |
| 6605 | ExpandOp(Lo, Lo, Hi); |
| 6606 | break; |
| 6607 | } |
Evan Cheng | 7df28dc | 2006-12-19 01:44:04 +0000 | [diff] [blame] | 6608 | case ISD::SINT_TO_FP: |
| 6609 | case ISD::UINT_TO_FP: { |
| 6610 | bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP; |
| 6611 | MVT::ValueType SrcVT = Node->getOperand(0).getValueType(); |
Dale Johannesen | cf49819 | 2008-03-18 17:28:38 +0000 | [diff] [blame] | 6612 | |
| 6613 | // Promote the operand if needed. Do this before checking for |
| 6614 | // ppcf128 so conversions of i16 and i8 work. |
| 6615 | if (getTypeAction(SrcVT) == Promote) { |
| 6616 | SDOperand Tmp = PromoteOp(Node->getOperand(0)); |
| 6617 | Tmp = isSigned |
| 6618 | ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp, |
| 6619 | DAG.getValueType(SrcVT)) |
| 6620 | : DAG.getZeroExtendInReg(Tmp, SrcVT); |
| 6621 | Node = DAG.UpdateNodeOperands(Op, Tmp).Val; |
| 6622 | SrcVT = Node->getOperand(0).getValueType(); |
| 6623 | } |
| 6624 | |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 6625 | if (VT == MVT::ppcf128 && SrcVT == MVT::i32) { |
Dan Gohman | f6283fd | 2008-02-25 21:39:34 +0000 | [diff] [blame] | 6626 | static const uint64_t zero = 0; |
Dale Johannesen | ca68aaa | 2007-10-12 01:37:08 +0000 | [diff] [blame] | 6627 | if (isSigned) { |
| 6628 | Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64, |
| 6629 | Node->getOperand(0))); |
| 6630 | Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64); |
| 6631 | } else { |
Dan Gohman | f6283fd | 2008-02-25 21:39:34 +0000 | [diff] [blame] | 6632 | static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 }; |
Dale Johannesen | ca68aaa | 2007-10-12 01:37:08 +0000 | [diff] [blame] | 6633 | Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64, |
| 6634 | Node->getOperand(0))); |
| 6635 | Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64); |
| 6636 | Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi); |
Dale Johannesen | 6e63e09 | 2007-10-12 17:52:03 +0000 | [diff] [blame] | 6637 | // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32 |
Dale Johannesen | ca68aaa | 2007-10-12 01:37:08 +0000 | [diff] [blame] | 6638 | ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0), |
| 6639 | DAG.getConstant(0, MVT::i32), |
| 6640 | DAG.getNode(ISD::FADD, MVT::ppcf128, Hi, |
| 6641 | DAG.getConstantFP( |
| 6642 | APFloat(APInt(128, 2, TwoE32)), |
| 6643 | MVT::ppcf128)), |
| 6644 | Hi, |
| 6645 | DAG.getCondCode(ISD::SETLT)), |
| 6646 | Lo, Hi); |
| 6647 | } |
| 6648 | break; |
| 6649 | } |
Dale Johannesen | 6e63e09 | 2007-10-12 17:52:03 +0000 | [diff] [blame] | 6650 | if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) { |
| 6651 | // si64->ppcf128 done by libcall, below |
Dan Gohman | f6283fd | 2008-02-25 21:39:34 +0000 | [diff] [blame] | 6652 | static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 }; |
Dale Johannesen | 6e63e09 | 2007-10-12 17:52:03 +0000 | [diff] [blame] | 6653 | ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)), |
| 6654 | Lo, Hi); |
| 6655 | Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi); |
| 6656 | // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64 |
| 6657 | ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0), |
| 6658 | DAG.getConstant(0, MVT::i64), |
| 6659 | DAG.getNode(ISD::FADD, MVT::ppcf128, Hi, |
| 6660 | DAG.getConstantFP( |
| 6661 | APFloat(APInt(128, 2, TwoE64)), |
| 6662 | MVT::ppcf128)), |
| 6663 | Hi, |
| 6664 | DAG.getCondCode(ISD::SETLT)), |
| 6665 | Lo, Hi); |
| 6666 | break; |
| 6667 | } |
Evan Cheng | 7df28dc | 2006-12-19 01:44:04 +0000 | [diff] [blame] | 6668 | |
Dan Gohman | a2e9485 | 2008-03-10 23:03:31 +0000 | [diff] [blame] | 6669 | Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT, |
| 6670 | Node->getOperand(0)); |
Evan Cheng | 110cf48 | 2008-04-01 01:50:16 +0000 | [diff] [blame] | 6671 | if (getTypeAction(Lo.getValueType()) == Expand) |
Evan Cheng | 6ad2f93 | 2008-04-01 01:51:26 +0000 | [diff] [blame] | 6672 | // float to i32 etc. can be 'expanded' to a single node. |
Evan Cheng | 110cf48 | 2008-04-01 01:50:16 +0000 | [diff] [blame] | 6673 | ExpandOp(Lo, Lo, Hi); |
Evan Cheng | 7df28dc | 2006-12-19 01:44:04 +0000 | [diff] [blame] | 6674 | break; |
| 6675 | } |
Evan Cheng | 98ff3b9 | 2006-12-13 02:38:13 +0000 | [diff] [blame] | 6676 | } |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6677 | |
Chris Lattner | 8339736 | 2005-12-21 18:02:52 +0000 | [diff] [blame] | 6678 | // Make sure the resultant values have been legalized themselves, unless this |
| 6679 | // is a type that requires multi-step expansion. |
| 6680 | if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) { |
| 6681 | Lo = LegalizeOp(Lo); |
Evan Cheng | 13acce3 | 2006-12-11 19:27:14 +0000 | [diff] [blame] | 6682 | if (Hi.Val) |
| 6683 | // Don't legalize the high part if it is expanded to a single node. |
| 6684 | Hi = LegalizeOp(Hi); |
Chris Lattner | 8339736 | 2005-12-21 18:02:52 +0000 | [diff] [blame] | 6685 | } |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6686 | |
| 6687 | // Remember in a map if the values will be reused later. |
Chris Lattner | 40030bf | 2007-02-04 01:17:38 +0000 | [diff] [blame] | 6688 | bool isNew = ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))); |
Evan Cheng | 05a2d56 | 2006-01-09 18:31:59 +0000 | [diff] [blame] | 6689 | assert(isNew && "Value already expanded?!?"); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 6690 | } |
| 6691 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6692 | /// SplitVectorOp - Given an operand of vector type, break it down into |
| 6693 | /// two smaller values, still of vector type. |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6694 | void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo, |
| 6695 | SDOperand &Hi) { |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6696 | assert(MVT::isVector(Op.getValueType()) && "Cannot split non-vector type!"); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6697 | SDNode *Node = Op.Val; |
Dan Gohman | e40c7b0 | 2007-09-24 15:54:53 +0000 | [diff] [blame] | 6698 | unsigned NumElements = MVT::getVectorNumElements(Op.getValueType()); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6699 | assert(NumElements > 1 && "Cannot split a single element vector!"); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6700 | |
Dan Gohman | e40c7b0 | 2007-09-24 15:54:53 +0000 | [diff] [blame] | 6701 | MVT::ValueType NewEltVT = MVT::getVectorElementType(Op.getValueType()); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6702 | |
| 6703 | unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1); |
| 6704 | unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo; |
| 6705 | |
| 6706 | MVT::ValueType NewVT_Lo = MVT::getVectorType(NewEltVT, NewNumElts_Lo); |
| 6707 | MVT::ValueType NewVT_Hi = MVT::getVectorType(NewEltVT, NewNumElts_Hi); |
| 6708 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6709 | // See if we already split it. |
| 6710 | std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I |
| 6711 | = SplitNodes.find(Op); |
| 6712 | if (I != SplitNodes.end()) { |
| 6713 | Lo = I->second.first; |
| 6714 | Hi = I->second.second; |
| 6715 | return; |
| 6716 | } |
| 6717 | |
| 6718 | switch (Node->getOpcode()) { |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 6719 | default: |
| 6720 | #ifndef NDEBUG |
Dan Gohman | 3983358 | 2007-06-04 16:17:33 +0000 | [diff] [blame] | 6721 | Node->dump(&DAG); |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 6722 | #endif |
| 6723 | assert(0 && "Unhandled operation in SplitVectorOp!"); |
Chris Lattner | daf9bc8 | 2007-11-19 20:21:32 +0000 | [diff] [blame] | 6724 | case ISD::UNDEF: |
| 6725 | Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo); |
| 6726 | Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi); |
| 6727 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6728 | case ISD::BUILD_PAIR: |
| 6729 | Lo = Node->getOperand(0); |
| 6730 | Hi = Node->getOperand(1); |
| 6731 | break; |
Dan Gohman | 9fe4662 | 2007-09-28 23:53:40 +0000 | [diff] [blame] | 6732 | case ISD::INSERT_VECTOR_ELT: { |
Nate Begeman | 6867991 | 2008-04-25 18:07:40 +0000 | [diff] [blame] | 6733 | if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) { |
| 6734 | SplitVectorOp(Node->getOperand(0), Lo, Hi); |
| 6735 | unsigned Index = Idx->getValue(); |
| 6736 | SDOperand ScalarOp = Node->getOperand(1); |
| 6737 | if (Index < NewNumElts_Lo) |
| 6738 | Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp, |
| 6739 | DAG.getIntPtrConstant(Index)); |
| 6740 | else |
| 6741 | Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp, |
| 6742 | DAG.getIntPtrConstant(Index - NewNumElts_Lo)); |
| 6743 | break; |
| 6744 | } |
| 6745 | SDOperand Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0), |
| 6746 | Node->getOperand(1), |
| 6747 | Node->getOperand(2)); |
| 6748 | SplitVectorOp(Tmp, Lo, Hi); |
Dan Gohman | 9fe4662 | 2007-09-28 23:53:40 +0000 | [diff] [blame] | 6749 | break; |
| 6750 | } |
Chris Lattner | 6c9c680 | 2007-11-19 21:16:54 +0000 | [diff] [blame] | 6751 | case ISD::VECTOR_SHUFFLE: { |
| 6752 | // Build the low part. |
| 6753 | SDOperand Mask = Node->getOperand(2); |
| 6754 | SmallVector<SDOperand, 8> Ops; |
| 6755 | MVT::ValueType PtrVT = TLI.getPointerTy(); |
| 6756 | |
| 6757 | // Insert all of the elements from the input that are needed. We use |
| 6758 | // buildvector of extractelement here because the input vectors will have |
| 6759 | // to be legalized, so this makes the code simpler. |
| 6760 | for (unsigned i = 0; i != NewNumElts_Lo; ++i) { |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 6761 | SDOperand IdxNode = Mask.getOperand(i); |
| 6762 | if (IdxNode.getOpcode() == ISD::UNDEF) { |
| 6763 | Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT)); |
| 6764 | continue; |
| 6765 | } |
| 6766 | unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue(); |
Chris Lattner | 6c9c680 | 2007-11-19 21:16:54 +0000 | [diff] [blame] | 6767 | SDOperand InVec = Node->getOperand(0); |
| 6768 | if (Idx >= NumElements) { |
| 6769 | InVec = Node->getOperand(1); |
| 6770 | Idx -= NumElements; |
| 6771 | } |
| 6772 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec, |
| 6773 | DAG.getConstant(Idx, PtrVT))); |
| 6774 | } |
| 6775 | Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size()); |
| 6776 | Ops.clear(); |
| 6777 | |
| 6778 | for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) { |
Nate Begeman | 5922f56 | 2008-03-14 00:53:31 +0000 | [diff] [blame] | 6779 | SDOperand IdxNode = Mask.getOperand(i); |
| 6780 | if (IdxNode.getOpcode() == ISD::UNDEF) { |
| 6781 | Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT)); |
| 6782 | continue; |
| 6783 | } |
| 6784 | unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue(); |
Chris Lattner | 6c9c680 | 2007-11-19 21:16:54 +0000 | [diff] [blame] | 6785 | SDOperand InVec = Node->getOperand(0); |
| 6786 | if (Idx >= NumElements) { |
| 6787 | InVec = Node->getOperand(1); |
| 6788 | Idx -= NumElements; |
| 6789 | } |
| 6790 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec, |
| 6791 | DAG.getConstant(Idx, PtrVT))); |
| 6792 | } |
| 6793 | Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size()); |
| 6794 | break; |
| 6795 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6796 | case ISD::BUILD_VECTOR: { |
Chris Lattner | bd564bf | 2006-08-08 02:23:42 +0000 | [diff] [blame] | 6797 | SmallVector<SDOperand, 8> LoOps(Node->op_begin(), |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6798 | Node->op_begin()+NewNumElts_Lo); |
| 6799 | Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size()); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6800 | |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6801 | SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts_Lo, |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6802 | Node->op_end()); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6803 | Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size()); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6804 | break; |
| 6805 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6806 | case ISD::CONCAT_VECTORS: { |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6807 | // FIXME: Handle non-power-of-two vectors? |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6808 | unsigned NewNumSubvectors = Node->getNumOperands() / 2; |
| 6809 | if (NewNumSubvectors == 1) { |
| 6810 | Lo = Node->getOperand(0); |
| 6811 | Hi = Node->getOperand(1); |
| 6812 | } else { |
| 6813 | SmallVector<SDOperand, 8> LoOps(Node->op_begin(), |
| 6814 | Node->op_begin()+NewNumSubvectors); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6815 | Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size()); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 6816 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6817 | SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors, |
| 6818 | Node->op_end()); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6819 | Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size()); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6820 | } |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 6821 | break; |
| 6822 | } |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 6823 | case ISD::SELECT: { |
| 6824 | SDOperand Cond = Node->getOperand(0); |
| 6825 | |
| 6826 | SDOperand LL, LH, RL, RH; |
| 6827 | SplitVectorOp(Node->getOperand(1), LL, LH); |
| 6828 | SplitVectorOp(Node->getOperand(2), RL, RH); |
| 6829 | |
| 6830 | if (MVT::isVector(Cond.getValueType())) { |
| 6831 | // Handle a vector merge. |
| 6832 | SDOperand CL, CH; |
| 6833 | SplitVectorOp(Cond, CL, CH); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6834 | Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL); |
| 6835 | Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH); |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 6836 | } else { |
| 6837 | // Handle a simple select with vector operands. |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6838 | Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL); |
| 6839 | Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH); |
Dan Gohman | c623096 | 2007-10-17 14:48:28 +0000 | [diff] [blame] | 6840 | } |
| 6841 | break; |
| 6842 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6843 | case ISD::ADD: |
| 6844 | case ISD::SUB: |
| 6845 | case ISD::MUL: |
| 6846 | case ISD::FADD: |
| 6847 | case ISD::FSUB: |
| 6848 | case ISD::FMUL: |
| 6849 | case ISD::SDIV: |
| 6850 | case ISD::UDIV: |
| 6851 | case ISD::FDIV: |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 6852 | case ISD::FPOW: |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6853 | case ISD::AND: |
| 6854 | case ISD::OR: |
Dan Gohman | 089617d | 2007-11-19 15:15:03 +0000 | [diff] [blame] | 6855 | case ISD::XOR: |
| 6856 | case ISD::UREM: |
| 6857 | case ISD::SREM: |
| 6858 | case ISD::FREM: { |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6859 | SDOperand LL, LH, RL, RH; |
| 6860 | SplitVectorOp(Node->getOperand(0), LL, LH); |
| 6861 | SplitVectorOp(Node->getOperand(1), RL, RH); |
| 6862 | |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6863 | Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL); |
| 6864 | Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6865 | break; |
| 6866 | } |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 6867 | case ISD::FPOWI: { |
| 6868 | SDOperand L, H; |
| 6869 | SplitVectorOp(Node->getOperand(0), L, H); |
| 6870 | |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6871 | Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1)); |
| 6872 | Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1)); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 6873 | break; |
| 6874 | } |
| 6875 | case ISD::CTTZ: |
| 6876 | case ISD::CTLZ: |
| 6877 | case ISD::CTPOP: |
| 6878 | case ISD::FNEG: |
| 6879 | case ISD::FABS: |
| 6880 | case ISD::FSQRT: |
| 6881 | case ISD::FSIN: |
Nate Begeman | b348d18 | 2007-11-17 03:58:34 +0000 | [diff] [blame] | 6882 | case ISD::FCOS: |
| 6883 | case ISD::FP_TO_SINT: |
| 6884 | case ISD::FP_TO_UINT: |
| 6885 | case ISD::SINT_TO_FP: |
| 6886 | case ISD::UINT_TO_FP: { |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 6887 | SDOperand L, H; |
| 6888 | SplitVectorOp(Node->getOperand(0), L, H); |
| 6889 | |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6890 | Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L); |
| 6891 | Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H); |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 6892 | break; |
| 6893 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6894 | case ISD::LOAD: { |
| 6895 | LoadSDNode *LD = cast<LoadSDNode>(Node); |
| 6896 | SDOperand Ch = LD->getChain(); |
| 6897 | SDOperand Ptr = LD->getBasePtr(); |
| 6898 | const Value *SV = LD->getSrcValue(); |
| 6899 | int SVOffset = LD->getSrcValueOffset(); |
| 6900 | unsigned Alignment = LD->getAlignment(); |
| 6901 | bool isVolatile = LD->isVolatile(); |
| 6902 | |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6903 | Lo = DAG.getLoad(NewVT_Lo, Ch, Ptr, SV, SVOffset, isVolatile, Alignment); |
| 6904 | unsigned IncrementSize = NewNumElts_Lo * MVT::getSizeInBits(NewEltVT)/8; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6905 | Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr, |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 6906 | DAG.getIntPtrConstant(IncrementSize)); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6907 | SVOffset += IncrementSize; |
Duncan Sands | dc84650 | 2007-10-28 12:59:45 +0000 | [diff] [blame] | 6908 | Alignment = MinAlign(Alignment, IncrementSize); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6909 | Hi = DAG.getLoad(NewVT_Hi, Ch, Ptr, SV, SVOffset, isVolatile, Alignment); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6910 | |
| 6911 | // Build a factor node to remember that this load is independent of the |
| 6912 | // other one. |
| 6913 | SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1), |
| 6914 | Hi.getValue(1)); |
| 6915 | |
| 6916 | // Remember that we legalized the chain. |
| 6917 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF)); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6918 | break; |
| 6919 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6920 | case ISD::BIT_CONVERT: { |
Chris Lattner | 7692eb4 | 2006-03-23 21:16:34 +0000 | [diff] [blame] | 6921 | // We know the result is a vector. The input may be either a vector or a |
| 6922 | // scalar value. |
Dan Gohman | 10a7aa6 | 2007-06-29 00:09:08 +0000 | [diff] [blame] | 6923 | SDOperand InOp = Node->getOperand(0); |
| 6924 | if (!MVT::isVector(InOp.getValueType()) || |
| 6925 | MVT::getVectorNumElements(InOp.getValueType()) == 1) { |
| 6926 | // The input is a scalar or single-element vector. |
| 6927 | // Lower to a store/load so that it can be split. |
| 6928 | // FIXME: this could be improved probably. |
Chris Lattner | 85dd3be | 2007-10-15 17:48:57 +0000 | [diff] [blame] | 6929 | SDOperand Ptr = DAG.CreateStackTemporary(InOp.getValueType()); |
Dan Gohman | bbbbb9c | 2008-02-11 18:58:42 +0000 | [diff] [blame] | 6930 | FrameIndexSDNode *FI = cast<FrameIndexSDNode>(Ptr.Val); |
Chris Lattner | 7692eb4 | 2006-03-23 21:16:34 +0000 | [diff] [blame] | 6931 | |
Evan Cheng | 786225a | 2006-10-05 23:01:46 +0000 | [diff] [blame] | 6932 | SDOperand St = DAG.getStore(DAG.getEntryNode(), |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 6933 | InOp, Ptr, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 6934 | PseudoSourceValue::getFixedStack(), |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 6935 | FI->getIndex()); |
| 6936 | InOp = DAG.getLoad(Op.getValueType(), St, Ptr, |
Dan Gohman | 3069b87 | 2008-02-07 18:41:25 +0000 | [diff] [blame] | 6937 | PseudoSourceValue::getFixedStack(), |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 6938 | FI->getIndex()); |
Chris Lattner | 7692eb4 | 2006-03-23 21:16:34 +0000 | [diff] [blame] | 6939 | } |
Dan Gohman | 10a7aa6 | 2007-06-29 00:09:08 +0000 | [diff] [blame] | 6940 | // Split the vector and convert each of the pieces now. |
| 6941 | SplitVectorOp(InOp, Lo, Hi); |
Nate Begeman | 5db1afb | 2007-11-15 21:15:26 +0000 | [diff] [blame] | 6942 | Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo); |
| 6943 | Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi); |
Dan Gohman | 10a7aa6 | 2007-06-29 00:09:08 +0000 | [diff] [blame] | 6944 | break; |
Chris Lattner | 7692eb4 | 2006-03-23 21:16:34 +0000 | [diff] [blame] | 6945 | } |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6946 | } |
| 6947 | |
| 6948 | // Remember in a map if the values will be reused later. |
Chris Lattner | 40030bf | 2007-02-04 01:17:38 +0000 | [diff] [blame] | 6949 | bool isNew = |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6950 | SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second; |
Dan Gohman | 10a7aa6 | 2007-06-29 00:09:08 +0000 | [diff] [blame] | 6951 | assert(isNew && "Value already split?!?"); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6952 | } |
| 6953 | |
| 6954 | |
Dan Gohman | 89b20c0 | 2007-06-27 14:06:22 +0000 | [diff] [blame] | 6955 | /// ScalarizeVectorOp - Given an operand of single-element vector type |
| 6956 | /// (e.g. v1f32), convert it into the equivalent operation that returns a |
| 6957 | /// scalar (e.g. f32) value. |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6958 | SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) { |
| 6959 | assert(MVT::isVector(Op.getValueType()) && |
| 6960 | "Bad ScalarizeVectorOp invocation!"); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6961 | SDNode *Node = Op.Val; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6962 | MVT::ValueType NewVT = MVT::getVectorElementType(Op.getValueType()); |
| 6963 | assert(MVT::getVectorNumElements(Op.getValueType()) == 1); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6964 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6965 | // See if we already scalarized it. |
| 6966 | std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op); |
| 6967 | if (I != ScalarizedNodes.end()) return I->second; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6968 | |
| 6969 | SDOperand Result; |
| 6970 | switch (Node->getOpcode()) { |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 6971 | default: |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 6972 | #ifndef NDEBUG |
Dan Gohman | 3983358 | 2007-06-04 16:17:33 +0000 | [diff] [blame] | 6973 | Node->dump(&DAG); cerr << "\n"; |
Jim Laskey | e37fe9b | 2006-07-11 17:58:07 +0000 | [diff] [blame] | 6974 | #endif |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6975 | assert(0 && "Unknown vector operation in ScalarizeVectorOp!"); |
| 6976 | case ISD::ADD: |
| 6977 | case ISD::FADD: |
| 6978 | case ISD::SUB: |
| 6979 | case ISD::FSUB: |
| 6980 | case ISD::MUL: |
| 6981 | case ISD::FMUL: |
| 6982 | case ISD::SDIV: |
| 6983 | case ISD::UDIV: |
| 6984 | case ISD::FDIV: |
| 6985 | case ISD::SREM: |
| 6986 | case ISD::UREM: |
| 6987 | case ISD::FREM: |
Dan Gohman | 8266952 | 2007-10-11 23:57:53 +0000 | [diff] [blame] | 6988 | case ISD::FPOW: |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6989 | case ISD::AND: |
| 6990 | case ISD::OR: |
| 6991 | case ISD::XOR: |
| 6992 | Result = DAG.getNode(Node->getOpcode(), |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6993 | NewVT, |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6994 | ScalarizeVectorOp(Node->getOperand(0)), |
| 6995 | ScalarizeVectorOp(Node->getOperand(1))); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 6996 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 6997 | case ISD::FNEG: |
| 6998 | case ISD::FABS: |
| 6999 | case ISD::FSQRT: |
| 7000 | case ISD::FSIN: |
| 7001 | case ISD::FCOS: |
| 7002 | Result = DAG.getNode(Node->getOpcode(), |
| 7003 | NewVT, |
| 7004 | ScalarizeVectorOp(Node->getOperand(0))); |
| 7005 | break; |
Dan Gohman | 9e04c82 | 2007-10-12 14:13:46 +0000 | [diff] [blame] | 7006 | case ISD::FPOWI: |
| 7007 | Result = DAG.getNode(Node->getOpcode(), |
| 7008 | NewVT, |
| 7009 | ScalarizeVectorOp(Node->getOperand(0)), |
| 7010 | Node->getOperand(1)); |
| 7011 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7012 | case ISD::LOAD: { |
| 7013 | LoadSDNode *LD = cast<LoadSDNode>(Node); |
| 7014 | SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain. |
| 7015 | SDOperand Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer. |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7016 | |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7017 | const Value *SV = LD->getSrcValue(); |
| 7018 | int SVOffset = LD->getSrcValueOffset(); |
| 7019 | Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset, |
| 7020 | LD->isVolatile(), LD->getAlignment()); |
| 7021 | |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7022 | // Remember that we legalized the chain. |
| 7023 | AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1))); |
| 7024 | break; |
| 7025 | } |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7026 | case ISD::BUILD_VECTOR: |
| 7027 | Result = Node->getOperand(0); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7028 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7029 | case ISD::INSERT_VECTOR_ELT: |
| 7030 | // Returning the inserted scalar element. |
| 7031 | Result = Node->getOperand(1); |
| 7032 | break; |
| 7033 | case ISD::CONCAT_VECTORS: |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 7034 | assert(Node->getOperand(0).getValueType() == NewVT && |
| 7035 | "Concat of non-legal vectors not yet supported!"); |
| 7036 | Result = Node->getOperand(0); |
| 7037 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7038 | case ISD::VECTOR_SHUFFLE: { |
| 7039 | // Figure out if the scalar is the LHS or RHS and return it. |
| 7040 | SDOperand EltNum = Node->getOperand(2).getOperand(0); |
| 7041 | if (cast<ConstantSDNode>(EltNum)->getValue()) |
| 7042 | Result = ScalarizeVectorOp(Node->getOperand(1)); |
| 7043 | else |
| 7044 | Result = ScalarizeVectorOp(Node->getOperand(0)); |
Chris Lattner | 2332b9f | 2006-03-19 01:17:20 +0000 | [diff] [blame] | 7045 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7046 | } |
| 7047 | case ISD::EXTRACT_SUBVECTOR: |
| 7048 | Result = Node->getOperand(0); |
Dan Gohman | 6595635 | 2007-06-13 15:12:02 +0000 | [diff] [blame] | 7049 | assert(Result.getValueType() == NewVT); |
| 7050 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7051 | case ISD::BIT_CONVERT: |
| 7052 | Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0)); |
Chris Lattner | 5b2316e | 2006-03-28 20:24:43 +0000 | [diff] [blame] | 7053 | break; |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7054 | case ISD::SELECT: |
Chris Lattner | b22e35a | 2006-04-08 22:22:57 +0000 | [diff] [blame] | 7055 | Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0), |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7056 | ScalarizeVectorOp(Op.getOperand(1)), |
| 7057 | ScalarizeVectorOp(Op.getOperand(2))); |
Chris Lattner | b22e35a | 2006-04-08 22:22:57 +0000 | [diff] [blame] | 7058 | break; |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7059 | } |
| 7060 | |
| 7061 | if (TLI.isTypeLegal(NewVT)) |
| 7062 | Result = LegalizeOp(Result); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 7063 | bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second; |
| 7064 | assert(isNew && "Value already scalarized?"); |
Chris Lattner | c702980 | 2006-03-18 01:44:44 +0000 | [diff] [blame] | 7065 | return Result; |
| 7066 | } |
| 7067 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 7068 | |
| 7069 | // SelectionDAG::Legalize - This is the entry point for the file. |
| 7070 | // |
Chris Lattner | 9c32d3b | 2005-01-23 04:42:50 +0000 | [diff] [blame] | 7071 | void SelectionDAG::Legalize() { |
Chris Lattner | 5e46a19 | 2006-04-02 03:07:27 +0000 | [diff] [blame] | 7072 | if (ViewLegalizeDAGs) viewGraph(); |
| 7073 | |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 7074 | /// run - This is the main entry point to this class. |
| 7075 | /// |
Chris Lattner | 456a93a | 2006-01-28 07:39:30 +0000 | [diff] [blame] | 7076 | SelectionDAGLegalize(*this).LegalizeDAG(); |
Chris Lattner | 3e928bb | 2005-01-07 07:47:09 +0000 | [diff] [blame] | 7077 | } |
| 7078 | |