VirtualBox

Changeset 74018 in vbox for trunk/src


Ignore:
Timestamp:
Sep 1, 2018 5:33:17 AM (6 years ago)
Author:
vboxsync
Message:

VMM/IEM: Nested VMX: bugref:9180 We already have CPL in IEM, avoid calling CPUMGetGuestCPL whenever possible.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h

    r74017 r74018  
    11431143
    11441144    /* CPL. */
    1145     if (CPUMGetGuestCPL(pVCpu) > 0)
     1145    if (pVCpu->iem.s.uCpl > 0)
    11461146    {
    11471147        Log(("vmread: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
     
    13541354
    13551355    /* CPL. */
    1356     if (CPUMGetGuestCPL(pVCpu) > 0)
     1356    if (pVCpu->iem.s.uCpl > 0)
    13571357    {
    13581358        Log(("vmwrite: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
     
    14981498
    14991499    /* CPL. */
    1500     if (CPUMGetGuestCPL(pVCpu) > 0)
     1500    if (pVCpu->iem.s.uCpl > 0)
    15011501    {
    15021502        Log(("vmclear: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
     
    16101610
    16111611    /* CPL. */
    1612     if (CPUMGetGuestCPL(pVCpu) > 0)
     1612    if (pVCpu->iem.s.uCpl > 0)
    16131613    {
    16141614        Log(("vmptrst: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
     
    16571657
    16581658    /* CPL. */
    1659     if (CPUMGetGuestCPL(pVCpu) > 0)
     1659    if (pVCpu->iem.s.uCpl > 0)
    16601660    {
    16611661        Log(("vmptrld: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
     
    19691969
    19701970    /* CPL. */
    1971     if (CPUMGetGuestCPL(pVCpu) > 0)
     1971    if (pVCpu->iem.s.uCpl > 0)
    19721972    {
    19731973        Log(("vmlaunch: CPL %u -> #GP(0)\n", pVCpu->iem.s.uCpl));
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