| OLD | NEW |
| 1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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_CREATE_LOWERING_H_ | 5 #ifndef V8_COMPILER_JS_CREATE_LOWERING_H_ |
| 6 #define V8_COMPILER_JS_CREATE_LOWERING_H_ | 6 #define V8_COMPILER_JS_CREATE_LOWERING_H_ |
| 7 | 7 |
| 8 #include "src/base/compiler-specific.h" | 8 #include "src/base/compiler-specific.h" |
| 9 #include "src/compiler/graph-reducer.h" | 9 #include "src/compiler/graph-reducer.h" |
| 10 #include "src/globals.h" | 10 #include "src/globals.h" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 Reduction ReduceJSCreate(Node* node); | 50 Reduction ReduceJSCreate(Node* node); |
| 51 Reduction ReduceJSCreateArguments(Node* node); | 51 Reduction ReduceJSCreateArguments(Node* node); |
| 52 Reduction ReduceJSCreateArray(Node* node); | 52 Reduction ReduceJSCreateArray(Node* node); |
| 53 Reduction ReduceJSCreateIterResultObject(Node* node); | 53 Reduction ReduceJSCreateIterResultObject(Node* node); |
| 54 Reduction ReduceJSCreateKeyValueArray(Node* node); | 54 Reduction ReduceJSCreateKeyValueArray(Node* node); |
| 55 Reduction ReduceJSCreateLiteral(Node* node); | 55 Reduction ReduceJSCreateLiteral(Node* node); |
| 56 Reduction ReduceJSCreateFunctionContext(Node* node); | 56 Reduction ReduceJSCreateFunctionContext(Node* node); |
| 57 Reduction ReduceJSCreateWithContext(Node* node); | 57 Reduction ReduceJSCreateWithContext(Node* node); |
| 58 Reduction ReduceJSCreateCatchContext(Node* node); | 58 Reduction ReduceJSCreateCatchContext(Node* node); |
| 59 Reduction ReduceJSCreateBlockContext(Node* node); | 59 Reduction ReduceJSCreateBlockContext(Node* node); |
| 60 Reduction ReduceJSCreateGeneratorObject(Node* node); |
| 60 Reduction ReduceNewArray(Node* node, Node* length, int capacity, | 61 Reduction ReduceNewArray(Node* node, Node* length, int capacity, |
| 61 Handle<AllocationSite> site); | 62 Handle<AllocationSite> site); |
| 62 Reduction ReduceNewArray(Node* node, std::vector<Node*> values, | 63 Reduction ReduceNewArray(Node* node, std::vector<Node*> values, |
| 63 Handle<AllocationSite> site); | 64 Handle<AllocationSite> site); |
| 64 | 65 |
| 65 Node* AllocateArguments(Node* effect, Node* control, Node* frame_state); | 66 Node* AllocateArguments(Node* effect, Node* control, Node* frame_state); |
| 66 Node* AllocateRestArguments(Node* effect, Node* control, Node* frame_state, | 67 Node* AllocateRestArguments(Node* effect, Node* control, Node* frame_state, |
| 67 int start_index); | 68 int start_index); |
| 68 Node* AllocateAliasedArguments(Node* effect, Node* control, Node* frame_state, | 69 Node* AllocateAliasedArguments(Node* effect, Node* control, Node* frame_state, |
| 69 Node* context, Handle<SharedFunctionInfo>, | 70 Node* context, Handle<SharedFunctionInfo>, |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 MaybeHandle<FeedbackVector> const feedback_vector_; | 106 MaybeHandle<FeedbackVector> const feedback_vector_; |
| 106 Handle<Context> const native_context_; | 107 Handle<Context> const native_context_; |
| 107 Zone* const zone_; | 108 Zone* const zone_; |
| 108 }; | 109 }; |
| 109 | 110 |
| 110 } // namespace compiler | 111 } // namespace compiler |
| 111 } // namespace internal | 112 } // namespace internal |
| 112 } // namespace v8 | 113 } // namespace v8 |
| 113 | 114 |
| 114 #endif // V8_COMPILER_JS_CREATE_LOWERING_H_ | 115 #endif // V8_COMPILER_JS_CREATE_LOWERING_H_ |
| OLD | NEW |