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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 const interpreter::BytecodeArrayIterator& iterator); | 140 const interpreter::BytecodeArrayIterator& iterator); |
141 void BuildCreateArguments(CreateArgumentsParameters::Type type, | 141 void BuildCreateArguments(CreateArgumentsParameters::Type type, |
142 const interpreter::BytecodeArrayIterator& iterator); | 142 const interpreter::BytecodeArrayIterator& iterator); |
143 void BuildLoadGlobal(const interpreter::BytecodeArrayIterator& iterator, | 143 void BuildLoadGlobal(const interpreter::BytecodeArrayIterator& iterator, |
144 TypeofMode typeof_mode); | 144 TypeofMode typeof_mode); |
145 void BuildStoreGlobal(const interpreter::BytecodeArrayIterator& iterator); | 145 void BuildStoreGlobal(const interpreter::BytecodeArrayIterator& iterator); |
146 void BuildNamedLoad(const interpreter::BytecodeArrayIterator& iterator); | 146 void BuildNamedLoad(const interpreter::BytecodeArrayIterator& iterator); |
147 void BuildKeyedLoad(const interpreter::BytecodeArrayIterator& iterator); | 147 void BuildKeyedLoad(const interpreter::BytecodeArrayIterator& iterator); |
148 void BuildNamedStore(const interpreter::BytecodeArrayIterator& iterator); | 148 void BuildNamedStore(const interpreter::BytecodeArrayIterator& iterator); |
149 void BuildKeyedStore(const interpreter::BytecodeArrayIterator& iterator); | 149 void BuildKeyedStore(const interpreter::BytecodeArrayIterator& iterator); |
| 150 void BuildLdaLookupSlot(TypeofMode typeof_mode, |
| 151 const interpreter::BytecodeArrayIterator& iterator); |
| 152 void BuildStaLookupSlot(LanguageMode language_mode, |
| 153 const interpreter::BytecodeArrayIterator& iterator); |
150 void BuildCall(const interpreter::BytecodeArrayIterator& iterator); | 154 void BuildCall(const interpreter::BytecodeArrayIterator& iterator); |
151 void BuildBinaryOp(const Operator* op, | 155 void BuildBinaryOp(const Operator* op, |
152 const interpreter::BytecodeArrayIterator& iterator); | 156 const interpreter::BytecodeArrayIterator& iterator); |
153 void BuildCompareOp(const Operator* op, | 157 void BuildCompareOp(const Operator* op, |
154 const interpreter::BytecodeArrayIterator& iterator); | 158 const interpreter::BytecodeArrayIterator& iterator); |
155 void BuildDelete(const interpreter::BytecodeArrayIterator& iterator); | 159 void BuildDelete(const interpreter::BytecodeArrayIterator& iterator); |
156 void BuildCastOperator(const Operator* js_op, | 160 void BuildCastOperator(const Operator* js_op, |
157 const interpreter::BytecodeArrayIterator& iterator); | 161 const interpreter::BytecodeArrayIterator& iterator); |
158 | 162 |
159 // Control flow plumbing. | 163 // Control flow plumbing. |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 Node* accumulator_state_values_; | 333 Node* accumulator_state_values_; |
330 int register_base_; | 334 int register_base_; |
331 int accumulator_base_; | 335 int accumulator_base_; |
332 }; | 336 }; |
333 | 337 |
334 } // namespace compiler | 338 } // namespace compiler |
335 } // namespace internal | 339 } // namespace internal |
336 } // namespace v8 | 340 } // namespace v8 |
337 | 341 |
338 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ | 342 #endif // V8_COMPILER_BYTECODE_GRAPH_BUILDER_H_ |
OLD | NEW |