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

Unified Diff: src/trusted/validator/x86/decoder/ncopcode_operand_flag.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/ncopcode_operand_flag.enum
diff --git a/src/trusted/validator/x86/decoder/ncopcode_operand_flag.enum b/src/trusted/validator/x86/decoder/ncopcode_operand_flag.enum
deleted file mode 100644
index c82efb7388e972ddbb2c5b6af68ad3661a10e287..0000000000000000000000000000000000000000
--- a/src/trusted/validator/x86/decoder/ncopcode_operand_flag.enum
+++ /dev/null
@@ -1,28 +0,0 @@
-# Define a set of possible opcode operand flags that can apply to an
-# operand.
-# Each line defines a separate operand flag.
-
-# Operand is used
-OpUse
-# Operand is set
-OpSet
-# Operand is an address (as in LEA).
-OpAddress
-# Operand is implicit (rather than explicit)
-OpImplicit
-# When jump address, the jump is near (rather than far).
-OperandNear
-# When jump address, the jump is far (rather than near).
-OperandFar
-# When jump address, the jump is relative (rather than absolute.
-OperandRelative
-# Operand zero-extends 32-bit register results to 64-bits.
-# NOTE: This is a NaCl x86-64, validator specific, flag that is used to
-# mark operands that can be used for address masking since
-# they zero extend. It is added only if NaCl allows it for
-# this context. See zero_extends.c for more details on this.
-OperandZeroExtends_v
-# Operand sign-extends 32-bit register results to 64-bits.
-OperandSignExtends_v
-# Allow both G operand and opcode in modrm, as special case.
-AllowGOperandWithOpcodeInModRm

Powered by Google App Engine
This is Rietveld 408576698