svn commit: r266449 - head/sys/amd64/amd64

John Baldwin jhb at FreeBSD.org
Mon May 19 18:07:37 UTC 2014


Author: jhb
Date: Mon May 19 18:07:37 2014
New Revision: 266449
URL: http://svnweb.freebsd.org/changeset/base/266449

Log:
  Add support for decoding the AMD SVM instructions.

Modified:
  head/sys/amd64/amd64/db_disasm.c

Modified: head/sys/amd64/amd64/db_disasm.c
==============================================================================
--- head/sys/amd64/amd64/db_disasm.c	Mon May 19 17:11:43 2014	(r266448)
+++ head/sys/amd64/amd64/db_disasm.c	Mon May 19 18:07:37 2014	(r266449)
@@ -1391,6 +1391,46 @@ db_disasm(loc, altfmt)
 			i_size = NONE;
 			i_mode = 0;
 			break;
+		case 0xd8:
+			i_name = "vmrun";
+			i_size = NONE;
+			i_mode = 0;
+			break;
+		case 0xd9:
+			i_name = "vmmcall";
+			i_size = NONE;
+			i_mode = 0;
+			break;
+		case 0xda:
+			i_name = "vmload";
+			i_size = NONE;
+			i_mode = 0;
+			break;
+		case 0xdb:
+			i_name = "vmsave";
+			i_size = NONE;
+			i_mode = 0;
+			break;
+		case 0xdc:
+			i_name = "stgi";
+			i_size = NONE;
+			i_mode = 0;
+			break;
+		case 0xdd:
+			i_name = "clgi";
+			i_size = NONE;
+			i_mode = 0;
+			break;
+		case 0xde:
+			i_name = "skinit";
+			i_size = NONE;
+			i_mode = 0;
+			break;
+		case 0xdf:
+			i_name = "invlpga";
+			i_size = NONE;
+			i_mode = 0;
+			break;
 		case 0xf8:
 			i_name = "swapgs";
 			i_size = NONE;


More information about the svn-src-head mailing list