41 void Inspector::DumpObjectType(FILE* out,
Object* obj,
bool print_more) {
43 OS::FPrint(out,
"%p:", reinterpret_cast<void*>(obj));
44 if (obj->IsHeapObject()) {
50 #define FOR_EACH_TYPE(type) \
51 if (obj->Is##type()) { \
52 OS::FPrint(out, " %s", #type); \
static HeapObject * cast(Object *obj)
#define OBJECT_TYPE_LIST(V)
#define HEAP_OBJECT_TYPE_LIST(V)
static void FPrint(FILE *out, const char *format,...)