Revision: 13825
Author: [email protected]
Date: Tue Mar 5 06:11:56 2013
Log: Print whether a HCheckPrototypeMaps is omitted.
[email protected]
Review URL: https://codereview.chromium.org/12425005
http://code.google.com/p/v8/source/detail?r=13825
Modified:
/branches/bleeding_edge/src/hydrogen-instructions.cc
=======================================
--- /branches/bleeding_edge/src/hydrogen-instructions.cc Tue Mar 5
01:14:28 2013
+++ /branches/bleeding_edge/src/hydrogen-instructions.cc Tue Mar 5
06:11:56 2013
@@ -1412,8 +1412,9 @@
void HCheckPrototypeMaps::PrintDataTo(StringStream* stream) {
- stream->Add("[receiver_prototype=%p,holder=%p]",
- *prototypes_.first(), *prototypes_.last());
+ stream->Add("[receiver_prototype=%p,holder=%p]%s",
+ *prototypes_.first(), *prototypes_.last(),
+ CanOmitPrototypeChecks() ? " (omitted)" : "");
}
--
--
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.