| 
									
										
										
										
											2014-05-30 14:11:56 +02:00
										 |  |  | #!/usr/bin/env python | 
					
						
							|  |  |  | # -*- coding: utf-8 -*- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | Generate trace/generated-helpers.c. | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | __author__     = "Lluís Vilanova <vilanova@ac.upc.edu>" | 
					
						
							| 
									
										
										
										
											2016-02-25 17:43:38 +01:00
										 |  |  | __copyright__  = "Copyright 2012-2016, Lluís Vilanova <vilanova@ac.upc.edu>" | 
					
						
							| 
									
										
										
										
											2014-05-30 14:11:56 +02:00
										 |  |  | __license__    = "GPL version 2 or (at your option) any later version" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | __maintainer__ = "Stefan Hajnoczi" | 
					
						
							|  |  |  | __email__      = "stefanha@linux.vnet.ibm.com" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-25 17:43:38 +01:00
										 |  |  | from tracetool import Arguments, out | 
					
						
							| 
									
										
										
										
											2014-05-30 14:11:56 +02:00
										 |  |  | from tracetool.transform import * | 
					
						
							| 
									
										
										
										
											2016-02-25 17:43:38 +01:00
										 |  |  | import tracetool.vcpu | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def vcpu_transform_args(args, mode): | 
					
						
							|  |  |  |     assert len(args) == 1 | 
					
						
							|  |  |  |     # NOTE: this name must be kept in sync with the one in "tcg_h" | 
					
						
							|  |  |  |     args = Arguments([(args.types()[0], "__tcg_" + args.names()[0])]) | 
					
						
							|  |  |  |     if mode == "code": | 
					
						
							|  |  |  |         return Arguments([ | 
					
						
							|  |  |  |             # Does cast from helper requirements to tracing types | 
					
						
							|  |  |  |             ("CPUState *", "ENV_GET_CPU(%s)" % args.names()[0]), | 
					
						
							|  |  |  |         ]) | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         args = Arguments([ | 
					
						
							|  |  |  |             # NOTE: Current helper code uses TCGv_env (CPUArchState*) | 
					
						
							|  |  |  |             ("CPUArchState *", args.names()[0]), | 
					
						
							|  |  |  |         ]) | 
					
						
							|  |  |  |         if mode == "header": | 
					
						
							|  |  |  |             return args | 
					
						
							|  |  |  |         elif mode == "wrapper": | 
					
						
							|  |  |  |             return args.transform(HOST_2_TCG) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             assert False | 
					
						
							| 
									
										
										
										
											2014-05-30 14:11:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def generate(events, backend): | 
					
						
							|  |  |  |     events = [e for e in events | 
					
						
							|  |  |  |               if "disable" not in e.properties] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     out('/* This file is autogenerated by tracetool, do not edit. */', | 
					
						
							|  |  |  |         '', | 
					
						
							| 
									
										
										
										
											2016-02-08 18:53:31 +00:00
										 |  |  |         '#include "qemu/osdep.h"', | 
					
						
							| 
									
										
										
										
											2014-05-30 14:11:56 +02:00
										 |  |  |         '#include "qemu-common.h"', | 
					
						
							|  |  |  |         '#include "trace.h"', | 
					
						
							|  |  |  |         '#include "exec/helper-proto.h"', | 
					
						
							|  |  |  |         '', | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for e in events: | 
					
						
							|  |  |  |         if "tcg-exec" not in e.properties: | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-25 17:43:38 +01:00
										 |  |  |         e_args_api = tracetool.vcpu.transform_args( | 
					
						
							|  |  |  |             "tcg_helper_c", e.original, "header").transform( | 
					
						
							|  |  |  |                 HOST_2_TCG_COMPAT, TCG_2_TCG_HELPER_DEF) | 
					
						
							|  |  |  |         e_args_call = tracetool.vcpu.transform_args( | 
					
						
							|  |  |  |             "tcg_helper_c", e, "code") | 
					
						
							| 
									
										
										
										
											2014-05-30 14:11:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-25 17:43:38 +01:00
										 |  |  |         out('void %(name_tcg)s(%(args_api)s)', | 
					
						
							| 
									
										
										
										
											2014-05-30 14:11:56 +02:00
										 |  |  |             '{', | 
					
						
							| 
									
										
										
										
											2016-02-25 17:43:38 +01:00
										 |  |  |             '    %(name)s(%(args_call)s);', | 
					
						
							| 
									
										
										
										
											2014-05-30 14:11:56 +02:00
										 |  |  |             '}', | 
					
						
							|  |  |  |             name_tcg="helper_%s_proxy" % e.api(), | 
					
						
							|  |  |  |             name=e.api(), | 
					
						
							| 
									
										
										
										
											2016-02-25 17:43:38 +01:00
										 |  |  |             args_api=e_args_api, | 
					
						
							|  |  |  |             args_call=", ".join(e_args_call.casted()), | 
					
						
							| 
									
										
										
										
											2014-05-30 14:11:56 +02:00
										 |  |  |             ) |