Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/trusted/validator/x86/decoder/gen/ncopcode_insts_impl.h

Issue 10790077: Add tzcnt as an acceptable instruction to x86-64 validator (it already (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* native_client/src/trusted/validator/x86/decoder/gen/ncopcode_insts_impl.h 1 /* native_client/src/trusted/validator/x86/decoder/gen/ncopcode_insts_impl.h
2 * THIS FILE IS AUTO_GENERATED DO NOT EDIT. 2 * THIS FILE IS AUTO_GENERATED DO NOT EDIT.
3 * 3 *
4 * This file was auto-generated by enum_gen.py 4 * This file was auto-generated by enum_gen.py
5 * from file ncopcode_insts.enum 5 * from file ncopcode_insts.enum
6 */ 6 */
7 7
8 /* Define the corresponding names of NaClMnemonic. */ 8 /* Define the corresponding names of NaClMnemonic. */
9 static const char* const g_NaClMnemonicName[NaClMnemonicEnumSize + 1] = { 9 static const char* const g_NaClMnemonicName[NaClMnemonicEnumSize + 1] = {
10 "Aaa", 10 "Aaa",
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 "Subpd", 596 "Subpd",
597 "Subps", 597 "Subps",
598 "Subsd", 598 "Subsd",
599 "Subss", 599 "Subss",
600 "Swapgs", 600 "Swapgs",
601 "Syscall", 601 "Syscall",
602 "Sysenter", 602 "Sysenter",
603 "Sysexit", 603 "Sysexit",
604 "Sysret", 604 "Sysret",
605 "Test", 605 "Test",
606 "Tzcnt",
606 "Ucomisd", 607 "Ucomisd",
607 "Ucomiss", 608 "Ucomiss",
608 "Ud2", 609 "Ud2",
609 "Unpckhpd", 610 "Unpckhpd",
610 "Unpckhps", 611 "Unpckhps",
611 "Unpcklpd", 612 "Unpcklpd",
612 "Unpcklps", 613 "Unpcklps",
613 "Verr", 614 "Verr",
614 "Verw", 615 "Verw",
615 "Vmload", 616 "Vmload",
616 "Vmmcall", 617 "Vmmcall",
617 "Vmrun", 618 "Vmrun",
618 "Vmsave", 619 "Vmsave",
619 "Wbinvd", 620 "Wbinvd",
620 "Wrmsr", 621 "Wrmsr",
621 "Xadd", 622 "Xadd",
622 "Xchg", 623 "Xchg",
623 "Xlat", 624 "Xlat",
624 "Xor", 625 "Xor",
625 "Xorpd", 626 "Xorpd",
626 "Xorps", 627 "Xorps",
627 "NaClMnemonicEnumSize" 628 "NaClMnemonicEnumSize"
628 }; 629 };
629 630
630 const char* NaClMnemonicName(NaClMnemonic name) { 631 const char* NaClMnemonicName(NaClMnemonic name) {
631 return name <= NaClMnemonicEnumSize 632 return name <= NaClMnemonicEnumSize
632 ? g_NaClMnemonicName[name] 633 ? g_NaClMnemonicName[name]
633 : "NaClMnemonic???"; 634 : "NaClMnemonic???";
634 } 635 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698