* hppa-dis.c (print_insn_hppa): Change condition args to use
'?' prefix.
This commit is contained in:
parent
c5e5291642
commit
feb129926a
2 changed files with 76 additions and 53 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Thu Aug 5 16:59:58 1999 Jerry Quinn <jquinn@nortelnetworks.com>
|
||||||
|
|
||||||
|
* hppa-dis.c (print_insn_hppa): Change condition args to use
|
||||||
|
'?' prefix.
|
||||||
|
|
||||||
Wed Jul 28 04:33:58 1999 Jerry Quinn <jquinn@nortelnetworks.com>
|
Wed Jul 28 04:33:58 1999 Jerry Quinn <jquinn@nortelnetworks.com>
|
||||||
|
|
||||||
* hppa-dis.c (print_insn_hppa): Remove unnecessary test in 'E'
|
* hppa-dis.c (print_insn_hppa): Remove unnecessary test in 'E'
|
||||||
|
|
|
@ -305,7 +305,7 @@ print_insn_hppa (memaddr, info)
|
||||||
|
|
||||||
(*info->fprintf_func) (info->stream, "%s", opcode->name);
|
(*info->fprintf_func) (info->stream, "%s", opcode->name);
|
||||||
|
|
||||||
if (!strchr ("cfCY<?!@-+&U>~nHNZFIMadu|", opcode->args[0]))
|
if (!strchr ("cfCY?-+nHNZFIu", opcode->args[0]))
|
||||||
(*info->fprintf_func) (info->stream, " ");
|
(*info->fprintf_func) (info->stream, " ");
|
||||||
for (s = opcode->args; *s != '\0'; ++s)
|
for (s = opcode->args; *s != '\0'; ++s)
|
||||||
{
|
{
|
||||||
|
@ -403,54 +403,77 @@ print_insn_hppa (memaddr, info)
|
||||||
(*info->fprintf_func) (info->stream, "%s ",
|
(*info->fprintf_func) (info->stream, "%s ",
|
||||||
short_bytes_compl_names[GET_COMPL (insn)]);
|
short_bytes_compl_names[GET_COMPL (insn)]);
|
||||||
break;
|
break;
|
||||||
/* these four conditions are for the set of instructions
|
|
||||||
which distinguish true/false conditions by opcode rather
|
/* Handle conditions. */
|
||||||
than by the 'f' bit (sigh): comb, comib, addb, addib */
|
|
||||||
case '<':
|
|
||||||
fputs_filtered (compare_cond_names[GET_FIELD (insn, 16, 18)],
|
|
||||||
info);
|
|
||||||
break;
|
|
||||||
case '?':
|
case '?':
|
||||||
fputs_filtered (compare_cond_names[GET_FIELD (insn, 16, 18)
|
{
|
||||||
+ GET_FIELD (insn, 4, 4) * 8], info);
|
s++;
|
||||||
break;
|
switch (*s)
|
||||||
case '@':
|
{
|
||||||
fputs_filtered (add_cond_names[GET_FIELD (insn, 16, 18)
|
case 'f':
|
||||||
+ GET_FIELD (insn, 4, 4) * 8], info);
|
(*info->fprintf_func) (info->stream, "%s ",
|
||||||
break;
|
float_comp_names[GET_FIELD
|
||||||
case 'a':
|
(insn, 27, 31)]);
|
||||||
(*info->fprintf_func) (info->stream, "%s ",
|
break;
|
||||||
compare_cond_names[GET_COND (insn)]);
|
|
||||||
break;
|
|
||||||
case 'd':
|
|
||||||
(*info->fprintf_func) (info->stream, "%s ",
|
|
||||||
add_cond_names[GET_COND (insn)]);
|
|
||||||
break;
|
|
||||||
case '!':
|
|
||||||
(*info->fprintf_func) (info->stream, "%s",
|
|
||||||
add_cond_names[GET_FIELD (insn, 16, 18)]);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case '&':
|
/* these four conditions are for the set of instructions
|
||||||
(*info->fprintf_func) (info->stream, "%s ",
|
which distinguish true/false conditions by opcode
|
||||||
logical_cond_names[GET_COND (insn)]);
|
rather than by the 'f' bit (sigh): comb, comib,
|
||||||
break;
|
addb, addib */
|
||||||
case 'U':
|
case 't':
|
||||||
(*info->fprintf_func) (info->stream, "%s ",
|
fputs_filtered (compare_cond_names[GET_FIELD (insn, 16,
|
||||||
unit_cond_names[GET_COND (insn)]);
|
18)],
|
||||||
break;
|
info);
|
||||||
case '|':
|
break;
|
||||||
case '>':
|
case 'n':
|
||||||
case '~':
|
fputs_filtered (compare_cond_names[GET_FIELD (insn, 16,
|
||||||
(*info->fprintf_func)
|
18)
|
||||||
(info->stream, "%s",
|
+ GET_FIELD (insn, 4, 4) * 8], info);
|
||||||
shift_cond_names[GET_FIELD (insn, 16, 18)]);
|
break;
|
||||||
|
case '@':
|
||||||
|
fputs_filtered (add_cond_names[GET_FIELD (insn, 16, 18)
|
||||||
|
+ GET_FIELD (insn, 4, 4) * 8], info);
|
||||||
|
break;
|
||||||
|
case 's':
|
||||||
|
(*info->fprintf_func) (info->stream, "%s ",
|
||||||
|
compare_cond_names[GET_COND (insn)]);
|
||||||
|
break;
|
||||||
|
case 'a':
|
||||||
|
(*info->fprintf_func) (info->stream, "%s ",
|
||||||
|
add_cond_names[GET_COND (insn)]);
|
||||||
|
break;
|
||||||
|
case 'd':
|
||||||
|
(*info->fprintf_func) (info->stream, "%s",
|
||||||
|
add_cond_names[GET_FIELD (insn,
|
||||||
|
16,
|
||||||
|
18)]);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'l':
|
||||||
|
(*info->fprintf_func) (info->stream, "%s ",
|
||||||
|
logical_cond_names[GET_COND (insn)]);
|
||||||
|
break;
|
||||||
|
case 'u':
|
||||||
|
(*info->fprintf_func) (info->stream, "%s ",
|
||||||
|
unit_cond_names[GET_COND (insn)]);
|
||||||
|
break;
|
||||||
|
case 'y':
|
||||||
|
case 'x':
|
||||||
|
case 'b':
|
||||||
|
(*info->fprintf_func)
|
||||||
|
(info->stream, "%s",
|
||||||
|
shift_cond_names[GET_FIELD (insn, 16, 18)]);
|
||||||
|
|
||||||
|
/* If the next character in args is 'n', it will handle
|
||||||
|
putting out the space. */
|
||||||
|
if (s[1] != 'n')
|
||||||
|
(*info->fprintf_func) (info->stream, " ");
|
||||||
|
break;
|
||||||
|
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
/* If the next character in args is 'n', it will handle
|
|
||||||
putting out the space. */
|
|
||||||
if (s[1] != 'n')
|
|
||||||
(*info->fprintf_func) (info->stream, " ");
|
|
||||||
break;
|
|
||||||
case 'V':
|
case 'V':
|
||||||
fput_const (extract_5_store (insn), info);
|
fput_const (extract_5_store (insn), info);
|
||||||
break;
|
break;
|
||||||
|
@ -565,7 +588,7 @@ print_insn_hppa (memaddr, info)
|
||||||
case 'F':
|
case 'F':
|
||||||
/* if no destination completer and not before a completer
|
/* if no destination completer and not before a completer
|
||||||
for fcmp, need a space here */
|
for fcmp, need a space here */
|
||||||
if (GET_FIELD (insn, 21, 22) == 1 || s[1] == 'M')
|
if (GET_FIELD (insn, 21, 22) == 1 || s[1] == '?')
|
||||||
fputs_filtered (float_format_names[GET_FIELD (insn, 19, 20)],
|
fputs_filtered (float_format_names[GET_FIELD (insn, 19, 20)],
|
||||||
info);
|
info);
|
||||||
else
|
else
|
||||||
|
@ -589,7 +612,7 @@ print_insn_hppa (memaddr, info)
|
||||||
case 'I':
|
case 'I':
|
||||||
/* if no destination completer and not before a completer
|
/* if no destination completer and not before a completer
|
||||||
for fcmp, need a space here */
|
for fcmp, need a space here */
|
||||||
if (GET_FIELD (insn, 21, 22) == 1 || s[1] == 'M')
|
if (GET_FIELD (insn, 21, 22) == 1 || s[1] == '?')
|
||||||
fputs_filtered (float_format_names[GET_FIELD (insn, 20, 20)],
|
fputs_filtered (float_format_names[GET_FIELD (insn, 20, 20)],
|
||||||
info);
|
info);
|
||||||
else
|
else
|
||||||
|
@ -610,11 +633,6 @@ print_insn_hppa (memaddr, info)
|
||||||
else
|
else
|
||||||
fput_fp_reg (GET_FIELD (insn, 11, 15), info);
|
fput_fp_reg (GET_FIELD (insn, 11, 15), info);
|
||||||
break;
|
break;
|
||||||
case 'M':
|
|
||||||
(*info->fprintf_func) (info->stream, "%s ",
|
|
||||||
float_comp_names[GET_FIELD
|
|
||||||
(insn, 27, 31)]);
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
(*info->fprintf_func) (info->stream, "%c", *s);
|
(*info->fprintf_func) (info->stream, "%c", *s);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue