Mail Archives: djgpp/1994/01/18/17:16:39
> Does GAS support the ix86 string move / compare instructions? Does the
> compiler make any use of them in optimization? What are the GAS assembly
> language instructions that generate them? Where can I get an account
> of the GAS assembly language instructions (yes, I know I could examine the
> source, but space on my Hard Disk is getting >smalller< all the time...
> is there an alternative?
GAS supports all i386 opcodes. Gcc uses string moves to do structure
copies in some cases. Relevent code looks like this:
rep
movsb
The GAS docs have some information about the GAS syntax, but I use
"gcc -S" or the sources most of the time.
- Raw text -