Home | History | Annotate | Download | only in opcodes

Lines Matching full:info

50 fetch_data (struct disassemble_info *info, bfd_vma memaddr)
53 struct dis_private *priv = (struct dis_private *) info->private_data;
63 status = (*info->read_memory_func) (memaddr, priv->byte_buf, length,
64 info);
68 (*info->memory_error_func) (status, memaddr, info);
76 struct disassemble_info *info,
87 (*info->fprintf_func) (info->stream, "%u", operand_val);
89 (*info->fprintf_func) (info->stream, "0x%x", operand_val);
102 info->target = operand_val;
103 (*info->print_address_func) (info->target, info);
108 (*info->fprintf_func) (info->stream, "%d", signed_operand_val);
110 (*info->fprintf_func) (info->stream, "0x%x", signed_operand_val);
117 (*info->fprintf_func) (info->stream, "%s%u",
123 (*info->fprintf_func) (info->stream, ":%s%u",
132 /* Print the Xtensa instruction at address MEMADDR on info->stream.
136 print_insn_xtensa (bfd_vma memaddr, struct disassemble_info *info)
152 info->target = 0;
165 info->bytes_per_line = MAX (maxsize, 4);
177 info->private_data = (void *) &priv;
188 bytes_fetched = fetch_data (info, memaddr);
218 (*info->fprintf_func) (info->stream, ".byte %#02x", priv.byte_buf[0]);
223 (*info->fprintf_func) (info->stream, "{ ");
231 (*info->fprintf_func) (info->stream, "; ");
235 (*info->fprintf_func) (info->stream, "%s",
247 (*info->fprintf_func) (info->stream, "\t");
251 (*info->fprintf_func) (info->stream, ", ");
255 print_xtensa_operand (memaddr, info, opc, i, operand_val);
260 (*info->fprintf_func) (info->stream, " }");
262 info->bytes_per_chunk = size;
263 info->display_endian = info->endian;