Searched refs:instlen (Results 1 – 2 of 2) sorted by relevance
46 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)
848 int instlen; in mips_fetch_instruction() local853 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() local2234 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()