]>
git.saurik.com Git - apple/xnu.git/blob - libkern/c++/OSObject.cpp
2 * Copyright (c) 2000 Apple Computer, 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@
28 /* OSObject.cpp created by gvdl on Fri 1998-11-17 */
30 #include <libkern/c++/OSObject.h>
31 #include <libkern/c++/OSSerialize.h>
32 #include <libkern/c++/OSLib.h>
33 #include <libkern/c++/OSCPPDebug.h>
34 #include <libkern/OSAtomic.h>
36 #include <libkern/c++/OSCollection.h>
43 #define ACCUMSIZE(s) do { debug_ivars_size += (s); } while(0)
48 // OSDefineMetaClassAndAbstractStructors(OSObject, 0);
49 /* Class global data */
50 OSObject::MetaClass
OSObject::gMetaClass
;
51 const OSMetaClass
* const OSObject::metaClass
= &OSObject::gMetaClass
;
52 const OSMetaClass
* const OSObject::superClass
= 0;
54 /* Class member functions - Can't use defaults */
55 OSObject::OSObject() { retainCount
= 1; }
56 OSObject::OSObject(const OSMetaClass
*) { retainCount
= 1; }
57 OSObject::~OSObject() { }
58 const OSMetaClass
* OSObject::getMetaClass() const
59 { return &gMetaClass
; }
60 OSObject
*OSObject::MetaClass::alloc() const { return 0; }
62 /* The OSObject::MetaClass constructor */
63 OSObject::MetaClass::MetaClass()
64 : OSMetaClass("OSObject", OSObject::superClass
, sizeof(OSObject
))
68 OSMetaClassDefineReservedUnused(OSObject
, 0);
69 OSMetaClassDefineReservedUnused(OSObject
, 1);
70 OSMetaClassDefineReservedUnused(OSObject
, 2);
71 OSMetaClassDefineReservedUnused(OSObject
, 3);
72 OSMetaClassDefineReservedUnused(OSObject
, 4);
73 OSMetaClassDefineReservedUnused(OSObject
, 5);
74 OSMetaClassDefineReservedUnused(OSObject
, 6);
75 OSMetaClassDefineReservedUnused(OSObject
, 7);
76 OSMetaClassDefineReservedUnused(OSObject
, 8);
77 OSMetaClassDefineReservedUnused(OSObject
, 9);
78 OSMetaClassDefineReservedUnused(OSObject
, 10);
79 OSMetaClassDefineReservedUnused(OSObject
, 11);
80 OSMetaClassDefineReservedUnused(OSObject
, 12);
81 OSMetaClassDefineReservedUnused(OSObject
, 13);
82 OSMetaClassDefineReservedUnused(OSObject
, 14);
83 OSMetaClassDefineReservedUnused(OSObject
, 15);
84 OSMetaClassDefineReservedUnused(OSObject
, 16);
85 OSMetaClassDefineReservedUnused(OSObject
, 17);
86 OSMetaClassDefineReservedUnused(OSObject
, 18);
87 OSMetaClassDefineReservedUnused(OSObject
, 19);
88 OSMetaClassDefineReservedUnused(OSObject
, 20);
89 OSMetaClassDefineReservedUnused(OSObject
, 21);
90 OSMetaClassDefineReservedUnused(OSObject
, 22);
91 OSMetaClassDefineReservedUnused(OSObject
, 23);
92 OSMetaClassDefineReservedUnused(OSObject
, 24);
93 OSMetaClassDefineReservedUnused(OSObject
, 25);
94 OSMetaClassDefineReservedUnused(OSObject
, 26);
95 OSMetaClassDefineReservedUnused(OSObject
, 27);
96 OSMetaClassDefineReservedUnused(OSObject
, 28);
97 OSMetaClassDefineReservedUnused(OSObject
, 29);
98 OSMetaClassDefineReservedUnused(OSObject
, 30);
99 OSMetaClassDefineReservedUnused(OSObject
, 31);
101 static const char *getClassName(const OSObject
*obj
)
103 const OSMetaClass
*meta
= obj
->getMetaClass();
104 return (meta
) ? meta
->getClassName() : "unknown class?";
107 bool OSObject::init()
110 #if (!__ppc__) || (__GNUC__ < 3)
112 // Implemented in assembler in post gcc 3.x systems as we have a problem
113 // where the destructor in gcc2.95 gets 2 arguments. The second argument
114 // appears to be a flag argument. I have copied the assembler from Puma xnu
115 // to OSRuntimeSupport.c So for 2.95 builds use the C
116 void OSObject::free()
118 const OSMetaClass
*meta
= getMetaClass();
121 meta
->instanceDestructed();
124 #endif /* (!__ppc__) || (__GNUC__ < 3) */
126 int OSObject::getRetainCount() const
128 return (int) ((UInt16
) retainCount
);
131 void OSObject::taggedRetain(const void *tag
) const
133 volatile UInt32
*countP
= (volatile UInt32
*) &retainCount
;
138 // Increment the collection bucket.
139 if ((const void *) OSTypeID(OSCollection
) == tag
)
144 if ( ((UInt16
) origCount
| 0x1) == 0xffff ) {
146 if (origCount
& 0x1) {
147 // If count == 0xffff that means we are freeing now so we can
148 // just return obviously somebody is cleaning up dangling
150 msg
= "Attempting to retain a freed object";
153 // If count == 0xfffe then we have wrapped our reference count.
154 // We should stop counting now as this reference must be
155 // leaked rather than accidently wrapping around the clock and
156 // freeing a very active object later.
159 break; // Break out of update loop which pegs the reference
161 // @@@ gvdl: eventually need to make this panic optional
162 // based on a boot argument i.e. debug= boot flag
163 msg
= "About to wrap the reference count, reference leak?";
166 panic("OSObject::refcount: %s", msg
);
169 newCount
= origCount
+ inc
;
170 } while (!OSCompareAndSwap(origCount
, newCount
, (UInt32
*) countP
));
173 void OSObject::taggedRelease(const void *tag
) const
175 taggedRelease(tag
, 1);
178 void OSObject::taggedRelease(const void *tag
, const int when
) const
180 volatile UInt32
*countP
= (volatile UInt32
*) &retainCount
;
186 // Increment the collection bucket.
187 if ((const void *) OSTypeID(OSCollection
) == tag
)
193 if ( ((UInt16
) origCount
| 0x1) == 0xffff ) {
194 if (origCount
& 0x1) {
195 // If count == 0xffff that means we are freeing now so we can
196 // just return obviously somebody is cleaning up some dangling
197 // references. So we blow out immediately.
201 // If count == 0xfffe then we have wrapped our reference
202 // count. We should stop counting now as this reference must be
203 // leaked rather than accidently freeing an active object later.
206 return; // return out of function which pegs the reference
208 // @@@ gvdl: eventually need to make this panic optional
209 // based on a boot argument i.e. debug= boot flag
210 panic("OSObject::refcount: %s",
211 "About to unreference a pegged object, reference leak?");
215 actualCount
= origCount
- dec
;
216 if ((UInt16
) actualCount
< when
)
219 newCount
= actualCount
;
221 } while (!OSCompareAndSwap(origCount
, newCount
, (UInt32
*) countP
));
224 // This panic means that we have just attempted to release an object
225 // who's retain count has gone to less than the number of collections
226 // it is a member off. Take a panic immediately.
227 // In Fact the panic MAY not be a registry corruption but it is
228 // ALWAYS the wrong thing to do. I call it a registry corruption 'cause
229 // the registry is the biggest single use of a network of collections.
231 if ((UInt16
) actualCount
< (actualCount
>> 16))
232 panic("A driver releasing a(n) %s has corrupted the registry\n",
235 // Check for a 'free' condition and that if we are first through
236 if (newCount
== 0xffff)
237 ((OSObject
*) this)->free();
240 void OSObject::release() const
245 void OSObject::retain() const
250 void OSObject::release(int when
) const
252 taggedRelease(0, when
);
255 bool OSObject::serialize(OSSerialize
*s
) const
257 if (s
->previouslySerialized(this)) return true;
259 if (!s
->addXMLStartTag(this, "string")) return false;
261 if (!s
->addString(getClassName(this))) return false;
262 if (!s
->addString(" is not serializable")) return false;
264 return s
->addXMLEndTag("string");
267 void *OSObject::operator new(size_t size
)
269 void *mem
= (void *) kalloc(size
);
278 void OSObject::operator delete(void *mem
, size_t size
)
280 kfree((vm_offset_t
) mem
, size
);