Home | History | Annotate | Download | only in opcodes

Lines Matching refs:info

118 print_insn (struct disassemble_info *info,
129 (*info->fprintf_func) (info->stream, "%s", insn->op->name);
139 (*info->fprintf_func) (info->stream, "%s", d30v_cc_names[val]);
146 (*info->fprintf_func) (info->stream, ".l");
148 (*info->fprintf_func) (info->stream, ".s");
152 (*info->fprintf_func) (info->stream, "/%s", d30v_ecc_names[insn->ecc]);
154 (*info->fprintf_func) (info->stream, "\t");
170 (*info->fprintf_func) (info->stream, ", ");
175 (*info->fprintf_func) (info->stream, "@-");
180 (*info->fprintf_func) (info->stream, "-");
185 (*info->fprintf_func) (info->stream, "+");
190 (*info->fprintf_func) (info->stream, "@");
195 (*info->fprintf_func) (info->stream, "@(");
240 (*info->fprintf_func)
241 (info->stream, "%s", pre_defined_registers[i].pname);
243 (*info->fprintf_func)
244 (info->stream, "%s", pre_defined_registers[i].name);
253 (*info->fprintf_func)
254 (info->stream, _("<unknown register %d>"), val & 0x3F);
282 (*info->fprintf_func) (info->stream, "-%x\t(", val);
283 (*info->print_address_func) ((memaddr - val) & PC_MASK, info);
284 (*info->fprintf_func) (info->stream, ")");
288 (*info->fprintf_func) (info->stream, "%x\t(", val);
289 (*info->print_address_func) ((memaddr + val) & PC_MASK, info);
290 (*info->fprintf_func) (info->stream, ")");
295 (*info->print_address_func) (val, info);
308 (*info->fprintf_func) (info->stream, "-");
311 (*info->fprintf_func) (info->stream, "0x%x", val);
318 (*info->fprintf_func) (info->stream, ")");
322 print_insn_d30v (bfd_vma memaddr, struct disassemble_info *info)
332 info->bytes_per_line = 8;
333 info->bytes_per_chunk = 4;
334 info->display_endian = BFD_ENDIAN_BIG;
336 status = (*info->read_memory_func) (memaddr, buffer, 4, info);
339 (*info->memory_error_func) (status, memaddr, info);
344 status = (*info->read_memory_func) (memaddr + 4, buffer, 4, info);
347 info->bytes_per_line = 8;
349 (*info->fprintf_func) (info->stream, ".long\t0x%lx", in1);
351 print_insn (info, memaddr, (long long) in1, &insn, 0, result);
361 (*info->fprintf_func) (info->stream, ".long\t0x%lx,0x%lx", in1, in2);
365 print_insn (info, memaddr, num, &insn, 1, result);
371 (*info->fprintf_func) (info->stream, ".long\t0x%lx", in1);
373 print_insn (info, memaddr, num, &insn, 0, result);
378 (*info->fprintf_func) (info->stream, "\t||\t");
381 (*info->fprintf_func) (info->stream, "\t->\t");
384 (*info->fprintf_func) (info->stream, "\t<-\t");
392 (*info->fprintf_func) (info->stream, ".long\t0x%lx", in2);
394 print_insn (info, memaddr, num, &insn, 0, result);