Home | History | Annotate | Download | only in opcodes

Lines Matching full:info

30 get_int (bfd_vma memaddr, int *iptr, struct disassemble_info *info)
33 int status = info->read_memory_func (memaddr, ival, 4, info);
44 print_insn_pj (bfd_vma addr, struct disassemble_info *info)
46 fprintf_ftype fprintf_fn = info->fprintf_func;
47 void *stream = info->stream;
51 if ((status = info->read_memory_func (addr, &opcode, 1, info)))
58 if ((status = info->read_memory_func (addr + 1, &byte_2, 1, info)))
83 if ((status = get_int (addr, &val, info)))
87 (*info->print_address_func) (val + insn_start, info);
90 if ((status = get_int (addr, &lowval, info)))
94 if ((status = get_int (addr, &highval, info)))
100 if ((status = get_int (addr, &val, info)))
103 (*info->print_address_func) (val + insn_start, info);
120 if ((status = get_int (addr, &val, info)))
125 (*info->print_address_func) (val + insn_start, info);
127 if ((status = get_int (addr, &count, info)))
133 if ((status = get_int (addr, &val, info)))
138 if ((status = get_int (addr, &val, info)))
142 (*info->print_address_func) (val + insn_start, info);
155 if ((status = info->read_memory_func (addr, data, size, info)))
164 (*info->print_address_func) (val + insn_start, info);
175 info->memory_error_func (status, addr, info);