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

Unified Diff: src/trusted/validator/x86/decoder/generator/nacl_disallows.enum

Issue 625923004: Delete old x86 validator. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: rebase master Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: src/trusted/validator/x86/decoder/generator/nacl_disallows.enum
diff --git a/src/trusted/validator/x86/decoder/generator/nacl_disallows.enum b/src/trusted/validator/x86/decoder/generator/nacl_disallows.enum
deleted file mode 100644
index 94ba2f01953beabe7c42e1e9164ac3db0bab6654..0000000000000000000000000000000000000000
--- a/src/trusted/validator/x86/decoder/generator/nacl_disallows.enum
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright (c) 2011 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.
-
-# Flags defining reasons that Native Client rejects instructions,
-# for better error reporting.
-
-# Flag defining when there more prefix bytes than allowed by Native Client
-NaClTooManyPrefixBytes
-
-# Flag defining that instruction has been marked as illegal in Native
-# Client
-NaClMarkedIllegal
-
-# Flag defining that the instruction opcode sequence has been marked as
-# invalid in Native Client
-NaClMarkedInvalid
-
-# Flag defining that the instruction is a system instruction, and hence
-# not allowed in Native Client
-NaClMarkedSystem
-
-# Flag defining that the instruction uses a segment prefix byte, which isn't
-# allowed by by Native Client in 64-bit executables.
-NaClHasBadSegmentPrefix
-
-# Flag defining that 67 prefix (address 16) flag was found.
-NaClCantUsePrefix67
-
-# Flag defining that instruction has multiple REX prefixes.
-NaClMultipleRexPrefix
-
-# Flag defining that instruction has REP prefix but isn't allowed.
-NaClRepDisallowed
-
-# Flag defining that instruction has REPNE prefix but isn't allowed.
-NaClRepneDisallowed
-
-# Flag defining that instruction has 66 prefix (data 16) flag but isn't allowed.
-NaClData16Disallowed
-
-# Flag defining that the same prefix is used more than once in the instruction.
-NaClHasDuplicatePrefix
-
-# Flag defining that more than one segment prefix has been specified.
-NaClHasAmbigSegmentPrefixes
-
-# Flag defining that the REX prefix is not located last.
-NaClRexPrefixNotLast

Powered by Google App Engine
This is Rietveld 408576698