- Timestamp:
- Oct 22, 2023 2:53:53 AM (12 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
include/VBox/dis.h (modified) (2 diffs)
-
src/VBox/Disassembler/DisasmFormatArmV8.cpp (modified) (1 diff)
-
src/VBox/HostDrivers/Support/posix/SUPR3HardenedMain-posix.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dis.h
r101539 r101540 244 244 245 245 /** Architecture specific parameter state. */ 246 union246 RT_GCC_EXTENSION union 247 247 { 248 248 /** x86/AMD64 specific state. */ … … 342 342 343 343 /** Architecture specific state. */ 344 union344 RT_GCC_EXTENSION union 345 345 { 346 346 /** x86/AMD64 specific state. */ -
trunk/src/VBox/Disassembler/DisasmFormatArmV8.cpp
r101539 r101540 85 85 const char *psz = g_aszArmV8RegGen64[pParam->armv8.Reg.idxGenReg]; 86 86 *pcchReg = 2 + !!psz[2]; 87 return psz;88 87 return psz; 89 88 } -
trunk/src/VBox/HostDrivers/Support/posix/SUPR3HardenedMain-posix.cpp
r99739 r101540 247 247 if ( RT_FAILURE(rc) 248 248 || Dis.pCurInstr->uOpcode != OP_JMP 249 || !(Dis. arch.x86.ModRM.Bits.Mod == 0 && Dis.arch.x86.ModRM.Bits.Rm == 5 /* wrt RIP */))249 || !(Dis.x86.ModRM.Bits.Mod == 0 && Dis.arch.x86.ModRM.Bits.Rm == 5 /* wrt RIP */)) 250 250 return NULL; 251 251
Note:
See TracChangeset
for help on using the changeset viewer.

