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

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

Issue 1254873002: [interpreter] A couple of minor tweaks to BytecodeArray. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 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/heap/heap.cc ('k') | src/objects.h » ('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 #ifndef V8_INTERPRETER_INTERPRETER_H_ 5 #ifndef V8_INTERPRETER_INTERPRETER_H_
6 #define V8_INTERPRETER_INTERPRETER_H_ 6 #define V8_INTERPRETER_INTERPRETER_H_
7 7
8 // Clients of this interface shouldn't depend on lots of interpreter internals. 8 // Clients of this interface shouldn't depend on lots of interpreter internals.
9 // Do not include anything from src/interpreter other than 9 // Do not include anything from src/interpreter other than
10 // src/interpreter/bytecodes.h here! 10 // src/interpreter/bytecodes.h here!
(...skipping 12 matching lines...) Expand all
23 23
24 namespace interpreter { 24 namespace interpreter {
25 25
26 class Interpreter { 26 class Interpreter {
27 public: 27 public:
28 explicit Interpreter(Isolate* isolate); 28 explicit Interpreter(Isolate* isolate);
29 virtual ~Interpreter() {} 29 virtual ~Interpreter() {}
30 30
31 void Initialize(bool create_heap_objects); 31 void Initialize(bool create_heap_objects);
32 32
33 static bool MakeBytecode(CompilationInfo* info);
34
35 private: 33 private:
36 // Bytecode handler generator functions. 34 // Bytecode handler generator functions.
37 #define DECLARE_BYTECODE_HANDLER_GENERATOR(Name, _) \ 35 #define DECLARE_BYTECODE_HANDLER_GENERATOR(Name, _) \
38 void Do##Name(compiler::InterpreterAssembler* assembler); 36 void Do##Name(compiler::InterpreterAssembler* assembler);
39 BYTECODE_LIST(DECLARE_BYTECODE_HANDLER_GENERATOR) 37 BYTECODE_LIST(DECLARE_BYTECODE_HANDLER_GENERATOR)
40 #undef DECLARE_BYTECODE_HANDLER_GENERATOR 38 #undef DECLARE_BYTECODE_HANDLER_GENERATOR
41 39
42 Isolate* isolate_; 40 Isolate* isolate_;
43 41
44 DISALLOW_COPY_AND_ASSIGN(Interpreter); 42 DISALLOW_COPY_AND_ASSIGN(Interpreter);
45 }; 43 };
46 44
47 } // namespace interpreter 45 } // namespace interpreter
48 } // namespace internal 46 } // namespace internal
49 } // namespace v8 47 } // namespace v8
50 48
51 #endif // V8_INTERPRETER_INTERPRETER_H_ 49 #endif // V8_INTERPRETER_INTERPRETER_H_
OLDNEW
« no previous file with comments | « src/heap/heap.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698