| 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 #include "src/compiler/bytecode-graph-builder.h" | 5 #include "src/compiler/bytecode-graph-builder.h" |
| 6 | 6 |
| 7 #include "src/compiler/linkage.h" | 7 #include "src/compiler/linkage.h" |
| 8 #include "src/compiler/operator-properties.h" | 8 #include "src/compiler/operator-properties.h" |
| 9 #include "src/interpreter/bytecode-array-iterator.h" | 9 #include "src/interpreter/bytecode-array-iterator.h" |
| 10 | 10 |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 UNIMPLEMENTED(); | 308 UNIMPLEMENTED(); |
| 309 } | 309 } |
| 310 | 310 |
| 311 | 311 |
| 312 void BytecodeGraphBuilder::VisitKeyedStoreICStrict( | 312 void BytecodeGraphBuilder::VisitKeyedStoreICStrict( |
| 313 const interpreter::BytecodeArrayIterator& iterator) { | 313 const interpreter::BytecodeArrayIterator& iterator) { |
| 314 UNIMPLEMENTED(); | 314 UNIMPLEMENTED(); |
| 315 } | 315 } |
| 316 | 316 |
| 317 | 317 |
| 318 void BytecodeGraphBuilder::VisitCreateClosure( |
| 319 const interpreter::BytecodeArrayIterator& iterator) { |
| 320 UNIMPLEMENTED(); |
| 321 } |
| 322 |
| 323 |
| 318 void BytecodeGraphBuilder::VisitCall( | 324 void BytecodeGraphBuilder::VisitCall( |
| 319 const interpreter::BytecodeArrayIterator& iterator) { | 325 const interpreter::BytecodeArrayIterator& iterator) { |
| 320 UNIMPLEMENTED(); | 326 UNIMPLEMENTED(); |
| 321 } | 327 } |
| 322 | 328 |
| 323 | 329 |
| 324 void BytecodeGraphBuilder::VisitCallRuntime( | 330 void BytecodeGraphBuilder::VisitCallRuntime( |
| 325 const interpreter::BytecodeArrayIterator& iterator) { | 331 const interpreter::BytecodeArrayIterator& iterator) { |
| 326 UNIMPLEMENTED(); | 332 UNIMPLEMENTED(); |
| 327 } | 333 } |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 | 634 |
| 629 void BytecodeGraphBuilder::UpdateControlDependencyToLeaveFunction(Node* exit) { | 635 void BytecodeGraphBuilder::UpdateControlDependencyToLeaveFunction(Node* exit) { |
| 630 if (environment()->IsMarkedAsUnreachable()) return; | 636 if (environment()->IsMarkedAsUnreachable()) return; |
| 631 environment()->MarkAsUnreachable(); | 637 environment()->MarkAsUnreachable(); |
| 632 exit_controls_.push_back(exit); | 638 exit_controls_.push_back(exit); |
| 633 } | 639 } |
| 634 | 640 |
| 635 } // namespace compiler | 641 } // namespace compiler |
| 636 } // namespace internal | 642 } // namespace internal |
| 637 } // namespace v8 | 643 } // namespace v8 |
| OLD | NEW |