VirtualBox

Changeset 54691 in vbox for trunk/src


Ignore:
Timestamp:
Mar 9, 2015 8:36:09 AM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
98846
Message:

PATMA.asm: New way of writing patches that exploits the fact that we're using different sections for code and record/fixups.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/PATMA.asm

    r54689 r54691  
    3434%include "VBox/vmm/vm.mac"
    3535%include "PATMA.mac"
     36
    3637
    3738;*******************************************************************************
     
    110111;;
    111112; Switches to the code section and aligns the function.
     113;
     114; @remarks This section must be different from the patch readonly data section!
     115;
    112116%macro BEGIN_PATCH_CODE_SECTION 0
    113117BEGINCODE
    114118align 32
    115119%endmacro
     120%macro BEGIN_PATCH_CODE_SECTION_NO_ALIGN 0
     121BEGINCODE
     122%endmacro
    116123
    117124;;
    118125; Switches to the data section for the read-only patch descriptor data and
    119126; aligns it appropriately.
    120 %macro BEGIN_PATCH_RODATA_SECTION 0   
     127;
     128; @remarks This section must be different from the patch code section!
     129;
     130%macro BEGIN_PATCH_RODATA_SECTION 0
    121131BEGINDATA
    122132align 16
     133%endmacro
     134%macro BEGIN_PATCH_RODATA_SECTION_NO_ALIGN 0
     135BEGINDATA
     136%endmacro
     137
     138
     139;;
     140; Starts a patch.
     141;
     142; @param %1     The patch record name (externally visible).
     143; @param %2     The patch function name (considered internal).
     144;
     145%macro BEGIN_PATCH 2
     146; The patch record.
     147BEGIN_PATCH_RODATA_SECTION
     148GLOBALNAME %1
     149PATCHASMRECORD_INIT PATMCpuidReplacement, (RT_CONCAT(%1,_FixupEnd) - RT_CONCAT(%1,_FixupStart)) / 8
     150RT_CONCAT(%1,_FixupStart):
     151
     152; The patch code.
     153BEGIN_PATCH_CODE_SECTION
     154BEGINPROC %2
     155%endmacro
     156
     157;;
     158; Emit a fixup.
     159; @param %1     The fixup type.
     160%macro PATCH_FIXUP 1
     161BEGIN_PATCH_RODATA_SECTION_NO_ALIGN
     162    dd      %1, 0
     163BEGIN_PATCH_CODE_SECTION_NO_ALIGN
     164%endmacro
     165
     166;;
     167; Emit a fixup with extra info.
     168; @param %1     The fixup type.
     169; @param %2     The extra fixup info.
     170%macro PATCH_FIXUP_2 2
     171BEGIN_PATCH_RODATA_SECTION_NO_ALIGN
     172    dd      %1, %2
     173BEGIN_PATCH_CODE_SECTION_NO_ALIGN
     174%endmacro
     175
     176;;
     177; Ends a patch.
     178;
     179; This terminates the function and fixup array.
     180;
     181; @param %1     The patch record name (externally visible).
     182; @param %2     The patch function name (considered internal).
     183;
     184%macro END_PATCH 2
     185ENDPROC %2
     186
     187; Terminate the fixup array.
     188BEGIN_PATCH_RODATA_SECTION_NO_ALIGN
     189RT_CONCAT(%1,_FixupEnd):
     190    dd      0ffffffffh, 0ffffffffh
     191BEGIN_PATCH_CODE_SECTION_NO_ALIGN
    123192%endmacro
    124193
     
    16521721; PATMCpuidReplacement
    16531722;
    1654 BEGIN_PATCH_CODE_SECTION
    1655 BEGINPROC   PATMCpuidReplacement
     1723BEGIN_PATCH g_patmCpuidRecord, PATMCpuidReplacement
    16561724    mov     dword [ss:PATM_INTERRUPTFLAG], 0
     1725PATCH_FIXUP PATM_INTERRUPTFLAG
    16571726    pushf
    16581727
    16591728    cmp     eax, PATM_CPUID_STD_MAX
     1729PATCH_FIXUP PATM_CPUID_STD_MAX
    16601730    jb      cpuid_std
    16611731    cmp     eax, 0x80000000
    16621732    jb      cpuid_def
    16631733    cmp     eax, PATM_CPUID_EXT_MAX
     1734PATCH_FIXUP PATM_CPUID_EXT_MAX
    16641735    jb      cpuid_ext
    16651736    cmp     eax, 0xc0000000
    16661737    jb      cpuid_def
    16671738    cmp     eax, PATM_CPUID_CENTAUR_MAX
     1739PATCH_FIXUP PATM_CPUID_CENTAUR_MAX
    16681740    jb      cpuid_centaur
    16691741
    1670     ; Dirty assumptions in patmCorrectFixup about the pointer fixup order!!!!
    16711742cpuid_def:
    16721743    mov     eax, PATM_CPUID_DEF_PTR
     1744PATCH_FIXUP PATM_CPUID_DEF_PTR
    16731745    jmp     cpuid_fetch
    16741746
    16751747cpuid_std:
    16761748    mov     edx, PATM_CPUID_STD_PTR
     1749PATCH_FIXUP PATM_CPUID_STD_PTR
    16771750    jmp     cpuid_calc
    16781751
    16791752cpuid_ext:
    1680     and     eax, 0ffh                   ; strictly speaking not necessary.
     1753    and     eax, 0ffh                   
    16811754    mov     edx, PATM_CPUID_EXT_PTR
     1755PATCH_FIXUP PATM_CPUID_EXT_PTR
    16821756    jmp     cpuid_calc
    16831757
    16841758cpuid_centaur:
    1685     and     eax, 0ffh                   ; strictly speaking not necessary.
     1759    and     eax, 0ffh                   
    16861760    mov     edx, PATM_CPUID_CENTAUR_PTR
     1761PATCH_FIXUP PATM_CPUID_CENTAUR_PTR
    16871762
    16881763cpuid_calc:
     
    16991774    popf
    17001775    mov     dword [ss:PATM_INTERRUPTFLAG], 1
    1701 ENDPROC PATMCpuidReplacement
    1702 
    1703 ; Patch record for 'cpuid'
    1704 BEGIN_PATCH_RODATA_SECTION
    1705 GLOBALNAME g_patmCpuidRecord
    1706     PATCHASMRECORD_INIT PATMCpuidReplacement, 9
    1707     DD      PATM_INTERRUPTFLAG,     0       ; 0
    1708     DD      PATM_CPUID_STD_MAX,     0       ; 1
    1709     DD      PATM_CPUID_EXT_MAX,     0       ; 2
    1710     DD      PATM_CPUID_CENTAUR_MAX, 0       ; 3
    1711     DD      PATM_CPUID_DEF_PTR,     0       ; 4
    1712     DD      PATM_CPUID_STD_PTR,     0       ; 5
    1713     DD      PATM_CPUID_EXT_PTR,     0       ; 6
    1714     DD      PATM_CPUID_CENTAUR_PTR, 0       ; 7
    1715     DD      PATM_INTERRUPTFLAG,     0       ; 8
    1716     DD      0ffffffffh, 0ffffffffh          ; 9 - for sanity checks
     1776PATCH_FIXUP PATM_INTERRUPTFLAG
     1777END_PATCH g_patmCpuidRecord, PATMCpuidReplacement
    17171778
    17181779
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