svn commit: r261213 - head/sys/amd64/amd64
John Baldwin
jhb at FreeBSD.org
Mon Jan 27 18:53:19 UTC 2014
Author: jhb
Date: Mon Jan 27 18:53:18 2014
New Revision: 261213
URL: http://svnweb.freebsd.org/changeset/base/261213
Log:
Add support for 'clac' and 'stac' to DDB's disassembler on amd64.
Modified:
head/sys/amd64/amd64/db_disasm.c
Modified: head/sys/amd64/amd64/db_disasm.c
==============================================================================
--- head/sys/amd64/amd64/db_disasm.c Mon Jan 27 17:47:21 2014 (r261212)
+++ head/sys/amd64/amd64/db_disasm.c Mon Jan 27 18:53:18 2014 (r261213)
@@ -1353,6 +1353,16 @@ db_disasm(loc, altfmt)
i_size = NONE;
i_mode = 0;
break;
+ case 0xca:
+ i_name = "clac";
+ i_size = NONE;
+ i_mode = 0;
+ break;
+ case 0xcb:
+ i_name = "stac";
+ i_size = NONE;
+ i_mode = 0;
+ break;
case 0xd0:
i_name = "xgetbv";
i_size = NONE;
More information about the svn-src-all
mailing list