| 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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 UNIMPLEMENTED(); | 488 UNIMPLEMENTED(); |
| 489 } | 489 } |
| 490 | 490 |
| 491 | 491 |
| 492 void BytecodeGraphBuilder::VisitCallRuntime( | 492 void BytecodeGraphBuilder::VisitCallRuntime( |
| 493 const interpreter::BytecodeArrayIterator& iterator) { | 493 const interpreter::BytecodeArrayIterator& iterator) { |
| 494 UNIMPLEMENTED(); | 494 UNIMPLEMENTED(); |
| 495 } | 495 } |
| 496 | 496 |
| 497 | 497 |
| 498 void BytecodeGraphBuilder::VisitCallJSRuntime( |
| 499 const interpreter::BytecodeArrayIterator& iterator) { |
| 500 UNIMPLEMENTED(); |
| 501 } |
| 502 |
| 503 |
| 498 void BytecodeGraphBuilder::VisitNew( | 504 void BytecodeGraphBuilder::VisitNew( |
| 499 const interpreter::BytecodeArrayIterator& iterator) { | 505 const interpreter::BytecodeArrayIterator& iterator) { |
| 500 UNIMPLEMENTED(); | 506 UNIMPLEMENTED(); |
| 501 } | 507 } |
| 502 | 508 |
| 503 | 509 |
| 504 void BytecodeGraphBuilder::VisitThrow( | 510 void BytecodeGraphBuilder::VisitThrow( |
| 505 const interpreter::BytecodeArrayIterator& iterator) { | 511 const interpreter::BytecodeArrayIterator& iterator) { |
| 506 UNIMPLEMENTED(); | 512 UNIMPLEMENTED(); |
| 507 } | 513 } |
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 916 | 922 |
| 917 void BytecodeGraphBuilder::UpdateControlDependencyToLeaveFunction(Node* exit) { | 923 void BytecodeGraphBuilder::UpdateControlDependencyToLeaveFunction(Node* exit) { |
| 918 if (environment()->IsMarkedAsUnreachable()) return; | 924 if (environment()->IsMarkedAsUnreachable()) return; |
| 919 environment()->MarkAsUnreachable(); | 925 environment()->MarkAsUnreachable(); |
| 920 exit_controls_.push_back(exit); | 926 exit_controls_.push_back(exit); |
| 921 } | 927 } |
| 922 | 928 |
| 923 } // namespace compiler | 929 } // namespace compiler |
| 924 } // namespace internal | 930 } // namespace internal |
| 925 } // namespace v8 | 931 } // namespace v8 |
| OLD | NEW |