Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(401)

Side by Side Diff: src/compiler/bytecode-graph-builder.cc

Issue 1410953003: [Interpreter] Adds delete operator to interpreter. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebased the patch Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/interpreter/bytecode-array-builder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | src/interpreter/bytecode-array-builder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698