Chromium Code Reviews| Index: src/objects.cc | 
| diff --git a/src/objects.cc b/src/objects.cc | 
| index c874ee3c08681a6b1b51398e9d292e2423426636..57732ea02684889828df135e5104f3fa1211a590 100644 | 
| --- a/src/objects.cc | 
| +++ b/src/objects.cc | 
| @@ -33,6 +33,7 @@ | 
| #include "arguments.h" | 
| #include "bootstrapper.h" | 
| #include "codegen.h" | 
| +#include "code-stubs.h" | 
| #include "cpu-profiler.h" | 
| #include "debug.h" | 
| #include "deoptimizer.h" | 
| @@ -11135,6 +11136,10 @@ void Code::PrintExtraICState(FILE* out, Kind kind, ExtraICState extra) { | 
| void Code::Disassemble(const char* name, FILE* out) { | 
| PrintF(out, "kind = %s\n", Kind2String(kind())); | 
| + if (has_major_key()) { | 
| + PrintF(out, "major_key = %s\n", | 
| + CodeStub::MajorName(CodeStub::GetMajorKey(this), true)); | 
| 
 
Jakob Kummerow
2013/11/21 15:52:14
nit: indentation (align 'CodeStub' with 'out')
 
Igor Sheludko
2013/11/21 16:54:58
Done.
 
 | 
| + } | 
| if (is_inline_cache_stub()) { | 
| PrintF(out, "ic_state = %s\n", ICState2String(ic_state())); | 
| PrintExtraICState(out, kind(), needs_extended_extra_ic_state(kind()) ? |