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

Side by Side Diff: src/type-info.h

Issue 820673002: Follow-on to hydrogen fix keyed loads with string keys for vector ics. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years 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 | « no previous file | src/type-info.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_INFO_H_ 5 #ifndef V8_TYPE_INFO_H_
6 #define V8_TYPE_INFO_H_ 6 #define V8_TYPE_INFO_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 #include "src/types.h" 10 #include "src/types.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 44
45 void PropertyReceiverTypes(TypeFeedbackId id, Handle<String> name, 45 void PropertyReceiverTypes(TypeFeedbackId id, Handle<String> name,
46 SmallMapList* receiver_types); 46 SmallMapList* receiver_types);
47 void PropertyReceiverTypes(FeedbackVectorICSlot slot, Handle<String> name, 47 void PropertyReceiverTypes(FeedbackVectorICSlot slot, Handle<String> name,
48 SmallMapList* receiver_types); 48 SmallMapList* receiver_types);
49 void KeyedPropertyReceiverTypes(TypeFeedbackId id, 49 void KeyedPropertyReceiverTypes(TypeFeedbackId id,
50 SmallMapList* receiver_types, 50 SmallMapList* receiver_types,
51 bool* is_string, 51 bool* is_string,
52 IcCheckType* key_type); 52 IcCheckType* key_type);
53 void KeyedPropertyReceiverTypes(FeedbackVectorICSlot slot, 53 void KeyedPropertyReceiverTypes(FeedbackVectorICSlot slot,
54 SmallMapList* receiver_types, 54 SmallMapList* receiver_types, bool* is_string,
55 bool* is_string); 55 IcCheckType* key_type);
56 void AssignmentReceiverTypes(TypeFeedbackId id, 56 void AssignmentReceiverTypes(TypeFeedbackId id,
57 Handle<String> name, 57 Handle<String> name,
58 SmallMapList* receiver_types); 58 SmallMapList* receiver_types);
59 void KeyedAssignmentReceiverTypes(TypeFeedbackId id, 59 void KeyedAssignmentReceiverTypes(TypeFeedbackId id,
60 SmallMapList* receiver_types, 60 SmallMapList* receiver_types,
61 KeyedAccessStoreMode* store_mode, 61 KeyedAccessStoreMode* store_mode,
62 IcCheckType* key_type); 62 IcCheckType* key_type);
63 void CountReceiverTypes(TypeFeedbackId id, 63 void CountReceiverTypes(TypeFeedbackId id,
64 SmallMapList* receiver_types); 64 SmallMapList* receiver_types);
65 65
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 Zone* zone_; 140 Zone* zone_;
141 Handle<UnseededNumberDictionary> dictionary_; 141 Handle<UnseededNumberDictionary> dictionary_;
142 Handle<TypeFeedbackVector> feedback_vector_; 142 Handle<TypeFeedbackVector> feedback_vector_;
143 143
144 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle); 144 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle);
145 }; 145 };
146 146
147 } } // namespace v8::internal 147 } } // namespace v8::internal
148 148
149 #endif // V8_TYPE_INFO_H_ 149 #endif // V8_TYPE_INFO_H_
OLDNEW
« no previous file with comments | « no previous file | src/type-info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698