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

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

Issue 1369123002: [Interpreter] Add interpreter support for compare ops and ToBoolean. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Incorporate review feedback from mstarzinger and rmcilroy. Created 5 years, 2 months 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 | « BUILD.gn ('k') | src/interpreter/bytecode-array-builder.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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 UNIMPLEMENTED(); 361 UNIMPLEMENTED();
362 } 362 }
363 363
364 364
365 void BytecodeGraphBuilder::VisitTestGreaterThan( 365 void BytecodeGraphBuilder::VisitTestGreaterThan(
366 const interpreter::BytecodeArrayIterator& iterator) { 366 const interpreter::BytecodeArrayIterator& iterator) {
367 UNIMPLEMENTED(); 367 UNIMPLEMENTED();
368 } 368 }
369 369
370 370
371 void BytecodeGraphBuilder::VisitTestLessThanEqual( 371 void BytecodeGraphBuilder::VisitTestLessThanOrEqual(
372 const interpreter::BytecodeArrayIterator& iterator) { 372 const interpreter::BytecodeArrayIterator& iterator) {
373 UNIMPLEMENTED(); 373 UNIMPLEMENTED();
374 } 374 }
375 375
376 376
377 void BytecodeGraphBuilder::VisitTestGreaterThanEqual( 377 void BytecodeGraphBuilder::VisitTestGreaterThanOrEqual(
378 const interpreter::BytecodeArrayIterator& iterator) { 378 const interpreter::BytecodeArrayIterator& iterator) {
379 UNIMPLEMENTED(); 379 UNIMPLEMENTED();
380 } 380 }
381 381
382 382
383 void BytecodeGraphBuilder::VisitTestIn( 383 void BytecodeGraphBuilder::VisitTestIn(
384 const interpreter::BytecodeArrayIterator& iterator) { 384 const interpreter::BytecodeArrayIterator& iterator) {
385 UNIMPLEMENTED(); 385 UNIMPLEMENTED();
386 } 386 }
387 387
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 538
539 void BytecodeGraphBuilder::UpdateControlDependencyToLeaveFunction(Node* exit) { 539 void BytecodeGraphBuilder::UpdateControlDependencyToLeaveFunction(Node* exit) {
540 if (environment()->IsMarkedAsUnreachable()) return; 540 if (environment()->IsMarkedAsUnreachable()) return;
541 environment()->MarkAsUnreachable(); 541 environment()->MarkAsUnreachable();
542 exit_controls_.push_back(exit); 542 exit_controls_.push_back(exit);
543 } 543 }
544 544
545 } // namespace compiler 545 } // namespace compiler
546 } // namespace internal 546 } // namespace internal
547 } // namespace v8 547 } // namespace v8
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/interpreter/bytecode-array-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698