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

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

Issue 1410003003: [Interpreter] Add support for JS runtime calls. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@int_api_builtin
Patch Set: Rebased 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/compiler/interpreter-assembler.cc » ('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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « no previous file | src/compiler/interpreter-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698