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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 UNIMPLEMENTED(); | 505 UNIMPLEMENTED(); |
506 } | 506 } |
507 | 507 |
508 | 508 |
509 void BytecodeGraphBuilder::VisitTypeOf( | 509 void BytecodeGraphBuilder::VisitTypeOf( |
510 const interpreter::BytecodeArrayIterator& iterator) { | 510 const interpreter::BytecodeArrayIterator& iterator) { |
511 UNIMPLEMENTED(); | 511 UNIMPLEMENTED(); |
512 } | 512 } |
513 | 513 |
514 | 514 |
| 515 void BytecodeGraphBuilder::VisitDeletePropertyStrict( |
| 516 const interpreter::BytecodeArrayIterator& iterator) { |
| 517 UNIMPLEMENTED(); |
| 518 } |
| 519 |
| 520 |
| 521 void BytecodeGraphBuilder::VisitDeletePropertySloppy( |
| 522 const interpreter::BytecodeArrayIterator& iterator) { |
| 523 UNIMPLEMENTED(); |
| 524 } |
| 525 |
| 526 |
515 void BytecodeGraphBuilder::VisitTestEqual( | 527 void BytecodeGraphBuilder::VisitTestEqual( |
516 const interpreter::BytecodeArrayIterator& iterator) { | 528 const interpreter::BytecodeArrayIterator& iterator) { |
517 UNIMPLEMENTED(); | 529 UNIMPLEMENTED(); |
518 } | 530 } |
519 | 531 |
520 | 532 |
521 void BytecodeGraphBuilder::VisitTestNotEqual( | 533 void BytecodeGraphBuilder::VisitTestNotEqual( |
522 const interpreter::BytecodeArrayIterator& iterator) { | 534 const interpreter::BytecodeArrayIterator& iterator) { |
523 UNIMPLEMENTED(); | 535 UNIMPLEMENTED(); |
524 } | 536 } |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
754 | 766 |
755 void BytecodeGraphBuilder::UpdateControlDependencyToLeaveFunction(Node* exit) { | 767 void BytecodeGraphBuilder::UpdateControlDependencyToLeaveFunction(Node* exit) { |
756 if (environment()->IsMarkedAsUnreachable()) return; | 768 if (environment()->IsMarkedAsUnreachable()) return; |
757 environment()->MarkAsUnreachable(); | 769 environment()->MarkAsUnreachable(); |
758 exit_controls_.push_back(exit); | 770 exit_controls_.push_back(exit); |
759 } | 771 } |
760 | 772 |
761 } // namespace compiler | 773 } // namespace compiler |
762 } // namespace internal | 774 } // namespace internal |
763 } // namespace v8 | 775 } // namespace v8 |
OLD | NEW |