Home | History | Annotate | Download | only in opcodes

Lines Matching defs:tmp_str

475 print_intr(char *tmp_str, unsigned long interrupts)
479 *tmp_str = 0;
482 strcat (tmp_str, "vi");
487 if (comma) strcat (tmp_str, ",");
488 strcat (tmp_str, "nvi");
493 print_flags(char *tmp_str, unsigned long flags)
497 *tmp_str = 0;
500 strcat (tmp_str, "c");
505 if (comma) strcat (tmp_str, ",");
506 strcat (tmp_str, "z");
511 if (comma) strcat (tmp_str, ",");
512 strcat (tmp_str, "s");
517 if (comma) strcat (tmp_str, ",");
518 strcat (tmp_str, "p");
528 char out_str[80], tmp_str[25];
545 sprintf (tmp_str, "0x%0lx(r%ld)", instr_data->address,
547 strcat (out_str, tmp_str);
551 sprintf (tmp_str, "rr%ld(#0x%lx)", instr_data->arg_reg[datum_value],
554 sprintf (tmp_str, "r%ld(#0x%lx)", instr_data->arg_reg[datum_value],
556 strcat (out_str, tmp_str);
560 sprintf (tmp_str, "rr%ld(r%ld)", instr_data->arg_reg[datum_value],
563 sprintf (tmp_str, "r%ld(r%ld)", instr_data->arg_reg[datum_value],
565 strcat (out_str, tmp_str);
568 sprintf (tmp_str, "0x%0lx", instr_data->displacement);
569 strcat (out_str, tmp_str);
574 print_intr (tmp_str, instr_data->interrupts);
575 strcat (out_str, tmp_str);
578 sprintf (tmp_str, "#0x%0lx", instr_data->immediate);
579 strcat (out_str, tmp_str);
582 sprintf (tmp_str, "%s", codes[instr_data->cond_code]);
583 strcat (out_str, tmp_str);
586 sprintf (tmp_str, "%s", ctrl_names[instr_data->ctrl_code]);
587 strcat (out_str, tmp_str);
591 sprintf (tmp_str, "0x%0lx", instr_data->address);
592 strcat (out_str, tmp_str);
596 sprintf (tmp_str, "@rr%ld", instr_data->arg_reg[datum_value]);
598 sprintf (tmp_str, "@r%ld", instr_data->arg_reg[datum_value]);
599 strcat (out_str, tmp_str);
602 sprintf (tmp_str, "@r%ld", instr_data->arg_reg[datum_value]);
603 strcat (out_str, tmp_str);
606 print_flags(tmp_str, instr_data->flags);
607 strcat (out_str, tmp_str);
611 sprintf (tmp_str, "rl%ld",
614 sprintf (tmp_str, "rh%ld", instr_data->arg_reg[datum_value]);
615 strcat (out_str, tmp_str);
618 sprintf (tmp_str, "r%ld", instr_data->arg_reg[datum_value]);
619 strcat (out_str, tmp_str);
622 sprintf (tmp_str, "rq%ld", instr_data->arg_reg[datum_value]);
623 strcat (out_str, tmp_str);
626 sprintf (tmp_str, "rr%ld", instr_data->arg_reg[datum_value]);
627 strcat (out_str, tmp_str);
631 sprintf (tmp_str, "rr%ld", instr_data->arg_reg[datum_value]);
633 sprintf (tmp_str, "r%ld", instr_data->arg_reg[datum_value]);
634 strcat (out_str, tmp_str);