Writing Faster Macro Assembler Programs

Last reviewed: January 6, 1995
Article ID: Q31810
The information in this article applies to:
  • Microsoft Macro Assembler for MS-DOS, versions 4.0, 5.0, 5.1, and 6.0
  • Microsoft Macro Assembler for OS/2, versions 5.1 and 6.0

SUMMARY

The Microsoft Macro Assembler is useful for writing fast programs. For example, the following is a fast method to take the absolute value of a number held in the AX register:

   cwd          ; replicate the high bit into DX
   xor  ax, dx  ; take 1's complement if negative; no change if positive
   sub  ax, dx  ; AX is 2's complement if it was negative The standard
                : absolute value method works on any register but is much
                ; slower:

   or   bx, bx  ; see if number is negative
   jge  notneg  ; if it is negative...
   neg  bx      ; ...make it positive
notneg:         ; jump to here if positive

MORE INFORMATION

This method achieves part of its speed by avoiding the use of a jump instruction to keep the 8086's pre-fetch queue full.

To save time while a program is running, the 8086 tries to fetch the next instruction from memory while it is processing the current instruction. However, a jump instruction moves the location of the next instruction to fetch, making invalid the instruction that the 8086 just fetched into its pre-fetch queue.

This process forces the 8086 to spend time fetching the correct instruction from memory after the jump. Whenever possible, avoid jumps to increase the execution speed of Macro Assembler programs.


Additional reference words: 4.00 5.00 5.10 6.00
KBCategory: kbprg
KBSubCategory: MASMLngIss


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: January 6, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.