What data does a TObject contain? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T00:08:01Z http://stackoverflow.com/feeds/question/679022 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/679022/what-data-does-a-tobject-contain 5 What data does a TObject contain? Mason Wheeler 2009-03-24T20:01:34Z 2009-03-25T18:54:49Z <p>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?</p> <p>EDIT: Apparently this is specific to D2009. In older versions, it's only 4 bytes.</p> http://stackoverflow.com/questions/679022/what-data-does-a-tobject-contain/679065#679065 11 Answer by Craig Stuntz for What data does a TObject contain? Craig Stuntz 2009-03-24T20:12:49Z 2009-03-25T16:31:12Z <p>In Delphi 2009, there is <a href="http://blogs.teamb.com/craigstuntz/2009/03/25/38138/" rel="nofollow">the ability to have a reference to a synchronization monitor</a>. See:</p> <pre><code>class function TMonitor.GetFieldAddress(AObject: TObject): PPMonitor; class function TMonitor.GetMonitor(AObject: TObject): PMonitor; </code></pre> <p>...in System.pas</p> <p>Also, there is still a pointer to the VMT. (Virtual Method Table.) <a href="http://oreilly.com/catalog/delphi/chapter/ch02.html" rel="nofollow">From <em>Delphi in a Nutshell</em>:</a></p> <blockquote> <p>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.</p> </blockquote> http://stackoverflow.com/questions/679022/what-data-does-a-tobject-contain/679227#679227 1 Answer by Rob Kennedy for What data does a TObject contain? Rob Kennedy 2009-03-24T21:00:30Z 2009-03-24T21:00:30Z <p>An object contains entries for all its fields, plus extra space to hold a pointer to the virtual-method table. The VMT holds more than just virtual-method pointers. I explain <a href="http://pages.cs.wisc.edu/~rkennedy/vmt" rel="nofollow">more about the VMT</a> at my Web site, including a diagram.</p> <p>Apparently, Delphi 2009 introduces another hidden field in addition to the VMT pointer to hold the synchronization monitor. You can determine whether it is added at the beginning or at the end of the class with some simple code:</p> <pre><code>type TTest = class FField: Integer; end; var obj: TTest; ObjAddr, FieldAddr: Cardinal; begin Assert(TTest.InstanceSize = 12); obj := TTest.Create; ObjAddr := Cardinal(obj); FieldAddr := Cardinal(@(obj.FField)); writeln(FieldAddr - ObjAddr); end. </code></pre> <p>If it prints the value 4, then the monitor field must be at the end of the object because 4 only accounts for the size of the VMT pointer. If it prints the value 8, then the monitor field must be at the start, adjacent to the VMT pointer.</p> <p>I expect you'll find the monitor at the start. Otherwise, it means that the layout of the descendant object isn't simply the layout of the base object with all the new fields appended. It would mean the offset of the monitor field depends on the run-time type of the object, and that makes the implementation more complicated.</p> <p>When a class implements an interface, the object layout includes more hidden fields. The fields contain pointers to the object's interface-reference value. When you have an <code>IUnknown</code> reference to an object, the pointer it holds isn't the same as the pointer to the object's VMT field, which is what you have with an ordinary object reference. The <code>IUnknown</code> pointer value will be the address of the hidden field. I've written <a href="http://pages.cs.wisc.edu/~rkennedy/interface-object" rel="nofollow">more about the layout of classes that implement interfaces</a>.</p> http://stackoverflow.com/questions/679022/what-data-does-a-tobject-contain/680455#680455 0 Answer by dummzeuch for What data does a TObject contain? dummzeuch 2009-03-25T06:40:48Z 2009-03-25T06:40:48Z <p>Just in case somebody is wondering why Craig Stuntz' answer was accpepted, see his last comment on that answer: </p> <p>Looks like was added in D2009: <a href="http://blogs.embarcadero.com/abauer/2008/02/19/38856" rel="nofollow">http://blogs.embarcadero.com/abauer/2008/02/19/38856</a> See links in that post for full details.</p>