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

Unified Diff: include/opcode/v850.h

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 years, 11 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
« no previous file with comments | « include/opcode/tic6x-opcode-table.h ('k') | include/opcode/xgate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/opcode/v850.h
diff --git a/include/opcode/v850.h b/include/opcode/v850.h
index 59033059179d3f01a8858a6993b9bdba929c92bc..02ef3d4ccbbe16624f0cfa0669b417e6403fa96d 100644
--- a/include/opcode/v850.h
+++ b/include/opcode/v850.h
@@ -1,5 +1,5 @@
/* v850.h -- Header file for NEC V850 opcode table
- Copyright 1996, 1997, 2001, 2003, 2010 Free Software Foundation, Inc.
+ Copyright 1996-2013 Free Software Foundation, Inc.
Written by J.T. Conklin, Cygnus Support
This file is part of GDB, GAS, and the GNU binutils.
@@ -54,18 +54,42 @@ struct v850_opcode
unsigned int processors;
};
+/* Values for architecture number. */
+#define arch_V850 0
+#define arch_V850E (arch_V850 + 1)
+#define arch_V850E1 (arch_V850E + 1)
+#define arch_V850E2 (arch_V850E1 + 1)
+#define arch_V850E2V3 (arch_V850E2 + 1)
+#define arch_V850E3V5 (arch_V850E2V3 + 1)
+#define arch_separator (arch_V850E3V5 + 1)
+
+#define opt_EXTENSION (arch_separator)
+#define opt_ALIAS (opt_EXTENSION + 1)
+
/* Values for the processors field in the v850_opcode structure. */
-#define PROCESSOR_MASK 0x1f
-#define PROCESSOR_OPTION_EXTENSION (1 << 5) /* Enable extension opcodes. */
-#define PROCESSOR_OPTION_ALIAS (1 << 6) /* Enable alias opcodes. */
-#define PROCESSOR_V850 (1 << 0) /* Just the V850. */
-#define PROCESSOR_ALL PROCESSOR_MASK /* Any processor. */
-#define PROCESSOR_V850E (1 << 1) /* Just the V850E. */
-#define PROCESSOR_NOT_V850 (PROCESSOR_ALL & (~ PROCESSOR_V850)) /* Any processor except the V850. */
-#define PROCESSOR_V850E1 (1 << 2) /* Just the V850E1. */
-#define PROCESSOR_V850E2 (1 << 3) /* Just the V850E2. */
-#define PROCESSOR_V850E2V3 (1 << 4) /* Just the V850E2V3. */
-#define PROCESSOR_V850E2_ALL (PROCESSOR_V850E2 | PROCESSOR_V850E2V3) /* V850E2 & V850E2V3. */
+#define PROCESSOR_V850 (1 << (arch_V850)) /* Just the V850. */
+#define PROCESSOR_V850E (1 << (arch_V850E)) /* Just the V850E. */
+#define PROCESSOR_V850E1 (1 << (arch_V850E1)) /* Just the V850E1. */
+#define PROCESSOR_V850E2 (1 << (arch_V850E2)) /* Just the V850E2. */
+#define PROCESSOR_V850E2V3 (1 << (arch_V850E2V3)) /* Just the V850E2V3. */
+#define PROCESSOR_V850E3V5 (1 << (arch_V850E3V5)) /* Just the V850E3V5. */
+
+/* UPPERS */
+#define PROCESSOR_V850E3V5_UP (PROCESSOR_V850E3V5)
+#define PROCESSOR_V850E2V3_UP (PROCESSOR_V850E2V3 | PROCESSOR_V850E3V5_UP)
+#define PROCESSOR_V850E2_UP (PROCESSOR_V850E2 | PROCESSOR_V850E2V3_UP)
+#define PROCESSOR_V850E_UP (PROCESSOR_V850E | PROCESSOR_V850E1 | PROCESSOR_V850E2_UP)
+#define PROCESSOR_ALL (PROCESSOR_V850 | PROCESSOR_V850E_UP)
+
+#define PROCESSOR_MASK (PROCESSOR_ALL)
+#define PROCESSOR_NOT_V850 (PROCESSOR_ALL & (~ PROCESSOR_V850)) /* Any processor except the V850. */
+
+#define PROCESSOR_UNKNOWN ~(PROCESSOR_MASK)
+
+/* OPTIONS */
+#define PROCESSOR_OPTION_EXTENSION (1 << (opt_EXTENSION)) /* Enable extension opcodes. */
+#define PROCESSOR_OPTION_ALIAS (1 << (opt_ALIAS)) /* Enable alias opcodes. */
+
#define SET_PROCESSOR_MASK(mask,set) ((mask) = ((mask) & ~PROCESSOR_MASK) | (set))
/* The table itself is sorted by major opcode number, and is otherwise
@@ -202,6 +226,15 @@ extern const struct v850_operand v850_operands[];
/* The operand has '%' prefix. */
#define V850_OPERAND_PERCENT 0x200000
-extern int v850_msg_is_out_of_range (const char * msg);
+/* This operand is a cache oparation. */
+#define V850_OPERAND_CACHEOP 0x400000
+
+/* This operand is a prefetch oparation. */
+#define V850_OPERAND_PREFOP 0x800000
+
+/* A PC-relative displacement where a positive value indicates a backwards displacement. */
+#define V850_INVERSE_PCREL 0x1000000
+
+extern int v850_msg_is_out_of_range (const char *);
#endif /* V850_H */
« no previous file with comments | « include/opcode/tic6x-opcode-table.h ('k') | include/opcode/xgate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698