Home
last modified time | relevance | path

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

/openbmc/qemu/target/tricore/
H A Dop_helper.c2217 uint64_t helper_mul_h(uint32_t arg00, uint32_t arg01, in helper_mul_h() argument
2222 int32_t sc1 = ((arg00 & 0xffff) == 0x8000) && in helper_mul_h()
2229 result1 = (((uint32_t)(arg00 * arg10)) << n); in helper_mul_h()
2239 uint64_t helper_mulm_h(uint32_t arg00, uint32_t arg01, in helper_mulm_h() argument
2245 int32_t sc1 = ((arg00 & 0xffff) == 0x8000) && in helper_mulm_h()
2253 result1 = (((int32_t)arg00 * (int32_t)arg10) << n); in helper_mulm_h()
2264 uint32_t helper_mulr_h(uint32_t arg00, uint32_t arg01, in helper_mulr_h() argument
2269 int32_t sc1 = ((arg00 & 0xffff) == 0x8000) && in helper_mulr_h()
2277 result1 = ((arg00 * arg10) << n) + 0x8000; in helper_mulr_h()
H A Dtranslate.c137 TCGv arg00 = tcg_temp_new(); \
140 tcg_gen_sari_tl(arg00, arg0, 16); \
143 gen_helper_##name(ret, arg00, arg01, arg11, arg11, n); \
147 TCGv arg00 = tcg_temp_new(); \
151 tcg_gen_sari_tl(arg00, arg0, 16); \
155 gen_helper_##name(ret, arg00, arg01, arg10, arg11, n); \
159 TCGv arg00 = tcg_temp_new(); \
163 tcg_gen_sari_tl(arg00, arg0, 16); \
167 gen_helper_##name(ret, arg00, arg01, arg10, arg11, n); \
171 TCGv arg00 = tcg_temp_new(); \
[all …]