| 
									
										
										
										
											2023-01-24 13:19:22 +01:00
										 |  |  | softmmu_ss.add(files('trace-hmp-cmds.c'))
 | 
					
						
							| 
									
										
										
										
											2021-01-06 15:55:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-03 16:47:00 +04:00
										 |  |  | specific_ss.add(files('control-target.c'))
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-19 08:44:56 -04:00
										 |  |  | trace_events_files = []
 | 
					
						
							| 
									
										
										
										
											2022-01-26 17:11:27 +01:00
										 |  |  | foreach item : [ '.' ] + trace_events_subdirs + qapi_trace_events
 | 
					
						
							|  |  |  |   if item in qapi_trace_events
 | 
					
						
							|  |  |  |     trace_events_file = item
 | 
					
						
							|  |  |  |     group_name = item.full_path().split('/')[-1].underscorify()
 | 
					
						
							|  |  |  |   else
 | 
					
						
							|  |  |  |     trace_events_file = meson.project_source_root() / item / 'trace-events'
 | 
					
						
							|  |  |  |     group_name = item == '.' ? 'root' : item.underscorify()
 | 
					
						
							|  |  |  |   endif
 | 
					
						
							| 
									
										
										
										
											2020-08-19 08:44:56 -04:00
										 |  |  |   trace_events_files += [ trace_events_file ]
 | 
					
						
							|  |  |  |   group = '--group=' + group_name
 | 
					
						
							|  |  |  |   fmt = '@0@-' + group_name + '.@1@'
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   trace_h = custom_target(fmt.format('trace', 'h'),
 | 
					
						
							|  |  |  |                           output: fmt.format('trace', 'h'),
 | 
					
						
							|  |  |  |                           input: trace_events_file,
 | 
					
						
							| 
									
										
										
										
											2021-01-25 11:09:58 +00:00
										 |  |  |                           command: [ tracetool, group, '--format=h', '@INPUT@', '@OUTPUT@' ],
 | 
					
						
							|  |  |  |                           depend_files: tracetool_depends)
 | 
					
						
							| 
									
										
										
										
											2020-08-19 08:44:56 -04:00
										 |  |  |   genh += trace_h
 | 
					
						
							|  |  |  |   trace_c = custom_target(fmt.format('trace', 'c'),
 | 
					
						
							|  |  |  |                           output: fmt.format('trace', 'c'),
 | 
					
						
							|  |  |  |                           input: trace_events_file,
 | 
					
						
							| 
									
										
										
										
											2021-01-25 11:09:58 +00:00
										 |  |  |                           command: [ tracetool, group, '--format=c', '@INPUT@', '@OUTPUT@' ],
 | 
					
						
							|  |  |  |                           depend_files: tracetool_depends)
 | 
					
						
							| 
									
										
										
										
											2021-10-07 15:08:14 +02:00
										 |  |  |   if 'ust' in get_option('trace_backends')
 | 
					
						
							| 
									
										
										
										
											2020-08-19 08:44:56 -04:00
										 |  |  |     trace_ust_h = custom_target(fmt.format('trace-ust', 'h'),
 | 
					
						
							|  |  |  |                                 output: fmt.format('trace-ust', 'h'),
 | 
					
						
							|  |  |  |                                 input: trace_events_file,
 | 
					
						
							| 
									
										
										
										
											2021-01-25 11:09:58 +00:00
										 |  |  |                                 command: [ tracetool, group, '--format=ust-events-h', '@INPUT@', '@OUTPUT@' ],
 | 
					
						
							|  |  |  |                                 depend_files: tracetool_depends)
 | 
					
						
							| 
									
										
										
										
											2021-07-12 17:57:10 +02:00
										 |  |  |     trace_ss.add(trace_ust_h, lttng)
 | 
					
						
							| 
									
										
										
										
											2020-08-19 08:44:56 -04:00
										 |  |  |     genh += trace_ust_h
 | 
					
						
							|  |  |  |   endif
 | 
					
						
							|  |  |  |   trace_ss.add(trace_h, trace_c)
 | 
					
						
							| 
									
										
										
										
											2021-10-07 15:08:14 +02:00
										 |  |  |   if 'dtrace' in get_option('trace_backends')
 | 
					
						
							| 
									
										
										
										
											2020-08-19 08:44:56 -04:00
										 |  |  |     trace_dtrace = custom_target(fmt.format('trace-dtrace', 'dtrace'),
 | 
					
						
							|  |  |  |                                  output: fmt.format('trace-dtrace', 'dtrace'),
 | 
					
						
							|  |  |  |                                  input: trace_events_file,
 | 
					
						
							| 
									
										
										
										
											2021-01-25 11:09:58 +00:00
										 |  |  |                                  command: [ tracetool, group, '--format=d', '@INPUT@', '@OUTPUT@' ],
 | 
					
						
							|  |  |  |                                  depend_files: tracetool_depends)
 | 
					
						
							| 
									
										
										
										
											2020-08-19 08:44:56 -04:00
										 |  |  |     trace_dtrace_h = custom_target(fmt.format('trace-dtrace', 'h'),
 | 
					
						
							|  |  |  |                                    output: fmt.format('trace-dtrace', 'h'),
 | 
					
						
							|  |  |  |                                    input: trace_dtrace,
 | 
					
						
							| 
									
										
										
										
											2021-09-07 19:23:49 +02:00
										 |  |  |                                    command: [ dtrace, '-DSTAP_SDT_V2', '-o', '@OUTPUT@', '-h', '-s', '@INPUT@' ])
 | 
					
						
							| 
									
										
										
										
											2020-08-23 12:05:47 +03:00
										 |  |  |     trace_ss.add(trace_dtrace_h)
 | 
					
						
							|  |  |  |     if host_machine.system() != 'darwin'
 | 
					
						
							|  |  |  |       trace_dtrace_o = custom_target(fmt.format('trace-dtrace', 'o'),
 | 
					
						
							|  |  |  |                                      output: fmt.format('trace-dtrace', 'o'),
 | 
					
						
							|  |  |  |                                      input: trace_dtrace,
 | 
					
						
							| 
									
										
										
										
											2021-09-07 19:23:49 +02:00
										 |  |  |                                      command: [ dtrace, '-DSTAP_SDT_V2', '-o', '@OUTPUT@', '-G', '-s', '@INPUT@' ])
 | 
					
						
							| 
									
										
										
										
											2020-08-23 12:05:47 +03:00
										 |  |  |       trace_ss.add(trace_dtrace_o)
 | 
					
						
							|  |  |  |     endif
 | 
					
						
							| 
									
										
										
										
											2020-08-19 08:44:56 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     genh += trace_dtrace_h
 | 
					
						
							|  |  |  |   endif
 | 
					
						
							|  |  |  | endforeach
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-20 12:29:52 +04:00
										 |  |  | trace_events_all = custom_target('trace-events-all',
 | 
					
						
							|  |  |  |                                  output: 'trace-events-all',
 | 
					
						
							|  |  |  |                                  input: trace_events_files,
 | 
					
						
							|  |  |  |                                  command: [ 'cat', '@INPUT@' ],
 | 
					
						
							|  |  |  |                                  capture: true,
 | 
					
						
							|  |  |  |                                  install: true,
 | 
					
						
							| 
									
										
										
										
											2020-08-26 15:04:16 +04:00
										 |  |  |                                  install_dir: qemu_datadir)
 | 
					
						
							| 
									
										
										
										
											2020-08-19 08:44:56 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-07 15:08:14 +02:00
										 |  |  | if 'ust' in get_option('trace_backends')
 | 
					
						
							| 
									
										
										
										
											2020-08-19 08:44:56 -04:00
										 |  |  |   trace_ust_all_h = custom_target('trace-ust-all.h',
 | 
					
						
							|  |  |  |                                   output: 'trace-ust-all.h',
 | 
					
						
							|  |  |  |                                   input: trace_events_files,
 | 
					
						
							| 
									
										
										
										
											2021-01-25 11:09:58 +00:00
										 |  |  |                                   command: [ tracetool, '--group=all', '--format=ust-events-h', '@INPUT@', '@OUTPUT@' ],
 | 
					
						
							|  |  |  |                                   depend_files: tracetool_depends)
 | 
					
						
							| 
									
										
										
										
											2020-08-19 08:44:56 -04:00
										 |  |  |   trace_ust_all_c = custom_target('trace-ust-all.c',
 | 
					
						
							|  |  |  |                                   output: 'trace-ust-all.c',
 | 
					
						
							|  |  |  |                                   input: trace_events_files,
 | 
					
						
							| 
									
										
										
										
											2021-01-25 11:09:58 +00:00
										 |  |  |                                   command: [ tracetool, '--group=all', '--format=ust-events-c', '@INPUT@', '@OUTPUT@' ],
 | 
					
						
							|  |  |  |                                   depend_files: tracetool_depends)
 | 
					
						
							| 
									
										
										
										
											2020-08-19 08:44:56 -04:00
										 |  |  |   trace_ss.add(trace_ust_all_h, trace_ust_all_c)
 | 
					
						
							|  |  |  |   genh += trace_ust_all_h
 | 
					
						
							|  |  |  | endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-07 15:08:14 +02:00
										 |  |  | if 'simple' in get_option('trace_backends')
 | 
					
						
							|  |  |  |   trace_ss.add(files('simple.c'))
 | 
					
						
							|  |  |  | endif
 | 
					
						
							|  |  |  | if 'ftrace' in get_option('trace_backends')
 | 
					
						
							|  |  |  |   trace_ss.add(files('ftrace.c'))
 | 
					
						
							|  |  |  | endif
 | 
					
						
							| 
									
										
										
										
											2020-08-19 08:44:56 -04:00
										 |  |  | trace_ss.add(files('control.c'))
 | 
					
						
							| 
									
										
										
										
											2022-12-20 16:00:41 +01:00
										 |  |  | if have_system or have_tools or have_ga
 | 
					
						
							|  |  |  |   trace_ss.add(files('qmp.c'))
 | 
					
						
							|  |  |  | endif
 |