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

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

Issue 1827143002: Revert of [Interpreter] Remove separate Ignition snapshot. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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/base.isolate ('k') | src/isolate.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/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 10 matching lines...) Expand all
21 21
22 using compiler::Node; 22 using compiler::Node;
23 23
24 #define __ assembler-> 24 #define __ assembler->
25 25
26 Interpreter::Interpreter(Isolate* isolate) : isolate_(isolate) { 26 Interpreter::Interpreter(Isolate* isolate) : isolate_(isolate) {
27 memset(dispatch_table_, 0, sizeof(dispatch_table_)); 27 memset(dispatch_table_, 0, sizeof(dispatch_table_));
28 } 28 }
29 29
30 void Interpreter::Initialize() { 30 void Interpreter::Initialize() {
31 DCHECK(FLAG_ignition);
31 if (IsDispatchTableInitialized()) return; 32 if (IsDispatchTableInitialized()) return;
32 Zone zone; 33 Zone zone;
33 HandleScope scope(isolate_); 34 HandleScope scope(isolate_);
34 35
35 // Generate bytecode handlers for all bytecodes and scales. 36 // Generate bytecode handlers for all bytecodes and scales.
36 for (OperandScale operand_scale = OperandScale::kSingle; 37 for (OperandScale operand_scale = OperandScale::kSingle;
37 operand_scale <= OperandScale::kMaxValid; 38 operand_scale <= OperandScale::kMaxValid;
38 operand_scale = Bytecodes::NextOperandScale(operand_scale)) { 39 operand_scale = Bytecodes::NextOperandScale(operand_scale)) {
39 #define GENERATE_CODE(Name, ...) \ 40 #define GENERATE_CODE(Name, ...) \
40 { \ 41 { \
(...skipping 1575 matching lines...) Expand 10 before | Expand all | Expand 10 after
1616 // Illegal 1617 // Illegal
1617 // 1618 //
1618 // An invalid bytecode aborting execution if dispatched. 1619 // An invalid bytecode aborting execution if dispatched.
1619 void Interpreter::DoIllegal(InterpreterAssembler* assembler) { 1620 void Interpreter::DoIllegal(InterpreterAssembler* assembler) {
1620 __ Abort(kInvalidBytecode); 1621 __ Abort(kInvalidBytecode);
1621 } 1622 }
1622 1623
1623 } // namespace interpreter 1624 } // namespace interpreter
1624 } // namespace internal 1625 } // namespace internal
1625 } // namespace v8 1626 } // namespace v8
OLDNEW
« no previous file with comments | « src/base.isolate ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698