现代cpu与奔腾4级别的差距?

发布于 2022-09-01 07:12:22 字数 2047 浏览 22 评论 0

基于汇编语言实现整数乘法循环很多次来看程序需要花费的时间.
有两种方法,分别是用移位指令shl和标准乘法指令mul.

实验结果如下:

                        shl        mul
4GHz的奔腾4机器         6078ms    20718ms
3.3GHz的i5-4590        7300ms     8400ms

可见shl指令性能主要看cpu频率,而现在cpu的mul指令性能似乎完全能和shl媲美了.

我想问:

  1. 现在的cpu在这道程序的shl指令上好像体现不出什么优势?
  2. mul指令按传统说法要比普通指令慢得多得多,为何这里的i5的mul指令性能基本与shl无差异?

只要给个概念性的回答即可


代码如下,用于参考

; Comparing Multiplications         (CompareMult.asm)

; This program compares the execution times of two approaches to 
; integer multiplication: Binary shifting versus the MUL instruction.

INCLUDE Irvine32.inc

LOOP_COUNT = 0FFFFFFFFh

.data
intval DWORD 5
startTime DWORD ?

.code
main PROC

; First approach:

    call    GetMseconds ; get start time
    mov startTime,eax

    mov eax,intval  ; multiply now
    call    mult_by_shifting

    call    GetMseconds ; get stop time
    sub eax,startTime
    call    WriteDec        ; display elapsed time
    call    Crlf

; Second approach:

    call    GetMseconds ; get start time
    mov startTime,eax

    mov eax,intval
    call    mult_by_MUL

    call    GetMseconds ; get stop time
    sub eax,startTime
    call    WriteDec        ; display elapsed time
    call    Crlf

    exit
main ENDP


;---------------------------------
mult_by_shifting PROC
;
; Multiplies EAX by 36 using SHL
;    LOOP_COUNT times.
; Receives: EAX
;---------------------------------

    mov ecx,LOOP_COUNT

L1: push    eax         ; save original EAX
    mov ebx,eax
    shl eax,5
    shl ebx,2
    add eax,ebx
    pop eax         ; restore EAX
    loop    L1

    ret
mult_by_shifting ENDP


;---------------------------------
mult_by_MUL PROC
;
; Multiplies EAX by 36 using MUL
;    LOOP_COUNT times.
; Receives: EAX
;---------------------------------

    mov ecx,LOOP_COUNT

L1: push    eax         ; save original EAX
    mov ebx,36
    mul ebx
    pop eax         ; restore EAX
    loop    L1

    ret
mult_by_MUL ENDP

END main

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文