The MASM Forum Archive 2004 to 2012

Project Support Forums => GoAsm Assembler and Tools => Topic started by: Roger on November 07, 2008, 10:43:32 PM

Title: Peculiarity with invoke
Post by: Roger on November 07, 2008, 10:43:32 PM
Hi All,

The following code works:-

               mov eax, WS_CHILD+WS_VISIBLE
               invoke CreateWindowEx, 0, ADDR szSBclass, ADDR szReady, eax, \
                         0,0, 0,0, [hWnd], ID_STATUSBAR, [hInstance], 0


The following code does not work:-

               mov eax, WS_CHILD+WS_VISIBLE
               invoke CreateWindowEx, 0, ADDR szSBclass, ADDR szReady, WS_CHILD+WS_VISIBLE \
                         0,0, 0,0, [hWnd], ID_STATUSBAR, [hInstance], 0

Peculiarity
The only difference is whether the dwstyle parameter is immediate or in a register and I cannot see why this matters.

At run time the first makes a status bar. The second does not display a status bar and I assume one is not made because CreateWindewEx returns eax = NULL.

Assembly and linking were done by GoASm and GoLink and I examined both using GoBug.
The only difference in the stack state for both versions just prior to the API call was the value of [hWnd] and this is never the same for any time I run the prog.

I tried both methods using call rather than invoke and both worked.

Regards Roger


Title: Re: Peculiarity with invoke
Post by: BogdanOntanu on November 07, 2008, 11:20:47 PM
At least in MASM  ADDR will do a hidden LEA and will trash EAX ...

Hence I do suggest that you use another register for the constants or avoid ADDR
Title: Re: Peculiarity with invoke
Post by: Roger on November 07, 2008, 11:40:50 PM
Hi Bogdan,

Quote from: BogdanOntanu on November 07, 2008, 11:20:47 PM
At least in MASM ADDR will do a hidden LEA and will trash EAX ...

Hence I do suggest that you use another register for the constants or avoid ADDR

The version using EAX is the one that worked.
GoAsm did a straight push immediate for ADDR so that wouldn't have been a problem anyway.


(Sorry if you read it the other way; I transposed the code snippets first time but I thought I had edited it before anyone read it.)


Regards Roger
Title: Re: Peculiarity with invoke
Post by: donkey on November 08, 2008, 01:39:58 AM
You are missing a coma in the 2nd version (without EAX), just before the line continuation character
Title: Re: Peculiarity with invoke
Post by: Roger on November 08, 2008, 02:18:40 AM
Hi Donkey,

Thank you for seeing the obvious. With 20-20 hindsight I can't think how I missed it so many times while trying different versions.

Regards Roger