refactoring of cpus.c continues with cpu timer state extraction.
cpu-timers: responsible for the softmmu cpu timers state,
            including cpu clocks and ticks.
icount: counts the TCG instructions executed. As such it is specific to
the TCG accelerator. Therefore, it is built only under CONFIG_TCG.
One complication is due to qtest, which uses an icount field to warp time
as part of qtest (qtest_clock_warp).
In order to solve this problem, provide a separate counter for qtest.
This requires fixing assumptions scattered in the code that
qtest_enabled() implies icount_enabled(), checking each specific case.
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
[remove redundant initialization with qemu_spice_init]
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
[fix lingering calls to icount_get]
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
		
	
			
		
			
				
	
	
		
			36 lines
		
	
	
		
			724 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			724 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Test Server
 | 
						|
 *
 | 
						|
 * Copyright IBM, Corp. 2011
 | 
						|
 *
 | 
						|
 * Authors:
 | 
						|
 *  Anthony Liguori   <aliguori@us.ibm.com>
 | 
						|
 *
 | 
						|
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 | 
						|
 * See the COPYING file in the top-level directory.
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef QTEST_H
 | 
						|
#define QTEST_H
 | 
						|
 | 
						|
 | 
						|
extern bool qtest_allowed;
 | 
						|
 | 
						|
static inline bool qtest_enabled(void)
 | 
						|
{
 | 
						|
    return qtest_allowed;
 | 
						|
}
 | 
						|
 | 
						|
bool qtest_driver(void);
 | 
						|
 | 
						|
void qtest_server_init(const char *qtest_chrdev, const char *qtest_log, Error **errp);
 | 
						|
 | 
						|
void qtest_server_set_send_handler(void (*send)(void *, const char *),
 | 
						|
                                 void *opaque);
 | 
						|
void qtest_server_inproc_recv(void *opaque, const char *buf);
 | 
						|
 | 
						|
int64_t qtest_get_virtual_clock(void);
 | 
						|
 | 
						|
#endif
 |