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

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

Issue 1894953004: Add HasProperty code stub that tries simple lookups or jumps to runtime otherwise. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
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 <fstream> 7 #include <fstream>
8 8
9 #include "src/ast/prettyprinter.h" 9 #include "src/ast/prettyprinter.h"
10 #include "src/code-factory.h" 10 #include "src/code-factory.h"
(...skipping 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after
1118 void Interpreter::DoTestGreaterThanOrEqual(InterpreterAssembler* assembler) { 1118 void Interpreter::DoTestGreaterThanOrEqual(InterpreterAssembler* assembler) {
1119 DoBinaryOp(CodeFactory::GreaterThanOrEqual(isolate_), assembler); 1119 DoBinaryOp(CodeFactory::GreaterThanOrEqual(isolate_), assembler);
1120 } 1120 }
1121 1121
1122 1122
1123 // TestIn <src> 1123 // TestIn <src>
1124 // 1124 //
1125 // Test if the object referenced by the register operand is a property of the 1125 // Test if the object referenced by the register operand is a property of the
1126 // object referenced by the accumulator. 1126 // object referenced by the accumulator.
1127 void Interpreter::DoTestIn(InterpreterAssembler* assembler) { 1127 void Interpreter::DoTestIn(InterpreterAssembler* assembler) {
1128 DoBinaryOp(Runtime::kHasProperty, assembler); 1128 DoBinaryOp(CodeFactory::HasProperty(isolate_), assembler);
1129 } 1129 }
1130 1130
1131 1131
1132 // TestInstanceOf <src> 1132 // TestInstanceOf <src>
1133 // 1133 //
1134 // Test if the object referenced by the <src> register is an an instance of type 1134 // Test if the object referenced by the <src> register is an an instance of type
1135 // referenced by the accumulator. 1135 // referenced by the accumulator.
1136 void Interpreter::DoTestInstanceOf(InterpreterAssembler* assembler) { 1136 void Interpreter::DoTestInstanceOf(InterpreterAssembler* assembler) {
1137 DoBinaryOp(Runtime::kInstanceOf, assembler); 1137 DoBinaryOp(Runtime::kInstanceOf, assembler);
1138 } 1138 }
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
1681 // Illegal 1681 // Illegal
1682 // 1682 //
1683 // An invalid bytecode aborting execution if dispatched. 1683 // An invalid bytecode aborting execution if dispatched.
1684 void Interpreter::DoIllegal(InterpreterAssembler* assembler) { 1684 void Interpreter::DoIllegal(InterpreterAssembler* assembler) {
1685 __ Abort(kInvalidBytecode); 1685 __ Abort(kInvalidBytecode);
1686 } 1686 }
1687 1687
1688 } // namespace interpreter 1688 } // namespace interpreter
1689 } // namespace internal 1689 } // namespace internal
1690 } // namespace v8 1690 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698