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

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

Issue 12390031: Unify grow mode and stub kind (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review feedback Created 7 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 | Annotate | Revision Log
« no previous file with comments | « src/stub-cache.cc ('k') | 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 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 bool StoreIsPolymorphic(TypeFeedbackId ast_id); 248 bool StoreIsPolymorphic(TypeFeedbackId ast_id);
249 bool CallIsMonomorphic(Call* expr); 249 bool CallIsMonomorphic(Call* expr);
250 bool CallNewIsMonomorphic(CallNew* expr); 250 bool CallNewIsMonomorphic(CallNew* expr);
251 bool ObjectLiteralStoreIsMonomorphic(ObjectLiteral::Property* prop); 251 bool ObjectLiteralStoreIsMonomorphic(ObjectLiteral::Property* prop);
252 252
253 bool IsForInFastCase(ForInStatement* expr); 253 bool IsForInFastCase(ForInStatement* expr);
254 254
255 Handle<Map> LoadMonomorphicReceiverType(Property* expr); 255 Handle<Map> LoadMonomorphicReceiverType(Property* expr);
256 Handle<Map> StoreMonomorphicReceiverType(TypeFeedbackId ast_id); 256 Handle<Map> StoreMonomorphicReceiverType(TypeFeedbackId ast_id);
257 257
258 KeyedAccessStoreMode GetStoreMode(TypeFeedbackId ast_id);
259
258 void LoadReceiverTypes(Property* expr, 260 void LoadReceiverTypes(Property* expr,
259 Handle<String> name, 261 Handle<String> name,
260 SmallMapList* types); 262 SmallMapList* types);
261 void StoreReceiverTypes(Assignment* expr, 263 void StoreReceiverTypes(Assignment* expr,
262 Handle<String> name, 264 Handle<String> name,
263 SmallMapList* types); 265 SmallMapList* types);
264 void CallReceiverTypes(Call* expr, 266 void CallReceiverTypes(Call* expr,
265 Handle<String> name, 267 Handle<String> name,
266 CallKind call_kind, 268 CallKind call_kind,
267 SmallMapList* types); 269 SmallMapList* types);
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 Isolate* isolate_; 338 Isolate* isolate_;
337 Handle<UnseededNumberDictionary> dictionary_; 339 Handle<UnseededNumberDictionary> dictionary_;
338 Zone* zone_; 340 Zone* zone_;
339 341
340 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle); 342 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle);
341 }; 343 };
342 344
343 } } // namespace v8::internal 345 } } // namespace v8::internal
344 346
345 #endif // V8_TYPE_INFO_H_ 347 #endif // V8_TYPE_INFO_H_
OLDNEW
« no previous file with comments | « src/stub-cache.cc ('k') | src/type-info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698