If a Windows executable makes use of SYSENTER and is executed on a processor implementing AMD64 ISA, what happens? I am both new and newbie to this topic (OSes, hardware/software interaction) but from what I've read I have understood that SYSCALL is the AMD64 equivalent to Intel's SYSENTER. Hopefully this question makes sense.
|
|
|||||||
|
|
|
If you try to use SYSENTER where it is not supported, you'll probably get an "invalid opcode" exception. Note that this situation is unusual - generally, Windows executables do not directly contain instructions to enter kernel mode. |
||
|
|
As far as i know AM64 processors using different type of modes to handle such issues. SYSENTER works fine but is not that fast. A very useful site to get started about the different modes: Wikipedia |
||
|
|
