VirtualBox

儲存庫 vbox 的更動 65982


忽略:
時間撮記:
2017-3-7 下午01:29:51 (8 年 以前)
作者:
vboxsync
訊息:

PGMInline.h: a couple of more 32-bit shift optimizations.

檔案:
修改 1 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/VMM/include/PGMInline.h

    r64322 r65982  
    10081008DECLINLINE(X86PDE) pgmShwGet32BitPDE(PVMCPU pVCpu, RTGCPTR GCPtr)
    10091009{
    1010     const unsigned iPd = (GCPtr >> X86_PD_SHIFT) & X86_PD_MASK;
    1011 
    10121010    PX86PD pShwPde = pgmShwGet32BitPDPtr(pVCpu);
    10131011    if (!pShwPde)
     
    10161014        return ZeroPde;
    10171015    }
    1018     return pShwPde->a[iPd];
     1016    return pShwPde->a[(uint32_t)GCPtr >> X86_PD_SHIFT];
    10191017}
    10201018
     
    10301028DECLINLINE(PX86PDE) pgmShwGet32BitPDEPtr(PVMCPU pVCpu, RTGCPTR GCPtr)
    10311029{
    1032     const unsigned iPd = (GCPtr >> X86_PD_SHIFT) & X86_PD_MASK;
    1033 
    10341030    PX86PD pPde = pgmShwGet32BitPDPtr(pVCpu);
    10351031    AssertReturn(pPde, NULL);
    1036     return &pPde->a[iPd];
     1032    return &pPde->a[(uint32_t)GCPtr >> X86_PD_SHIFT];
    10371033}
    10381034
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette