| Index: src/trusted/validator/x86/x86_insts_verbose.c
|
| diff --git a/src/trusted/validator/x86/x86_insts_verbose.c b/src/trusted/validator/x86/x86_insts_verbose.c
|
| deleted file mode 100644
|
| index 9ed2057095a382238c97ff87f5efb641d842c37f..0000000000000000000000000000000000000000
|
| --- a/src/trusted/validator/x86/x86_insts_verbose.c
|
| +++ /dev/null
|
| @@ -1,62 +0,0 @@
|
| -/*
|
| - * Copyright (c) 2012 The Native Client Authors. All rights reserved.
|
| - * Use of this source code is governed by a BSD-style license that can be
|
| - * found in the LICENSE file.
|
| - */
|
| -
|
| -#include "native_client/src/trusted/validator/x86/x86_insts.h"
|
| -
|
| -static const char *kNaClInstTypeString[kNaClInstTypeRange] = {
|
| - "NACLi_UNDEFINED",
|
| - "NACLi_ILLEGAL",
|
| - "NACLi_INVALID",
|
| - "NACLi_SYSTEM",
|
| - "NACLi_NOP",
|
| - "NACLi_386",
|
| - "NACLi_386L",
|
| - "NACLi_386R",
|
| - "NACLi_386RE",
|
| - "NACLi_JMP8",
|
| - "NACLi_JMPZ",
|
| - "NACLi_INDIRECT",
|
| - "NACLi_OPINMRM",
|
| - "NACLi_RETURN",
|
| - "NACLi_LAHF",
|
| - "NACLi_SFENCE_CLFLUSH",
|
| - "NACLi_CMPXCHG8B",
|
| - "NACLi_CMPXCHG16B",
|
| - "NACLi_CMOV",
|
| - "NACLi_RDMSR",
|
| - "NACLi_RDTSC",
|
| - "NACLi_RDTSCP",
|
| - "NACLi_SYSCALL",
|
| - "NACLi_SYSENTER",
|
| - "NACLi_X87",
|
| - "NACLi_X87_FSINCOS",
|
| - "NACLi_MMX",
|
| - "NACLi_MMXSSE2",
|
| - "NACLi_3DNOW",
|
| - "NACLi_EMMX",
|
| - "NACLi_E3DNOW",
|
| - "NACLi_SSE",
|
| - "NACLi_SSE2",
|
| - "NACLi_SSE2x",
|
| - "NACLi_SSE3",
|
| - "NACLi_SSE4A",
|
| - "NACLi_SSE41",
|
| - "NACLi_SSE42",
|
| - "NACLi_MOVBE",
|
| - "NACLi_POPCNT",
|
| - "NACLi_LZCNT",
|
| - "NACLi_LONGMODE",
|
| - "NACLi_SVM",
|
| - "NACLi_SSSE3",
|
| - "NACLi_3BYTE",
|
| - "NACLi_FCMOV",
|
| - "NACLi_VMX",
|
| - "NACLi_FXSAVE",
|
| -};
|
| -
|
| -const char* NaClInstTypeString(NaClInstType typ) {
|
| - return kNaClInstTypeString[typ];
|
| -}
|
|
|