the help docs say: " For example, the JavaScript code to access property x from a Point object is:
point.x In V8, the machine code generated for accessing x is: # ebx = the point object cmp [ebx,<hidden class offset>],<cached hidden class> jne <inline cache miss> mov eax,[ebx, <cached x offset>] " my question is: how can i get the machine code when compiled my js? -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users
