Searched refs:instlen (Results 1 - 5 of 5) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/utils/testgen/
H A Dmc-bundling-x86-gen.py46 for instlen in range(1, BUNDLE_SIZE + 1):
51 print('INSTRLEN_{0}_OFFSET_{1}:'.format(instlen, offset))
54 print_bundle_locked_sequence(instlen, align_to_end)
70 if offset + instlen == BUNDLE_SIZE:
73 elif offset + instlen < BUNDLE_SIZE:
75 offset_to_end = base_offset + (BUNDLE_SIZE - instlen)
77 else: # offset + instlen > BUNDLE_SIZE
81 offset_to_end = base_offset + (BUNDLE_SIZE * 2 - instlen)
86 if offset + instlen > BUNDLE_SIZE:
88 aligned_offset = (inst_orig_offset + instlen)
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Driscv-tdep.c1342 int instlen, status; local
1350 instlen = riscv_insn_length (buf[0]);
1351 gdb_assert (instlen <= sizeof (buf));
1352 *len = instlen;
1354 if (instlen > 2)
1356 status = target_read_memory (addr + 2, buf + 2, instlen - 2);
1361 return extract_unsigned_integer (buf, instlen, byte_order);
H A Dmips-tdep.c1445 int instlen; local
1452 instlen = MIPS_INSN16_SIZE;
1456 instlen = MIPS_INSN32_SIZE;
1462 err = target_read_memory (addr, buf, instlen);
1471 return extract_unsigned_integer (buf, instlen, byte_order);
4225 int instlen; local
4238 instlen = mips_pc_is_mips (pc) ? MIPS_INSN32_SIZE : MIPS_INSN16_SIZE;
4243 for (start_pc -= instlen;; start_pc -= instlen)
4298 if (start_pc - instlen >
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Driscv-tdep.c1774 int instlen, status;
1782 instlen = riscv_insn_length (buf[0]);
1783 gdb_assert (instlen <= sizeof (buf));
1784 *len = instlen;
1786 if (instlen > 2)
1788 status = target_read_memory (addr + 2, buf + 2, instlen - 2);
1793 return extract_unsigned_integer (buf, instlen, byte_order);
H A Dmips-tdep.c1467 int instlen; local
1474 instlen = MIPS_INSN16_SIZE;
1478 instlen = MIPS_INSN32_SIZE;
1484 err = target_read_memory (addr, buf, instlen);
1493 return extract_unsigned_integer (buf, instlen, byte_order);
4252 int instlen; local
4265 instlen = mips_pc_is_mips (pc) ? MIPS_INSN32_SIZE : MIPS_INSN16_SIZE;
4270 for (start_pc -= instlen;; start_pc -= instlen)
4325 if (start_pc - instlen >
[all...]

Completed in 237 milliseconds