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

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

Issue 1410953003: [Interpreter] Adds delete operator to interpreter. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebased the patch Created 5 years, 1 month 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/interpreter/bytecodes.h ('k') | src/interpreter/interpreter.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 #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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 // Generates code to perform a namedproperty store via |ic|. 78 // Generates code to perform a namedproperty store via |ic|.
79 void DoStoreIC(Callable ic, compiler::InterpreterAssembler* assembler); 79 void DoStoreIC(Callable ic, compiler::InterpreterAssembler* assembler);
80 80
81 // Generates code to perform a keyed property store via |ic|. 81 // Generates code to perform a keyed property store via |ic|.
82 void DoKeyedStoreIC(Callable ic, compiler::InterpreterAssembler* assembler); 82 void DoKeyedStoreIC(Callable ic, compiler::InterpreterAssembler* assembler);
83 83
84 // Generates code ro create a literal via |function_id|. 84 // Generates code ro create a literal via |function_id|.
85 void DoCreateLiteral(Runtime::FunctionId function_id, 85 void DoCreateLiteral(Runtime::FunctionId function_id,
86 compiler::InterpreterAssembler* assembler); 86 compiler::InterpreterAssembler* assembler);
87 87
88 // Generates code to perform delete via function_id.
89 void DoDelete(Runtime::FunctionId function_id,
90 compiler::InterpreterAssembler* assembler);
91
88 bool IsInterpreterTableInitialized(Handle<FixedArray> handler_table); 92 bool IsInterpreterTableInitialized(Handle<FixedArray> handler_table);
89 93
90 Isolate* isolate_; 94 Isolate* isolate_;
91 95
92 DISALLOW_COPY_AND_ASSIGN(Interpreter); 96 DISALLOW_COPY_AND_ASSIGN(Interpreter);
93 }; 97 };
94 98
95 } // namespace interpreter 99 } // namespace interpreter
96 } // namespace internal 100 } // namespace internal
97 } // namespace v8 101 } // namespace v8
98 102
99 #endif // V8_INTERPRETER_INTERPRETER_H_ 103 #endif // V8_INTERPRETER_INTERPRETER_H_
OLDNEW
« no previous file with comments | « src/interpreter/bytecodes.h ('k') | src/interpreter/interpreter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698