- Timestamp:
- Mar 9, 2015 8:36:09 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 98846
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PATMA.asm
r54689 r54691 34 34 %include "VBox/vmm/vm.mac" 35 35 %include "PATMA.mac" 36 36 37 37 38 ;******************************************************************************* … … 110 111 ;; 111 112 ; Switches to the code section and aligns the function. 113 ; 114 ; @remarks This section must be different from the patch readonly data section! 115 ; 112 116 %macro BEGIN_PATCH_CODE_SECTION 0 113 117 BEGINCODE 114 118 align 32 115 119 %endmacro 120 %macro BEGIN_PATCH_CODE_SECTION_NO_ALIGN 0 121 BEGINCODE 122 %endmacro 116 123 117 124 ;; 118 125 ; Switches to the data section for the read-only patch descriptor data and 119 126 ; 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 121 131 BEGINDATA 122 132 align 16 133 %endmacro 134 %macro BEGIN_PATCH_RODATA_SECTION_NO_ALIGN 0 135 BEGINDATA 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. 147 BEGIN_PATCH_RODATA_SECTION 148 GLOBALNAME %1 149 PATCHASMRECORD_INIT PATMCpuidReplacement, (RT_CONCAT(%1,_FixupEnd) - RT_CONCAT(%1,_FixupStart)) / 8 150 RT_CONCAT(%1,_FixupStart): 151 152 ; The patch code. 153 BEGIN_PATCH_CODE_SECTION 154 BEGINPROC %2 155 %endmacro 156 157 ;; 158 ; Emit a fixup. 159 ; @param %1 The fixup type. 160 %macro PATCH_FIXUP 1 161 BEGIN_PATCH_RODATA_SECTION_NO_ALIGN 162 dd %1, 0 163 BEGIN_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 171 BEGIN_PATCH_RODATA_SECTION_NO_ALIGN 172 dd %1, %2 173 BEGIN_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 185 ENDPROC %2 186 187 ; Terminate the fixup array. 188 BEGIN_PATCH_RODATA_SECTION_NO_ALIGN 189 RT_CONCAT(%1,_FixupEnd): 190 dd 0ffffffffh, 0ffffffffh 191 BEGIN_PATCH_CODE_SECTION_NO_ALIGN 123 192 %endmacro 124 193 … … 1652 1721 ; PATMCpuidReplacement 1653 1722 ; 1654 BEGIN_PATCH_CODE_SECTION 1655 BEGINPROC PATMCpuidReplacement 1723 BEGIN_PATCH g_patmCpuidRecord, PATMCpuidReplacement 1656 1724 mov dword [ss:PATM_INTERRUPTFLAG], 0 1725 PATCH_FIXUP PATM_INTERRUPTFLAG 1657 1726 pushf 1658 1727 1659 1728 cmp eax, PATM_CPUID_STD_MAX 1729 PATCH_FIXUP PATM_CPUID_STD_MAX 1660 1730 jb cpuid_std 1661 1731 cmp eax, 0x80000000 1662 1732 jb cpuid_def 1663 1733 cmp eax, PATM_CPUID_EXT_MAX 1734 PATCH_FIXUP PATM_CPUID_EXT_MAX 1664 1735 jb cpuid_ext 1665 1736 cmp eax, 0xc0000000 1666 1737 jb cpuid_def 1667 1738 cmp eax, PATM_CPUID_CENTAUR_MAX 1739 PATCH_FIXUP PATM_CPUID_CENTAUR_MAX 1668 1740 jb cpuid_centaur 1669 1741 1670 ; Dirty assumptions in patmCorrectFixup about the pointer fixup order!!!!1671 1742 cpuid_def: 1672 1743 mov eax, PATM_CPUID_DEF_PTR 1744 PATCH_FIXUP PATM_CPUID_DEF_PTR 1673 1745 jmp cpuid_fetch 1674 1746 1675 1747 cpuid_std: 1676 1748 mov edx, PATM_CPUID_STD_PTR 1749 PATCH_FIXUP PATM_CPUID_STD_PTR 1677 1750 jmp cpuid_calc 1678 1751 1679 1752 cpuid_ext: 1680 and eax, 0ffh ; strictly speaking not necessary.1753 and eax, 0ffh 1681 1754 mov edx, PATM_CPUID_EXT_PTR 1755 PATCH_FIXUP PATM_CPUID_EXT_PTR 1682 1756 jmp cpuid_calc 1683 1757 1684 1758 cpuid_centaur: 1685 and eax, 0ffh ; strictly speaking not necessary.1759 and eax, 0ffh 1686 1760 mov edx, PATM_CPUID_CENTAUR_PTR 1761 PATCH_FIXUP PATM_CPUID_CENTAUR_PTR 1687 1762 1688 1763 cpuid_calc: … … 1699 1774 popf 1700 1775 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 1776 PATCH_FIXUP PATM_INTERRUPTFLAG 1777 END_PATCH g_patmCpuidRecord, PATMCpuidReplacement 1717 1778 1718 1779
Note:
See TracChangeset
for help on using the changeset viewer.