| 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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 UNIMPLEMENTED(); | 314 UNIMPLEMENTED(); |
| 315 } | 315 } |
| 316 | 316 |
| 317 | 317 |
| 318 void BytecodeGraphBuilder::VisitCreateClosure( | 318 void BytecodeGraphBuilder::VisitCreateClosure( |
| 319 const interpreter::BytecodeArrayIterator& iterator) { | 319 const interpreter::BytecodeArrayIterator& iterator) { |
| 320 UNIMPLEMENTED(); | 320 UNIMPLEMENTED(); |
| 321 } | 321 } |
| 322 | 322 |
| 323 | 323 |
| 324 void BytecodeGraphBuilder::VisitPushContext( |
| 325 const interpreter::BytecodeArrayIterator& iterator) { |
| 326 UNIMPLEMENTED(); |
| 327 } |
| 328 |
| 329 |
| 330 void BytecodeGraphBuilder::VisitPopContext( |
| 331 const interpreter::BytecodeArrayIterator& iterator) { |
| 332 UNIMPLEMENTED(); |
| 333 } |
| 334 |
| 335 |
| 324 void BytecodeGraphBuilder::VisitCall( | 336 void BytecodeGraphBuilder::VisitCall( |
| 325 const interpreter::BytecodeArrayIterator& iterator) { | 337 const interpreter::BytecodeArrayIterator& iterator) { |
| 326 UNIMPLEMENTED(); | 338 UNIMPLEMENTED(); |
| 327 } | 339 } |
| 328 | 340 |
| 329 | 341 |
| 330 void BytecodeGraphBuilder::VisitCallRuntime( | 342 void BytecodeGraphBuilder::VisitCallRuntime( |
| 331 const interpreter::BytecodeArrayIterator& iterator) { | 343 const interpreter::BytecodeArrayIterator& iterator) { |
| 332 UNIMPLEMENTED(); | 344 UNIMPLEMENTED(); |
| 333 } | 345 } |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 | 646 |
| 635 void BytecodeGraphBuilder::UpdateControlDependencyToLeaveFunction(Node* exit) { | 647 void BytecodeGraphBuilder::UpdateControlDependencyToLeaveFunction(Node* exit) { |
| 636 if (environment()->IsMarkedAsUnreachable()) return; | 648 if (environment()->IsMarkedAsUnreachable()) return; |
| 637 environment()->MarkAsUnreachable(); | 649 environment()->MarkAsUnreachable(); |
| 638 exit_controls_.push_back(exit); | 650 exit_controls_.push_back(exit); |
| 639 } | 651 } |
| 640 | 652 |
| 641 } // namespace compiler | 653 } // namespace compiler |
| 642 } // namespace internal | 654 } // namespace internal |
| 643 } // namespace v8 | 655 } // namespace v8 |
| OLD | NEW |