Changeset 1153 in vbox
- Timestamp:
- Mar 2, 2007 1:28:32 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 19056
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PATM/PATMA.asm
r1152 r1153 1322 1322 ; 1323 1323 ; @note NEVER change this without bumping the SSM version 1324 align 161324 align 32 1325 1325 BEGINPROC PATMIretFunction 1326 1326 PATMIretFunction_Start: … … 1400 1400 1401 1401 1402 align 16; yasm / nasm diff - remove me!1402 align 32 ; yasm / nasm diff - remove me! 1403 1403 BEGINPROC PATMCpuidReplacement 1404 1404 PATMCpuidStart: … … 1407 1407 1408 1408 cmp eax, PATM_CPUID_STD_MAX 1409 jb cpuid_std1409 jb short cpuid_std 1410 1410 cmp eax, 0x80000000 1411 jb cpuid_def1411 jb short cpuid_def 1412 1412 cmp eax, PATM_CPUID_EXT_MAX 1413 jb cpuid_ext1413 jb short cpuid_ext 1414 1414 1415 1415 cpuid_def: … … 1502 1502 DD 0ffffffffh 1503 1503 1504 align 16; yasm / nasm diffing. remove me!1504 align 32; yasm / nasm diffing. remove me! 1505 1505 BEGINPROC PATMLoopReplacement 1506 1506 PATMLoopStart: … … 1621 1621 DD 0ffffffffh 1622 1622 1623 align 161623 align 32 1624 1624 ; Global patch function for indirect calls 1625 1625 ; Caller is responsible for clearing PATM_INTERRUPTFLAG and doing: … … 1775 1775 1776 1776 1777 align 161777 align 32 1778 1778 ; Global patch function for indirect jumps 1779 1779 ; Caller is responsible for clearing PATM_INTERRUPTFLAG and doing: … … 1878 1878 1879 1879 1880 align 161880 align 32 1881 1881 ; Patch function for static calls 1882 1882 ; @note static calls have only one lookup slot! … … 1935 1935 1936 1936 1937 align 161937 align 32 1938 1938 ; Patch function for indirect calls 1939 1939 ; Caller is responsible for clearing PATM_INTERRUPTFLAG and adding: … … 1991 1991 1992 1992 1993 align 161993 align 32 1994 1994 ; Patch function for indirect jumps 1995 1995 ; Caller is responsible for clearing PATM_INTERRUPTFLAG and adding: … … 2054 2054 ; return from duplicated function 2055 2055 ; 2056 align 162056 align 32 2057 2057 BEGINPROC PATMRet 2058 2058 PATMRet_Start: … … 2130 2130 ; 2131 2131 ; @note NEVER change this without bumping the SSM version 2132 align 162132 align 32 2133 2133 BEGINPROC PATMRetFunction 2134 2134 PATMRetFunction_Start:
Note:
See TracChangeset
for help on using the changeset viewer.