The MASM Forum Archive 2004 to 2012

Project Support Forums => 64 Bit Assembler => Topic started by: GUAN DE DIO on August 31, 2008, 06:32:12 PM

Title: Macros
Post by: GUAN DE DIO on August 31, 2008, 06:32:12 PM
Hi everybody,

      I'm making a macro and I need to load the value of a register into a local macro variable.

      I try several way, the last try has been this:

             Index = rsp

     How can I do this?

Best Regards,
GUÄN
Title: Re: Macros
Post by: qWord on September 01, 2008, 02:24:10 PM
hi,

it is impossible what are you trying to do. Macros are expand before masm assemble your program, so macro-variables exist only at assembly-time - not at run-time!

what should your macro do ?

regards,
qWord
Title: Re: Macros
Post by: GUAN DE DIO on September 01, 2008, 06:54:15 PM
Thanks for the request.

    I'll do it in a different way.

    I do not why my 64 bits program runs without problem in WinXP64 and in Vista 64 I have stack alignment problem when I call an API.

    With this macro I`ll try to detect if the stack is wrong and fix it making an additional push before the calling

GUAN
Title: Re: Macros
Post by: MazeGen on September 02, 2008, 10:37:25 AM
Guan, you might be interested in this way of automatic stack alignment, invented by Jeremy Gordon:

http://www.jorgon.freeserve.co.uk/GoasmHelp/64bits.htm#invokec

The code to achieve the alignment is ugly and size-consuming, but works well.

It could be done automatically at compile time if you keep tracking of all PUSH/POP instructions and if you follow specific model of code arrangement, but still, it woud be complicated to code all neccessary macros.
Title: Re: Macros
Post by: GUAN DE DIO on September 03, 2008, 08:41:03 PM
Thanks

    This code is very similar to my code, but that is more optimized