In Delphi 2009, there is the ability to have a reference to a synchronization monitor. See:
class function TMonitor.GetFieldAddress(AObject: TObject): PPMonitor;
class function TMonitor.GetMonitor(AObject: TObject): PMonitor;
...in System.pas
A
Also, there is still a pointer to the VMT. (Virtual Method Table.) From Delphi in a Nutshell:
The TObject class declares several methods and one special, hidden field to store a reference to the object's class. This hidden field points to the class's virtual method table (VMT). Every class has a unique VMT and all objects of that class share the class's VMT.
