Searched refs:check_fit_tl (Results 1 – 2 of 2) sorted by relevance
/external/qemu/tcg/hppa/ |
D | tcg-target.c | 82 static inline int check_fit_tl(tcg_target_long val, unsigned int bits) in check_fit_tl() function 159 assert(check_fit_tl(pcrel, 12)); in patch_reloc() 167 assert(check_fit_tl(pcrel, 17)); in patch_reloc() 239 return check_fit_tl(val, 5); in tcg_target_const_match() 241 return check_fit_tl(val, 11); in tcg_target_const_match() 243 return check_fit_tl(-val, 11); in tcg_target_const_match() 354 if (check_fit_tl(arg, 14)) { in tcg_out_movi() 373 if (!check_fit_tl(offset, 14)) { in tcg_out_ldst() 435 assert(check_fit_tl(val, 11)); in tcg_out_arithi() 632 if (check_fit_tl(disp, 17)) { in tcg_out_call() [all …]
|
/external/qemu/tcg/sparc/ |
D | tcg-target.c | 92 static inline int check_fit_tl(tcg_target_long val, unsigned int bits) in check_fit_tl() function 116 if (!check_fit_tl(value, 22)) in patch_reloc() 123 if (!check_fit_tl(value, 19)) in patch_reloc() 180 else if ((ct & TCG_CT_CONST_S11) && check_fit_tl(val, 11)) in tcg_target_const_match() 182 else if ((ct & TCG_CT_CONST_S13) && check_fit_tl(val, 13)) in tcg_target_const_match() 324 if (check_fit_tl(arg, 13)) in tcg_out_movi_imm32() 342 } else if (check_fit_tl(arg, 13)) { in tcg_out_movi() 345 } else if (check_fit_tl(arg, 32)) { in tcg_out_movi() 368 if (!check_fit_tl(arg, 10)) in tcg_out_ld_ptr() 381 if (check_fit_tl(offset, 13)) in tcg_out_ldst() [all …]
|