• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/cxxfilt-11/cxxfilt/opcodes/

Lines Matching refs:tmp_str

476 print_intr(char *tmp_str, unsigned long interrupts)
480 *tmp_str = 0;
483 strcat (tmp_str, "vi");
488 if (comma) strcat (tmp_str, ",");
489 strcat (tmp_str, "nvi");
494 print_flags(char *tmp_str, unsigned long flags)
498 *tmp_str = 0;
501 strcat (tmp_str, "c");
506 if (comma) strcat (tmp_str, ",");
507 strcat (tmp_str, "z");
512 if (comma) strcat (tmp_str, ",");
513 strcat (tmp_str, "s");
518 if (comma) strcat (tmp_str, ",");
519 strcat (tmp_str, "p");
529 char out_str[80], tmp_str[25];
546 sprintf (tmp_str, "0x%0lx(r%ld)", instr_data->address,
548 strcat (out_str, tmp_str);
552 sprintf (tmp_str, "rr%ld(#0x%lx)", instr_data->arg_reg[datum_value],
555 sprintf (tmp_str, "r%ld(#0x%lx)", instr_data->arg_reg[datum_value],
557 strcat (out_str, tmp_str);
561 sprintf (tmp_str, "rr%ld(r%ld)", instr_data->arg_reg[datum_value],
564 sprintf (tmp_str, "r%ld(r%ld)", instr_data->arg_reg[datum_value],
566 strcat (out_str, tmp_str);
569 sprintf (tmp_str, "0x%0lx", instr_data->displacement);
570 strcat (out_str, tmp_str);
575 print_intr (tmp_str, instr_data->interrupts);
576 strcat (out_str, tmp_str);
579 sprintf (tmp_str, "#0x%0lx", instr_data->immediate);
580 strcat (out_str, tmp_str);
583 sprintf (tmp_str, "%s", codes[instr_data->cond_code]);
584 strcat (out_str, tmp_str);
587 sprintf (tmp_str, "%s", ctrl_names[instr_data->ctrl_code]);
588 strcat (out_str, tmp_str);
592 sprintf (tmp_str, "0x%0lx", instr_data->address);
593 strcat (out_str, tmp_str);
597 sprintf (tmp_str, "@rr%ld", instr_data->arg_reg[datum_value]);
599 sprintf (tmp_str, "@r%ld", instr_data->arg_reg[datum_value]);
600 strcat (out_str, tmp_str);
603 sprintf (tmp_str, "@r%ld", instr_data->arg_reg[datum_value]);
604 strcat (out_str, tmp_str);
607 print_flags(tmp_str, instr_data->flags);
608 strcat (out_str, tmp_str);
612 sprintf (tmp_str, "rl%ld",
615 sprintf (tmp_str, "rh%ld", instr_data->arg_reg[datum_value]);
616 strcat (out_str, tmp_str);
619 sprintf (tmp_str, "r%ld", instr_data->arg_reg[datum_value]);
620 strcat (out_str, tmp_str);
623 sprintf (tmp_str, "rq%ld", instr_data->arg_reg[datum_value]);
624 strcat (out_str, tmp_str);
627 sprintf (tmp_str, "rr%ld", instr_data->arg_reg[datum_value]);
628 strcat (out_str, tmp_str);
632 sprintf (tmp_str, "rr%ld", instr_data->arg_reg[datum_value]);
634 sprintf (tmp_str, "r%ld", instr_data->arg_reg[datum_value]);
635 strcat (out_str, tmp_str);