Add X86 assembler and disassembler support for AMD SVM instructions. Original patch by Kay Tiong Khoo. Few tweaks by me for code density and to reduce replication.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150873 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/TableGen/X86RecognizableInstr.cpp b/utils/TableGen/X86RecognizableInstr.cpp
index 385e579..e5b10a7 100644
--- a/utils/TableGen/X86RecognizableInstr.cpp
+++ b/utils/TableGen/X86RecognizableInstr.cpp
@@ -36,7 +36,15 @@
   MAP(F8, 41)           \
   MAP(F9, 42)           \
   MAP(D0, 45)           \
-  MAP(D1, 46)
+  MAP(D1, 46)           \
+  MAP(D8, 47)           \
+  MAP(D9, 48)           \
+  MAP(DA, 49)           \
+  MAP(DB, 50)           \
+  MAP(DC, 51)           \
+  MAP(DD, 52)           \
+  MAP(DE, 53)           \
+  MAP(DF, 54)
 
 // A clone of X86 since we can't depend on something that is generated.
 namespace X86Local {