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

Side by Side Diff: src/interpreter/interpreter.cc

Issue 1860043002: [stubs] Introduce MultiplyStub. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Update. Created 4 years, 8 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 | « src/compiler/js-generic-lowering.cc ('k') | no next file » | 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/interpreter/interpreter.h" 5 #include "src/interpreter/interpreter.h"
6 6
7 #include "src/ast/prettyprinter.h" 7 #include "src/ast/prettyprinter.h"
8 #include "src/code-factory.h" 8 #include "src/code-factory.h"
9 #include "src/compiler.h" 9 #include "src/compiler.h"
10 #include "src/factory.h" 10 #include "src/factory.h"
(...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after
654 // Subtract register <src> from accumulator. 654 // Subtract register <src> from accumulator.
655 void Interpreter::DoSub(InterpreterAssembler* assembler) { 655 void Interpreter::DoSub(InterpreterAssembler* assembler) {
656 DoBinaryOp(CodeFactory::Subtract(isolate_), assembler); 656 DoBinaryOp(CodeFactory::Subtract(isolate_), assembler);
657 } 657 }
658 658
659 659
660 // Mul <src> 660 // Mul <src>
661 // 661 //
662 // Multiply accumulator by register <src>. 662 // Multiply accumulator by register <src>.
663 void Interpreter::DoMul(InterpreterAssembler* assembler) { 663 void Interpreter::DoMul(InterpreterAssembler* assembler) {
664 DoBinaryOp(Runtime::kMultiply, assembler); 664 DoBinaryOp(CodeFactory::Multiply(isolate_), assembler);
665 } 665 }
666 666
667 667
668 // Div <src> 668 // Div <src>
669 // 669 //
670 // Divide register <src> by accumulator. 670 // Divide register <src> by accumulator.
671 void Interpreter::DoDiv(InterpreterAssembler* assembler) { 671 void Interpreter::DoDiv(InterpreterAssembler* assembler) {
672 DoBinaryOp(Runtime::kDivide, assembler); 672 DoBinaryOp(Runtime::kDivide, assembler);
673 } 673 }
674 674
(...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after
1614 // Illegal 1614 // Illegal
1615 // 1615 //
1616 // An invalid bytecode aborting execution if dispatched. 1616 // An invalid bytecode aborting execution if dispatched.
1617 void Interpreter::DoIllegal(InterpreterAssembler* assembler) { 1617 void Interpreter::DoIllegal(InterpreterAssembler* assembler) {
1618 __ Abort(kInvalidBytecode); 1618 __ Abort(kInvalidBytecode);
1619 } 1619 }
1620 1620
1621 } // namespace interpreter 1621 } // namespace interpreter
1622 } // namespace internal 1622 } // namespace internal
1623 } // namespace v8 1623 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/js-generic-lowering.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698