VirtualBox

Changeset 26223 in vbox


Ignore:
Timestamp:
Feb 3, 2010 9:58:26 PM (15 years ago)
Author:
vboxsync
Message:

s/RuntimeGC/RuntimeRC/; s/DisasmGC/DisasmRC/; s/tstMicroGC/tstMicroRC/g

Location:
trunk/src/VBox
Files:
6 edited
3 moved

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Disassembler/Makefile.kmk

    r26222 r26223  
    5151
    5252ifdef VBOX_WITH_RAW_MODE
    53  LIBRARIES              += DisasmGC
    54  DisasmGC_TEMPLATE       = VBoxRc
    55  DisasmGC_DEFS           = IN_DIS IN_RT_GC IN_RT_RC DIS_CORE_ONLY
    56  DisasmGC_SOURCES        = \
     53 LIBRARIES              += DisasmRC
     54 DisasmRC_TEMPLATE       = VBoxRc
     55 DisasmRC_DEFS           = IN_DIS IN_RT_GC IN_RT_RC DIS_CORE_ONLY
     56 DisasmRC_SOURCES        = \
    5757        DisasmCore.cpp \
    5858        DisasmReg.cpp \
  • trunk/src/VBox/Runtime/Makefile.kmk

    r26222 r26223  
    6060 LIBRARIES += RuntimeR3 RuntimeR0 RuntimeEFCPP RuntimeR3NoCRTGCC
    6161 ifdef VBOX_WITH_RAW_MODE
    62   LIBRARIES += RuntimeGC
     62  LIBRARIES += RuntimeRC
    6363 endif
    6464 ifdef VBOX_WITH_VBOXDRV
     
    15471547ifdef VBOX_WITH_RAW_MODE
    15481548 #
    1549  # RuntimeGC - Guest context library.
     1549 # RuntimeRC - Raw-mode context library.
    15501550 #
    1551  RuntimeGC_TEMPLATE      = VBoxRc
    1552  RuntimeGC_DEFS          = IN_RT_GC RT_WITH_VBOX
    1553  RuntimeGC_INCS          = include
    1554  RuntimeGC_SOURCES       = \
     1551 RuntimeRC_TEMPLATE      = VBoxRc
     1552 RuntimeRC_DEFS          = IN_RT_GC RT_WITH_VBOX
     1553 RuntimeRC_INCS          = include
     1554 RuntimeRC_SOURCES       = \
    15551555        common/log/log.cpp \
    15561556        common/log/logellipsis.cpp \
     
    15951595
    15961596 #if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
    1597  # RuntimeGC_SOURCES += common/time/timesupA.asm
     1597 # RuntimeRC_SOURCES += common/time/timesupA.asm
    15981598 #else
    1599   RuntimeGC_SOURCES += common/time/timesupref.cpp
     1599  RuntimeRC_SOURCES += common/time/timesupref.cpp
    16001600 #endif
    16011601
    1602  RuntimeGC_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
     1602 RuntimeRC_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
    16031603
    16041604 ifeq ($(VBOX_LDR_FMT32),lx)
    1605   RuntimeGC_SOURCES += os2/sys0.asm
     1605  RuntimeRC_SOURCES += os2/sys0.asm
    16061606 endif
    16071607
    16081608 if1of ($(KBUILD_TARGET), darwin solaris freebsd)
    1609   RuntimeGC_SOURCES += \
     1609  RuntimeRC_SOURCES += \
    16101610        common/math/gcc/adddi3.c \
    16111611        common/math/gcc/anddi3.c \
  • trunk/src/VBox/Runtime/testcase/Makefile.kmk

    r26222 r26223  
    238238 endif
    239239 tstLdrObj_LIBS = \
    240         $(PATH_LIB)/DisasmGC$(VBOX_SUFF_LIB) \
    241         $(PATH_LIB)/RuntimeGC$(VBOX_SUFF_LIB)
     240        $(PATH_LIB)/DisasmRC$(VBOX_SUFF_LIB) \
     241        $(PATH_LIB)/RuntimeRC$(VBOX_SUFF_LIB)
    242242 ifeq ($(VBOX_LDR_FMT32),pe)
    243243 tstLdrObj_LDFLAGS = -Entry:Entrypoint
  • trunk/src/VBox/VMM/Makefile.kmk

    r26222 r26223  
    351351
    352352 VMMGC_LIBS      = \
    353         $(PATH_LIB)/DisasmGC$(VBOX_SUFF_LIB) \
    354         $(PATH_LIB)/RuntimeGC$(VBOX_SUFF_LIB)
     353        $(PATH_LIB)/DisasmRC$(VBOX_SUFF_LIB) \
     354        $(PATH_LIB)/RuntimeRC$(VBOX_SUFF_LIB)
    355355 ifneq ($(filter pe lx,$(VBOX_LDR_FMT32)),)
    356356  VMMGC_LIBS    += \
  • trunk/src/VBox/VMM/testcase/Makefile.kmk

    r26222 r26223  
    4848 ifdef VBOX_WITH_RAW_MODE
    4949  PROGRAMS += tstMicro
    50   SYSMODS  += tstMicroGC
     50  SYSMODS  += tstMicroRC
    5151 endif
    5252 ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
     
    228228 tstMicro_LIBS           = $(LIB_VMM) $(LIB_REM) $(LIB_RUNTIME)
    229229
    230  tstMicroGC_TEMPLATE     = VBoxRc
    231  tstMicroGC_SOURCES      = tstMicroGC.cpp tstMicroGCA.asm
    232  tstMicroGC_DEFS         =
    233  tstMicroGC_INCS         = $(VBOX_PATH_VMM_SRC)/testcase
     230 tstMicroRC_TEMPLATE     = VBoxRc
     231 tstMicroRC_SOURCES      = tstMicroRC.cpp tstMicroRCA.asm
     232 tstMicroRC_DEFS         =
     233 tstMicroRC_INCS         = $(VBOX_PATH_VMM_SRC)/testcase
    234234 ifeq ($(VBOX_LDR_FMT32),pe)
    235   tstMicroGC_LDFLAGS     = -Entry:tstMicroGC
    236  endif
    237  tstMicroGC_SYSSUFF      = .gc
    238  tstMicroGC_LIBS         = \
    239         $(PATH_LIB)/DisasmGC$(VBOX_SUFF_LIB) \
    240         $(PATH_LIB)/RuntimeGC$(VBOX_SUFF_LIB)
     235  tstMicroRC_LDFLAGS     = -Entry:tstMicroRC
     236 endif
     237 tstMicroRC_SYSSUFF      = .gc
     238 tstMicroRC_LIBS         = \
     239        $(PATH_LIB)/DisasmRC$(VBOX_SUFF_LIB) \
     240        $(PATH_LIB)/RuntimeRC$(VBOX_SUFF_LIB)
    241241 ifeq ($(filter-out pe lx,$(VBOX_LDR_FMT32)),)
    242   tstMicroGC_LIBS        += \
     242  tstMicroRC_LIBS        += \
    243243        $(PATH_LIB)/VMMGCBuiltin$(VBOX_SUFF_LIB) \
    244244        $(LIB_VMMGC)
    245245 endif
    246  tstMicroGC_SOURCES.win = tstMicroGC.def
     246 tstMicroRC_SOURCES.win = tstMicroRC.def
    247247
    248248endif # VBOX_WITH_RAW_MODE
  • trunk/src/VBox/VMM/testcase/tstMicro.cpp

    r26152 r26223  
    203203     * Loading the module and resolve the entry point.
    204204     */
    205     int rc = PDMR3LdrLoadRC(pVM, NULL, "tstMicroGC.gc");
    206     if (RT_FAILURE(rc))
    207     {
    208         RTPrintf(TESTCASE ": Failed to load tstMicroGC.gc, rc=%Rra\n", rc);
     205    int rc = PDMR3LdrLoadRC(pVM, NULL, "tstMicroRC.gc");
     206    if (RT_FAILURE(rc))
     207    {
     208        RTPrintf(TESTCASE ": Failed to load tstMicroRC.gc, rc=%Rra\n", rc);
    209209        return rc;
    210210    }
    211211    RTRCPTR RCPtrEntry;
    212     rc = PDMR3LdrGetSymbolRC(pVM, "tstMicroGC.gc", "tstMicroGC", &RCPtrEntry);
    213     if (RT_FAILURE(rc))
    214     {
    215         RTPrintf(TESTCASE ": Failed to resolve the 'tstMicroGC' entry point in tstMicroGC.gc, rc=%Rra\n", rc);
     212    rc = PDMR3LdrGetSymbolRC(pVM, "tstMicroRC.gc", "tstMicroRC", &RCPtrEntry);
     213    if (RT_FAILURE(rc))
     214    {
     215        RTPrintf(TESTCASE ": Failed to resolve the 'tstMicroRC' entry point in tstMicroRC.gc, rc=%Rra\n", rc);
    216216        return rc;
    217217    }
    218218    RTRCPTR RCPtrStart;
    219     rc = PDMR3LdrGetSymbolRC(pVM, "tstMicroGC.gc", "tstMicroGCAsmStart", &RCPtrStart);
    220     if (RT_FAILURE(rc))
    221     {
    222         RTPrintf(TESTCASE ": Failed to resolve the 'tstMicroGCAsmStart' entry point in tstMicroGC.gc, rc=%Rra\n", rc);
     219    rc = PDMR3LdrGetSymbolRC(pVM, "tstMicroRC.gc", "tstMicroRCAsmStart", &RCPtrStart);
     220    if (RT_FAILURE(rc))
     221    {
     222        RTPrintf(TESTCASE ": Failed to resolve the 'tstMicroRCAsmStart' entry point in tstMicroRC.gc, rc=%Rra\n", rc);
    223223        return rc;
    224224    }
    225225    RTRCPTR RCPtrEnd;
    226     rc = PDMR3LdrGetSymbolRC(pVM, "tstMicroGC.gc", "tstMicroGCAsmEnd", &RCPtrEnd);
    227     if (RT_FAILURE(rc))
    228     {
    229         RTPrintf(TESTCASE ": Failed to resolve the 'tstMicroGCAsmEnd' entry point in tstMicroGC.gc, rc=%Rra\n", rc);
     226    rc = PDMR3LdrGetSymbolRC(pVM, "tstMicroRC.gc", "tstMicroRCAsmEnd", &RCPtrEnd);
     227    if (RT_FAILURE(rc))
     228    {
     229        RTPrintf(TESTCASE ": Failed to resolve the 'tstMicroRCAsmEnd' entry point in tstMicroRC.gc, rc=%Rra\n", rc);
    230230        return rc;
    231231    }
  • trunk/src/VBox/VMM/testcase/tstMicroRC.cpp

    r26217 r26223  
    3939*******************************************************************************/
    4040RT_C_DECLS_BEGIN
    41 DECLEXPORT(int) tstMicroGC(PTSTMICRO pTst, unsigned uTestcase);
     41DECLEXPORT(int) tstMicroRC(PTSTMICRO pTst, unsigned uTestcase);
    4242RT_C_DECLS_END
    4343
     
    133133
    134134
    135 DECLEXPORT(int) tstMicroGC(PTSTMICRO pTst, unsigned uTestcase)
     135DECLEXPORT(int) tstMicroRC(PTSTMICRO pTst, unsigned uTestcase)
    136136{
    137137    RTLogPrintf("pTst=%p uTestcase=%d\n", pTst, uTestcase);
  • trunk/src/VBox/VMM/testcase/tstMicroRC.def

    r26217 r26223  
    1818;
    1919
    20 LIBRARY tstMicroGC.gc
     20LIBRARY tstMicroRC.gc
    2121EXPORTS
    2222    ; data
    2323
    2424    ; code
    25     tstMicroGCAsmStart
    26     tstMicroGCAsmEnd
     25    tstMicroRCAsmStart
     26    tstMicroRCAsmEnd
    2727    tstPFR1
    2828    tstPFR2
  • trunk/src/VBox/VMM/testcase/tstMicroRCA.asm

    r26217 r26223  
    11; $Id$
    22;; @file
    3 ; tstMicroGCA
     3; tstMicroRCA
    44;
    55
     
    133133
    134134BEGINCODE
    135 EXPORTEDNAME tstMicroGCAsmStart
     135EXPORTEDNAME tstMicroRCAsmStart
    136136
    137137
     
    558558ENDPROC tstTrapHandler
    559559
    560 EXPORTEDNAME tstMicroGCAsmEnd
     560EXPORTEDNAME tstMicroRCAsmEnd
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