Changeset 64529 in vbox for trunk/src/VBox/ValidationKit/bootsectors
- Timestamp:
- Nov 3, 2016 2:01:30 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 111705
- Location:
- trunk/src/VBox/ValidationKit/bootsectors
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bootsector2-common-traprec.mac
r62484 r64529 125 125 ; Macro for installing the trap records. 126 126 ; 127 ; This must be invoked prior t hethe traps.127 ; This must be invoked prior to the traps. 128 128 ; 129 129 ; @uses Stack -
trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-basic-2-template.c
r60774 r64529 677 677 g_usBs3TestStep++; 678 678 679 /* +2: Check the theCS.DPL check is done before the SS ones. Restoring the679 /* +2: Check the CS.DPL check is done before the SS ones. Restoring the 680 680 ring-0 INT 83 context triggers the CS.DPL < CPL check. */ 681 681 Bs3TrapSetJmpAndRestore(&Ctx83, &TrapCtx); -
trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-basic-2-x0.c
r60797 r64529 798 798 g_usBs3TestStep++; 799 799 800 /* +2: Check the theCS.DPL check is done before the SS ones. Restoring the800 /* +2: Check the CS.DPL check is done before the SS ones. Restoring the 801 801 ring-0 INT 83 context triggers the CS.DPL < CPL check. */ 802 802 Bs3TrapSetJmpAndRestore(&Ctx83, &TrapCtx); -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-c16-Trap16Generic.asm
r60657 r64529 159 159 movzx esp, sp 160 160 161 ; Reserve space for the theregister and trap frame.161 ; Reserve space for the register and trap frame. 162 162 mov bx, (BS3TRAPFRAME_size + 7) / 8 163 163 .more_zeroed_space: … … 216 216 cld 217 217 218 ; Reserve space for the theregister and trap frame.218 ; Reserve space for the register and trap frame. 219 219 mov bx, (BS3TRAPFRAME_size + 7) / 8 220 220 .more_zeroed_space: … … 528 528 pushfd ; Handler flags. 529 529 530 ; Reserve space for the theregister and trap frame.530 ; Reserve space for the register and trap frame. 531 531 mov bx, (BS3TRAPFRAME_size + 15) / 16 532 532 .more_zeroed_space: … … 677 677 pushf ; Handler flags. 678 678 679 ; Reserve space for the theregister and trap frame.679 ; Reserve space for the register and trap frame. 680 680 mov bx, (BS3TRAPFRAME_size + 7) / 8 681 681 .more_zeroed_space: -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-c16-TrapRmV86Generic.asm
r60661 r64529 126 126 push esp ; BP - 12h 127 127 128 ; Reserve space for the theregister and trap frame.128 ; Reserve space for the register and trap frame. 129 129 mov bx, (BS3TRAPFRAME_size + 7) / 8 130 130 .more_zeroed_space: … … 182 182 cld 183 183 184 ; Reserve space for the theregister and trap frame.184 ; Reserve space for the register and trap frame. 185 185 mov bx, (BS3TRAPFRAME_size + 7) / 8 186 186 xor ax, ax -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-c32-Trap32Generic.asm
r61389 r64529 187 187 .stack_flat: 188 188 189 ; Reserve space for the theregister and trap frame.189 ; Reserve space for the register and trap frame. 190 190 mov eax, (BS3TRAPFRAME_size + 7) / 8 191 191 AssertCompileSizeAlignment(BS3TRAPFRAME, 8) -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-c64-Trap64Generic.asm
r61389 r64529 119 119 push rdi 120 120 121 ; Reserve space for the theregister and trap frame.121 ; Reserve space for the register and trap frame. 122 122 mov edi, (BS3TRAPFRAME_size + 15) / 16 123 123 .more_zeroed_space: … … 156 156 push rdi 157 157 158 ; Reserve space for the theregister and trap frame.158 ; Reserve space for the register and trap frame. 159 159 mov edi, (BS3TRAPFRAME_size + 15) / 16 160 160 .more_zeroed_space:
Note:
See TracChangeset
for help on using the changeset viewer.