| 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_BYTECODE_GRAPH_BUILDER_H_ | 5 #ifndef V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ |
| 6 #define V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ | 6 #define V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ |
| 7 | 7 |
| 8 #include "src/compiler.h" | 8 #include "src/compiler.h" |
| 9 #include "src/compiler/bytecode-branch-analysis.h" | 9 #include "src/compiler/bytecode-branch-analysis.h" |
| 10 #include "src/compiler/js-graph.h" | 10 #include "src/compiler/js-graph.h" |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 size_t arity); | 131 size_t arity); |
| 132 | 132 |
| 133 void BuildCreateLiteral(const Operator* op, | 133 void BuildCreateLiteral(const Operator* op, |
| 134 const interpreter::BytecodeArrayIterator& iterator); | 134 const interpreter::BytecodeArrayIterator& iterator); |
| 135 void BuildCreateRegExpLiteral( | 135 void BuildCreateRegExpLiteral( |
| 136 const interpreter::BytecodeArrayIterator& iterator); | 136 const interpreter::BytecodeArrayIterator& iterator); |
| 137 void BuildCreateArrayLiteral( | 137 void BuildCreateArrayLiteral( |
| 138 const interpreter::BytecodeArrayIterator& iterator); | 138 const interpreter::BytecodeArrayIterator& iterator); |
| 139 void BuildCreateObjectLiteral( | 139 void BuildCreateObjectLiteral( |
| 140 const interpreter::BytecodeArrayIterator& iterator); | 140 const interpreter::BytecodeArrayIterator& iterator); |
| 141 void BuildCreateArguments(CreateArgumentsParameters::Type type, |
| 142 const interpreter::BytecodeArrayIterator& iterator); |
| 141 void BuildLoadGlobal(const interpreter::BytecodeArrayIterator& iterator, | 143 void BuildLoadGlobal(const interpreter::BytecodeArrayIterator& iterator, |
| 142 TypeofMode typeof_mode); | 144 TypeofMode typeof_mode); |
| 143 void BuildStoreGlobal(const interpreter::BytecodeArrayIterator& iterator); | 145 void BuildStoreGlobal(const interpreter::BytecodeArrayIterator& iterator); |
| 144 void BuildNamedLoad(const interpreter::BytecodeArrayIterator& iterator); | 146 void BuildNamedLoad(const interpreter::BytecodeArrayIterator& iterator); |
| 145 void BuildKeyedLoad(const interpreter::BytecodeArrayIterator& iterator); | 147 void BuildKeyedLoad(const interpreter::BytecodeArrayIterator& iterator); |
| 146 void BuildNamedStore(const interpreter::BytecodeArrayIterator& iterator); | 148 void BuildNamedStore(const interpreter::BytecodeArrayIterator& iterator); |
| 147 void BuildKeyedStore(const interpreter::BytecodeArrayIterator& iterator); | 149 void BuildKeyedStore(const interpreter::BytecodeArrayIterator& iterator); |
| 148 void BuildCall(const interpreter::BytecodeArrayIterator& iterator); | 150 void BuildCall(const interpreter::BytecodeArrayIterator& iterator); |
| 149 void BuildBinaryOp(const Operator* op, | 151 void BuildBinaryOp(const Operator* op, |
| 150 const interpreter::BytecodeArrayIterator& iterator); | 152 const interpreter::BytecodeArrayIterator& iterator); |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 Node* accumulator_state_values_; | 329 Node* accumulator_state_values_; |
| 328 int register_base_; | 330 int register_base_; |
| 329 int accumulator_base_; | 331 int accumulator_base_; |
| 330 }; | 332 }; |
| 331 | 333 |
| 332 } // namespace compiler | 334 } // namespace compiler |
| 333 } // namespace internal | 335 } // namespace internal |
| 334 } // namespace v8 | 336 } // namespace v8 |
| 335 | 337 |
| 336 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ | 338 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ |
| OLD | NEW |