VirtualBox

Changeset 40076 in vbox for trunk/src/VBox/VMM/VMMR3


Ignore:
Timestamp:
Feb 11, 2012 2:48:43 AM (13 years ago)
Author:
vboxsync
Message:

Changed the types of the r80 views of the FPU registers.

Location:
trunk/src/VBox/VMM/VMMR3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/CPUMDbg.cpp

    r39405 r40076  
    314314            fMaskMax = UINT32_MAX;
    315315            break;
    316         default:                   
     316        default:
    317317            AssertFailedReturn(VERR_IPE_NOT_REACHED_DEFAULT_CASE);
    318318    }
     
    394394            fMaskMax = UINT32_MAX;
    395395            break;
    396         default:                   
     396        default:
    397397            AssertFailedReturn(VERR_IPE_NOT_REACHED_DEFAULT_CASE);
    398398    }
     
    473473            fMaskMax = UINT16_MAX;
    474474            break;
    475         default:                   
     475        default:
    476476            AssertFailedReturn(VERR_IPE_NOT_REACHED_DEFAULT_CASE);
    477477    }
     
    507507        iReg += pDesc->offRegister;
    508508        iReg &= 7;
    509         pValue->r80 = pVCpu->cpum.s.Guest.fpu.aRegs[iReg].r80;
     509        pValue->r80Ex = pVCpu->cpum.s.Guest.fpu.aRegs[iReg].r80Ex;
    510510    }
    511511    else
     
    517517        iReg &= 7;
    518518
    519         pValue->r80 = pOldFpu->regs[iReg].r80;
     519        pValue->r80Ex = pOldFpu->regs[iReg].r80Ex;
    520520    }
    521521
     
    671671        iReg += pDesc->offRegister;
    672672        iReg &= 7;
    673         pValue->r80 = pVCpu->cpum.s.Guest.fpu.aRegs[iReg].r80;
     673        pValue->r80Ex = pVCpu->cpum.s.Guest.fpu.aRegs[iReg].r80Ex;
    674674    }
    675675    else
     
    681681        iReg &= 7;
    682682
    683         pValue->r80 = pOldFpu->regs[iReg].r80;
     683        pValue->r80Ex = pOldFpu->regs[iReg].r80Ex;
    684684    }
    685685
  • trunk/src/VBox/VMM/VMMR3/DBGFReg.cpp

    r39405 r40076  
    18681868            return RTStrFormatU128(pszTmp, cbTmp, &pValue->u128, uBase, cchWidth, cchPrecision, fFlags);
    18691869        case DBGFREGVALTYPE_R80:
    1870             return RTStrFormatR80u2(pszTmp, cbTmp, &pValue->r80, cchWidth, cchPrecision, fFlags);
     1870            return RTStrFormatR80u2(pszTmp, cbTmp, &pValue->r80Ex, cchWidth, cchPrecision, fFlags);
    18711871        case DBGFREGVALTYPE_DTR:
    18721872        {
Note: See TracChangeset for help on using the changeset viewer.

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