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

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

Issue 2190293003: [Interpreter] Collect type feedback for 'new' in the bytecode handler (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updated cctest.status and mjsunit.status Created 4 years, 4 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/interpreter/interpreter.cc ('k') | src/interpreter/interpreter-assembler.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_ASSEMBLER_H_ 5 #ifndef V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_
6 #define V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_ 6 #define V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/builtins/builtins.h" 9 #include "src/builtins/builtins.h"
10 #include "src/code-stub-assembler.h" 10 #include "src/code-stub-assembler.h"
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 110
111 // Call constructor |constructor| with |arg_count| arguments (not 111 // Call constructor |constructor| with |arg_count| arguments (not
112 // including receiver) and the first argument located at 112 // including receiver) and the first argument located at
113 // |first_arg|. The |new_target| is the same as the 113 // |first_arg|. The |new_target| is the same as the
114 // |constructor| for the new keyword, but differs for the super 114 // |constructor| for the new keyword, but differs for the super
115 // keyword. 115 // keyword.
116 compiler::Node* CallConstruct(compiler::Node* constructor, 116 compiler::Node* CallConstruct(compiler::Node* constructor,
117 compiler::Node* context, 117 compiler::Node* context,
118 compiler::Node* new_target, 118 compiler::Node* new_target,
119 compiler::Node* first_arg, 119 compiler::Node* first_arg,
120 compiler::Node* arg_count); 120 compiler::Node* arg_count,
121 compiler::Node* slot_id,
122 compiler::Node* type_feedback_vector);
121 123
122 // Call runtime function with |arg_count| arguments and the first argument 124 // Call runtime function with |arg_count| arguments and the first argument
123 // located at |first_arg|. 125 // located at |first_arg|.
124 compiler::Node* CallRuntimeN(compiler::Node* function_id, 126 compiler::Node* CallRuntimeN(compiler::Node* function_id,
125 compiler::Node* context, 127 compiler::Node* context,
126 compiler::Node* first_arg, 128 compiler::Node* first_arg,
127 compiler::Node* arg_count, int return_size = 1); 129 compiler::Node* arg_count, int return_size = 1);
128 130
129 // Jump relative to the current bytecode by |jump_offset|. 131 // Jump relative to the current bytecode by |jump_offset|.
130 compiler::Node* Jump(compiler::Node* jump_offset); 132 compiler::Node* Jump(compiler::Node* jump_offset);
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 compiler::Node* stack_pointer_before_call_; 282 compiler::Node* stack_pointer_before_call_;
281 283
282 DISALLOW_COPY_AND_ASSIGN(InterpreterAssembler); 284 DISALLOW_COPY_AND_ASSIGN(InterpreterAssembler);
283 }; 285 };
284 286
285 } // namespace interpreter 287 } // namespace interpreter
286 } // namespace internal 288 } // namespace internal
287 } // namespace v8 289 } // namespace v8
288 290
289 #endif // V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_ 291 #endif // V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/interpreter/interpreter.cc ('k') | src/interpreter/interpreter-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698