| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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_COMPILER_JS_INTRINSIC_LOWERING_H_ | 5 #ifndef V8_COMPILER_JS_INTRINSIC_LOWERING_H_ |
| 6 #define V8_COMPILER_JS_INTRINSIC_LOWERING_H_ | 6 #define V8_COMPILER_JS_INTRINSIC_LOWERING_H_ |
| 7 | 7 |
| 8 #include "src/compiler/common-operator.h" | 8 #include "src/compiler/common-operator.h" |
| 9 #include "src/compiler/graph-reducer.h" | 9 #include "src/compiler/graph-reducer.h" |
| 10 | 10 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 Reduction ReduceRegExpSource(Node* node); | 59 Reduction ReduceRegExpSource(Node* node); |
| 60 Reduction ReduceSubString(Node* node); | 60 Reduction ReduceSubString(Node* node); |
| 61 Reduction ReduceToInteger(Node* node); | 61 Reduction ReduceToInteger(Node* node); |
| 62 Reduction ReduceToLength(Node* node); | 62 Reduction ReduceToLength(Node* node); |
| 63 Reduction ReduceToName(Node* node); | 63 Reduction ReduceToName(Node* node); |
| 64 Reduction ReduceToNumber(Node* node); | 64 Reduction ReduceToNumber(Node* node); |
| 65 Reduction ReduceToObject(Node* node); | 65 Reduction ReduceToObject(Node* node); |
| 66 Reduction ReduceToPrimitive(Node* node); | 66 Reduction ReduceToPrimitive(Node* node); |
| 67 Reduction ReduceToString(Node* node); | 67 Reduction ReduceToString(Node* node); |
| 68 Reduction ReduceCall(Node* node); | 68 Reduction ReduceCall(Node* node); |
| 69 Reduction ReduceTailCall(Node* node); | |
| 70 Reduction ReduceGetSuperConstructor(Node* node); | 69 Reduction ReduceGetSuperConstructor(Node* node); |
| 71 | 70 |
| 72 Reduction Change(Node* node, const Operator* op); | 71 Reduction Change(Node* node, const Operator* op); |
| 73 Reduction Change(Node* node, const Operator* op, Node* a, Node* b); | 72 Reduction Change(Node* node, const Operator* op, Node* a, Node* b); |
| 74 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c); | 73 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c); |
| 75 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c, | 74 Reduction Change(Node* node, const Operator* op, Node* a, Node* b, Node* c, |
| 76 Node* d); | 75 Node* d); |
| 77 Reduction ChangeToUndefined(Node* node, Node* effect = nullptr); | 76 Reduction ChangeToUndefined(Node* node, Node* effect = nullptr); |
| 78 Reduction Change(Node* node, Callable const& callable, | 77 Reduction Change(Node* node, Callable const& callable, |
| 79 int stack_parameter_count); | 78 int stack_parameter_count); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 91 JSGraph* const jsgraph_; | 90 JSGraph* const jsgraph_; |
| 92 DeoptimizationMode const mode_; | 91 DeoptimizationMode const mode_; |
| 93 TypeCache const& type_cache_; | 92 TypeCache const& type_cache_; |
| 94 }; | 93 }; |
| 95 | 94 |
| 96 } // namespace compiler | 95 } // namespace compiler |
| 97 } // namespace internal | 96 } // namespace internal |
| 98 } // namespace v8 | 97 } // namespace v8 |
| 99 | 98 |
| 100 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ | 99 #endif // V8_COMPILER_JS_INTRINSIC_LOWERING_H_ |
| OLD | NEW |