From deb97fd1c66d8a414af1bc79c25261042840e93a Mon Sep 17 00:00:00 2001 From: tomerl Date: Thu, 7 Oct 2004 14:48:08 +0000 Subject: [PATCH] Add error checking for Co-Processor instructions --- gas/config/tc-crx.c | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/gas/config/tc-crx.c b/gas/config/tc-crx.c index 6c144b399b..b1063a05eb 100644 --- a/gas/config/tc-crx.c +++ b/gas/config/tc-crx.c @@ -1710,7 +1710,7 @@ parse_insn (ins *insn, char *operands) return; } - /* Handle load/stor post-increment instructions. */ + /* Handle load/stor unique instructions before parsing. */ if (IS_INSN_TYPE (LD_STOR_INS)) handle_LoadStor (operands); @@ -2111,6 +2111,22 @@ assemble_insn (char *mnemonic, ins *insn) else /* Full match - print the final image. */ { + /* Error checking for Co-Processor instructions : + The internal coprocessor 0 can only accept the + "mtcr" and "mfcr" instructions. */ + if (IS_INSN_TYPE (COP_REG_INS) || IS_INSN_TYPE (COPS_REG_INS) + || IS_INSN_TYPE (COP_BRANCH_INS)) + { + /* The coprocessor id is always the first argument. */ + if ((instruction->operands[0].op_type == i4) + && (insn->arg[0].constant == 0) + && (! IS_INSN_MNEMONIC ("mtcr") + && ! IS_INSN_MNEMONIC ("mfcr"))) + { + as_bad (_("Internal Coprocessor 0 doesn't support instruction `%s'"), + mnemonic); + } + } /* Handle positive constants. */ if (!signflag) { -- 2.11.0