TObject.InstanceSize returns 8, yet TObject doesn't declare any data members. According to the implementation of TObject.ClassType, the first 4 bytes can be explained as a pointer to the object's TClass metadata. Anyone know what the other 4 bytes of overhead are there for?
EDIT: Apparently this is specific to D2009. In older versions, it's only 4 bytes.
In Delphi 2009, there is the ability to have a reference to a synchronization monitor. See:
...in System.pas
Also, there is still a pointer to the VMT. (Virtual Method Table.) From Delphi in a Nutshell: