From: Cupertino Miranda Date: Tue, 5 Dec 2023 23:09:57 +0000 (+0000) Subject: gdb/record: Support for rdtscp in i386_process_record. X-Git-Tag: binutils-2_42~685 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d2ee8bb694500c9e460283f9078b7cc53362dc95;p=thirdparty%2Fbinutils-gdb.git gdb/record: Support for rdtscp in i386_process_record. This patch adds support for process recording of the instruction rdtscp in x86 architecture. Debugging applications with "record full" fail to record with the error message "Process record does not support instruction 0xf01f9". Approved-by: Guinevere Larsen --- diff --git a/gdb/i386-tdep.c b/gdb/i386-tdep.c index e00c3bd9d56..e379c179885 100644 --- a/gdb/i386-tdep.c +++ b/gdb/i386-tdep.c @@ -7008,6 +7008,9 @@ Do you want to stop the program?"), goto no_support; break; + case 0x0f01f9: /* rdtscp */ + I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_RECX_REGNUM); + [[fallthrough]]; case 0x0f31: /* rdtsc */ I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REAX_REGNUM); I386_RECORD_FULL_ARCH_LIST_ADD_REG (X86_RECORD_REDX_REGNUM); @@ -7117,6 +7120,11 @@ Do you want to stop the program?"), case 0x0f01: if (i386_record_modrm (&ir)) return -1; + if (ir.modrm == 0xf9) + { + opcode = (opcode << 8) | 0xf9; + goto reswitch; + } switch (ir.reg) { case 0: /* sgdt */ diff --git a/gdb/testsuite/gdb.reverse/insn-reverse-x86.c b/gdb/testsuite/gdb.reverse/insn-reverse-x86.c index 2b4fb4c10e0..23888ba7350 100644 --- a/gdb/testsuite/gdb.reverse/insn-reverse-x86.c +++ b/gdb/testsuite/gdb.reverse/insn-reverse-x86.c @@ -270,6 +270,16 @@ rdseed (void) #endif } +/* Test rdtscp support. */ + +void +rdtscp (void) +{ +#ifdef __x86_64__ + __asm__ volatile ("rdtscp"); +#endif +} + /* Initialize arch-specific bits. */ static void @@ -283,5 +293,6 @@ initialize (void) static testcase_ftype testcases[] = { rdrand, - rdseed + rdseed, + rdtscp };