target-s390x: simplify SCKC helper

The clock comparator and the QEMU timer work the same way, triggering
at a given time, they just differ by the origin and the scale. It is
therefore possible to go from one to another without using the current
clock value. This spares two calls to qemu_clock_get_ns, which probably
return slightly different values, possibly reducing the accuracy.

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
Aurelien Jarno 2015-05-18 23:42:26 +02:00 committed by Alexander Graf
parent 9cb32c442e
commit c941f07485

View File

@ -291,12 +291,13 @@ void HELPER(sckc)(CPUS390XState *env, uint64_t time)
return; return;
} }
/* difference between now and then */ /* difference between origins */
time -= clock_value(env); time -= env->tod_offset;
/* nanoseconds */ /* nanoseconds */
time = tod2time(time); time = tod2time(time);
timer_mod(env->tod_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + time); timer_mod(env->tod_timer, env->tod_basetime + time);
} }
/* Store Clock Comparator */ /* Store Clock Comparator */