mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-23 07:31:31 +00:00
Correct a copy-paste error---do not look for REX prefixes in i386 code.
This commit is contained in:
parent
fa9a79b4fd
commit
ab5ed97ed0
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=182790
@ -93,9 +93,9 @@ struct pmc;
|
||||
(PC) < (uintptr_t) end_exceptions)
|
||||
|
||||
#define PMC_AT_FUNCTION_PROLOGUE_PUSH_BP(I) \
|
||||
(((I) & 0xffffffff) == 0xe5894855) /* pushq %rbp; movq %rsp,%rbp */
|
||||
(((I) & 0x00ffffff) == 0xe58955) /* pushl %ebp; movl %esp,%ebp */
|
||||
#define PMC_AT_FUNCTION_PROLOGUE_MOV_SP_BP(I) \
|
||||
(((I) & 0x00ffffff) == 0x00e58948) /* movq %rsp,%rbp */
|
||||
(((I) & 0x0000ffff) == 0xe589) /* movl %esp,%ebp */
|
||||
#define PMC_AT_FUNCTION_EPILOGUE_RET(I) \
|
||||
(((I) & 0xFF) == 0xC3) /* ret */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user