Delphi Embedded Assembly for beginners [28]-Three methods and efficiency of setting eax value to 0

Source: Internet
Author: User
// The functions of the following three functions are the same, but the efficiency is different {fun1 needs to read constant 0, slowest} function fun1: integer; ASM mov eax, 0end; {fun2 and fun3 are only the registers that operate the CPU, which are faster than fun1} function fun2: integer; ASM sub eax, eaxend; {fun3 fastest} function fun3: integer; asm xor eax, eaxend; // speed test procedure tform1.button1click (Sender: tobject); var T: Cardinal; I: integer; begin T: = gettickcount; for I: = 0 to 100000000 do fun1; t: = gettickcount-T; showmessage (inttostr (t); {ALL: more than 600} t: = gettickcount; for I: = 0 to 100000000 do fun2; t: = gettickcount-T; showmessage (inttostr (t); {ALL: more than 500} t: = gettickcount; for I: = 0 to 100000000 do fun3; t: = gettickcount-T; showmessage (inttostr (t); {ALL: more than 400} end;

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.