]>
Commit | Line | Data |
---|---|---|
8b7a5507 PMD |
1 | # See docs/devel/tracing.txt for syntax documentation. |
2 | ||
3 | # balloon.c | |
4 | # Since requests are raised via monitor, not many tracepoints are needed. | |
5 | balloon_event(void *opaque, unsigned long addr) "opaque %p addr %lu" | |
6 | ||
7 | # ioport.c | |
8 | cpu_in(unsigned int addr, char size, unsigned int val) "addr 0x%x(%c) value %u" | |
9 | cpu_out(unsigned int addr, char size, unsigned int val) "addr 0x%x(%c) value %u" | |
10 | ||
11 | # memory.c | |
12 | memory_region_ops_read(int cpu_index, void *mr, uint64_t addr, uint64_t value, unsigned size) "cpu %d mr %p addr 0x%"PRIx64" value 0x%"PRIx64" size %u" | |
13 | memory_region_ops_write(int cpu_index, void *mr, uint64_t addr, uint64_t value, unsigned size) "cpu %d mr %p addr 0x%"PRIx64" value 0x%"PRIx64" size %u" | |
14 | memory_region_subpage_read(int cpu_index, void *mr, uint64_t offset, uint64_t value, unsigned size) "cpu %d mr %p offset 0x%"PRIx64" value 0x%"PRIx64" size %u" | |
15 | memory_region_subpage_write(int cpu_index, void *mr, uint64_t offset, uint64_t value, unsigned size) "cpu %d mr %p offset 0x%"PRIx64" value 0x%"PRIx64" size %u" | |
16 | memory_region_ram_device_read(int cpu_index, void *mr, uint64_t addr, uint64_t value, unsigned size) "cpu %d mr %p addr 0x%"PRIx64" value 0x%"PRIx64" size %u" | |
17 | memory_region_ram_device_write(int cpu_index, void *mr, uint64_t addr, uint64_t value, unsigned size) "cpu %d mr %p addr 0x%"PRIx64" value 0x%"PRIx64" size %u" | |
18 | flatview_new(void *view, void *root) "%p (root %p)" | |
19 | flatview_destroy(void *view, void *root) "%p (root %p)" | |
20 | flatview_destroy_rcu(void *view, void *root) "%p (root %p)" | |
21 | ||
22 | # vl.c | |
23 | vm_state_notify(int running, int reason, const char *reason_str) "running %d reason %d (%s)" | |
24 | load_file(const char *name, const char *path) "name %s location %s" | |
25 | runstate_set(int current_state, const char *current_state_str, int new_state, const char *new_state_str) "current_run_state %d (%s) new_state %d (%s)" | |
26 | system_wakeup_request(int reason) "reason=%d" | |
27 | qemu_system_shutdown_request(int reason) "reason=%d" | |
28 | qemu_system_powerdown_request(void) "" |