VirtualBox

Changeset 69221 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Oct 24, 2017 3:07:46 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
118534
Message:

VMM: scm cleanups

Location:
trunk/src/VBox/VMM
Files:
1 added
52 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/EMAllA.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMAll/IEMAll.cpp

    r69148 r69221  
    32203220/**
    32213221 * Gets the exception class for the specified exception vector.
    3222  * 
     3222 *
    32233223 * @returns The class of the specified exception.
    3224  * @param   uVector       The exception vector. 
     3224 * @param   uVector       The exception vector.
    32253225 */
    32263226IEM_STATIC IEMXCPTCLASS iemGetXcptClass(uint8_t uVector)
     
    32513251 * Evaluates how to handle an exception caused during delivery of another event
    32523252 * (exception / interrupt).
    3253  * 
    3254  * @returns How to handle the recursive exception. 
     3253 *
     3254 * @returns How to handle the recursive exception.
    32553255 * @param   pVCpu               The cross context virtual CPU structure of the
    32563256 *                              calling thread.
     
    33393339    if (pfXcptRaiseInfo)
    33403340        *pfXcptRaiseInfo = fRaiseInfo;
    3341     return enmRaise; 
     3341    return enmRaise;
    33423342}
    33433343
  • trunk/src/VBox/VMM/VMMAll/IEMAllAImpl.asm

    r69111 r69221  
    44;
    55
     6;
    67; Copyright (C) 2011-2017 Oracle Corporation
    78;
  • trunk/src/VBox/VMM/VMMAll/IEMAllInstructionsVexMap1.cpp.h

    r69111 r69221  
    40534053/** @}  */
    40544054
    4055 
  • trunk/src/VBox/VMM/VMMR0/HMR0A.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp

    r69186 r69221  
    324324#endif
    325325
     326
    326327/*********************************************************************************************************************************
    327328*   Global Variables                                                                                                             *
  • trunk/src/VBox/VMM/VMMR0/TRPMR0A.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMR0/VMMR0JmpA-amd64.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMR0/VMMR0JmpA-x86.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMR3/CPUMR3CpuId.cpp

    r69111 r69221  
    26752675    }
    26762676
    2677     /* Mask out the VME capability on certain CPUs, unless overridden by fForceVme. 
     2677    /* Mask out the VME capability on certain CPUs, unless overridden by fForceVme.
    26782678     * VME bug was fixed in AGESA 1.0.0.6, microcode patch level 8001126.
    26792679     */
     
    32593259    if (cbXSaveMaxReport != cbXSaveMaxActual && fGuestXcr0Mask)
    32603260    {
    3261         pCurLeaf = cpumR3CpuIdGetExactLeaf(pCpum, 13, 0); 
     3261        pCurLeaf = cpumR3CpuIdGetExactLeaf(pCpum, 13, 0);
    32623262        if (pCurLeaf)
    32633263        {
    32643264            LogRel(("CPUM: Changing leaf 13[0]: EBX=%#RX32 -> %#RX32, ECX=%#RX32 -> %#RX32\n",
    32653265                    pCurLeaf->uEbx, cbXSaveMaxReport, pCurLeaf->uEcx, cbXSaveMaxReport));
    3266             pCurLeaf->uEbx = cbXSaveMaxReport; 
     3266            pCurLeaf->uEbx = cbXSaveMaxReport;
    32673267            pCurLeaf->uEcx = cbXSaveMaxReport;
    32683268        }
  • trunk/src/VBox/VMM/VMMR3/DBGFR3Flow.cpp

    r69111 r69221  
    4343#include <iprt/sort.h>
    4444#include <iprt/strcache.h>
     45
    4546
    4647/*********************************************************************************************************************************
     
    196197typedef DBGFFLOWBRANCHTBLITINT *PDBGFFLOWBRANCHTBLITINT;
    197198
     199
    198200/*********************************************************************************************************************************
    199201*   Internal Functions                                                                                                           *
     
    597599    }
    598600    else
    599         AssertFailedStmt(rc = VERR_INVALID_STATE); /** @todo: Proper status code. */
     601        AssertFailedStmt(rc = VERR_INVALID_STATE); /** @todo Proper status code. */
    600602
    601603    return rc;
     
    773775    for (;;)
    774776    {
    775         /** @todo: Avoid to disassemble again. */
     777        /** @todo Avoid to disassemble again. */
    776778        PDBGFFLOWBBINSTR pInstr = &pFlowBb->aInstr[idxInstrCur];
    777779        DBGFDISSTATE DisState;
     
    10931095                rc = dbgfR3FlowTryResolveIndirectBranch(pThis, pFlowBb, pUVM, idCpu, pDisParam, fFlagsDisasm);
    10941096            }
    1095             /** @todo: else check that the base register is not modified in this basic block. */
     1097            /** @todo else check that the base register is not modified in this basic block. */
    10961098        }
    10971099        else
  • trunk/src/VBox/VMM/VMMR3/MM.cpp

    r69111 r69221  
    855855}
    856856
    857 
  • trunk/src/VBox/VMM/VMMR3/PATMA.asm

    • Property svn:keywords changed from Id to Id Revision
    r69111 r69221  
    44;
    55
     6;
    67; Copyright (C) 2006-2017 Oracle Corporation
    78;
  • trunk/src/VBox/VMM/VMMR3/PATMA.mac

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMRC/CPUMRCA.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMRC/CPUMRCPatchHlp.asm

    r69111 r69221  
    44;
    55
     6;
    67; Copyright (C) 2015-2017 Oracle Corporation
    78;
  • trunk/src/VBox/VMM/VMMRC/MMRamRCA.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMRC/TRPMRCHandlersA.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMRC/VMMRC.mac

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMRC/VMMRC0.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMRC/VMMRC99.asm

    • Property svn:keywords changed from Id to Id Revision
    r69111 r69221  
    44;
    55
     6;
    67; Copyright (C) 2006-2017 Oracle Corporation
    78;
  • trunk/src/VBox/VMM/VMMRC/VMMRCA.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMRC/VMMRCBuiltin.def

    r69111 r69221  
    44;
    55
     6;
    67; Copyright (C) 2006-2017 Oracle Corporation
    78;
  • trunk/src/VBox/VMM/VMMSwitcher/32BitTo32Bit.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMSwitcher/32BitToAMD64.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMSwitcher/32BitToPAE.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMSwitcher/AMD64To32Bit.asm

    r69111 r69221  
    3434%include "VMMSwitcher/AMD64andLegacy.mac"
    3535
    36 
  • trunk/src/VBox/VMM/VMMSwitcher/AMD64ToPAE.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMSwitcher/AMD64andLegacy.mac

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMSwitcher/PAETo32Bit.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMSwitcher/PAEToAMD64.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMSwitcher/PAEToPAE.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMSwitcher/PAEand32Bit.mac

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/VMMSwitcher/X86Stub.asm

    r69111 r69221  
    109109    iend
    110110
    111 
  • trunk/src/VBox/VMM/include/CPUMInternal.mac

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/include/TRPMInternal.mac

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/include/VMMInternal.mac

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/include/VMMSwitcher.mac

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/testcase/Instructions/env-bs2-r0-big.mac

    • Property svn:executable deleted
  • trunk/src/VBox/VMM/testcase/Instructions/env-bs2-r0-common.mac

    • Property svn:executable deleted
  • trunk/src/VBox/VMM/testcase/Instructions/env-bs2-r0.mac

    • Property svn:executable deleted
  • trunk/src/VBox/VMM/testcase/Instructions/env-iprt-r3-32.mac

    • Property svn:executable deleted
  • trunk/src/VBox/VMM/testcase/Instructions/env-iprt-r3-64.mac

    • Property svn:executable deleted
  • trunk/src/VBox/VMM/testcase/Instructions/env-iprt-r3.mac

    • Property svn:executable deleted
  • trunk/src/VBox/VMM/testcase/mkdsk.sh

    r69111 r69221  
    11#!/bin/sh
     2## @file
     3# Obsolete?
     4#
     5
    26#
    37# Copyright (C) 2006-2017 Oracle Corporation
  • trunk/src/VBox/VMM/testcase/tstAsmStructsAsm-lst.sed

    r61141 r69221  
     1# $Id$
     2## @file
     3# For testing assembly struct when using yasm.
     4#
     5
     6#
     7# Copyright (C) 2006-2017 Oracle Corporation
     8#
     9# This file is part of VirtualBox Open Source Edition (OSE), as
     10# available from http://www.virtualbox.org. This file is free software;
     11# you can redistribute it and/or modify it under the terms of the GNU
     12# General Public License (GPL) as published by the Free Software
     13# Foundation, in version 2 as it comes in the "COPYING" file of the
     14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16#
     17
    118#
    219# Strip stuff lines and spaces we don't care about.
  • trunk/src/VBox/VMM/testcase/tstAsmStructsAsm.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/testcase/tstMicro.mac

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/testcase/tstMicroRC.def

    r69111 r69221  
    33; VMM Guest Context Micro Benchmark - Definition file.
    44
     5;
    56; Copyright (C) 2006-2017 Oracle Corporation
    67;
  • trunk/src/VBox/VMM/testcase/tstMicroRCA.asm

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/VBox/VMM/tools/VBoxCpuReport.cpp

    r69111 r69221  
    1717
    1818
    19 /*******************************************************************************
    20 *   Header Files                                                               *
    21 *******************************************************************************/
     19/*********************************************************************************************************************************
     20*   Header Files                                                                                                                 *
     21*********************************************************************************************************************************/
    2222#include <iprt/asm.h>
    2323#include <iprt/asm-amd64-x86.h>
     
    4141
    4242
    43 /*******************************************************************************
    44 *   Structures and Typedefs                                                    *
    45 *******************************************************************************/
     43/*********************************************************************************************************************************
     44*   Structures and Typedefs                                                                                                      *
     45*********************************************************************************************************************************/
    4646/** Write only register. */
    4747#define VBCPUREPMSR_F_WRITE_ONLY      RT_BIT(0)
     
    5858
    5959
    60 /*******************************************************************************
    61 *   Global Variables                                                           *
    62 *******************************************************************************/
     60/*********************************************************************************************************************************
     61*   Global Variables                                                                                                             *
     62*********************************************************************************************************************************/
    6363/** The CPU vendor.  Used by the MSR code. */
    6464static CPUMCPUVENDOR    g_enmVendor = CPUMCPUVENDOR_INVALID;
  • trunk/src/VBox/VMM/tools/VBoxVMMPreload.cpp

    r69111 r69221  
    1717
    1818
    19 /*******************************************************************************
    20 *   Header Files                                                               *
    21 *******************************************************************************/
     19/*********************************************************************************************************************************
     20*   Header Files                                                                                                                 *
     21*********************************************************************************************************************************/
    2222#include <iprt/buildconfig.h>
    2323#include <iprt/getopt.h>
     
    3333
    3434
    35 /*******************************************************************************
    36 *   Global Variables                                                           *
    37 *******************************************************************************/
     35/*********************************************************************************************************************************
     36*   Global Variables                                                                                                             *
     37*********************************************************************************************************************************/
    3838/**
    3939 * Known modules and their associated data (there are only known modules!).
Note: See TracChangeset for help on using the changeset viewer.

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