>>>>> "Sam" == Samuel Tardieu
>>>>> <[EMAIL PROTECTED]> writes:

Sam> I have a few questions concerning execute() in vm/cpu-x86.[hS]

I also have a question regarding native_stack_pointer(). Would not the
following version (in cpu-x86.h) be cleaner and more efficient?

INLINE void *native_stack_pointer(void)
{
  register CELL esp asm("esp");
  return (void*)esp+4;
}

(the +4 makes it an equivalent of the previous version with the x86
ABI, as the 32 bits return value was pushed on the stack)

  Sam
-- 
Samuel Tardieu -- [EMAIL PROTECTED] -- http://www.rfc1149.net/


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk

Reply via email to