Loading...
--- xnu/xnu-1504.3.12/libkern/c++/OSObject.cpp
+++ xnu/xnu-792.22.5/libkern/c++/OSObject.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2000 Apple Inc. All rights reserved.
+ * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
*
* @APPLE_OSREFERENCE_LICENSE_HEADER_START@
*
@@ -28,17 +28,12 @@
/* OSObject.cpp created by gvdl on Fri 1998-11-17 */
#include <libkern/c++/OSObject.h>
-#include <libkern/c++/OSArray.h>
#include <libkern/c++/OSSerialize.h>
#include <libkern/c++/OSLib.h>
-#include <libkern/OSDebug.h>
#include <libkern/c++/OSCPPDebug.h>
-#include <IOKit/IOKitDebug.h>
#include <libkern/OSAtomic.h>
#include <libkern/c++/OSCollection.h>
-
-#include <kern/queue.h>
__BEGIN_DECLS
int debug_ivars_size;
@@ -165,7 +160,7 @@
#if !DEBUG
break; // Break out of update loop which pegs the reference
-#else /* DEBUG */
+#else DEBUG
// @@@ gvdl: eventually need to make this panic optional
// based on a boot argument i.e. debug= boot flag
msg = "About to wrap the reference count, reference leak?";
@@ -175,7 +170,7 @@
}
newCount = origCount + inc;
- } while (!OSCompareAndSwap(origCount, newCount, const_cast<UInt32 *>(countP)));
+ } while (!OSCompareAndSwap(origCount, newCount, (UInt32 *) countP));
}
void OSObject::taggedRelease(const void *tag) const
@@ -212,7 +207,7 @@
#if !DEBUG
return; // return out of function which pegs the reference
-#else /* DEBUG */
+#else DEBUG
// @@@ gvdl: eventually need to make this panic optional
// based on a boot argument i.e. debug= boot flag
panic("OSObject::refcount: %s",
@@ -226,28 +221,23 @@
else
newCount = actualCount;
- } while (!OSCompareAndSwap(origCount, newCount, const_cast<UInt32 *>(countP)));
+ } while (!OSCompareAndSwap(origCount, newCount, (UInt32 *) countP));
//
// This panic means that we have just attempted to release an object
- // whose retain count has gone to less than the number of collections
+ // who's retain count has gone to less than the number of collections
// it is a member off. Take a panic immediately.
- // In fact the panic MAY not be a registry corruption but it is
+ // In Fact the panic MAY not be a registry corruption but it is
// ALWAYS the wrong thing to do. I call it a registry corruption 'cause
// the registry is the biggest single use of a network of collections.
//
-// xxx - this error message is overly-specific;
-// xxx - any code in the kernel could trip this,
-// xxx - and it applies as noted to all collections, not just the registry
- if ((UInt16) actualCount < (actualCount >> 16)) {
- panic("A kext releasing a(n) %s has corrupted the registry.",
- getClassName(this));
- }
+ if ((UInt16) actualCount < (actualCount >> 16))
+ panic("A driver releasing a(n) %s has corrupted the registry\n",
+ getClassName(this));
// Check for a 'free' condition and that if we are first through
- if (newCount == 0xffff) {
- (const_cast<OSObject *>(this))->free();
- }
+ if (newCount == 0xffff)
+ ((OSObject *) this)->free();
}
void OSObject::release() const
@@ -277,91 +267,20 @@
return s->addXMLEndTag("string");
}
-
-thread_t gOSObjectTrackThread;
-
-queue_head_t gOSObjectTrackList =
- { (queue_t) &gOSObjectTrackList, (queue_t) &gOSObjectTrackList };
-
-lck_spin_t gOSObjectTrackLock;
-
-OSArray * OSFlushObjectTrackList(void)
-{
- OSArray * array;
- queue_entry_t next;
-
- array = OSArray::withCapacity(16);
-
- lck_spin_lock(&gOSObjectTrackLock);
- while (!queue_empty(&gOSObjectTrackList))
- {
- next = queue_first(&gOSObjectTrackList);
- remque(next);
- lck_spin_unlock(&gOSObjectTrackLock);
- array->setObject((OSObject *) (next + 1));
- lck_spin_lock(&gOSObjectTrackLock);
- }
- lck_spin_unlock(&gOSObjectTrackLock);
-
- return (array);
-}
-
-struct OSObjectTracking
-{
- queue_chain_t link;
- void * bt[14];
-};
-
void *OSObject::operator new(size_t size)
{
- size_t tracking = (gIOKitDebug & kOSTraceObjectAlloc)
- ? sizeof(OSObjectTracking) : 0;
- OSObjectTracking * mem = (OSObjectTracking *) kalloc(size + tracking);
-
+ void *mem = (void *) kalloc(size);
assert(mem);
-
- if (tracking)
- {
- if ((((thread_t) 1) == gOSObjectTrackThread) || (current_thread() == gOSObjectTrackThread))
- {
- (void) OSBacktrace(&mem->bt[0], sizeof(mem->bt) / sizeof(mem->bt[0]));
- lck_spin_lock(&gOSObjectTrackLock);
- enqueue_tail(&gOSObjectTrackList, &mem->link);
- lck_spin_unlock(&gOSObjectTrackLock);
- }
- else
- mem->link.next = 0;
- mem++;
- }
-
bzero(mem, size);
ACCUMSIZE(size);
- return (void *) mem;
-}
-
-void OSObject::operator delete(void *_mem, size_t size)
-{
- size_t tracking = (gIOKitDebug & kOSTraceObjectAlloc)
- ? sizeof(OSObjectTracking) : 0;
- OSObjectTracking * mem = (OSObjectTracking *) _mem;
-
- if (!mem)
- return;
-
- if (tracking)
- {
- mem--;
- if (mem->link.next)
- {
- lck_spin_lock(&gOSObjectTrackLock);
- remque(&mem->link);
- lck_spin_unlock(&gOSObjectTrackLock);
- }
- }
-
- kfree(mem, size + tracking);
+ return mem;
+}
+
+void OSObject::operator delete(void *mem, size_t size)
+{
+ kfree(mem, size);
ACCUMSIZE(-size);
}