Lines Matching refs:INLINE_SIM_FPU

194 INLINE_SIM_FPU (void) sim_fpu_32to (sim_fpu *f, uint32_t s);
195 INLINE_SIM_FPU (void) sim_fpu_232to (sim_fpu *f, uint32_t h, uint32_t l);
196 INLINE_SIM_FPU (void) sim_fpu_64to (sim_fpu *f, uint64_t d);
198 INLINE_SIM_FPU (void) sim_fpu_to32 (uint32_t *s, const sim_fpu *f);
199 INLINE_SIM_FPU (void) sim_fpu_to232 (uint32_t *h, uint32_t *l, const sim_fpu *f);
200 INLINE_SIM_FPU (void) sim_fpu_to64 (uint64_t *d, const sim_fpu *f);
212 INLINE_SIM_FPU (void) sim_fpu_fractionto (sim_fpu *f, int sign, int normal_exp, uint64_t fraction, int precision);
217 INLINE_SIM_FPU (uint64_t) sim_fpu_tofraction (const sim_fpu *s, int precision);
226 INLINE_SIM_FPU (int) sim_fpu_round_32 (sim_fpu *f,
229 INLINE_SIM_FPU (int) sim_fpu_round_64 (sim_fpu *f,
246 INLINE_SIM_FPU (int) sim_fpu_add (sim_fpu *f,
248 INLINE_SIM_FPU (int) sim_fpu_sub (sim_fpu *f,
250 INLINE_SIM_FPU (int) sim_fpu_mul (sim_fpu *f,
252 INLINE_SIM_FPU (int) sim_fpu_div (sim_fpu *f,
254 INLINE_SIM_FPU (int) sim_fpu_rem (sim_fpu *f,
256 INLINE_SIM_FPU (int) sim_fpu_max (sim_fpu *f,
258 INLINE_SIM_FPU (int) sim_fpu_min (sim_fpu *f,
260 INLINE_SIM_FPU (int) sim_fpu_neg (sim_fpu *f,
262 INLINE_SIM_FPU (int) sim_fpu_abs (sim_fpu *f,
264 INLINE_SIM_FPU (int) sim_fpu_inv (sim_fpu *f,
266 INLINE_SIM_FPU (int) sim_fpu_sqrt (sim_fpu *f,
276 INLINE_SIM_FPU (int) sim_fpu_op_nan (sim_fpu *f,
278 INLINE_SIM_FPU (int) sim_fpu_minmax_nan (sim_fpu *f,
285 INLINE_SIM_FPU (int) sim_fpu_i32to (sim_fpu *f, int32_t i,
287 INLINE_SIM_FPU (int) sim_fpu_u32to (sim_fpu *f, uint32_t u,
289 INLINE_SIM_FPU (int) sim_fpu_i64to (sim_fpu *f, int64_t i,
291 INLINE_SIM_FPU (int) sim_fpu_u64to (sim_fpu *f, uint64_t u,
294 INLINE_SIM_FPU (int) sim_fpu_i232to (sim_fpu *f, int32_t h, int32_t l,
298 INLINE_SIM_FPU (int) sim_fpu_u232to (sim_fpu *f, uint32_t h, uint32_t l,
302 INLINE_SIM_FPU (int) sim_fpu_to32i (int32_t *i, const sim_fpu *f,
304 INLINE_SIM_FPU (int) sim_fpu_to32u (uint32_t *u, const sim_fpu *f,
306 INLINE_SIM_FPU (int) sim_fpu_to64i (int64_t *i, const sim_fpu *f,
308 INLINE_SIM_FPU (int) sim_fpu_to64u (uint64_t *u, const sim_fpu *f,
311 INLINE_SIM_FPU (int) sim_fpu_to232i (int64_t *h, int64_t *l, const sim_fpu *f,
315 INLINE_SIM_FPU (int) sim_fpu_to232u (uint64_t *h, uint64_t *l, const sim_fpu *f,
324 /* INLINE_SIM_FPU (float) sim_fpu_2f (const sim_fpu *f); */
325 INLINE_SIM_FPU (double) sim_fpu_2d (const sim_fpu *d);
327 /* INLINE_SIM_FPU (void) sim_fpu_f2 (sim_fpu *f, float s); */
328 INLINE_SIM_FPU (void) sim_fpu_d2 (sim_fpu *f, double d);
331 INLINE_SIM_FPU (int) sim_fpu_classify (const sim_fpu *f);
341 INLINE_SIM_FPU (int) sim_fpu_is_nan (const sim_fpu *s); /* 1 => SNaN or QNaN */
342 INLINE_SIM_FPU (int) sim_fpu_is_snan (const sim_fpu *s); /* 1 => SNaN */
343 INLINE_SIM_FPU (int) sim_fpu_is_qnan (const sim_fpu *s); /* 1 => QNaN */
345 INLINE_SIM_FPU (int) sim_fpu_is_zero (const sim_fpu *s);
346 INLINE_SIM_FPU (int) sim_fpu_is_infinity (const sim_fpu *s);
347 INLINE_SIM_FPU (int) sim_fpu_is_number (const sim_fpu *s); /* !zero */
348 INLINE_SIM_FPU (int) sim_fpu_is_denorm (const sim_fpu *s); /* !zero */
354 INLINE_SIM_FPU (int) sim_fpu_sign (const sim_fpu *s);
355 INLINE_SIM_FPU (int) sim_fpu_exp (const sim_fpu *s);
356 INLINE_SIM_FPU (uint64_t) sim_fpu_fraction (const sim_fpu *s);
357 INLINE_SIM_FPU (uint64_t) sim_fpu_guard (const sim_fpu *s, int is_double);
366 INLINE_SIM_FPU (int) sim_fpu_lt (int *is, const sim_fpu *l, const sim_fpu *r);
367 INLINE_SIM_FPU (int) sim_fpu_le (int *is, const sim_fpu *l, const sim_fpu *r);
368 INLINE_SIM_FPU (int) sim_fpu_eq (int *is, const sim_fpu *l, const sim_fpu *r);
369 INLINE_SIM_FPU (int) sim_fpu_ne (int *is, const sim_fpu *l, const sim_fpu *r);
370 INLINE_SIM_FPU (int) sim_fpu_ge (int *is, const sim_fpu *l, const sim_fpu *r);
371 INLINE_SIM_FPU (int) sim_fpu_gt (int *is, const sim_fpu *l, const sim_fpu *r);
373 INLINE_SIM_FPU (int) sim_fpu_is_lt (const sim_fpu *l, const sim_fpu *r);
374 INLINE_SIM_FPU (int) sim_fpu_is_le (const sim_fpu *l, const sim_fpu *r);
375 INLINE_SIM_FPU (int) sim_fpu_is_eq (const sim_fpu *l, const sim_fpu *r);
376 INLINE_SIM_FPU (int) sim_fpu_is_ne (const sim_fpu *l, const sim_fpu *r);
377 INLINE_SIM_FPU (int) sim_fpu_is_ge (const sim_fpu *l, const sim_fpu *r);
378 INLINE_SIM_FPU (int) sim_fpu_is_gt (const sim_fpu *l, const sim_fpu *r);
382 INLINE_SIM_FPU (int) sim_fpu_un (int *is, const sim_fpu *l, const sim_fpu *r);
383 INLINE_SIM_FPU (int) sim_fpu_or (int *is, const sim_fpu *l, const sim_fpu *r);
385 INLINE_SIM_FPU (int) sim_fpu_is_un (const sim_fpu *l, const sim_fpu *r);
386 INLINE_SIM_FPU (int) sim_fpu_is_or (const sim_fpu *l, const sim_fpu *r);
391 INLINE_SIM_FPU (bool) sim_fpu_is_ieee754_1985 (void);
392 INLINE_SIM_FPU (bool) sim_fpu_is_ieee754_2008 (void);
393 INLINE_SIM_FPU (void) sim_fpu_set_mode (const sim_fpu_mode m);
421 INLINE_SIM_FPU (int) sim_fpu_is (const sim_fpu *l);
422 INLINE_SIM_FPU (int) sim_fpu_cmp (const sim_fpu *l, const sim_fpu *r);
471 INLINE_SIM_FPU (void) sim_fpu_print_fpu (const sim_fpu *f,
476 INLINE_SIM_FPU (void) sim_fpu_printn_fpu (const sim_fpu *f,
481 INLINE_SIM_FPU (void) sim_fpu_print_status (int status,