Index: src/disassembler.cc |
=================================================================== |
--- src/disassembler.cc (revision 2285) |
+++ src/disassembler.cc (working copy) |
@@ -239,6 +239,10 @@ |
InlineCacheState ic_state = code->ic_state(); |
out.AddFormatted(" %s, %s", Code::Kind2String(kind), |
Code::ICState2String(ic_state)); |
+ if (ic_state == MONOMORPHIC) { |
+ PropertyType type = code->type(); |
+ out.AddFormatted(", %s", Code::PropertyType2String(type)); |
+ } |
if (kind == Code::CALL_IC) { |
out.AddFormatted(", argc = %d", code->arguments_count()); |
} |