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

Side by Side Diff: src/type-feedback-vector-inl.h

Issue 1129853002: Removing FLAG_vector_ics. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Comment response. Created 5 years, 7 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/type-feedback-vector.cc ('k') | src/typing.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_TYPE_FEEDBACK_VECTOR_INL_H_ 5 #ifndef V8_TYPE_FEEDBACK_VECTOR_INL_H_
6 #define V8_TYPE_FEEDBACK_VECTOR_INL_H_ 6 #define V8_TYPE_FEEDBACK_VECTOR_INL_H_
7 7
8 #include "src/type-feedback-vector.h" 8 #include "src/type-feedback-vector.h"
9 9
10 namespace v8 { 10 namespace v8 {
11 namespace internal { 11 namespace internal {
12 12
13 int TypeFeedbackVector::ic_metadata_length() const { 13 int TypeFeedbackVector::ic_metadata_length() const {
14 return FLAG_vector_ics ? VectorICComputer::word_count(ICSlots()) : 0; 14 return VectorICComputer::word_count(ICSlots());
15 } 15 }
16 16
17 17
18 Handle<Object> TypeFeedbackVector::UninitializedSentinel(Isolate* isolate) { 18 Handle<Object> TypeFeedbackVector::UninitializedSentinel(Isolate* isolate) {
19 return isolate->factory()->uninitialized_symbol(); 19 return isolate->factory()->uninitialized_symbol();
20 } 20 }
21 21
22 22
23 Handle<Object> TypeFeedbackVector::MegamorphicSentinel(Isolate* isolate) { 23 Handle<Object> TypeFeedbackVector::MegamorphicSentinel(Isolate* isolate) {
24 return isolate->factory()->megamorphic_symbol(); 24 return isolate->factory()->megamorphic_symbol();
(...skipping 11 matching lines...) Expand all
36 } 36 }
37 37
38 38
39 Object* TypeFeedbackVector::RawUninitializedSentinel(Heap* heap) { 39 Object* TypeFeedbackVector::RawUninitializedSentinel(Heap* heap) {
40 return heap->uninitialized_symbol(); 40 return heap->uninitialized_symbol();
41 } 41 }
42 } 42 }
43 } // namespace v8::internal 43 } // namespace v8::internal
44 44
45 #endif // V8_TYPE_FEEDBACK_VECTOR_INL_H_ 45 #endif // V8_TYPE_FEEDBACK_VECTOR_INL_H_
OLDNEW
« no previous file with comments | « src/type-feedback-vector.cc ('k') | src/typing.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698