Stefan Hajnoczi | 94a420b | 2010-05-22 17:52:39 +0100 | [diff] [blame] | 1 | # Trace events for debugging and performance instrumentation |
| 2 | # |
| 3 | # This file is processed by the tracetool script during the build. |
| 4 | # |
| 5 | # To add a new trace event: |
| 6 | # |
| 7 | # 1. Choose a name for the trace event. Declare its arguments and format |
| 8 | # string. |
| 9 | # |
| 10 | # 2. Call the trace event from code using trace_##name, e.g. multiwrite_cb() -> |
| 11 | # trace_multiwrite_cb(). The source file must #include "trace.h". |
| 12 | # |
| 13 | # Format of a trace event: |
| 14 | # |
Stefan Hajnoczi | 1e2cf2b | 2010-05-24 11:32:09 +0100 | [diff] [blame] | 15 | # [disable] <name>(<type1> <arg1>[, <type2> <arg2>] ...) "<format-string>" |
Stefan Hajnoczi | 94a420b | 2010-05-22 17:52:39 +0100 | [diff] [blame] | 16 | # |
Frediano Ziglio | a74cd8c | 2011-08-31 09:25:35 +0200 | [diff] [blame] | 17 | # Example: g_malloc(size_t size) "size %zu" |
Stefan Hajnoczi | 94a420b | 2010-05-22 17:52:39 +0100 | [diff] [blame] | 18 | # |
Stefan Hajnoczi | 1e2cf2b | 2010-05-24 11:32:09 +0100 | [diff] [blame] | 19 | # The "disable" keyword will build without the trace event. |
Stefan Hajnoczi | 1e2cf2b | 2010-05-24 11:32:09 +0100 | [diff] [blame] | 20 | # |
Stefan Hajnoczi | 94a420b | 2010-05-22 17:52:39 +0100 | [diff] [blame] | 21 | # The <name> must be a valid as a C function name. |
| 22 | # |
| 23 | # Types should be standard C types. Use void * for pointers because the trace |
| 24 | # system may not have the necessary headers included. |
| 25 | # |
| 26 | # The <format-string> should be a sprintf()-compatible format string. |
Stefan Hajnoczi | cd245a1 | 2010-05-22 18:09:25 +0100 | [diff] [blame] | 27 | |
Paolo Bonzini | d354c7e | 2012-02-23 13:23:34 +0100 | [diff] [blame] | 28 | # thread-pool.c |
Stefan Hajnoczi | b811203 | 2013-03-07 13:41:45 +0100 | [diff] [blame] | 29 | thread_pool_submit(void *pool, void *req, void *opaque) "pool %p req %p opaque %p" |
| 30 | thread_pool_complete(void *pool, void *req, void *opaque, int ret) "pool %p req %p opaque %p ret %d" |
Paolo Bonzini | d354c7e | 2012-02-23 13:23:34 +0100 | [diff] [blame] | 31 | thread_pool_cancel(void *req, void *opaque) "req %p opaque %p" |
| 32 | |
Prerna Saxena | bd3c9aa | 2010-08-11 17:15:11 +0530 | [diff] [blame] | 33 | # ioport.c |
Paolo Bonzini | 6f94b7d | 2015-10-16 15:08:34 +0200 | [diff] [blame] | 34 | cpu_in(unsigned int addr, char size, unsigned int val) "addr %#x(%c) value %u" |
| 35 | cpu_out(unsigned int addr, char size, unsigned int val) "addr %#x(%c) value %u" |
Prerna Saxena | 62dd89d | 2010-08-11 17:16:03 +0530 | [diff] [blame] | 36 | |
| 37 | # balloon.c |
| 38 | # Since requests are raised via monitor, not many tracepoints are needed. |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 39 | balloon_event(void *opaque, unsigned long addr) "opaque %p addr %lu" |
Greg Kurz | 6411dd1 | 2016-01-11 18:30:36 +0100 | [diff] [blame] | 40 | virtio_balloon_handle_output(const char *name, uint64_t gpa) "section name: %s gpa: %"PRIx64 |
Stefan Weil | a6d4953 | 2016-03-23 15:38:20 +0100 | [diff] [blame] | 41 | virtio_balloon_get_config(uint32_t num_pages, uint32_t actual) "num_pages: %d actual: %d" |
| 42 | virtio_balloon_set_config(uint32_t actual, uint32_t oldactual) "actual: %d oldactual: %d" |
zhanghailiang | 6adfdc5 | 2014-11-17 13:11:10 +0800 | [diff] [blame] | 43 | virtio_balloon_to_target(uint64_t target, uint32_t num_pages) "balloon target: %"PRIx64" num_pages: %d" |
Blue Swirl | d8023f3 | 2010-10-20 16:41:28 +0000 | [diff] [blame] | 44 | |
Stefan Hajnoczi | 94b0b5f | 2010-11-16 12:20:25 +0000 | [diff] [blame] | 45 | # vl.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 46 | vm_state_notify(int running, int reason) "running %d reason %d" |
Gerd Hoffmann | 4524051 | 2013-03-08 11:42:24 +0100 | [diff] [blame] | 47 | load_file(const char *name, const char *path) "name %s location %s" |
Kazuya Saito | 7e86600 | 2013-03-22 17:26:59 +0900 | [diff] [blame] | 48 | runstate_set(int new_state) "new state %d" |
Alexey Kardashevskiy | 4fed942 | 2014-03-07 01:33:36 +0530 | [diff] [blame] | 49 | system_wakeup_request(int reason) "reason=%d" |
Yang Zhiyong | bc78cff | 2014-06-22 02:43:03 +0800 | [diff] [blame] | 50 | qemu_system_shutdown_request(void) "" |
| 51 | qemu_system_powerdown_request(void) "" |
Stefan Hajnoczi | 298800c | 2010-12-06 16:08:01 +0000 | [diff] [blame] | 52 | |
Alon Levy | cbcc633 | 2011-01-19 10:49:50 +0200 | [diff] [blame] | 53 | # spice-qemu-char.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 54 | spice_vmc_write(ssize_t out, int len) "spice wrottn %zd of requested %d" |
| 55 | spice_vmc_read(int bytes, int len) "spice read %d of requested %d" |
| 56 | spice_vmc_register_interface(void *scd) "spice vmc registered interface %p" |
| 57 | spice_vmc_unregister_interface(void *scd) "spice vmc unregistered interface %p" |
Marc-André Lureau | 5a49d3e | 2012-12-05 16:15:34 +0100 | [diff] [blame] | 58 | spice_vmc_event(int event) "spice vmc event %d" |
Michael Walle | 4ef66fa | 2011-02-17 23:45:07 +0100 | [diff] [blame] | 59 | |
Markus Armbruster | 4089376 | 2014-09-23 14:53:31 +0200 | [diff] [blame] | 60 | # xen-hvm.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 61 | xen_ram_alloc(unsigned long ram_addr, unsigned long size) "requested: %#lx, size %#lx" |
Avi Kivity | 20581d2 | 2011-12-19 12:07:50 +0200 | [diff] [blame] | 62 | xen_client_set_memory(uint64_t start_addr, unsigned long size, bool log_dirty) "%#"PRIx64" size %#lx, log_dirty %i" |
Paul Durrant | b7665c6 | 2016-08-01 10:16:25 +0100 | [diff] [blame] | 63 | xen_default_ioreq_server(void) "" |
Paul Durrant | 3996e85 | 2015-01-20 11:06:19 +0000 | [diff] [blame] | 64 | xen_ioreq_server_create(uint32_t id) "id: %u" |
| 65 | xen_ioreq_server_destroy(uint32_t id) "id: %u" |
| 66 | xen_ioreq_server_state(uint32_t id, bool enable) "id: %u: enable: %i" |
| 67 | xen_map_mmio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: %#"PRIx64" end: %#"PRIx64 |
| 68 | xen_unmap_mmio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: %#"PRIx64" end: %#"PRIx64 |
| 69 | xen_map_portio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: %#"PRIx64" end: %#"PRIx64 |
| 70 | xen_unmap_portio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: %#"PRIx64" end: %#"PRIx64 |
| 71 | xen_map_pcidev(uint32_t id, uint8_t bus, uint8_t dev, uint8_t func) "id: %u bdf: %02x.%02x.%02x" |
| 72 | xen_unmap_pcidev(uint32_t id, uint8_t bus, uint8_t dev, uint8_t func) "id: %u bdf: %02x.%02x.%02x" |
Don Slutz | eeb6b13 | 2015-04-30 14:27:09 -0400 | [diff] [blame] | 73 | handle_ioreq(void *req, uint32_t type, uint32_t dir, uint32_t df, uint32_t data_is_ptr, uint64_t addr, uint64_t data, uint32_t count, uint32_t size) "I/O=%p type=%d dir=%d df=%d ptr=%d port=%#"PRIx64" data=%#"PRIx64" count=%d size=%d" |
| 74 | handle_ioreq_read(void *req, uint32_t type, uint32_t df, uint32_t data_is_ptr, uint64_t addr, uint64_t data, uint32_t count, uint32_t size) "I/O=%p read type=%d df=%d ptr=%d port=%#"PRIx64" data=%#"PRIx64" count=%d size=%d" |
| 75 | handle_ioreq_write(void *req, uint32_t type, uint32_t df, uint32_t data_is_ptr, uint64_t addr, uint64_t data, uint32_t count, uint32_t size) "I/O=%p write type=%d df=%d ptr=%d port=%#"PRIx64" data=%#"PRIx64" count=%d size=%d" |
| 76 | cpu_ioreq_pio(void *req, uint32_t dir, uint32_t df, uint32_t data_is_ptr, uint64_t addr, uint64_t data, uint32_t count, uint32_t size) "I/O=%p pio dir=%d df=%d ptr=%d port=%#"PRIx64" data=%#"PRIx64" count=%d size=%d" |
| 77 | cpu_ioreq_pio_read_reg(void *req, uint64_t data, uint64_t addr, uint32_t size) "I/O=%p pio read reg data=%#"PRIx64" port=%#"PRIx64" size=%d" |
| 78 | cpu_ioreq_pio_write_reg(void *req, uint64_t data, uint64_t addr, uint32_t size) "I/O=%p pio write reg data=%#"PRIx64" port=%#"PRIx64" size=%d" |
| 79 | cpu_ioreq_move(void *req, uint32_t dir, uint32_t df, uint32_t data_is_ptr, uint64_t addr, uint64_t data, uint32_t count, uint32_t size) "I/O=%p copy dir=%d df=%d ptr=%d port=%#"PRIx64" data=%#"PRIx64" count=%d size=%d" |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 80 | |
| 81 | # xen-mapcache.c |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 82 | xen_map_cache(uint64_t phys_addr) "want %#"PRIx64 |
| 83 | xen_remap_bucket(uint64_t index) "index %#"PRIx64 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 84 | xen_map_cache_return(void* ptr) "%p" |
Anthony PERARD | 050a0dd | 2010-09-16 13:57:49 +0100 | [diff] [blame] | 85 | |
Kevin Wolf | 00dccaf | 2011-01-17 16:08:14 +0000 | [diff] [blame] | 86 | # qemu-coroutine.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 87 | qemu_coroutine_enter(void *from, void *to, void *opaque) "from %p to %p opaque %p" |
| 88 | qemu_coroutine_yield(void *from, void *to) "from %p to %p" |
| 89 | qemu_coroutine_terminate(void *co) "self %p" |
Kevin Wolf | b96e924 | 2011-06-30 17:56:46 +0200 | [diff] [blame] | 90 | |
| 91 | # qemu-coroutine-lock.c |
Stefan Hajnoczi | 02ffb50 | 2013-05-17 15:51:26 +0200 | [diff] [blame] | 92 | qemu_co_queue_run_restart(void *co) "co %p" |
Kevin Wolf | bfe24e1 | 2012-03-12 10:28:34 +0100 | [diff] [blame] | 93 | qemu_co_queue_next(void *nxt) "next %p" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 94 | qemu_co_mutex_lock_entry(void *mutex, void *self) "mutex %p self %p" |
| 95 | qemu_co_mutex_lock_return(void *mutex, void *self) "mutex %p self %p" |
| 96 | qemu_co_mutex_unlock_entry(void *mutex, void *self) "mutex %p self %p" |
| 97 | qemu_co_mutex_unlock_return(void *mutex, void *self) "mutex %p self %p" |
Blue Swirl | 30c2f23 | 2011-08-07 11:01:05 +0000 | [diff] [blame] | 98 | |
Stefan Hajnoczi | 89bd820 | 2011-09-23 08:23:06 +0100 | [diff] [blame] | 99 | # monitor.c |
| 100 | handle_qmp_command(void *mon, const char *cmd_name) "mon %p cmd_name \"%s\"" |
| 101 | monitor_protocol_emitter(void *mon) "mon %p" |
Markus Armbruster | 93f8f98 | 2015-10-15 17:08:31 +0200 | [diff] [blame] | 102 | monitor_protocol_event_handler(uint32_t event, void *qdict) "event=%d data=%p" |
Daniel P. Berrange | afeecec | 2012-06-14 18:12:57 +0100 | [diff] [blame] | 103 | monitor_protocol_event_emit(uint32_t event, void *data) "event=%d data=%p" |
Markus Armbruster | 93f8f98 | 2015-10-15 17:08:31 +0200 | [diff] [blame] | 104 | monitor_protocol_event_queue(uint32_t event, void *qdict, uint64_t rate) "event=%d data=%p rate=%" PRId64 |
Daniel P. Berrange | afeecec | 2012-06-14 18:12:57 +0100 | [diff] [blame] | 105 | monitor_protocol_event_throttle(uint32_t event, uint64_t rate) "event=%d rate=%" PRId64 |
Max Filippov | 342407f | 2011-10-16 02:56:45 +0400 | [diff] [blame] | 106 | |
Kevin Wolf | c57c465 | 2011-11-24 06:15:28 -0500 | [diff] [blame] | 107 | # dma-helpers.c |
Paolo Bonzini | cbe0ed6 | 2016-05-23 14:54:05 +0200 | [diff] [blame] | 108 | dma_blk_io(void *dbs, void *bs, int64_t offset, bool to_dev) "dbs=%p bs=%p offset=%" PRId64 " to_dev=%d" |
Kevin Wolf | c57c465 | 2011-11-24 06:15:28 -0500 | [diff] [blame] | 109 | dma_aio_cancel(void *dbs) "dbs=%p" |
| 110 | dma_complete(void *dbs, int ret, void *cb) "dbs=%p ret=%d cb=%p" |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 111 | dma_blk_cb(void *dbs, int ret) "dbs=%p ret=%d" |
Kevin Wolf | c57c465 | 2011-11-24 06:15:28 -0500 | [diff] [blame] | 112 | dma_map_wait(void *dbs) "dbs=%p" |
Alon Levy | cdbc19d | 2012-03-11 18:11:26 +0200 | [diff] [blame] | 113 | |
Kazuya Saito | 9c77572 | 2013-03-29 13:27:05 +0900 | [diff] [blame] | 114 | # kvm-all.c |
Alexey Kardashevskiy | 4fe6e9e | 2013-09-04 20:26:25 +1000 | [diff] [blame] | 115 | kvm_ioctl(int type, void *arg) "type 0x%x, arg %p" |
| 116 | kvm_vm_ioctl(int type, void *arg) "type 0x%x, arg %p" |
| 117 | kvm_vcpu_ioctl(int cpu_index, int type, void *arg) "cpu_index %d, type 0x%x, arg %p" |
Kazuya Saito | b76ac80 | 2013-03-29 13:27:52 +0900 | [diff] [blame] | 118 | kvm_run_exit(int cpu_index, uint32_t reason) "cpu_index %d, reason %d" |
Christoffer Dall | 0a6a7cc | 2014-02-26 17:20:00 +0000 | [diff] [blame] | 119 | kvm_device_ioctl(int fd, int type, void *arg) "dev fd %d, type 0x%x, arg %p" |
Cornelia Huck | ada4135 | 2014-05-09 10:06:46 +0200 | [diff] [blame] | 120 | kvm_failed_reg_get(uint64_t id, const char *msg) "Warning: Unable to retrieve ONEREG %" PRIu64 " from KVM: %s" |
| 121 | kvm_failed_reg_set(uint64_t id, const char *msg) "Warning: Unable to set ONEREG %" PRIu64 " to KVM: %s" |
Peter Xu | 54a6c11 | 2016-07-14 13:56:35 +0800 | [diff] [blame] | 122 | kvm_irqchip_commit_routes(void) "" |
| 123 | kvm_irqchip_add_msi_route(int virq) "Adding MSI route virq=%d" |
| 124 | kvm_irqchip_update_msi_route(int virq) "Updating MSI route virq=%d" |
Kazuya Saito | b76ac80 | 2013-03-29 13:27:52 +0900 | [diff] [blame] | 125 | |
Alex Bennée | 6db8b53 | 2014-08-01 17:08:57 +0100 | [diff] [blame] | 126 | # TCG related tracing (mostly disabled by default) |
| 127 | # cpu-exec.c |
| 128 | disable exec_tb(void *tb, uintptr_t pc) "tb:%p pc=0x%"PRIxPTR |
| 129 | disable exec_tb_nocache(void *tb, uintptr_t pc) "tb:%p pc=0x%"PRIxPTR |
Sergey Fedorov | 819af24 | 2016-04-21 15:58:23 +0300 | [diff] [blame] | 130 | disable exec_tb_exit(void *last_tb, unsigned int flags) "tb:%p flags=%x" |
Alex Bennée | 6db8b53 | 2014-08-01 17:08:57 +0100 | [diff] [blame] | 131 | |
| 132 | # translate-all.c |
| 133 | translate_block(void *tb, uintptr_t pc, uint8_t *tb_code) "tb:%p, pc:0x%"PRIxPTR", tb_code:%p" |
| 134 | |
Paolo Bonzini | 55d5d04 | 2013-07-28 14:57:22 +0200 | [diff] [blame] | 135 | # memory.c |
Hollis Blanchard | 5a68be9 | 2016-03-02 12:12:54 -0800 | [diff] [blame] | 136 | memory_region_ops_read(int cpu_index, void *mr, uint64_t addr, uint64_t value, unsigned size) "cpu %d mr %p addr %#"PRIx64" value %#"PRIx64" size %u" |
| 137 | memory_region_ops_write(int cpu_index, void *mr, uint64_t addr, uint64_t value, unsigned size) "cpu %d mr %p addr %#"PRIx64" value %#"PRIx64" size %u" |
| 138 | memory_region_subpage_read(int cpu_index, void *mr, uint64_t offset, uint64_t value, unsigned size) "cpu %d mr %p offset %#"PRIx64" value %#"PRIx64" size %u" |
| 139 | memory_region_subpage_write(int cpu_index, void *mr, uint64_t offset, uint64_t value, unsigned size) "cpu %d mr %p offset %#"PRIx64" value %#"PRIx64" size %u" |
Hollis Blanchard | f2d0894 | 2016-03-02 12:12:55 -0800 | [diff] [blame] | 140 | memory_region_tb_read(int cpu_index, uint64_t addr, uint64_t value, unsigned size) "cpu %d addr %#"PRIx64" value %#"PRIx64" size %u" |
| 141 | memory_region_tb_write(int cpu_index, uint64_t addr, uint64_t value, unsigned size) "cpu %d addr %#"PRIx64" value %#"PRIx64" size %u" |
Paolo Bonzini | 55d5d04 | 2013-07-28 14:57:22 +0200 | [diff] [blame] | 142 | |
Lluís Vilanova | dcdaadb | 2016-06-09 19:31:47 +0200 | [diff] [blame] | 143 | ### Guest events, keep at bottom |
| 144 | |
| 145 | # @vaddr: Access' virtual address. |
| 146 | # @info : Access' information (see below). |
| 147 | # |
| 148 | # Start virtual memory access (before any potential access violation). |
| 149 | # |
| 150 | # Does not include memory accesses performed by devices. |
| 151 | # |
| 152 | # Access information can be parsed as: |
| 153 | # |
| 154 | # struct mem_info { |
| 155 | # uint8_t size_shift : 2; /* interpreted as "1 << size_shift" bytes */ |
| 156 | # bool sign_extend: 1; /* sign-extended */ |
| 157 | # uint8_t endianness : 1; /* 0: little, 1: big */ |
| 158 | # bool store : 1; /* wheter it's a store operation */ |
| 159 | # }; |
| 160 | # |
| 161 | # Targets: TCG(all) |
| 162 | disable vcpu tcg guest_mem_before(TCGv vaddr, uint8_t info) "info=%d", "vaddr=0x%016"PRIx64" info=%d" |
Lluís Vilanova | 9c15e70 | 2016-06-21 15:52:04 +0200 | [diff] [blame] | 163 | |
| 164 | # @num: System call number. |
| 165 | # @arg*: System call argument value. |
| 166 | # |
| 167 | # Start executing a guest system call in syscall emulation mode. |
| 168 | # |
| 169 | # Targets: TCG(all) |
| 170 | disable vcpu guest_user_syscall(uint64_t num, uint64_t arg1, uint64_t arg2, uint64_t arg3, uint64_t arg4, uint64_t arg5, uint64_t arg6, uint64_t arg7, uint64_t arg8) "num=0x%016"PRIx64" arg1=0x%016"PRIx64" arg2=0x%016"PRIx64" arg3=0x%016"PRIx64" arg4=0x%016"PRIx64" arg5=0x%016"PRIx64" arg6=0x%016"PRIx64" arg7=0x%016"PRIx64" arg8=0x%016"PRIx64 |
| 171 | |
| 172 | # @num: System call number. |
| 173 | # @ret: System call result value. |
| 174 | # |
| 175 | # Finish executing a guest system call in syscall emulation mode. |
| 176 | # |
| 177 | # Targets: TCG(all) |
| 178 | disable vcpu guest_user_syscall_ret(uint64_t num, uint64_t ret) "num=0x%016"PRIx64" ret=0x%016"PRIx64 |