Searched refs:regno (Results 1 - 23 of 23) sorted by relevance

/macosx-10.10.1/cxxfilt-11/cxxfilt/opcodes/
H A Dm68k-dis.c444 print_base (int regno, bfd_vma disp, disassemble_info *info)
446 if (regno == -1)
455 if (regno == -2)
457 else if (regno == -3)
460 (*info->fprintf_func) (info->stream, "%s@(", reg_names[regno]);
581 int regno;
661 for (regno = sizeof names / sizeof names[0] - 1; regno >= 0; regno--)
662 if (names[regno]
442 print_base(int regno, bfd_vma disp, disassemble_info *info) argument
579 int regno; local
1096 (*info->fprintf_func) (info->stream, "-%%fp%d", regno); local
[all...]
H A Dfr30-asm.c58 int regno;
62 regno = **strp - '0';
67 regno = regno * 10 + (**strp - '0');
71 return regno;
85 int regno;
91 regno = parse_register_number (strp);
92 if (regno == -1)
94 if (regno > 7 && !high_low)
96 if (regno <
57 int regno; local
84 int regno; local
[all...]
H A Dh8300-dis.c332 int regno[3] = { 0, 0, 0 }; local
490 regno[opnr] = thisnib;
514 regno[opnr] = thisnib;
615 high = regno[1];
626 low = regno[0];
634 if (regno[0] == 0)
635 outfn (stream, "er%d", regno[1]);
637 outfn (stream, "er%d-er%d", regno[1] - regno[0],
638 regno[
[all...]
H A Dtic4x-dis.c128 tic4x_print_register (struct disassemble_info *info, unsigned long regno) argument
137 registertable[tic3x_registers[i].regno] = (tic4x_register_t *) (tic3x_registers + i);
143 registertable[tic4x_registers[i].regno] =
147 if ((int) regno > (IS_CPU_TIC4X (tic4x_version) ? TIC4X_REG_MAX : TIC3X_REG_MAX))
150 (*info->fprintf_func) (info->stream, "%s", registertable[regno]->name);
H A Dfrv-asm.c581 int regno;
586 regno = **strp - '0';
588 regno = regno * 10 + (**strp - '0');
590 return regno;
600 long regno;
606 regno = parse_register_number (strp);
610 if (! spr_valid (regno))
612 *valuep = regno;
617 regno
580 int regno; local
599 long regno; local
[all...]
H A Darc-opc.c1047 lookup_register (int type, long regno)
1054 if (ext_oper->operand.type == type && ext_oper->operand.value == regno)
1060 return &arc_reg_names[regno];
1065 if (type == r->type && regno == r->value)
1084 int regno;
1089 regno = (*insn >> operand->shift) & ((1 << operand->bits) - 1);
1092 if (regno == ARC_REG_SHIMM)
1110 else if (regno == ARC_REG_SHIMM_UPDATE)
1127 else if (regno == ARC_REG_LIMM)
1142 const struct arc_operand_value *reg = lookup_register (REG, regno);
1044 lookup_register(int type, long regno) argument
1081 int regno; local
[all...]
H A Dm32c-asm.c867 int regno = 0;
875 regno = **strp - '0';
876 if (regno > 4)
882 regno = **strp - '0';
883 if (regno > 2)
885 regno = **strp - '0' + 4;
890 regno = 6;
896 regno = 7;
901 *valuep |= 0x80 >> regno;
903 *valuep |= 1 << regno;
866 int regno = 0; local
[all...]
H A Dcris-dis.c589 /* Format the name of the general register regno into outbuffer. */
593 int regno,
602 switch (regno)
617 sprintf (outbuffer, "r%d", regno);
627 format_sup_reg (unsigned int regno,
638 if (cris_support_regs[i].number == regno)
591 format_reg(struct cris_disasm_data *disdata, int regno, char *outbuffer_start, bfd_boolean with_reg_prefix) argument
626 format_sup_reg(unsigned int regno, char *outbuffer_start, bfd_boolean with_reg_prefix) argument
H A Dfrv-dis.c80 long regno,
84 if (cgen_keyword_lookup_value (names, regno) == NULL)
87 (*info->fprintf_func) (info->stream, "spr[%ld]", regno);
90 print_keyword (cd, dis_info, names, regno, attrs);
76 print_spr(CGEN_CPU_DESC cd, void * dis_info, CGEN_KEYWORD *names, long regno, unsigned int attrs) argument
H A Darm-dis.c1691 int regno = ((given >> 12) & 0xf) | ((given >> (22 - 4)) & 0x10);
1695 func (stream, "{d%d}", regno);
1696 else if (regno + offset > 32)
1697 func (stream, "{d%d-<overflow reg d%d>}", regno, regno + offset - 1);
1699 func (stream, "{d%d-d%d}", regno, regno + offset - 1);
1895 int regno;
1903 regno = given & 0x0000000f;
1906 regno <<
1690 int regno = ((given >> 12) & 0xf) | ((given >> (22 - 4)) & 0x10); local
1894 int regno; local
2526 int regno = ((given >> 16) & 0xf) | ((given >> (7 - 4)) & 0x10); local
3242 psr_name(int regno) argument
[all...]
H A Dfrv-opc.c872 spr_valid (long regno) argument
874 if (regno < 0) return FALSE;
875 if (regno <= 4095) return TRUE;
/macosx-10.10.1/cxxfilt-11/cxxfilt/include/gdb/
H A Dremote-sim.h191 int sim_fetch_register PARAMS ((SIM_DESC sd, int regno, unsigned char *buf, int length));
203 int sim_store_register PARAMS ((SIM_DESC sd, int regno, unsigned char *buf, int length));
/macosx-10.10.1/cxxfilt-11/cxxfilt/cpu/
H A Dfrv.opc919 spr_valid (long regno)
921 if (regno < 0) return FALSE;
922 if (regno <= 4095) return TRUE;
1457 int regno;
1462 regno = **strp - '0';
1464 regno = regno * 10 + (**strp - '0');
1466 return regno;
1476 long regno;
1482 regno
[all...]
H A Dm32c.opc899 int regno = 0;
907 regno = **strp - '0';
908 if (regno > 4)
914 regno = **strp - '0';
915 if (regno > 2)
917 regno = **strp - '0' + 4;
922 regno = 6;
928 regno = 7;
933 *valuep |= 0x80 >> regno;
935 *valuep |= 1 << regno;
[all...]
/macosx-10.10.1/dtrace-147/libdwarf/
H A Dpro_frame.c279 Dwarf_Ubyte opc, regno; local
293 regno = reg;
294 if (regno & 0xc0) {
298 opc = opc | regno; /* lower 6 bits are register number */
/macosx-10.10.1/libpcap-48/libpcap/
H A Dgencode.h276 int regno; /* virtual register number of result */ member in struct:arth
H A Dgencode.c6627 s->s.k = a->regno;
6638 s->s.k = a->regno;
6657 int regno = alloc_reg(); local
6659 free_reg(inst->regno);
6874 inst->regno = regno;
6876 s->s.k = regno;
6909 free_reg(a0->regno);
6910 free_reg(a1->regno);
6931 int regno local
[all...]
/macosx-10.10.1/emacs-93/emacs/src/
H A Dregex.c5555 int regno = *p++; /* Get which register to match against. */
5556 DEBUG_PRINT2 ("EXECUTING duplicate %d.\n", regno);
5559 if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
5563 d2 = regstart[regno];
5573 dend2 = ((FIRST_STRING_P (regstart[regno])
5574 == FIRST_STRING_P (regend[regno]))
5575 ? regend[regno] : end_match_1);
5583 if (dend2 == regend[regno]) break;
5587 dend2 = regend[regno];
5528 int regno = *p++; /* Get which register to match against. */ local
[all...]
/macosx-10.10.1/lsof-53/lsof/lib/
H A Dregex.c5015 int regno = *p++; /* Get which register to match against. */
5016 DEBUG_PRINT2 ("EXECUTING duplicate %d.\n", regno);
5019 if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
5023 d2 = regstart[regno];
5030 dend2 = ((FIRST_STRING_P (regstart[regno])
5031 == FIRST_STRING_P (regend[regno]))
5032 ? regend[regno] : end_match_1);
5040 if (dend2 == regend[regno]) break;
5044 dend2 = regend[regno];
4995 int regno = *p++; /* Get which register to match against. */ local
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dregex.c6780 int regno = *p++; /* Get which register to match against. */
6781 DEBUG_PRINT2 ("EXECUTING duplicate %d.\n", regno);
6784 if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
6788 d2 = regstart[regno];
6795 dend2 = ((FIRST_STRING_P (regstart[regno])
6796 == FIRST_STRING_P (regend[regno]))
6797 ? regend[regno] : end_match_1);
6805 if (dend2 == regend[regno]) break;
6809 dend2 = regend[regno];
6763 int regno = *p++; /* Get which register to match against. */ local
[all...]
/macosx-10.10.1/gnudiff-19/diffutils/lib/
H A Dregex.c6965 int regno = *p++; /* Get which register to match against. */
6966 DEBUG_PRINT2 ("EXECUTING duplicate %d.\n", regno);
6969 if (REG_UNSET (regstart[regno]) || REG_UNSET (regend[regno]))
6973 d2 = regstart[regno];
6980 dend2 = ((FIRST_STRING_P (regstart[regno])
6981 == FIRST_STRING_P (regend[regno]))
6982 ? regend[regno] : end_match_1);
6990 if (dend2 == regend[regno]) break;
6994 dend2 = regend[regno];
6948 int regno = *p++; /* Get which register to match against. */ local
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Delf32-xtensa.c3893 uint32 regno = 1;
3894 xtensa_operand_encode (isa, opcode, opn, &regno);
3896 slotbuf, regno);
3967 uint32 regno, const16_regno, call_regno;
3991 fmt, 0, slotbuf, &regno)
3993 &regno))
4001 fmt, 0, slotbuf, &regno)
4003 &regno))
4021 || const16_regno != regno)
4027 /* Next instruction should be an CALLXn with operand 0 == regno
3882 uint32 regno = 1; local
3956 uint32 regno, const16_regno, call_regno; local
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/include/opcode/
H A Dtic4x.h62 unsigned long regno; member in struct:tic4x_register

Completed in 1145 milliseconds