> -----Original Message-----
> From: Anton Johansson <a...@rev.ng>
> Sent: Friday, December 17, 2021 2:01 AM
> To: qemu-devel@nongnu.org
> Cc: a...@rev.ng; Taylor Simpson <tsimp...@quicinc.com>; Brian Cain
> <bc...@quicinc.com>; bab...@rev.ng; ni...@rev.ng;
> richard.hender...@linaro.org
> Subject: [PATCH v7 11/13] target/hexagon: call idef-parser functions
>
> From: Alessandro Di Federico <a...@rev.ng>
>
> Extend gen_tcg_funcs.py in order to emit calls to the functions emitted by
> the idef-parser, if available. An option is also added to fully disable the
> output of the idef-parser, which is useful for debugging purposes.
>
> Signed-off-by: Alessandro Di Federico <a...@rev.ng>
> Signed-off-by: Anton Johansson <a...@rev.ng>
> Reviewed-by: Taylor Simpson <tsimp...@quicinc.com>
> diff --git a/target/hexagon/gen_tcg_funcs.py
> b/target/hexagon/gen_tcg_funcs.py index 1fd9de95d5..0ea89d1ed7 100755
> --- a/target/hexagon/gen_tcg_funcs.py
> +++ b/target/hexagon/gen_tcg_funcs.py
> hex_common.calculate_attribs()
> + ## Whether or not idef-parser is enabled is
> + ## determined by the number of arguments to
> + ## this script:
> + ##
> + ## 5 args. -> not enabled,
> + ## 6 args. -> idef-parser enabled.
> + ##
> + ## The 6:th arg. then holds a list of the successfully
> + ## parsed instructions.
> + if len(sys.argv) > 6:
> + hex_common.read_idef_parser_enabled_file(sys.argv[5])
> tagregs = hex_common.get_tagregs()
> tagimms = hex_common.get_tagimms()
>
> - with open(sys.argv[5], 'w') as f:
> + output_file = sys.argv[-1]
> + with open(output_file, 'w') as f:
> f.write("#ifndef HEXAGON_TCG_FUNCS_H\n")
> f.write("#define HEXAGON_TCG_FUNCS_H\n\n")
> + f.write("#include \"idef-generated-emitter.h.inc\"\n\n")
This should be conditional on the number of arguments to this script