Revision: 15236
Author: [email protected]
Date: Thu Jun 20 05:07:56 2013
Log: Fix the flags used to probe the megamorphic code cache.
[email protected]
Review URL: https://chromiumcodereview.appspot.com/17448017
http://code.google.com/p/v8/source/detail?r=15236
Modified:
/branches/bleeding_edge/src/type-info.cc
=======================================
--- /branches/bleeding_edge/src/type-info.cc Fri Jun 14 10:02:39 2013
+++ /branches/bleeding_edge/src/type-info.cc Thu Jun 20 05:07:56 2013
@@ -247,7 +247,9 @@
void TypeFeedbackOracle::LoadReceiverTypes(Property* expr,
Handle<String> name,
SmallMapList* types) {
- Code::Flags flags = Code::ComputeMonomorphicFlags(Code::LOAD_IC);
+ Code::Flags flags = Code::ComputeFlags(
+ Code::STUB, MONOMORPHIC, Code::kNoExtraICState,
+ Code::NORMAL, Code::LOAD_IC);
CollectReceiverTypes(expr->PropertyFeedbackId(), name, flags, types);
}
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.