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

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

Issue 9722041: Insert explicit deoptimization for named loads that have "uninitialized" type feedback. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 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/hydrogen.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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 class ForInStatement; 232 class ForInStatement;
233 233
234 234
235 class TypeFeedbackOracle BASE_EMBEDDED { 235 class TypeFeedbackOracle BASE_EMBEDDED {
236 public: 236 public:
237 TypeFeedbackOracle(Handle<Code> code, 237 TypeFeedbackOracle(Handle<Code> code,
238 Handle<Context> global_context, 238 Handle<Context> global_context,
239 Isolate* isolate); 239 Isolate* isolate);
240 240
241 bool LoadIsMonomorphicNormal(Property* expr); 241 bool LoadIsMonomorphicNormal(Property* expr);
242 bool LoadIsUninitialized(Property* expr);
242 bool LoadIsMegamorphicWithTypeInfo(Property* expr); 243 bool LoadIsMegamorphicWithTypeInfo(Property* expr);
243 bool StoreIsMonomorphicNormal(Expression* expr); 244 bool StoreIsMonomorphicNormal(Expression* expr);
244 bool StoreIsMegamorphicWithTypeInfo(Expression* expr); 245 bool StoreIsMegamorphicWithTypeInfo(Expression* expr);
245 bool CallIsMonomorphic(Call* expr); 246 bool CallIsMonomorphic(Call* expr);
246 bool CallNewIsMonomorphic(CallNew* expr); 247 bool CallNewIsMonomorphic(CallNew* expr);
247 bool ObjectLiteralStoreIsMonomorphic(ObjectLiteral::Property* prop); 248 bool ObjectLiteralStoreIsMonomorphic(ObjectLiteral::Property* prop);
248 249
249 bool IsForInFastCase(ForInStatement* expr); 250 bool IsForInFastCase(ForInStatement* expr);
250 251
251 Handle<Map> LoadMonomorphicReceiverType(Property* expr); 252 Handle<Map> LoadMonomorphicReceiverType(Property* expr);
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 Handle<Context> global_context_; 317 Handle<Context> global_context_;
317 Isolate* isolate_; 318 Isolate* isolate_;
318 Handle<UnseededNumberDictionary> dictionary_; 319 Handle<UnseededNumberDictionary> dictionary_;
319 320
320 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle); 321 DISALLOW_COPY_AND_ASSIGN(TypeFeedbackOracle);
321 }; 322 };
322 323
323 } } // namespace v8::internal 324 } } // namespace v8::internal
324 325
325 #endif // V8_TYPE_INFO_H_ 326 #endif // V8_TYPE_INFO_H_
OLDNEW
« no previous file with comments | « src/hydrogen.cc ('k') | src/type-info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698