Home
last modified time | relevance | path

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

/openbmc/qemu/target/i386/tcg/
H A Dfpu_helper.c252 int new_fpstt; in helper_flds_ST0() local
258 new_fpstt = (env->fpstt - 1) & 7; in helper_flds_ST0()
260 env->fpregs[new_fpstt].d = float32_to_floatx80(u.f, &env->fp_status); in helper_flds_ST0()
261 env->fpstt = new_fpstt; in helper_flds_ST0()
262 env->fptags[new_fpstt] = 0; /* validate stack entry */ in helper_flds_ST0()
269 int new_fpstt; in helper_fldl_ST0() local
275 new_fpstt = (env->fpstt - 1) & 7; in helper_fldl_ST0()
277 env->fpregs[new_fpstt].d = float64_to_floatx80(u.f, &env->fp_status); in helper_fldl_ST0()
278 env->fpstt = new_fpstt; in helper_fldl_ST0()
279 env->fptags[new_fpstt] = 0; /* validate stack entry */ in helper_fldl_ST0()
[all …]