From: Alan Modra Date: Wed, 9 Mar 2005 13:08:26 +0000 (+0000) Subject: * vax-dis.c (entry_mask_bit): New array. X-Git-Tag: csl-arm-20050325-branchpoint~202 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=220abb21d1516ccb237389002b6c302c3295d8a0;p=external%2Fbinutils.git * vax-dis.c (entry_mask_bit): New array. (print_insn_vax): Decode function entry mask. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index ff232f5..405937f 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2005-03-09 Jan-Benedict Glaw + + * vax-dis.c (entry_mask_bit): New array. + (print_insn_vax): Decode function entry mask. + 2005-03-07 Aldy Hernandez * ppc-opc.c (powerpc_opcodes): Fix encoding of efscfd. @@ -8,7 +13,7 @@ 2005-03-03 Ramana Radhakrishnan - * opcodes/arc-dis.c: Add enum a4_decoding_class. + * arc-dis.c (a4_decoding_class): New enum. (dsmOneArcInst): Use the enum values for the decoding class. Remove redundant case in the switch for decodingClass value 11. diff --git a/opcodes/vax-dis.c b/opcodes/vax-dis.c index a97d4cd..bac6291 100644 --- a/opcodes/vax-dis.c +++ b/opcodes/vax-dis.c @@ -1,5 +1,6 @@ /* Print VAX instructions. - Copyright 1995, 1998, 2000, 2001, 2002 Free Software Foundation, Inc. + Copyright 1995, 1998, 2000, 2001, 2002, 2005 + Free Software Foundation, Inc. Contributed by Pauline Middelink This program is free software; you can redistribute it and/or modify @@ -34,6 +35,21 @@ static char *reg_names[] = "r8", "r9", "r10", "r11", "ap", "fp", "sp", "pc" }; +/* Definitions for the function entry mask bits. */ +static char *entry_mask_bit[] = +{ + /* Registers 0 and 1 shall not be saved, since they're used to pass back + a function's result to it's caller... */ + "~r0~", "~r1~", + /* Registers 2 .. 11 are normal registers. */ + "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", "r11", + /* Registers 12 and 13 are argument and frame pointer and must not + be saved by using the entry mask. */ + "~ap~", "~fp~", + /* Bits 14 and 15 control integer and decimal overflow. */ + "IntOvfl", "DecOvfl", +}; + /* Sign-extend an (unsigned char). */ #if __STDC__ == 1 #define COERCE_SIGNED_CHAR(ch) ((signed char)(ch)) @@ -140,6 +156,27 @@ print_insn_vax (memaddr, info) buffer[1] = 0; } + /* Decode function entry mask. */ + if (info->symbols + && info->symbols[0] + && (info->symbols[0]->flags & BSF_FUNCTION) + && memaddr == bfd_asymbol_value (info->symbols[0])) + { + int i = 0; + int register_mask = buffer[1] << 8 | buffer[0]; + + (*info->fprintf_func) (info->stream, "Entry mask 0x%04x = <", + register_mask); + + for (i = 15; i >= 0; i--) + if (register_mask & (1 << i)) + (*info->fprintf_func) (info->stream, " %s", entry_mask_bit[i]); + + (*info->fprintf_func) (info->stream, " >"); + + return 2; + } + for (votp = &votstrs[0]; votp->name[0]; votp++) { register vax_opcodeT opcode = votp->detail.code;