Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - weird ebx register behaviour
Hi, while I wrote a module using inline assembler, I saw that DMC assumes that EBX will never change. Are there any other registers that must not be altered while compiling with -mn? Best regards, Mark Junker Jun 16 2003
Mark Junker wrote:Hi, while I wrote a module using inline assembler, I saw that DMC assumes that EBX will never change. Are there any other registers that must not be altered while compiling with -mn? Best regards, Mark Junker Jun 17 2003
roland schrieb...32 bit models: must preserve ebx,esi,edi,ebp,esp,ss,fs,gs,cs,ds direction flag (df) must stay forward Jun 18 2003
Heinz Saathoff wrote:roland schrieb...32 bit models: must preserve ebx,esi,edi,ebp,esp,ss,fs,gs,cs,ds direction flag (df) must stay forward Jun 18 2003
roland schrieb...Never seen fs dn gs used when i disassembled. May be Walter kept them at harm lenght just in case .. Jun 18 2003
"Heinz Saathoff" <hsaat bre.ipnet.de> wrote in message news:MPG.195a519c170ac08c9896c5 news.digitalmars.com...roland schrieb...32 bit models: must preserve ebx,esi,edi,ebp,esp,ss,fs,gs,cs,ds direction flag (df) must stay forward Jun 18 2003
Walter schrieb...FS is used by the Win32 operating system for thread-specific data, and is generated by the compiler for SEH stack frames. Jun 19 2003
"Heinz Saathoff" <hsaat bre.ipnet.de> wrote in message news:MPG.195ccc6abe340d149896c7 news.digitalmars.com...Walter schrieb...FS is used by the Win32 operating system for thread-specific data, and Jun 20 2003
|