The MASM Forum

64 bit assembler => UASM Assembler Development => Topic started by: jimg on July 26, 2018, 01:08:27 AM

Title: win64.inc
Post by: jimg on July 26, 2018, 01:08:27 AM
I had decided I would ignore all the 64bit stuff, but I recently wanted to try one of the recent register tests.
When I tried to assemble using uasm64, I got a ton of errors from the Hutch's win64.inc, and some other of his new 64 bit include files.
If I want to get uasm64 working with masm64rt.inc, what is the procedure?
Title: Re: win64.inc
Post by: Vortex on July 26, 2018, 04:04:24 AM
I think you should use WinInc with UASM :

http://www.terraspace.co.uk/uasm.html
Title: Re: win64.inc
Post by: jimg on July 26, 2018, 04:11:57 AM
Have you ever seen anyone post anything here using wininc?  I'm trying to be a little compatible here so if I have to post code, the majority of people could try it out.  At the same time ml64 is crazy so I want to use uasm.  Have we parted ways permanently now?
Title: Re: win64.inc
Post by: Vortex on July 26, 2018, 05:59:46 AM
Hi jimg,

Some examples :

http://masm32.com/board/index.php?topic=6576.0
http://masm32.com/board/index.php?topic=6721.0
http://masm32.com/board/index.php?topic=2637.0
http://masm32.com/board/index.php?topic=6617.0
http://masm32.com/board/index.php?topic=2454.0

wininc is a nice work. Created first by Japheth, it's now maintained by habran and johnsa.
Title: Re: win64.inc
Post by: hutch-- on July 26, 2018, 06:26:20 PM
Jim,

You use include files that are compatible with the assembler you are using, the "masm64rt.inc" is designed to work with 64 bit MASM, to use UASM or any of the earlier versions of the Watcom forks, you need to use the include files that are designed for those assemblers.
Title: Re: win64.inc
Post by: jimg on July 26, 2018, 11:09:01 PM
 :(  Well, since I'm not giving up on the Masm32 project or Uasm,  I'll just give up on 64bit and be happy.
Title: Re: win64.inc
Post by: hutch-- on July 27, 2018, 01:08:46 AM
Jim,

You don't have to do that, 64 bit is the future, its just that for any system, UASM or MASM it takes time to get it all written and working reliably.
Title: Re: win64.inc
Post by: Vortex on July 27, 2018, 03:51:02 AM
Hi jimg,

Please don't give up on 64-bit. All the include file sets are the products of big efforts. You can try and enjoy all the 64-bit versions of Asmc,Masm and Uasm.
Title: Re: win64.inc
Post by: johnsa on July 30, 2018, 08:05:43 PM
Definitely don't give up on 64bit.. if you do, you might as well give up Assembler :) Assembler is there to exploit all the latest and greatest features and ring every last bit of performance out of the machine, to remain in 32bit at this point in time is crippling yourself performance and feature wise.. where even Javascript and .NET in 64bit will out perform your best 32 bit attempts... now I shall be flamed by all the pro-32bit people :)

IMHO, I don't even consider 32bit in asm anymore, unless it's maintaining some old 32bit library I wouldn't even bother going forward. 64bit only.
Title: Re: win64.inc
Post by: zedd151 on July 30, 2018, 08:10:58 PM
Quote from: johnsa on July 30, 2018, 08:05:43 PM
now I shall be flamed by all the pro-32bit people :)

:P
Title: Re: win64.inc
Post by: hutch-- on July 30, 2018, 09:11:47 PM
John is right, 32 bit is yesteryear and while you can produce some very good code with it, stretch the memory limit with /LARGEADDRESSAWARE and apply every trick in the book, 64 bit with /LARGEADDRESSAWARE enabled is the future, massive memory, twice as many registers and some real performance if you write it correctly. With the extra registers, algorithms got simpler and faster as you could avoid locals and stack overhead. It is not without its quirks in the way Microsoft implemented it, you cannot write a 64 bit immediate to a memory operand but you can if you pass it through a register but its not hard to get around such things.
Title: Re: win64.inc
Post by: jj2007 on July 30, 2018, 10:01:26 PM
Quote from: johnsa on July 30, 2018, 08:05:43 PMto remain in 32bit at this point in time is crippling yourself performance and feature wise..

Can you post a real life example where the 64-bit version is significantly faster?  ;)
Title: Re: win64.inc
Post by: aw27 on July 30, 2018, 10:45:19 PM
Quote from: johnsa on July 30, 2018, 08:05:43 PM
... now I shall be flamed by all the pro-32bit people :)
It is normal, dinosaurs are not able to learn new competences.  :idea:
All they do is try to play smart despising innovation. All so dèja vu, thousands of times in History of Mankind.
Title: Re: win64.inc
Post by: hutch-- on July 30, 2018, 11:22:23 PM
> Can you post a real life example where the 64-bit version is significantly faster?

Yeah, allocate 16 gig of memory and scan through it. Try something that can use a lot of registers.
Title: Re: win64.inc
Post by: HSE on July 31, 2018, 02:22:46 AM
Quote from: johnsa on July 30, 2018, 08:05:43 PMin 64bit will out perform your best 32 bit attempts... now I shall be flamed by all the pro-32bit people :)

I think that discussion have his place 2 years ago. Today, several asm systems have evolved a lot: Vasily (with Mikl examples), masm64, asmc64, uasm64, objasm64. And for sure more progress is expected. Now you use 32 bit asm if you have a 32 bit machine running (or some specific library), but if you have a 64bit machine there is few excuses.
Title: Re: win64.inc
Post by: Caché GB on August 06, 2018, 07:50:53 PM
Still learning so I will say with 32bit for a while.
Dōmo arigatō.