The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: cozofdeath on October 14, 2011, 01:47:45 AM

Title: QWORD issue
Post by: cozofdeath on October 14, 2011, 01:47:45 AM
I'm sorry but I just cannot find the answer to this. I'm simple trying to use the qword (dq) type to declare a variable. But masm will allow the declaration but not the initialization. It keeps spitting out:  "error A2070: invalid instruction operands". For example,

.data?
qwAge    QWORD    ?

.code
mov qwAge, 0


But if I use the data type "LONG" it seems to work. Is qword and long the same size? And why isn't Masm supporting this? I tried using ml64 but it thinks almost every line of code is an error. Thanks for any help!
Title: Re: QWORD issue
Post by: dedndave on October 14, 2011, 02:14:16 AM
you can override the operand size with "ptr"
        mov dword ptr qwAge,eax   ;initialize the low dword
        mov dword ptr qwAge+4,edx ;initialize the high dword


i dunno who that variable is for, but they must be pretty old   :P
Title: Re: QWORD issue
Post by: dedndave on October 14, 2011, 02:18:12 AM
another way to go is to split it up
        .DATA?

qwAge   LABEL   QWORD
dwAgeLo dd ?
dwAgeHi dd ?


now, you can access it as a qword with qwAge
or seperate dwords as dwAgeLo and dwAgeHi
Title: Re: QWORD issue
Post by: jj2007 on October 14, 2011, 02:47:17 AM
You cannot move a qword into a reg32, but you can use the FPU or an xmm reg instead:

include \masm32\MasmBasic\MasmBasic.inc   ; download (http://www.masm32.com/board/index.php?topic=12460)
MyQ   dq 123456789012345678
   Init
   
movq xmm0, MyQ
   fild MyQ
   Print Str$("FPU, ST0=\t%i\n", ST(0))
   Inkey Str$("Xmm0=    \t%i", xmm0)
   Exit
end start


FPU, ST0=       123456789012345678
Xmm0=           123456789012345678
Title: Re: QWORD issue
Post by: cozofdeath on October 14, 2011, 02:50:20 AM
Thanks dedndave! That was quick. I can't get over how I can't use it like a normal variable. That kinda sucks. Everything has gone smooth until I tried to fill a QWORD in a structure in an accompanied .inc file. It seemed there was no way to fill it until you helped me. I never had to mess with qwords before. :cheekygreen: Thanks again!
Title: Re: QWORD issue
Post by: cozofdeath on October 14, 2011, 02:53:26 AM
Ahhh...jj2007 :U That seems like a creative way to do it as well. I would have never dreamed up something like that.  :dance: Thanks
Title: Re: QWORD issue
Post by: MichaelW on October 14, 2011, 07:31:06 AM
For what it's worth, if you put the variable in the initialized data section you can initialize it like this:

.data
    qwAge QWORD 0ffffffffffffffffh


Title: Re: QWORD issue
Post by: GregL on October 17, 2011, 01:46:33 AM
cozofdeath,

You understand why right?  In 64-bit MASM you can mov qwAge, 0, since 0 is assumed to be 64-bit and the sizes are equal.  In 32-bit MASM with mov qwAge, 0, 0 is assumed to be 32-bit so it is not allowed due to a size mismatch.  So,

    xor eax, eax
    mov dword ptr qwAge,eax      ;initialize the low dword
    mov dword ptr qwAge+4,eax ;initialize the high dword

works.

You can also fistp qwAge from the FPU in 32-bit MASM. As in:

    fldz                ; corrected
    fistp qwAge


Hope that made sense.
Title: Re: QWORD issue
Post by: raymond on October 17, 2011, 02:25:58 AM
Quotefld0
Just to make it clear, the proper mnemonic is: fldz
Title: Re: QWORD issue
Post by: GregL on October 17, 2011, 03:22:20 AM
Raymond,

Sorry, it is fldz.  Corrected above.