OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_CRANKSHAFT_S390_LITHIUM_S390_H_ | 5 #ifndef V8_CRANKSHAFT_S390_LITHIUM_S390_H_ |
6 #define V8_CRANKSHAFT_S390_LITHIUM_S390_H_ | 6 #define V8_CRANKSHAFT_S390_LITHIUM_S390_H_ |
7 | 7 |
8 #include "src/crankshaft/hydrogen.h" | 8 #include "src/crankshaft/hydrogen.h" |
9 #include "src/crankshaft/lithium.h" | 9 #include "src/crankshaft/lithium.h" |
10 #include "src/crankshaft/lithium-allocator.h" | 10 #include "src/crankshaft/lithium-allocator.h" |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 V(StackCheck) \ | 126 V(StackCheck) \ |
127 V(StoreCodeEntry) \ | 127 V(StoreCodeEntry) \ |
128 V(StoreContextSlot) \ | 128 V(StoreContextSlot) \ |
129 V(StoreKeyed) \ | 129 V(StoreKeyed) \ |
130 V(StoreNamedField) \ | 130 V(StoreNamedField) \ |
131 V(StringAdd) \ | 131 V(StringAdd) \ |
132 V(StringCharCodeAt) \ | 132 V(StringCharCodeAt) \ |
133 V(StringCharFromCode) \ | 133 V(StringCharFromCode) \ |
134 V(StringCompareAndBranch) \ | 134 V(StringCompareAndBranch) \ |
135 V(SubI) \ | 135 V(SubI) \ |
136 V(RSubI) \ | |
137 V(TaggedToI) \ | 136 V(TaggedToI) \ |
138 V(ThisFunction) \ | 137 V(ThisFunction) \ |
139 V(TransitionElementsKind) \ | 138 V(TransitionElementsKind) \ |
140 V(TrapAllocationMemento) \ | 139 V(TrapAllocationMemento) \ |
141 V(Typeof) \ | 140 V(Typeof) \ |
142 V(TypeofIsAndBranch) \ | 141 V(TypeofIsAndBranch) \ |
143 V(Uint32ToDouble) \ | 142 V(Uint32ToDouble) \ |
144 V(UnknownOSRValue) \ | 143 V(UnknownOSRValue) \ |
145 V(WrapReceiver) | 144 V(WrapReceiver) |
146 | 145 |
(...skipping 24 matching lines...) Expand all Loading... |
171 virtual void PrintDataTo(StringStream* stream); | 170 virtual void PrintDataTo(StringStream* stream); |
172 virtual void PrintOutputOperandTo(StringStream* stream); | 171 virtual void PrintOutputOperandTo(StringStream* stream); |
173 | 172 |
174 enum Opcode { | 173 enum Opcode { |
175 // Declare a unique enum value for each instruction. | 174 // Declare a unique enum value for each instruction. |
176 #define DECLARE_OPCODE(type) k##type, | 175 #define DECLARE_OPCODE(type) k##type, |
177 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_OPCODE) kNumberOfInstructions | 176 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_OPCODE) kNumberOfInstructions |
178 #undef DECLARE_OPCODE | 177 #undef DECLARE_OPCODE |
179 }; | 178 }; |
180 | 179 |
| 180 static const char* GetOpcodeName(Opcode op); |
| 181 |
181 virtual Opcode opcode() const = 0; | 182 virtual Opcode opcode() const = 0; |
182 | 183 |
183 // Declare non-virtual type testers for all leaf IR classes. | 184 // Declare non-virtual type testers for all leaf IR classes. |
184 #define DECLARE_PREDICATE(type) \ | 185 #define DECLARE_PREDICATE(type) \ |
185 bool Is##type() const { return opcode() == k##type; } | 186 bool Is##type() const { return opcode() == k##type; } |
186 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_PREDICATE) | 187 LITHIUM_CONCRETE_INSTRUCTION_LIST(DECLARE_PREDICATE) |
187 #undef DECLARE_PREDICATE | 188 #undef DECLARE_PREDICATE |
188 | 189 |
189 // Declare virtual predicates for instructions that don't have | 190 // Declare virtual predicates for instructions that don't have |
190 // an opcode. | 191 // an opcode. |
(...skipping 892 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1083 inputs_[1] = right; | 1084 inputs_[1] = right; |
1084 } | 1085 } |
1085 | 1086 |
1086 LOperand* left() { return inputs_[0]; } | 1087 LOperand* left() { return inputs_[0]; } |
1087 LOperand* right() { return inputs_[1]; } | 1088 LOperand* right() { return inputs_[1]; } |
1088 | 1089 |
1089 DECLARE_CONCRETE_INSTRUCTION(SubI, "sub-i") | 1090 DECLARE_CONCRETE_INSTRUCTION(SubI, "sub-i") |
1090 DECLARE_HYDROGEN_ACCESSOR(Sub) | 1091 DECLARE_HYDROGEN_ACCESSOR(Sub) |
1091 }; | 1092 }; |
1092 | 1093 |
1093 class LRSubI final : public LTemplateInstruction<1, 2, 0> { | |
1094 public: | |
1095 LRSubI(LOperand* left, LOperand* right) { | |
1096 inputs_[0] = left; | |
1097 inputs_[1] = right; | |
1098 } | |
1099 | |
1100 LOperand* left() { return inputs_[0]; } | |
1101 LOperand* right() { return inputs_[1]; } | |
1102 | |
1103 DECLARE_CONCRETE_INSTRUCTION(RSubI, "rsub-i") | |
1104 DECLARE_HYDROGEN_ACCESSOR(Sub) | |
1105 }; | |
1106 | |
1107 class LConstantI final : public LTemplateInstruction<1, 0, 0> { | 1094 class LConstantI final : public LTemplateInstruction<1, 0, 0> { |
1108 public: | 1095 public: |
1109 DECLARE_CONCRETE_INSTRUCTION(ConstantI, "constant-i") | 1096 DECLARE_CONCRETE_INSTRUCTION(ConstantI, "constant-i") |
1110 DECLARE_HYDROGEN_ACCESSOR(Constant) | 1097 DECLARE_HYDROGEN_ACCESSOR(Constant) |
1111 | 1098 |
1112 int32_t value() const { return hydrogen()->Integer32Value(); } | 1099 int32_t value() const { return hydrogen()->Integer32Value(); } |
1113 }; | 1100 }; |
1114 | 1101 |
1115 class LConstantS final : public LTemplateInstruction<1, 0, 0> { | 1102 class LConstantS final : public LTemplateInstruction<1, 0, 0> { |
1116 public: | 1103 public: |
(...skipping 1017 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2134 // Build the sequence for the graph. | 2121 // Build the sequence for the graph. |
2135 LPlatformChunk* Build(); | 2122 LPlatformChunk* Build(); |
2136 | 2123 |
2137 // Declare methods that deal with the individual node types. | 2124 // Declare methods that deal with the individual node types. |
2138 #define DECLARE_DO(type) LInstruction* Do##type(H##type* node); | 2125 #define DECLARE_DO(type) LInstruction* Do##type(H##type* node); |
2139 HYDROGEN_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) | 2126 HYDROGEN_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) |
2140 #undef DECLARE_DO | 2127 #undef DECLARE_DO |
2141 | 2128 |
2142 LInstruction* DoMultiplyAdd(HMul* mul, HValue* addend); | 2129 LInstruction* DoMultiplyAdd(HMul* mul, HValue* addend); |
2143 LInstruction* DoMultiplySub(HValue* minuend, HMul* mul); | 2130 LInstruction* DoMultiplySub(HValue* minuend, HMul* mul); |
2144 LInstruction* DoRSub(HSub* instr); | |
2145 | 2131 |
2146 static bool HasMagicNumberForDivisor(int32_t divisor); | 2132 static bool HasMagicNumberForDivisor(int32_t divisor); |
2147 | 2133 |
2148 LInstruction* DoMathFloor(HUnaryMathOperation* instr); | 2134 LInstruction* DoMathFloor(HUnaryMathOperation* instr); |
2149 LInstruction* DoMathRound(HUnaryMathOperation* instr); | 2135 LInstruction* DoMathRound(HUnaryMathOperation* instr); |
2150 LInstruction* DoMathFround(HUnaryMathOperation* instr); | 2136 LInstruction* DoMathFround(HUnaryMathOperation* instr); |
2151 LInstruction* DoMathAbs(HUnaryMathOperation* instr); | 2137 LInstruction* DoMathAbs(HUnaryMathOperation* instr); |
2152 LInstruction* DoMathLog(HUnaryMathOperation* instr); | 2138 LInstruction* DoMathLog(HUnaryMathOperation* instr); |
2153 LInstruction* DoMathCos(HUnaryMathOperation* instr); | 2139 LInstruction* DoMathCos(HUnaryMathOperation* instr); |
2154 LInstruction* DoMathSin(HUnaryMathOperation* instr); | 2140 LInstruction* DoMathSin(HUnaryMathOperation* instr); |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2255 | 2241 |
2256 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2242 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
2257 }; | 2243 }; |
2258 | 2244 |
2259 #undef DECLARE_HYDROGEN_ACCESSOR | 2245 #undef DECLARE_HYDROGEN_ACCESSOR |
2260 #undef DECLARE_CONCRETE_INSTRUCTION | 2246 #undef DECLARE_CONCRETE_INSTRUCTION |
2261 } // namespace internal | 2247 } // namespace internal |
2262 } // namespace v8 | 2248 } // namespace v8 |
2263 | 2249 |
2264 #endif // V8_CRANKSHAFT_S390_LITHIUM_S390_H_ | 2250 #endif // V8_CRANKSHAFT_S390_LITHIUM_S390_H_ |
OLD | NEW |