The MASM Forum Archive 2004 to 2012

Project Support Forums => 64 Bit Assembler => Topic started by: ecube on June 04, 2010, 11:06:47 AM

Title: whats the rules with using 32bit registers in 64bit code?
Post by: ecube on June 04, 2010, 11:06:47 AM
I could only get some code to work if I use edi,esi etc... using rdi and rsi made it silently exit or crash, so is using 32bit registers safe on all x64 cpus?
Title: Re: whats the rules with using 32bit registers in 64bit code?
Post by: qWord on June 04, 2010, 01:09:41 PM
it is save.
However, there are some other changes in 64Bit windows like the required stack alignment and new nonvolatile registers (r12-r15, xmm6-xmm15)
you may want to show the code that fails.

Title: Re: whats the rules with using 32bit registers in 64bit code?
Post by: ecube on June 04, 2010, 01:25:55 PM
Ok great, thanks, also I use GoASM, and according to the docs it auto aligns for frames and structs, which is what I was using, so I don't think that's it. I was just concerned it worked fine on my 64bit processor and wouldn't on others. Also you recommend any decent debuggers for 64bit? or none really out, i've searched this section and tried the few mentioned, they tend to crash at random times which isn't acceptable.
Title: Re: whats the rules with using 32bit registers in 64bit code?
Post by: qWord on June 04, 2010, 01:39:54 PM
what about WinDbg?
It's not very comfortable, but free. An expensive solution would be IDA Pro.
Title: Re: whats the rules with using 32bit registers in 64bit code?
Post by: GregL on June 04, 2010, 05:30:55 PM
What's wrong with the Visual Studio debugger?  It's the best in my opinion.
Title: Re: whats the rules with using 32bit registers in 64bit code?
Post by: Alloy on June 18, 2010, 01:08:08 PM
And Visual Studio Express is free.