4 * Copyright (c) 2010-2015 Institute for System Programming
5 * of the Russian Academy of Sciences.
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
12 #include "qemu/osdep.h"
13 #include "sysemu/replay.h"
14 #include "replay-internal.h"
15 #include "qemu/error-report.h"
17 int64_t replay_save_clock(ReplayClockKind kind
, int64_t clock
, int64_t raw_icount
)
20 g_assert(replay_mutex_locked());
22 /* Due to the caller's locking requirements we get the icount from it
23 * instead of using replay_save_instructions().
25 replay_advance_current_step(raw_icount
);
26 replay_put_event(EVENT_CLOCK
+ kind
);
27 replay_put_qword(clock
);
33 void replay_read_next_clock(ReplayClockKind kind
)
35 unsigned int read_kind
= replay_state
.data_kind
- EVENT_CLOCK
;
37 assert(read_kind
== kind
);
39 int64_t clock
= replay_get_qword();
42 replay_finish_event();
44 replay_state
.cached_clock
[read_kind
] = clock
;
47 /*! Reads next clock event from the input. */
48 int64_t replay_read_clock(ReplayClockKind kind
)
50 g_assert(replay_file
&& replay_mutex_locked());
52 replay_account_executed_instructions();
56 if (replay_next_event_is(EVENT_CLOCK
+ kind
)) {
57 replay_read_next_clock(kind
);
59 ret
= replay_state
.cached_clock
[kind
];
64 error_report("REPLAY INTERNAL ERROR %d", __LINE__
);