two_byte_opcodes.isa (5931:d42d507ccdb1) two_byte_opcodes.isa (5933:8b9bc09b149c)
1// Copyright (c) 2008 The Regents of The University of Michigan
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met: redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer;
8// redistributions in binary form must reproduce the above copyright

--- 250 unchanged lines hidden (view full) ---

259 0x0: Inst::SYSCALL_64();
260 0x1: Inst::SYSCALL_COMPAT();
261 }
262 0x1: Inst::SYSCALL_LEGACY();
263 }
264#else
265 0x05: SyscallInst::syscall('xc->syscall(Rax)', IsSyscall);
266#endif
1// Copyright (c) 2008 The Regents of The University of Michigan
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met: redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer;
8// redistributions in binary form must reproduce the above copyright

--- 250 unchanged lines hidden (view full) ---

259 0x0: Inst::SYSCALL_64();
260 0x1: Inst::SYSCALL_COMPAT();
261 }
262 0x1: Inst::SYSCALL_LEGACY();
263 }
264#else
265 0x05: SyscallInst::syscall('xc->syscall(Rax)', IsSyscall);
266#endif
267 0x06: clts();
267 0x06: Inst::CLTS();
268 0x07: decode MODE_SUBMODE {
269 0x0: decode OPSIZE {
270 // Return to 64 bit mode.
271 0x8: Inst::SYSRET_TO_64();
272 // Return to compatibility mode.
273 default: Inst::SYSRET_TO_COMPAT();
274 }
275 default: Inst::SYSRET_NON_64();

--- 846 unchanged lines hidden ---
268 0x07: decode MODE_SUBMODE {
269 0x0: decode OPSIZE {
270 // Return to 64 bit mode.
271 0x8: Inst::SYSRET_TO_64();
272 // Return to compatibility mode.
273 default: Inst::SYSRET_TO_COMPAT();
274 }
275 default: Inst::SYSRET_NON_64();

--- 846 unchanged lines hidden ---