Home
last modified time | relevance | path

Searched refs:instlen (Results 1 – 2 of 2) sorted by relevance

/openbsd/gnu/llvm/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)
81 offset_to_end = base_offset + (BUNDLE_SIZE * 2 - instlen)
86 if offset + instlen > BUNDLE_SIZE:
88 aligned_offset = (inst_orig_offset + instlen) & ~(BUNDLE_SIZE - 1)
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dmips-tdep.c848 int instlen; in mips_fetch_instruction() local
853 instlen = MIPS_INSN16_SIZE; in mips_fetch_instruction()
857 instlen = MIPS_INSN32_SIZE; in mips_fetch_instruction()
858 status = deprecated_read_memory_nobpt (addr, buf, instlen); in mips_fetch_instruction()
861 return extract_unsigned_integer (buf, instlen); in mips_fetch_instruction()
2222 int instlen; in heuristic_proc_start() local
2234 instlen = mips_pc_is_mips16 (pc) ? MIPS_INSN16_SIZE : MIPS_INSN32_SIZE; in heuristic_proc_start()
2237 for (start_pc -= instlen;; start_pc -= instlen) in heuristic_proc_start()