diff options
author | Anton Johansson <anjo@rev.ng> | 2024-05-23 14:58:59 +0200 |
---|---|---|
committer | Brian Cain <bcain@quicinc.com> | 2024-06-08 17:49:23 -0700 |
commit | 348fec2afe9f03b1761caff44ea6290357d87c01 (patch) | |
tree | d578bcab6a81ada30e3febb5d0112aefb6ee595b /target | |
parent | 49c1f7a472ebff23b4f374a1d5201250f3fdbd76 (diff) | |
download | qemu-348fec2afe9f03b1761caff44ea6290357d87c01.zip qemu-348fec2afe9f03b1761caff44ea6290357d87c01.tar.gz qemu-348fec2afe9f03b1761caff44ea6290357d87c01.tar.bz2 |
target/hexagon: idef-parser remove undefined functions
Signed-off-by: Anton Johansson <anjo@rev.ng>
Reviewed-by: Taylor Simpson <ltaylorsimpson@gmail.com>
Reviewed-by: Brian Cain <bcain@quicinc.com>
Message-Id: <20240523125901.27797-3-anjo@rev.ng>
Signed-off-by: Brian Cain <bcain@quicinc.com>
Diffstat (limited to 'target')
-rw-r--r-- | target/hexagon/idef-parser/parser-helpers.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/target/hexagon/idef-parser/parser-helpers.h b/target/hexagon/idef-parser/parser-helpers.h index 7c58087..2087d53 100644 --- a/target/hexagon/idef-parser/parser-helpers.h +++ b/target/hexagon/idef-parser/parser-helpers.h @@ -143,8 +143,6 @@ void commit(Context *c); #define OUT(c, locp, ...) FOR_EACH((c), (locp), OUT_IMPL, __VA_ARGS__) -const char *cmp_swap(Context *c, YYLTYPE *locp, const char *type); - /** * Temporary values creation */ @@ -236,8 +234,6 @@ HexValue gen_extract_op(Context *c, HexValue *index, HexExtract *extract); -HexValue gen_read_reg(Context *c, YYLTYPE *locp, HexValue *reg); - void gen_write_reg(Context *c, YYLTYPE *locp, HexValue *reg, HexValue *value); void gen_assign(Context *c, @@ -274,13 +270,6 @@ HexValue gen_ctpop_op(Context *c, YYLTYPE *locp, HexValue *src); HexValue gen_rotl(Context *c, YYLTYPE *locp, HexValue *src, HexValue *n); -HexValue gen_deinterleave(Context *c, YYLTYPE *locp, HexValue *mixed); - -HexValue gen_interleave(Context *c, - YYLTYPE *locp, - HexValue *odd, - HexValue *even); - HexValue gen_carry_from_add(Context *c, YYLTYPE *locp, HexValue *op1, @@ -349,8 +338,6 @@ HexValue gen_rvalue_ternary(Context *c, YYLTYPE *locp, HexValue *cond, const char *cond_to_str(TCGCond cond); -void emit_header(Context *c); - void emit_arg(Context *c, YYLTYPE *locp, HexValue *arg); void emit_footer(Context *c); |