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

Side by Side Diff: src/interpreter/bytecode-array-builder.h

Issue 2755973002: [type profile] Collect return types. (Closed)
Patch Set: Rebase. Created 3 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/feedback-vector.cc ('k') | src/interpreter/bytecode-array-builder.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_BYTECODE_ARRAY_BUILDER_H_ 5 #ifndef V8_INTERPRETER_BYTECODE_ARRAY_BUILDER_H_
6 #define V8_INTERPRETER_BYTECODE_ARRAY_BUILDER_H_ 6 #define V8_INTERPRETER_BYTECODE_ARRAY_BUILDER_H_
7 7
8 #include "src/ast/ast.h" 8 #include "src/ast/ast.h"
9 #include "src/base/compiler-specific.h" 9 #include "src/base/compiler-specific.h"
10 #include "src/globals.h" 10 #include "src/globals.h"
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 134
135 // Store properties. Flag for NeedsSetFunctionName() should 135 // Store properties. Flag for NeedsSetFunctionName() should
136 // be in the accumulator. 136 // be in the accumulator.
137 BytecodeArrayBuilder& StoreDataPropertyInLiteral( 137 BytecodeArrayBuilder& StoreDataPropertyInLiteral(
138 Register object, Register name, DataPropertyInLiteralFlags flags, 138 Register object, Register name, DataPropertyInLiteralFlags flags,
139 int feedback_slot); 139 int feedback_slot);
140 140
141 // Collect type information for developer tools. The value for which we 141 // Collect type information for developer tools. The value for which we
142 // record the type is stored in the accumulator. 142 // record the type is stored in the accumulator.
143 // TODO(franzih): Do not pass the name, instead use the source position. 143 // TODO(franzih): Do not pass the name, instead use the source position.
144 BytecodeArrayBuilder& CollectTypeProfile(Register name, int feedback_slot); 144 BytecodeArrayBuilder& CollectTypeProfile(int position, int feedback_slot);
145 145
146 // Store a property named by a property name. The value to be stored should be 146 // Store a property named by a property name. The value to be stored should be
147 // in the accumulator. 147 // in the accumulator.
148 BytecodeArrayBuilder& StoreNamedProperty(Register object, 148 BytecodeArrayBuilder& StoreNamedProperty(Register object,
149 const AstRawString* name, 149 const AstRawString* name,
150 int feedback_slot, 150 int feedback_slot,
151 LanguageMode language_mode); 151 LanguageMode language_mode);
152 // Store a property named by a constant from the constant pool. The value to 152 // Store a property named by a constant from the constant pool. The value to
153 // be stored should be in the accumulator. 153 // be stored should be in the accumulator.
154 BytecodeArrayBuilder& StoreNamedProperty(Register object, 154 BytecodeArrayBuilder& StoreNamedProperty(Register object,
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 static int const kNoFeedbackSlot = 0; 490 static int const kNoFeedbackSlot = 0;
491 491
492 DISALLOW_COPY_AND_ASSIGN(BytecodeArrayBuilder); 492 DISALLOW_COPY_AND_ASSIGN(BytecodeArrayBuilder);
493 }; 493 };
494 494
495 } // namespace interpreter 495 } // namespace interpreter
496 } // namespace internal 496 } // namespace internal
497 } // namespace v8 497 } // namespace v8
498 498
499 #endif // V8_INTERPRETER_BYTECODE_ARRAY_BUILDER_H_ 499 #endif // V8_INTERPRETER_BYTECODE_ARRAY_BUILDER_H_
OLDNEW
« no previous file with comments | « src/feedback-vector.cc ('k') | src/interpreter/bytecode-array-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698