2 * Copyright (c) 1998-2010 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 #include <sys/sysctl.h>
31 #include <libkern/c++/OSContainers.h>
32 #include <libkern/c++/OSCPPDebug.h>
34 #include <IOKit/IOKitDebug.h>
35 #include <IOKit/IOLib.h>
36 #include <IOKit/assert.h>
37 #include <IOKit/IODeviceTreeSupport.h>
38 #include <IOKit/IOService.h>
41 #define DEBUG_INIT_VALUE IOKITDEBUG
43 #define DEBUG_INIT_VALUE 0
46 SInt64 gIOKitDebug
= DEBUG_INIT_VALUE
;
47 SInt64 gIOKitTrace
= 0;
49 SYSCTL_QUAD(_debug
, OID_AUTO
, iokit
, CTLFLAG_RW
| CTLFLAG_LOCKED
, &gIOKitDebug
, "boot_arg io");
50 SYSCTL_QUAD(_debug
, OID_AUTO
, iotrace
, CTLFLAG_RW
| CTLFLAG_LOCKED
, &gIOKitTrace
, "trace io");
53 int debug_malloc_size
;
54 int debug_iomalloc_size
;
56 vm_size_t debug_iomallocpageable_size
;
57 int debug_container_malloc_size
;
58 // int debug_ivars_size; // in OSObject.cpp
63 #define DEBG(fmt, args...) { kprintf(fmt, ## args); }
65 #define DEBG(fmt, args...) { IOLog(fmt, ## args); }
68 void IOPrintPlane( const IORegistryPlane
* plane
)
70 IORegistryEntry
* next
;
71 IORegistryIterator
* iter
;
73 char format
[] = "%xxxs";
76 iter
= IORegistryIterator::iterateOver( plane
);
78 all
= iter
->iterateAll();
80 DEBG("Count %d\n", all
->getCount() );
86 while( (next
= iter
->getNextObjectRecursive())) {
87 snprintf(format
+ 1, sizeof(format
) - 1, "%ds", 2 * next
->getDepth( plane
));
89 DEBG( "\033[33m%s", next
->getName( plane
));
90 if( (next
->getLocation( plane
)))
91 DEBG("@%s", next
->getLocation( plane
));
92 DEBG("\033[0m <class %s", next
->getMetaClass()->getClassName());
93 if( (service
= OSDynamicCast(IOService
, next
)))
94 DEBG(", busy %ld", (long) service
->getBusyState());
101 void dbugprintf(const char *fmt
, ...);
102 void db_dumpiojunk( const IORegistryPlane
* plane
);
104 void db_piokjunk(void) {
106 dbugprintf("\nDT plane:\n");
107 db_dumpiojunk( gIODTPlane
);
108 dbugprintf("\n\nService plane:\n");
109 db_dumpiojunk( gIOServicePlane
);
111 "ivar kalloc() 0x%08x\n"
113 "containers kalloc() 0x%08x\n"
114 "IOMalloc() 0x%08x\n"
115 "----------------------------------------\n",
118 debug_container_malloc_size
,
125 void db_dumpiojunk( const IORegistryPlane
* plane
)
127 IORegistryEntry
* next
;
128 IORegistryIterator
* iter
;
130 char format
[] = "%xxxs";
133 iter
= IORegistryIterator::iterateOver( plane
);
135 all
= iter
->iterateAll();
137 dbugprintf("Count %d\n", all
->getCount() );
139 } else dbugprintf("Empty\n");
142 while( (next
= iter
->getNextObjectRecursive())) {
143 snprintf(format
+ 1, sizeof(format
) - 1, "%ds", 2 * next
->getDepth( plane
));
144 dbugprintf( format
, "");
145 dbugprintf( "%s", next
->getName( plane
));
146 if( (next
->getLocation( plane
)))
147 dbugprintf("@%s", next
->getLocation( plane
));
148 dbugprintf(" <class %s", next
->getMetaClass()->getClassName());
149 if( (service
= OSDynamicCast(IOService
, next
)))
150 dbugprintf(", busy %ld", service
->getBusyState());
156 void IOPrintMemory( void )
159 // OSMetaClass::printInstanceCounts();
162 "ivar kalloc() 0x%08x\n"
164 "containers kalloc() 0x%08x\n"
165 "IOMalloc() 0x%08x\n"
166 "----------------------------------------\n",
169 debug_container_malloc_size
,
176 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
178 #define super OSObject
179 OSDefineMetaClassAndStructors(IOKitDiagnostics
, OSObject
)
181 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
183 OSObject
* IOKitDiagnostics::diagnostics( void )
185 IOKitDiagnostics
* diags
;
187 diags
= new IOKitDiagnostics
;
188 if( diags
&& !diags
->init()) {
196 void IOKitDiagnostics::updateOffset( OSDictionary
* dict
,
197 UInt32 value
, const char * name
)
201 off
= OSNumber::withNumber( value
, 32 );
205 dict
->setObject( name
, off
);
209 bool IOKitDiagnostics::serialize(OSSerialize
*s
) const
214 dict
= OSDictionary::withCapacity( 5 );
218 updateOffset( dict
, debug_ivars_size
, "Instance allocation" );
219 updateOffset( dict
, debug_container_malloc_size
, "Container allocation" );
220 updateOffset( dict
, debug_iomalloc_size
, "IOMalloc allocation" );
221 updateOffset( dict
, debug_iomallocpageable_size
, "Pageable allocation" );
223 OSMetaClass::serializeClassDictionary(dict
);
225 ok
= dict
->serialize( s
);
232 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */