VirtualBox

忽略:
時間撮記:
2016-4-2 上午01:00:50 (9 年 以前)
作者:
vboxsync
訊息:

bs3kit: Test CS.LIMIT trouble. Move a few parameters into globals to save source and a little bit of code space.

檔案:
修改 1 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-basic-2-template.c

    r60292 r60293  
    6969    { \
    7070        if ((a_Actual) == (a_Expected)) { /* likely */ } \
    71         else Bs3TestFailedF("%u - %s: " a_szName "=" a_szFmt " expected " a_szFmt, uLine, pszMode, (a_Actual), (a_Expected)); \
     71        else bs3CpuBasic2_FailedF(a_szName "=" a_szFmt " expected " a_szFmt, (a_Actual), (a_Expected)); \
    7272    } while (0)
    7373
     
    8282
    8383
    84 #if TMPL_MODE == BS3_MODE_PE16 || TMPL_MODE == BS3_MODE_PE16_32 || TMPL_MODE == BS3_MODE_LM64
     84/*********************************************************************************************************************************
     85*   Global Variables                                                                                                             *
     86*********************************************************************************************************************************/
     87#if TMPL_MODE == BS3_MODE_RM || TMPL_MODE == BS3_MODE_PE16_32 || TMPL_MODE == BS3_MODE_LM64
     88static const char BS3_FAR  *g_pszTestMode = (const char *)1;
     89static uint8_t              g_bTestMode = 1;
     90static bool                 g_f16BitSys = 1;
     91static unsigned             g_uLine = 1;
     92#endif
     93
     94#if TMPL_MODE == BS3_MODE_RM || TMPL_MODE == BS3_MODE_PE16_32 || TMPL_MODE == BS3_MODE_LM64
     95
     96/**
     97 * Wrapper around Bs3TestFailedF that prefixes the error with g_uLine and
     98 * g_pszTestMode.
     99 */
     100void bs3CpuBasic2_FailedF(const char *pszFormat, ...)
     101{
     102    va_list va;
     103
     104    char szTmp[168];
     105    va_start(va, pszFormat);
     106    Bs3StrPrintfV(szTmp, sizeof(szTmp), pszFormat, va);
     107    va_end(va);
     108
     109    Bs3TestFailedF("%u - %s: %s", g_uLine, g_pszTestMode, szTmp);
     110}
     111
    85112
    86113/**
     
    88115 */
    89116#define bs3CpuBasic2_CompareIntCtx1 BS3_CMN_NM(bs3CpuBasic2_CompareIntCtx1)
    90 void bs3CpuBasic2_CompareIntCtx1(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint8_t bXcpt,
    91                                   const char *pszMode, unsigned uLine)
     117void bs3CpuBasic2_CompareIntCtx1(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint8_t bXcpt)
    92118{
    93119    uint16_t const cErrorsBefore = Bs3TestSubErrorCount();
    94120    CHECK_MEMBER("bXcpt",   "%#04x",    pTrapCtx->bXcpt,        bXcpt);
    95121    CHECK_MEMBER("bErrCd",  "%#06RX64", pTrapCtx->uErrCd,       0);
    96     Bs3TestCheckRegCtxEx(&pTrapCtx->Ctx, pStartCtx, 2 /*int xx*/, 0 /*cbSpAdjust*/, 0 /*fExtraEfl*/, pszMode, uLine);
     122    Bs3TestCheckRegCtxEx(&pTrapCtx->Ctx, pStartCtx, 2 /*int xx*/, 0 /*cbSpAdjust*/, 0 /*fExtraEfl*/, g_pszTestMode, g_uLine);
    97123    if (Bs3TestSubErrorCount() != cErrorsBefore)
    98124    {
     
    109135#define bs3CpuBasic2_CompareTrapCtx2 BS3_CMN_NM(bs3CpuBasic2_CompareTrapCtx2)
    110136void bs3CpuBasic2_CompareTrapCtx2(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint16_t cbIpAdjust, uint8_t bXcpt,
    111                                   uint16_t uHandlerCs, const char *pszMode, unsigned uLine)
     137                                  uint16_t uHandlerCs)
    112138{
    113139    uint16_t const cErrorsBefore = Bs3TestSubErrorCount();
     
    115141    CHECK_MEMBER("bErrCd",  "%#06RX64", pTrapCtx->uErrCd,       0);
    116142    CHECK_MEMBER("uHandlerCs", "%#06x", pTrapCtx->uHandlerCs,   uHandlerCs);
    117     Bs3TestCheckRegCtxEx(&pTrapCtx->Ctx, pStartCtx, cbIpAdjust, 0 /*cbSpAdjust*/, 0 /*fExtraEfl*/, pszMode, uLine);
     143    Bs3TestCheckRegCtxEx(&pTrapCtx->Ctx, pStartCtx, cbIpAdjust, 0 /*cbSpAdjust*/, 0 /*fExtraEfl*/, g_pszTestMode, g_uLine);
    118144    if (Bs3TestSubErrorCount() != cErrorsBefore)
    119145    {
     
    123149    }
    124150}
     151
     152/**
     153 * Compares a CPU trap.
     154 */
     155#define bs3CpuBasic2_CompareCpuTrapCtx BS3_CMN_NM(bs3CpuBasic2_CompareCpuTrapCtx)
     156BS3_DECL(void) bs3CpuBasic2_CompareCpuTrapCtx(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint16_t uErrCd, uint8_t bXcpt)
     157{
     158    uint16_t const cErrorsBefore = Bs3TestSubErrorCount();
     159    CHECK_MEMBER("bXcpt",   "%#04x",    pTrapCtx->bXcpt,        bXcpt);
     160    CHECK_MEMBER("bErrCd",  "%#06RX64", pTrapCtx->uErrCd,       (uint64_t)uErrCd);
     161    Bs3TestCheckRegCtxEx(&pTrapCtx->Ctx, pStartCtx, 0 /*cbIpAdjust*/, 0 /*cbSpAdjust*/,
     162                         g_f16BitSys ? 0 : X86_EFL_RF,
     163                         g_pszTestMode, g_uLine);
     164    if (Bs3TestSubErrorCount() != cErrorsBefore)
     165    {
     166//Bs3TestPrintf("%s\n",  __FUNCTION__);
     167        Bs3TrapPrintFrame(pTrapCtx);
     168ASMHalt();
     169    }
     170}
     171
    125172
    126173/**
     
    128175 */
    129176#define bs3CpuBasic2_CompareGpCtx BS3_CMN_NM(bs3CpuBasic2_CompareGpCtx)
    130 void bs3CpuBasic2_CompareGpCtx(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint16_t uErrCd, bool f16BitHandler,
    131                                const char *pszMode, unsigned uLine)
    132 {
    133     uint16_t const cErrorsBefore = Bs3TestSubErrorCount();
    134     CHECK_MEMBER("bXcpt",   "%#04x",    pTrapCtx->bXcpt,        X86_XCPT_GP);
    135     CHECK_MEMBER("bErrCd",  "%#06RX64", pTrapCtx->uErrCd,       (uint64_t)uErrCd);
    136     Bs3TestCheckRegCtxEx(&pTrapCtx->Ctx, pStartCtx, 0 /*cbIpAdjust*/, 0 /*cbSpAdjust*/,
    137                          f16BitHandler ? 0 : X86_EFL_RF,
    138                          pszMode, uLine);
    139     if (Bs3TestSubErrorCount() != cErrorsBefore)
    140     {
    141 //Bs3TestPrintf("%s\n",  __FUNCTION__);
    142         Bs3TrapPrintFrame(pTrapCtx);
    143 ASMHalt();
    144     }
     177void bs3CpuBasic2_CompareGpCtx(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint16_t uErrCd)
     178{
     179    bs3CpuBasic2_CompareCpuTrapCtx(pTrapCtx, pStartCtx, uErrCd, X86_XCPT_GP);
    145180}
    146181
     
    149184 */
    150185#define bs3CpuBasic2_CompareNpCtx BS3_CMN_NM(bs3CpuBasic2_CompareNpCtx)
    151 void bs3CpuBasic2_CompareNpCtx(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint16_t uErrCd, bool f16BitHandler,
    152                                const char *pszMode, unsigned uLine)
    153 {
    154     uint16_t const cErrorsBefore = Bs3TestSubErrorCount();
    155     CHECK_MEMBER("bXcpt",   "%#04x",    pTrapCtx->bXcpt,        X86_XCPT_NP);
    156     CHECK_MEMBER("bErrCd",  "%#06RX64", pTrapCtx->uErrCd,       (uint64_t)uErrCd);
    157     Bs3TestCheckRegCtxEx(&pTrapCtx->Ctx, pStartCtx, 0 /*cbIpAdjust*/, 0 /*cbSpAdjust*/,
    158                          f16BitHandler ? 0 : X86_EFL_RF,
    159                          pszMode, uLine);
    160     if (Bs3TestSubErrorCount() != cErrorsBefore)
    161     {
    162 //Bs3TestPrintf("%s\n",  __FUNCTION__);
    163         Bs3TrapPrintFrame(pTrapCtx);
    164 ASMHalt();
    165     }
     186void bs3CpuBasic2_CompareNpCtx(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint16_t uErrCd)
     187{
     188    bs3CpuBasic2_CompareCpuTrapCtx(pTrapCtx, pStartCtx, uErrCd, X86_XCPT_NP);
    166189}
    167190
     
    170193 */
    171194#define bs3CpuBasic2_CompareSsCtx BS3_CMN_NM(bs3CpuBasic2_CompareSsCtx)
    172 void bs3CpuBasic2_CompareSsCtx(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint16_t uErrCd, bool f16BitHandler,
    173                                const char *pszMode, unsigned uLine)
    174 {
    175     uint16_t const cErrorsBefore = Bs3TestSubErrorCount();
    176     CHECK_MEMBER("bXcpt",   "%#04x",    pTrapCtx->bXcpt,        X86_XCPT_SS);
    177     CHECK_MEMBER("bErrCd",  "%#06RX64", pTrapCtx->uErrCd,       (uint64_t)uErrCd);
    178     Bs3TestCheckRegCtxEx(&pTrapCtx->Ctx, pStartCtx, 0 /*cbIpAdjust*/, 0 /*cbSpAdjust*/,
    179                          f16BitHandler ? 0 : X86_EFL_RF,
    180                          pszMode, uLine);
    181     if (Bs3TestSubErrorCount() != cErrorsBefore)
    182     {
    183 //Bs3TestPrintf("%s\n",  __FUNCTION__);
    184         Bs3TrapPrintFrame(pTrapCtx);
    185 ASMHalt();
    186     }
     195void bs3CpuBasic2_CompareSsCtx(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint16_t uErrCd)
     196{
     197    bs3CpuBasic2_CompareCpuTrapCtx(pTrapCtx, pStartCtx, uErrCd, X86_XCPT_SS);
    187198}
    188199
     
    191202 */
    192203#define bs3CpuBasic2_CompareTsCtx BS3_CMN_NM(bs3CpuBasic2_CompareTsCtx)
    193 void bs3CpuBasic2_CompareTsCtx(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint16_t uErrCd, bool f16BitHandler,
    194                                const char *pszMode, unsigned uLine)
    195 {
    196     uint16_t const cErrorsBefore = Bs3TestSubErrorCount();
    197     CHECK_MEMBER("bXcpt",   "%#04x",    pTrapCtx->bXcpt,        X86_XCPT_TS);
    198     CHECK_MEMBER("bErrCd",  "%#06RX64", pTrapCtx->uErrCd,       (uint64_t)uErrCd);
    199     Bs3TestCheckRegCtxEx(&pTrapCtx->Ctx, pStartCtx, 0 /*cbIpAdjust*/, 0 /*cbSpAdjust*/,
    200                          f16BitHandler ? 0 : X86_EFL_RF,
    201                          pszMode, uLine);
    202     if (Bs3TestSubErrorCount() != cErrorsBefore)
    203     {
    204 //Bs3TestPrintf("%s\n",  __FUNCTION__);
    205         Bs3TrapPrintFrame(pTrapCtx);
    206 ASMHalt();
    207     }
     204void bs3CpuBasic2_CompareTsCtx(PCBS3TRAPFRAME pTrapCtx, PCBS3REGCTX pStartCtx, uint16_t uErrCd)
     205{
     206    bs3CpuBasic2_CompareCpuTrapCtx(pTrapCtx, pStartCtx, uErrCd, X86_XCPT_TS);
    208207}
    209208
     
    212211 */
    213212#define bs3CpuBasic2_ComparePfCtx BS3_CMN_NM(bs3CpuBasic2_ComparePfCtx)
    214 void bs3CpuBasic2_ComparePfCtx(PCBS3TRAPFRAME pTrapCtx, PBS3REGCTX pStartCtx, uint16_t uErrCd, uint64_t uCr2Expected,
    215                                bool f16BitHandler, const char *pszMode, unsigned uLine)
     213void bs3CpuBasic2_ComparePfCtx(PCBS3TRAPFRAME pTrapCtx, PBS3REGCTX pStartCtx, uint16_t uErrCd, uint64_t uCr2Expected)
    216214{
    217215    uint64_t const uCr2Saved     = pStartCtx->cr2.u;
    218     uint16_t const cErrorsBefore = Bs3TestSubErrorCount();
    219     CHECK_MEMBER("bXcpt",   "%#04x",    pTrapCtx->bXcpt,        X86_XCPT_PF);
    220     CHECK_MEMBER("bErrCd",  "%#06RX64", pTrapCtx->uErrCd,       (uint64_t)uErrCd);
    221216    pStartCtx->cr2.u = uCr2Expected;
    222     Bs3TestCheckRegCtxEx(&pTrapCtx->Ctx, pStartCtx, 0 /*cbIpAdjust*/, 0 /*cbSpAdjust*/,
    223                          f16BitHandler ? 0 : X86_EFL_RF,
    224                          pszMode, uLine);
     217    bs3CpuBasic2_CompareCpuTrapCtx(pTrapCtx, pStartCtx, uErrCd, X86_XCPT_PF);
    225218    pStartCtx->cr2.u = uCr2Saved;
    226     if (Bs3TestSubErrorCount() != cErrorsBefore)
    227     {
    228 //Bs3TestPrintf("%s\n",  __FUNCTION__);
    229         Bs3TrapPrintFrame(pTrapCtx);
    230 ASMHalt();
    231     }
    232219}
    233220
    234221#define bs3CpuBasic2_RaiseXcpt1Common BS3_CMN_NM(bs3CpuBasic2_RaiseXcpt1Common)
    235 static void bs3CpuBasic2_RaiseXcpt1Common(uint8_t const bMode, const char * const pszMode, bool const f16BitSys,
     222static void bs3CpuBasic2_RaiseXcpt1Common(bool const g_f16BitSys,
    236223                                          uint16_t const uSysR0Cs, uint16_t const uSysR0CsConf, uint16_t const uSysR0Ss,
    237224                                          PX86DESC const paIdt, unsigned const cIdteShift)
     
    249236    unsigned        iRpl;
    250237    unsigned        i, j, k;
    251     unsigned        uLine;
    252238    uint32_t        uExpected;
    253239# if TMPL_BITS == 16
     
    287273    /* Allocate memory for playing around with the IDT. */
    288274    pbIdtCopyAlloc = NULL;
    289     if (BS3_MODE_IS_PAGED(bMode))
     275    if (BS3_MODE_IS_PAGED(g_bTestMode))
    290276        pbIdtCopyAlloc = Bs3MemAlloc(BS3MEMKIND_FLAT32, 12*_1K);
    291277# endif
     
    318304    for (iCtx = 0; iCtx < RT_ELEMENTS(apCtx8x); iCtx++)
    319305    {
     306        g_uLine = iCtx;
    320307# if TMPL_BITS == 32
    321308        BS3_DATA_NM(g_uBs3TrapEipHint) = apCtx8x[iCtx]->rip.u32;
    322309# endif
    323310        Bs3TrapSetJmpAndRestore(apCtx8x[iCtx], &TrapCtx);
    324         bs3CpuBasic2_CompareIntCtx1(&TrapCtx, apCtx8x[iCtx], 0x80+iCtx /*bXcpt*/, pszMode, iCtx);
     311        bs3CpuBasic2_CompareIntCtx1(&TrapCtx, apCtx8x[iCtx], 0x80+iCtx /*bXcpt*/);
    325312    }
    326313
     
    328315     * Check that the gate DPL checks works.
    329316     */
    330     uLine = 100;
     317    g_uLine = 100;
    331318    for (iRing = 0; iRing <= 3; iRing++)
    332319    {
     
    339326# endif
    340327            Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
    341             uLine++;
     328            g_uLine++;
    342329            if (iCtx < iRing)
    343                 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT,
    344                                           f16BitSys, pszMode, uLine);
     330                bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
    345331            else
    346                 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x80 + iCtx /*bXcpt*/, pszMode, uLine);
     332                bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x80 + iCtx /*bXcpt*/);
    347333        }
    348334    }
     
    356342     *      3. GATE.CS.DPL <= CPL (non-conforming segments)
    357343     */
    358     uLine = 1000;
     344    g_uLine = 1000;
    359345    for (i = 0; i <= 3; i++)
    360346    {
     
    374360                    for (k = 0; k < 2; k++)
    375361                    {
    376                         uLine++;
    377                         /*Bs3TestPrintf("uLine=%u iCtx=%u iRing=%u i=%u uCs=%04x\n", uLine,  iCtx,  iRing, i, uCs);*/
     362                        g_uLine++;
     363                        /*Bs3TestPrintf("g_uLine=%u iCtx=%u iRing=%u i=%u uCs=%04x\n", g_uLine,  iCtx,  iRing, i, uCs);*/
    378364                        paIdt[(0x80 + iCtx) << cIdteShift].Gate.u16Sel = uCs;
    379365                        paIdt[(0x80 + iCtx) << cIdteShift].Gate.u1Present = k;
     
    381367                        /*Bs3TrapPrintFrame(&TrapCtx);*/
    382368                        if (iCtx < iRing)
    383                             bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT,
    384                                                       f16BitSys, pszMode, uLine);
     369                            bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
    385370                        else if (k == 0)
    386                             bs3CpuBasic2_CompareNpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT,
    387                                                       f16BitSys, pszMode, uLine);
     371                            bs3CpuBasic2_CompareNpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
    388372                        else if (i > iRing)
    389                             bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, uCs & X86_SEL_MASK_OFF_RPL, f16BitSys, pszMode, uLine);
     373                            bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, uCs & X86_SEL_MASK_OFF_RPL);
    390374                        else
    391375                        {
     
    393377                            if (i <= iCtx && i <= iRing)
    394378                                uExpectedCs |= i;
    395                             bs3CpuBasic2_CompareTrapCtx2(&TrapCtx, &CtxTmp, 2 /*int 8xh*/, 0x80 + iCtx /*bXcpt*/,
    396                                                          uExpectedCs, pszMode, uLine);
     379                            bs3CpuBasic2_CompareTrapCtx2(&TrapCtx, &CtxTmp, 2 /*int 8xh*/, 0x80 + iCtx /*bXcpt*/, uExpectedCs);
    397380                        }
    398381                    }
     
    404387        }
    405388    }
    406     BS3_ASSERT(uLine < 2800);
    407 
     389    BS3_ASSERT(g_uLine < 1600);
    408390
    409391    /*
    410392     * Various CS and SS related faults
     393     *
    411394     * We temporarily reconfigure gate 80 and 83 with new CS selectors, the
    412395     * latter have a CS.DPL of 2 for testing ring transisions and SS loading
    413396     * without making it impossible to handle faults.
    414      *
    415      * Check #NP(CS). Pit #NP(CS) against #GP(CS) due to DPL.
    416      * Ditto for stack.
    417      * Pit SS trouble against CS trouble.
    418      * Pit both against gate DPL trouble.
    419      */
    420     uLine = 2800;
     397     */
     398    g_uLine = 1600;
    421399    BS3_DATA_NM(Bs3GdteTestPage00) = BS3_DATA_NM(Bs3Gdt)[uSysR0Cs >> X86_SEL_SHIFT];
    422400    BS3_DATA_NM(Bs3GdteTestPage00).Gen.u1Present = 0;
     
    425403    /* CS.PRESENT = 0 */
    426404    Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
    427     bs3CpuBasic2_CompareNpCtx(&TrapCtx, &Ctx80, BS3_SEL_TEST_PAGE_00, f16BitSys, pszMode, uLine);
    428     uLine++;
     405    bs3CpuBasic2_CompareNpCtx(&TrapCtx, &Ctx80, BS3_SEL_TEST_PAGE_00);
     406    g_uLine++;
    429407
    430408    /* Check that GATE.DPL is checked before CS.PRESENT. */
     
    434412        Bs3RegCtxConvertToRingX(&CtxTmp, iRing);
    435413        Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
    436         bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, (0x80 << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT,
    437                                   f16BitSys, pszMode, uLine);
    438         uLine++;
     414        bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, (0x80 << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
     415        g_uLine++;
    439416    }
    440417
    441418    /* CS.DPL mismatch takes precedence over CS.PRESENT = 0. */
    442419    Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
    443     bs3CpuBasic2_CompareNpCtx(&TrapCtx, &Ctx80, BS3_SEL_TEST_PAGE_00, f16BitSys, pszMode, uLine);
    444     uLine++;
     420    bs3CpuBasic2_CompareNpCtx(&TrapCtx, &Ctx80, BS3_SEL_TEST_PAGE_00);
     421    g_uLine++;
    445422    for (iDpl = 1; iDpl < 4; iDpl++)
    446423    {
    447424        BS3_DATA_NM(Bs3GdteTestPage00).Gen.u2Dpl = iDpl;
    448425        Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
    449         bs3CpuBasic2_CompareGpCtx(&TrapCtx, &Ctx80, BS3_SEL_TEST_PAGE_00, f16BitSys, pszMode, uLine);
    450         uLine++;
     426        bs3CpuBasic2_CompareGpCtx(&TrapCtx, &Ctx80, BS3_SEL_TEST_PAGE_00);
     427        g_uLine++;
    451428    }
    452429
    453430    /* Test SS. */
    454     if (!BS3_MODE_IS_64BIT_SYS(bMode))
    455     {
    456         uint16_t BS3_FAR *puTssSs2  = BS3_MODE_IS_16BIT_SYS(bMode) ? &BS3_DATA_NM(Bs3Tss16).ss2 : &BS3_DATA_NM(Bs3Tss32).ss2;
     431    if (!BS3_MODE_IS_64BIT_SYS(g_bTestMode))
     432    {
     433        uint16_t BS3_FAR *puTssSs2  = BS3_MODE_IS_16BIT_SYS(g_bTestMode) ? &BS3_DATA_NM(Bs3Tss16).ss2 : &BS3_DATA_NM(Bs3Tss32).ss2;
    457434        uint16_t const    uSavedSs2 = *puTssSs2;
    458435
     
    464441        Bs3RegCtxConvertToRingX(&CtxTmp, 3); /* yeah, from 3 so SS:xSP is reloaded. */
    465442        Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
    466         bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83, pszMode, uLine);
    467         uLine++;
     443        bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83);
     444        g_uLine++;
    468445
    469446        /* Create a SS.DPL=2 stack segment and check that SS2.RPL matters and
     
    481458                    Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
    482459                    if (iRpl != 2 || iRpl != iDpl)
    483                         bs3CpuBasic2_CompareTsCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_03, f16BitSys, pszMode, uLine);
     460                        bs3CpuBasic2_CompareTsCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_03);
    484461                    else if (k != 0)
    485                         bs3CpuBasic2_CompareSsCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_03, f16BitSys, pszMode, uLine);
     462                        bs3CpuBasic2_CompareSsCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_03);
    486463                    else
    487464                    {
    488                         bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83, pszMode, uLine);
     465                        bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83);
    489466                        if (TrapCtx.uHandlerSs != (BS3_SEL_TEST_PAGE_03 | 2))
    490                             Bs3TestFailedF("%u - %s: uHandlerSs=%#x expected %#x\n", uLine, pszMode,
    491                                            TrapCtx.uHandlerSs, BS3_SEL_TEST_PAGE_03 | 2);
     467                            bs3CpuBasic2_FailedF("uHandlerSs=%#x expected %#x\n", TrapCtx.uHandlerSs, BS3_SEL_TEST_PAGE_03 | 2);
    492468                    }
    493                     uLine++;
     469                    g_uLine++;
    494470
    495471                    /* Modify the gate DPL to check that this is checked before SS.DPL and SS.PRESENT. */
    496472                    paIdt[0x83 << cIdteShift].Gate.u2Dpl = 2;
    497473                    Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
    498                     bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, (0x83 << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT,
    499                                               f16BitSys, pszMode, uLine);
     474                    bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, (0x83 << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
    500475                    paIdt[0x83 << cIdteShift].Gate.u2Dpl = 3;
    501                     uLine++;
     476                    g_uLine++;
    502477
    503478                    /* Check the the CS.DPL check is done before the SS ones. Restoring the ring-0 INT 83
    504479                       context triggers the CS.DPL < CPL check. */
    505480                    Bs3TrapSetJmpAndRestore(&Ctx83, &TrapCtx);
    506                     bs3CpuBasic2_CompareGpCtx(&TrapCtx, &Ctx83, BS3_SEL_TEST_PAGE_02, f16BitSys, pszMode, uLine);
    507                     uLine++;
     481                    bs3CpuBasic2_CompareGpCtx(&TrapCtx, &Ctx83, BS3_SEL_TEST_PAGE_02);
     482                    g_uLine++;
    508483
    509484                    /* Now mark the CS selector not present and check that that also triggers before SS stuff. */
    510485                    BS3_DATA_NM(Bs3GdteTestPage02).Gen.u1Present = 0;
    511486                    Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
    512                     bs3CpuBasic2_CompareNpCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_02, f16BitSys, pszMode, uLine);
     487                    bs3CpuBasic2_CompareNpCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_02);
    513488                    BS3_DATA_NM(Bs3GdteTestPage02).Gen.u1Present = 1;
    514                     uLine++;
     489                    g_uLine++;
     490
     491                    /* Now, make the CS selector limit too small and that it triggers after SS trouble. */
     492                    BS3_DATA_NM(Bs3GdteTestPage02).Gen.u16LimitLow = 0;
     493                    BS3_DATA_NM(Bs3GdteTestPage02).Gen.u4LimitHigh = 0;
     494                    BS3_DATA_NM(Bs3GdteTestPage02).Gen.u1Granularity = 0;
     495                    Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
     496                    if (iRpl != 2 || iRpl != iDpl)
     497                        bs3CpuBasic2_CompareTsCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_03);
     498                    else if (k != 0)
     499                        bs3CpuBasic2_CompareSsCtx(&TrapCtx, &CtxTmp, BS3_SEL_TEST_PAGE_03);
     500                    else
     501                        bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, 0 /*uErrCd*/);
     502                    BS3_DATA_NM(Bs3GdteTestPage02) = BS3_DATA_NM(Bs3Gdt)[(uSysR0Cs + (2 << BS3_SEL_RING_SHIFT)) >> X86_SEL_SHIFT];
     503                    g_uLine++;
    515504                }
    516505            }
    517506        }
    518507
     508        /** @todo check the SS to a expand down thingy. Check that the limit
     509         *        checking works.  Then check what happens as we move the
     510         *        limit thru the IRET frame area. */
     511
    519512        *puTssSs2 = uSavedSs2;
    520513        paIdt[0x83 << cIdteShift].Gate.u16Sel = uSysR0Cs;
     
    525518     * Modify the gate CS value with a conforming segment.
    526519     */
    527     uLine = 2000;
     520    g_uLine = 2000;
    528521    for (i = 0; i <= 3; i++) /* cs.dpl */
    529522    {
     
    541534                {
    542535                    uint16_t const uCs = (uSysR0CsConf | j) + (i << BS3_SEL_RING_SHIFT);
    543                     /*Bs3TestPrintf("uLine=%u iCtx=%u iRing=%u i=%u uCs=%04x\n", uLine,  iCtx,  iRing, i, uCs);*/
     536                    /*Bs3TestPrintf("g_uLine=%u iCtx=%u iRing=%u i=%u uCs=%04x\n", g_uLine,  iCtx,  iRing, i, uCs);*/
    544537                    paIdt[(0x80 + iCtx) << cIdteShift].Gate.u16Sel = uCs;
    545538                    Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
    546539                    //Bs3TestPrintf("%u/%u/%u/%u: cs=%04x hcs=%04x xcpt=%02x\n", i, iRing, iCtx, j, uCs, TrapCtx.uHandlerCs, TrapCtx.bXcpt);
    547540                    /*Bs3TrapPrintFrame(&TrapCtx);*/
    548                     uLine++;
     541                    g_uLine++;
    549542                    if (iCtx < iRing)
    550                         bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT,
    551                                                   f16BitSys, pszMode, uLine);
     543                        bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
    552544                    else if (i > iRing)
    553                         bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, uCs & X86_SEL_MASK_OFF_RPL, f16BitSys, pszMode, uLine);
     545                        bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, uCs & X86_SEL_MASK_OFF_RPL);
    554546                    else
    555                         bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x80 + iCtx /*bXcpt*/, pszMode, uLine);
     547                        bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x80 + iCtx /*bXcpt*/);
    556548                }
    557549                paIdt[(0x80 + iCtx) << cIdteShift].Gate.u16Sel = uSysR0Cs;
     
    559551        }
    560552    }
    561     BS3_ASSERT(uLine < 3000);
     553    BS3_ASSERT(g_uLine < 3000);
    562554
    563555    /*
     
    566558    if (cIdteShift != 0)
    567559    {
    568         uLine = 3000;
     560        g_uLine = 3000;
    569561        for (i = 0; i <= 3; i++)
    570562        {
     
    580572                        static const uint16_t s_auCSes[2] = { BS3_SEL_R0_CS16, BS3_SEL_R0_CS32 };
    581573                        uint16_t uCs = (s_auCSes[j] | i) + (i << BS3_SEL_RING_SHIFT);
    582                         uLine++;
    583                         /*Bs3TestPrintf("uLine=%u iCtx=%u iRing=%u i=%u uCs=%04x\n", uLine,  iCtx,  iRing, i, uCs);*/
     574                        g_uLine++;
     575                        /*Bs3TestPrintf("g_uLine=%u iCtx=%u iRing=%u i=%u uCs=%04x\n", g_uLine,  iCtx,  iRing, i, uCs);*/
    584576                        paIdt[(0x80 + iCtx) << cIdteShift].Gate.u16Sel = uCs;
    585577                        Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
    586578                        /*Bs3TrapPrintFrame(&TrapCtx);*/
    587579                        if (iCtx < iRing)
    588                             bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT,
    589                                                       f16BitSys, pszMode, uLine);
     580                            bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
    590581                        else
    591                             bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, uCs & X86_SEL_MASK_OFF_RPL, f16BitSys, pszMode, uLine);
     582                            bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, uCs & X86_SEL_MASK_OFF_RPL);
    592583                    }
    593584                    paIdt[(0x80 + iCtx) << cIdteShift].Gate.u16Sel = uSysR0Cs;
     
    595586            }
    596587        }
    597         BS3_ASSERT(uLine < 4000);
     588        BS3_ASSERT(g_uLine < 4000);
    598589    }
    599590
     
    601592     * IDT limit check.
    602593     */
    603     uLine = 5000;
     594    g_uLine = 5000;
    604595    i = (0x80 << (cIdteShift + 3)) - 1;
    605596    j = (0x82 << (cIdteShift + 3)) - 1;
    606597    k = (0x83 << (cIdteShift + 3)) - 1;
    607     for (; i <= k; i++, uLine++)
     598    for (; i <= k; i++, g_uLine++)
    608599    {
    609600        Idtr = IdtrSaved;
     
    612603        Bs3TrapSetJmpAndRestore(&Ctx81, &TrapCtx);
    613604        if (i < j)
    614             bs3CpuBasic2_CompareGpCtx(&TrapCtx, &Ctx81, (0x81 << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT,
    615                                       f16BitSys, pszMode, uLine);
     605            bs3CpuBasic2_CompareGpCtx(&TrapCtx, &Ctx81, (0x81 << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
    616606        else
    617             bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx81, 0x81 /*bXcpt*/, pszMode, uLine);
     607            bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx81, 0x81 /*bXcpt*/);
    618608    }
    619609    ASMSetIDTR(&IdtrSaved);
    620     BS3_ASSERT(uLine < 5100);
     610    BS3_ASSERT(g_uLine < 5100);
    621611
    622612# if TMPL_BITS != 16 /* Only do the paging related stuff in 32-bit and 64-bit modes. */
     
    631621     *       to real mode and back, reloading the default IDTR.
    632622     */
    633     uLine = 5200;
    634     if (BS3_MODE_IS_PAGED(bMode) && pbIdtCopyAlloc)
     623    g_uLine = 5200;
     624    if (BS3_MODE_IS_PAGED(g_bTestMode) && pbIdtCopyAlloc)
    635625    {
    636626        uint32_t const uCr2Expected = Bs3SelPtrToFlat(pbIdtCopyAlloc) + _4K;
     
    645635            ASMSetIDTR(&Idtr);
    646636            Bs3TrapSetJmpAndRestore(&Ctx81, &TrapCtx);
    647             bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx81, 0x81 /*bXcpt*/, pszMode, uLine++);
     637            bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx81, 0x81 /*bXcpt*/);
     638            g_uLine++;
    648639
    649640            ASMSetIDTR(&Idtr);
    650641            Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
    651             bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx80, 0x80 /*bXcpt*/, pszMode, uLine++);
     642            bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx80, 0x80 /*bXcpt*/);
     643            g_uLine++;
    652644
    653645            rc = Bs3PagingProtect(uCr2Expected, _4K, 0 /*fSet*/, X86_PTE_P /*fClear*/);
     
    656648                ASMSetIDTR(&Idtr);
    657649                Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
    658                 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx80, 0x80 /*bXcpt*/, pszMode, uLine++);
     650                bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx80, 0x80 /*bXcpt*/);
     651                g_uLine++;
    659652
    660653                ASMSetIDTR(&Idtr);
    661654                Bs3TrapSetJmpAndRestore(&Ctx81, &TrapCtx);
    662                 bs3CpuBasic2_ComparePfCtx(&TrapCtx, &Ctx81, 0 /*uErrCd*/, uCr2Expected, f16BitSys, pszMode, uLine++);
     655                bs3CpuBasic2_ComparePfCtx(&TrapCtx, &Ctx81, 0 /*uErrCd*/, uCr2Expected);
     656                g_uLine++;
    663657
    664658                Bs3PagingProtect(uCr2Expected, _4K, X86_PTE_P /*fSet*/, 0 /*fClear*/);
     
    671665                    ASMSetIDTR(&Idtr);
    672666                    Bs3TrapSetJmpAndRestore(&Ctx81, &TrapCtx);
    673                     bs3CpuBasic2_ComparePfCtx(&TrapCtx, &Ctx81, 0 /*uErrCd*/, uCr2Expected, f16BitSys, pszMode, uLine++);
     667                    bs3CpuBasic2_ComparePfCtx(&TrapCtx, &Ctx81, 0 /*uErrCd*/, uCr2Expected);
     668                    g_uLine++;
    674669
    675670                    Bs3PagingProtect(uCr2Expected, _4K, X86_PTE_P /*fSet*/, 0 /*fClear*/);
     
    686681     * The read/write and user/supervisor bits the IDT PTEs are irrelevant.
    687682     */
    688     uLine = 5300;
    689     if (BS3_MODE_IS_PAGED(bMode) && pbIdtCopyAlloc)
     683    g_uLine = 5300;
     684    if (BS3_MODE_IS_PAGED(g_bTestMode) && pbIdtCopyAlloc)
    690685    {
    691686        Bs3MemCpy(pbIdtCopyAlloc, paIdt, cbIdte * 256);
     
    695690        ASMSetIDTR(&Idtr);
    696691        Bs3TrapSetJmpAndRestore(&Ctx81, &TrapCtx);
    697         bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx81, 0x81 /*bXcpt*/, pszMode, uLine++);
     692        bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx81, 0x81 /*bXcpt*/);
     693        g_uLine++;
    698694
    699695        rc = Bs3PagingProtect(Idtr.pIdt, _4K, 0 /*fSet*/, X86_PTE_RW | X86_PTE_US /*fClear*/);
     
    702698            ASMSetIDTR(&Idtr);
    703699            Bs3TrapSetJmpAndRestore(&Ctx81, &TrapCtx);
    704             bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx81, 0x81 /*bXcpt*/, pszMode, uLine++);
     700            bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx81, 0x81 /*bXcpt*/);
     701            g_uLine++;
    705702
    706703            Bs3PagingProtect(Idtr.pIdt, _4K, X86_PTE_RW | X86_PTE_US /*fSet*/, 0 /*fClear*/);
     
    713710     * with interrupt gates 80h and 83h, respectively.
    714711     */
    715     uLine = 5400;
    716     if (BS3_MODE_IS_PAGED(bMode) && pbIdtCopyAlloc)
     712/** @todo Throw in SS.u1Accessed too. */
     713    g_uLine = 5400;
     714    if (BS3_MODE_IS_PAGED(g_bTestMode) && pbIdtCopyAlloc)
    717715    {
    718716        BS3_DATA_NM(Bs3GdteTestPage00) = BS3_DATA_NM(Bs3Gdt)[uSysR0Cs >> X86_SEL_SHIFT];
     
    727725           the special CS values work with out generic handler code. */
    728726        Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
    729         bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx80, 0x80 /*bXcpt*/, pszMode, uLine);
     727        bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx80, 0x80 /*bXcpt*/);
    730728        if (!(BS3_DATA_NM(Bs3GdteTestPage00).Gen.u4Type & X86_SEL_TYPE_ACCESSED))
    731             Bs3TestFailedF("%u - %s: u4Type=%#x, not accessed\n", uLine, pszMode, BS3_DATA_NM(Bs3GdteTestPage00).Gen.u4Type);
    732         uLine++;
     729            bs3CpuBasic2_FailedF("u4Type=%#x, not accessed", BS3_DATA_NM(Bs3GdteTestPage00).Gen.u4Type);
     730        g_uLine++;
    733731
    734732        Bs3MemCpy(&CtxTmp, &Ctx83, sizeof(CtxTmp));
    735733        Bs3RegCtxConvertToRingX(&CtxTmp, 3);
    736734        Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
    737         bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83 /*bXcpt*/, pszMode, uLine);
     735        bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83 /*bXcpt*/);
    738736        if (!(BS3_DATA_NM(Bs3GdteTestPage03).Gen.u4Type & X86_SEL_TYPE_ACCESSED))
    739             Bs3TestFailedF("%u - %s: u4Type=%#x, not accessed!\n", uLine, pszMode, BS3_DATA_NM(Bs3GdteTestPage00).Gen.u4Type);
     737            bs3CpuBasic2_FailedF("u4Type=%#x, not accessed!", BS3_DATA_NM(Bs3GdteTestPage00).Gen.u4Type);
    740738        if (TrapCtx.uHandlerCs != (BS3_SEL_TEST_PAGE_03 | 3))
    741             Bs3TestFailedF("%u - %s: uHandlerCs=%#x, expected %#x\n", uLine, pszMode, TrapCtx.uHandlerCs, (BS3_SEL_TEST_PAGE_03 | 3));
    742         uLine++;
     739            bs3CpuBasic2_FailedF("uHandlerCs=%#x, expected %#x", TrapCtx.uHandlerCs, (BS3_SEL_TEST_PAGE_03 | 3));
     740        g_uLine++;
    743741
    744742        /*
     
    757755            /* ring-0 handler */
    758756            Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
    759             bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx80, 0x80 /*bXcpt*/, pszMode, uLine);
     757            bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx80, 0x80 /*bXcpt*/);
    760758            if (!(BS3_DATA_NM(Bs3GdteTestPage00).Gen.u4Type & X86_SEL_TYPE_ACCESSED))
    761                 Bs3TestFailedF("%u - %s: u4Type=%#x, not accessed!\n", uLine, pszMode, BS3_DATA_NM(Bs3GdteTestPage00).Gen.u4Type);
    762             uLine++;
     759                bs3CpuBasic2_FailedF("u4Type=%#x, not accessed!", BS3_DATA_NM(Bs3GdteTestPage00).Gen.u4Type);
     760            g_uLine++;
    763761
    764762            /* ring-3 handler */
     
    766764            Bs3RegCtxConvertToRingX(&CtxTmp, 3);
    767765            Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
    768             bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83 /*bXcpt*/, pszMode, uLine);
     766            bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83 /*bXcpt*/);
    769767            if (!(BS3_DATA_NM(Bs3GdteTestPage03).Gen.u4Type & X86_SEL_TYPE_ACCESSED))
    770                 Bs3TestFailedF("%u - %s: u4Type=%#x, not accessed!\n", uLine, pszMode, BS3_DATA_NM(Bs3GdteTestPage00).Gen.u4Type);
    771             uLine++;
     768                bs3CpuBasic2_FailedF("u4Type=%#x, not accessed!", BS3_DATA_NM(Bs3GdteTestPage00).Gen.u4Type);
     769            g_uLine++;
    772770
    773771            /* clear WP and repeat the above. */
     
    778776
    779777            Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
    780             bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx80, 0x80 /*bXcpt*/, pszMode, uLine);
     778            bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx80, 0x80 /*bXcpt*/);
    781779            if (!(BS3_DATA_NM(Bs3GdteTestPage00).Gen.u4Type & X86_SEL_TYPE_ACCESSED))
    782                 Bs3TestFailedF("%u - %s: u4Type=%#x, not accessed!\n", uLine, pszMode, BS3_DATA_NM(Bs3GdteTestPage00).Gen.u4Type);
    783             uLine++;
     780                bs3CpuBasic2_FailedF("u4Type=%#x, not accessed!", BS3_DATA_NM(Bs3GdteTestPage00).Gen.u4Type);
     781            g_uLine++;
    784782
    785783            Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
    786             bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83 /*bXcpt*/, pszMode, uLine);
     784            bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x83 /*bXcpt*/);
    787785            if (!(BS3_DATA_NM(Bs3GdteTestPage03).Gen.u4Type & X86_SEL_TYPE_ACCESSED))
    788                 Bs3TestFailedF("%u - %s: u4Type=%#x, not accessed!\n", uLine, pszMode, BS3_DATA_NM(Bs3GdteTestPage03).Gen.u4Type);
    789             uLine++;
     786                bs3CpuBasic2_FailedF("u4Type=%#x, not accessed!n", BS3_DATA_NM(Bs3GdteTestPage03).Gen.u4Type);
     787            g_uLine++;
    790788
    791789            Bs3PagingProtect(GdtrSaved.pGdt + BS3_SEL_TEST_PAGE_00, 8, X86_PTE_RW /*fSet*/, 0 /*fClear*/);
     
    804802        {
    805803            Bs3TrapSetJmpAndRestore(&Ctx80, &TrapCtx);
    806             bs3CpuBasic2_ComparePfCtx(&TrapCtx, &Ctx80, 0 /*uErrCd*/, GdtrSaved.pGdt + BS3_SEL_TEST_PAGE_00,
    807                                       f16BitSys, pszMode, uLine);
    808             uLine++;
     804            bs3CpuBasic2_ComparePfCtx(&TrapCtx, &Ctx80, 0 /*uErrCd*/, GdtrSaved.pGdt + BS3_SEL_TEST_PAGE_00);
     805            g_uLine++;
    809806
    810807            /* Do it from ring-3 to check ErrCd, which doesn't set X86_TRAP_PF_US it turns out. */
     
    813810            Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
    814811
    815             bs3CpuBasic2_ComparePfCtx(&TrapCtx, &CtxTmp, 0 /*uErrCd*/, GdtrSaved.pGdt + BS3_SEL_TEST_PAGE_03,
    816                                       f16BitSys, pszMode, uLine);
    817             uLine++;
     812            bs3CpuBasic2_ComparePfCtx(&TrapCtx, &CtxTmp, 0 /*uErrCd*/, GdtrSaved.pGdt + BS3_SEL_TEST_PAGE_03);
     813            g_uLine++;
    818814
    819815            Bs3PagingProtect(GdtrSaved.pGdt + BS3_SEL_TEST_PAGE_00, 8, X86_PTE_P /*fSet*/, 0 /*fClear*/);
    820816            if (BS3_DATA_NM(Bs3GdteTestPage00).Gen.u4Type & X86_SEL_TYPE_ACCESSED)
    821                 Bs3TestFailedF("%u - %s: u4Type=%#x, accessed!\n", uLine - 2, pszMode, BS3_DATA_NM(Bs3GdteTestPage00).Gen.u4Type);
     817                bs3CpuBasic2_FailedF("u4Type=%#x, accessed! #1", BS3_DATA_NM(Bs3GdteTestPage00).Gen.u4Type);
    822818            if (BS3_DATA_NM(Bs3GdteTestPage03).Gen.u4Type & X86_SEL_TYPE_ACCESSED)
    823                 Bs3TestFailedF("%u - %s: u4Type=%#x, accessed!\n", uLine - 1, pszMode, BS3_DATA_NM(Bs3GdteTestPage03).Gen.u4Type);
     819                bs3CpuBasic2_FailedF("u4Type=%#x, accessed! #2", BS3_DATA_NM(Bs3GdteTestPage03).Gen.u4Type);
    824820        }
    825821
     
    834830     * Check broad EFLAGS effects.
    835831     */
    836     uLine = 5600;
     832    g_uLine = 5600;
    837833    for (iCtx = 0; iCtx < RT_ELEMENTS(apCtx8x); iCtx++)
    838834    {
     
    848844            if (f386Plus)
    849845                CtxTmp.rflags.u32 |= /*X86_EFL_VM |*/ X86_EFL_AC | X86_EFL_VIF | X86_EFL_VIP;
    850             if (f386Plus && !f16BitSys)
     846            if (f386Plus && !g_f16BitSys)
    851847                CtxTmp.rflags.u32 |= X86_EFL_RF;
    852848            if (BS3_DATA_NM(g_uBs3CpuDetected) & BS3CPU_F_CPUID)
     
    856852
    857853            if (iCtx >= iRing)
    858                 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x80 + iCtx /*bXcpt*/, pszMode, uLine);
     854                bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x80 + iCtx /*bXcpt*/);
    859855            else
    860                 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT,
    861                                           f16BitSys, pszMode, uLine);
     856                bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
    862857            uExpected = CtxTmp.rflags.u32
    863858                      & (  X86_EFL_1 |  X86_EFL_CF | X86_EFL_PF | X86_EFL_AF | X86_EFL_ZF | X86_EFL_SF | X86_EFL_DF
     
    865860                         | X86_EFL_ID /*| X86_EFL_TF*/ /*| X86_EFL_IF*/ /*| X86_EFL_RF*/ );
    866861            if (TrapCtx.fHandlerRfl != uExpected)
    867                 Bs3TestFailedF("%u - %s: unexpected handler rflags value: %RX64 expected %RX32; CtxTmp.rflags=%RX64 Ctx.rflags=%RX64\n",
    868                                uLine, pszMode, TrapCtx.fHandlerRfl, uExpected, CtxTmp.rflags.u, TrapCtx.Ctx.rflags.u);
    869             uLine++;
     862                bs3CpuBasic2_FailedF("unexpected handler rflags value: %RX64 expected %RX32; CtxTmp.rflags=%RX64 Ctx.rflags=%RX64\n",
     863                                     TrapCtx.fHandlerRfl, uExpected, CtxTmp.rflags.u, TrapCtx.Ctx.rflags.u);
     864            g_uLine++;
    870865
    871866            /* all cleared */
     
    876871            Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
    877872            if (iCtx >= iRing)
    878                 bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x80 + iCtx /*bXcpt*/, pszMode, uLine);
     873                bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &CtxTmp, 0x80 + iCtx /*bXcpt*/);
    879874            else
    880                 bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT,
    881                                           f16BitSys, pszMode, uLine);
     875                bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
    882876            uExpected = CtxTmp.rflags.u32;
    883877            if (TrapCtx.fHandlerRfl != uExpected)
    884                 Bs3TestFailedF("%u - %s: unexpected handler rflags value: %RX64 expected %RX32; CtxTmp.rflags=%RX64 Ctx.rflags=%RX64\n",
    885                                uLine, pszMode, TrapCtx.fHandlerRfl, uExpected, CtxTmp.rflags.u, TrapCtx.Ctx.rflags.u);
    886             uLine++;
     878                bs3CpuBasic2_FailedF("unexpected handler rflags value: %RX64 expected %RX32; CtxTmp.rflags=%RX64 Ctx.rflags=%RX64\n",
     879                                     TrapCtx.fHandlerRfl, uExpected, CtxTmp.rflags.u, TrapCtx.Ctx.rflags.u);
     880            g_uLine++;
    887881        }
    888882    }
    889883
     884/** @todo CS.LIMIT / canonical(CS)  */
     885
     886
    890887    /*
    891888     * Check invalid gate types.
    892889     */
    893     uLine = 32000;
     890    g_uLine = 32000;
    894891    for (iRing = 0; iRing <= 3; iRing++)
    895892    {
     
    930927                                     ? (s_auCSes[j] | i) + (i << BS3_SEL_RING_SHIFT)
    931928                                     : s_auCSes[j] | i;
    932                         /*Bs3TestPrintf("uLine=%u iCtx=%u iRing=%u i=%u uCs=%04x type=%#x\n", uLine, iCtx, iRing, i, uCs, pauInvTypes[iType]);*/
     929                        /*Bs3TestPrintf("g_uLine=%u iCtx=%u iRing=%u i=%u uCs=%04x type=%#x\n", g_uLine, iCtx, iRing, i, uCs, pauInvTypes[iType]);*/
    933930                        paIdt[(0x80 + iCtx) << cIdteShift].Gate.u16Sel = uCs;
    934931                        Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
    935                         uLine++;
    936                         bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT,
    937                                                   f16BitSys, pszMode, uLine);
     932                        g_uLine++;
     933                        bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
    938934
    939935                        /* Mark it not-present to check that invalid type takes precedence. */
    940936                        paIdt[(0x80 + iCtx) << cIdteShift].Gate.u1Present = 0;
    941937                        Bs3TrapSetJmpAndRestore(&CtxTmp, &TrapCtx);
    942                         uLine++;
    943                         bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT,
    944                                                   f16BitSys, pszMode, uLine);
     938                        g_uLine++;
     939                        bs3CpuBasic2_CompareGpCtx(&TrapCtx, &CtxTmp, ((0x80 + iCtx) << X86_TRAP_ERR_SEL_SHIFT) | X86_TRAP_ERR_IDT);
    945940                        paIdt[(0x80 + iCtx) << cIdteShift].Gate.u1Present = 1;
    946941                    }
     
    954949        }
    955950    }
    956     BS3_ASSERT(uLine < 62000U && uLine > 32000U);
     951    BS3_ASSERT(g_uLine < 62000U && g_uLine > 32000U);
    957952
    958953
     
    978973#define bs3CpuBasic2_TssGateEsp_AltStackOuterRing BS3_CMN_NM(bs3CpuBasic2_TssGateEsp_AltStackOuterRing)
    979974void bs3CpuBasic2_TssGateEsp_AltStackOuterRing(PCBS3REGCTX pCtx, uint8_t bRing, uint8_t *pbAltStack, size_t cbAltStack,
    980                                                bool f16BitStack, bool f16BitTss, bool f16BitHandler,
    981                                                const char *pszMode, unsigned uLine)
     975                                               bool f16BitStack, bool f16BitTss, bool f16BitHandler, unsigned uLine)
    982976{
    983977    uint8_t const   cbIretFrame = f16BitHandler ? 5*2 : 5*4;
     
    985979    BS3TRAPFRAME    TrapCtx;
    986980    uint8_t        *pbTmp;
     981    g_uLine = uLine;
    987982
    988983    Bs3MemCpy(&Ctx2, pCtx, sizeof(Ctx2));
     
    1000995        Ctx2.rsp.u &= UINT16_MAX;
    1001996
    1002     bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx2, 0x80 /*bXcpt*/, pszMode, uLine);
     997    bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx2, 0x80 /*bXcpt*/);
    1003998    CHECK_MEMBER("bCpl", "%u", TrapCtx.Ctx.bCpl, bRing);
    1004999    CHECK_MEMBER("cbIretFrame", "%#x", TrapCtx.cbIretFrame, cbIretFrame);
     
    10141009        if (   TrapCtx.uHandlerRsp != uExpectedRsp
    10151010            || TrapCtx.uHandlerSs  != (f16BitTss ? Bs3Tss16.ss0 : Bs3Tss32.ss0))
    1016             Bs3TestFailedF("%u - %s: handler SS:ESP=%04x:%08RX64, expected %04x:%08RX16\n", uLine, pszMode,
    1017                            TrapCtx.uHandlerSs, TrapCtx.uHandlerRsp, Bs3Tss16.ss0, uExpectedRsp);
     1011            bs3CpuBasic2_FailedF("handler SS:ESP=%04x:%08RX64, expected %04x:%08RX16",
     1012                                 TrapCtx.uHandlerSs, TrapCtx.uHandlerRsp, Bs3Tss16.ss0, uExpectedRsp);
    10181013
    10191014        pbTmp = (uint8_t *)ASMMemFirstNonZero(pbAltStack, cbAltStack);
    10201015        if ((f16BitStack || TrapCtx.uHandlerRsp <= UINT16_MAX) && pbTmp != NULL)
    1021             Bs3TestFailedF("%u - %s: someone touched the alt stack (%p) with SS:ESP=%04x:%#RX32: %p=%02x\n", uLine, pszMode,
    1022                            pbAltStack, Ctx2.ss, Ctx2.rsp.u32, pbTmp, *pbTmp);
     1016            bs3CpuBasic2_FailedF("someone touched the alt stack (%p) with SS:ESP=%04x:%#RX32: %p=%02x",
     1017                                 pbAltStack, Ctx2.ss, Ctx2.rsp.u32, pbTmp, *pbTmp);
    10231018        else if (!f16BitStack && TrapCtx.uHandlerRsp > UINT16_MAX && pbTmp == NULL)
    1024             Bs3TestFailedF("%u - %s: the alt stack (%p) was not used SS:ESP=%04x:%#RX32\n", uLine, pszMode,
    1025                            pbAltStack, Ctx2.ss, Ctx2.rsp.u32);
     1019            bs3CpuBasic2_FailedF("the alt stack (%p) was not used SS:ESP=%04x:%#RX32\n", pbAltStack, Ctx2.ss, Ctx2.rsp.u32);
    10261020    }
    10271021}
    10281022
    10291023#define bs3CpuBasic2_TssGateEspCommon BS3_CMN_NM(bs3CpuBasic2_TssGateEspCommon)
    1030 void bs3CpuBasic2_TssGateEspCommon(uint8_t const bMode, const char * const pszMode, bool const f16BitSys,
    1031                                    PX86DESC const paIdt, unsigned const cIdteShift)
     1024void bs3CpuBasic2_TssGateEspCommon(bool const g_f16BitSys, PX86DESC const paIdt, unsigned const cIdteShift)
    10321025{
    10331026    BS3TRAPFRAME    TrapCtx;
     
    10371030    uint8_t        *pbTmp;
    10381031# endif
    1039     unsigned        uLine;
    10401032
    10411033    /* make sure they're allocated  */
     
    10631055     */
    10641056    Bs3TrapSetJmpAndRestore(&Ctx, &TrapCtx);
    1065     bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx, 0x80 /*bXcpt*/, pszMode, __LINE__);
    1066 
    1067     bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 1, NULL, 0, f16BitSys, f16BitSys, f16BitSys, pszMode, __LINE__);
    1068     bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 2, NULL, 0, f16BitSys, f16BitSys, f16BitSys, pszMode, __LINE__);
    1069     bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 3, NULL, 0, f16BitSys, f16BitSys, f16BitSys, pszMode, __LINE__);
     1057    g_uLine = __LINE__;
     1058    bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx, 0x80 /*bXcpt*/);
     1059
     1060    bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 1, NULL, 0, g_f16BitSys, g_f16BitSys, g_f16BitSys, __LINE__);
     1061    bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 2, NULL, 0, g_f16BitSys, g_f16BitSys, g_f16BitSys, __LINE__);
     1062    bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 3, NULL, 0, g_f16BitSys, g_f16BitSys, g_f16BitSys, __LINE__);
    10701063
    10711064    /*
     
    10791072        {
    10801073            /* same ring */
    1081             uLine = __LINE__;
     1074            g_uLine = __LINE__;
    10821075            Bs3MemCpy(&Ctx2, &Ctx, sizeof(Ctx2));
    10831076            Ctx2.rsp.u = Bs3SelPtrToFlat(pbAltStack + 0x1980);
    10841077            if (Bs3TrapSetJmp(&TrapCtx))
    10851078                Bs3RegCtxRestore(&Ctx2, 0); /* (does not return) */
    1086             bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx2, 0x80 /*bXcpt*/, pszMode, uLine);
     1079            bs3CpuBasic2_CompareIntCtx1(&TrapCtx, &Ctx2, 0x80 /*bXcpt*/);
    10871080# if TMPL_BITS == 16
    10881081            if ((pbTmp = (uint8_t *)ASMMemFirstNonZero(pbAltStack, cbAltStack)) != NULL)
    1089                 Bs3TestFailedF("%u - %s: someone touched the alt stack (%p) with SS:ESP=%04x:%#RX32: %p=%02x\n",
    1090                                uLine, pszMode, pbAltStack, Ctx2.ss, Ctx2.rsp.u32, pbTmp, *pbTmp);
     1082                bs3CpuBasic2_FailedF("someone touched the alt stack (%p) with SS:ESP=%04x:%#RX32: %p=%02x\n",
     1083                                     pbAltStack, Ctx2.ss, Ctx2.rsp.u32, pbTmp, *pbTmp);
    10911084# else
    10921085            if (ASMMemIsZero(pbAltStack, cbAltStack))
    1093                 Bs3TestFailedF("%u - %s: alt stack wasn't used despite SS:ESP=%04x:%#RX32\n",
    1094                                uLine, pszMode, Ctx2.ss, Ctx2.rsp.u32);
     1086                bs3CpuBasic2_FailedF("alt stack wasn't used despite SS:ESP=%04x:%#RX32\n", Ctx2.ss, Ctx2.rsp.u32);
    10951087# endif
    10961088
    10971089            /* Different rings (load SS0:SP0 from TSS). */
    10981090            bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 1, pbAltStack, cbAltStack,
    1099                                                       f16BitSys, f16BitSys, f16BitSys, pszMode, __LINE__);
     1091                                                      g_f16BitSys, g_f16BitSys, g_f16BitSys, __LINE__);
    11001092            bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 2, pbAltStack, cbAltStack,
    1101                                                       f16BitSys, f16BitSys, f16BitSys, pszMode, __LINE__);
     1093                                                      g_f16BitSys, g_f16BitSys, g_f16BitSys, __LINE__);
    11021094            bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 3, pbAltStack, cbAltStack,
    1103                                                       f16BitSys, f16BitSys, f16BitSys, pszMode, __LINE__);
     1095                                                      g_f16BitSys, g_f16BitSys, g_f16BitSys, __LINE__);
    11041096
    11051097            /* Different rings but switch the SS bitness in the TSS. */
    1106             if (f16BitSys)
     1098            if (g_f16BitSys)
    11071099            {
    11081100                Bs3Tss16.ss0 = BS3_SEL_R0_SS32;
    11091101                bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 1, pbAltStack, cbAltStack,
    1110                                                           false, f16BitSys, f16BitSys, pszMode, __LINE__);
     1102                                                          false, g_f16BitSys, g_f16BitSys, __LINE__);
    11111103                Bs3Tss16.ss0 = BS3_SEL_R0_SS16;
    11121104            }
     
    11151107                Bs3Tss32.ss0 = BS3_SEL_R0_SS16;
    11161108                bs3CpuBasic2_TssGateEsp_AltStackOuterRing(&Ctx, 1, pbAltStack, cbAltStack,
    1117                                                           true,  f16BitSys, f16BitSys, pszMode, __LINE__);
     1109                                                          true,  g_f16BitSys, g_f16BitSys, __LINE__);
    11181110                Bs3Tss32.ss0 = BS3_SEL_R0_SS32;
    11191111            }
     
    11221114        }
    11231115        else
    1124             Bs3TestPrintf("%s: Skipping ESP check, alloc failed\n", pszMode);
     1116            Bs3TestPrintf("%s: Skipping ESP check, alloc failed\n", g_pszTestMode);
    11251117    }
    11261118    else
    1127         Bs3TestPrintf("%s: Skipping ESP check, CPU too old\n", pszMode);
     1119        Bs3TestPrintf("%s: Skipping ESP check, CPU too old\n", g_pszTestMode);
    11281120}
    11291121
     
    11341126{
    11351127    uint8_t bRet = 0;
     1128
     1129    g_pszTestMode = BS3_DATA_NM(TMPL_NM(g_szBs3ModeName));
     1130    g_bTestMode   = bMode;
     1131    g_f16BitSys   = BS3_MODE_IS_16BIT_SYS(TMPL_MODE);
    11361132
    11371133#if TMPL_MODE == BS3_MODE_PE16 \
     
    11421138 || TMPL_MODE == BS3_MODE_PAE16_32 \
    11431139 || TMPL_MODE == BS3_MODE_PE32
    1144     bs3CpuBasic2_TssGateEspCommon(bMode,
    1145                                   BS3_DATA_NM(TMPL_NM(g_szBs3ModeName)),
    1146                                   BS3_MODE_IS_16BIT_SYS(TMPL_MODE),
     1140    bs3CpuBasic2_TssGateEspCommon(BS3_MODE_IS_16BIT_SYS(TMPL_MODE),
    11471141                                  (PX86DESC)MyBs3Idt,
    11481142                                  BS3_MODE_IS_64BIT_SYS(TMPL_MODE) ? 1 : 0);
     
    11611155BS3_DECL(uint8_t) TMPL_NM(bs3CpuBasic2_RaiseXcpt1)(uint8_t bMode)
    11621156{
     1157    g_pszTestMode = BS3_DATA_NM(TMPL_NM(g_szBs3ModeName));
     1158    g_bTestMode   = bMode;
     1159    g_f16BitSys   = BS3_MODE_IS_16BIT_SYS(TMPL_MODE);
     1160
    11631161#if !BS3_MODE_IS_RM_OR_V86(TMPL_MODE)
    1164     uint8_t bRet = 0;
    11651162
    11661163    /*
    11671164     * Pass to common worker which is only compiled once per mode.
    11681165     */
    1169     bs3CpuBasic2_RaiseXcpt1Common(bMode,
    1170                                   BS3_DATA_NM(TMPL_NM(g_szBs3ModeName)),
    1171                                   BS3_MODE_IS_16BIT_SYS(TMPL_MODE),
     1166    bs3CpuBasic2_RaiseXcpt1Common(BS3_MODE_IS_16BIT_SYS(TMPL_MODE),
    11721167                                  MY_SYS_SEL_R0_CS,
    11731168                                  MY_SYS_SEL_R0_CS_CNF,
     
    11801175     */
    11811176    TMPL_NM(Bs3TrapInit)();
    1182     return bRet;
     1177    return 0;
    11831178#elif !BS3_MODE_IS_RM(TMPL_MODE)
    11841179
     
    11991194BS3_DECL(uint8_t) TMPL_NM(bs3CpuBasic2_iret)(uint8_t bMode)
    12001195{
    1201     NOREF(bMode);
     1196    g_pszTestMode = BS3_DATA_NM(TMPL_NM(g_szBs3ModeName));
     1197    g_bTestMode   = bMode;
     1198    g_f16BitSys   = BS3_MODE_IS_16BIT_SYS(TMPL_MODE);
     1199
    12021200    return BS3TESTDOMODE_SKIPPED;
    12031201}
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

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