[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 07/13] Hexagon (tests/tcg/hexagon) Update preg_alias.c
From: |
Taylor Simpson |
Subject: |
[PATCH v4 07/13] Hexagon (tests/tcg/hexagon) Update preg_alias.c |
Date: |
Tue, 24 Jan 2023 18:42:09 -0800 |
Add control registers (c4, c5) to clobbers list
Made possible by new toolchain container
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
---
tests/tcg/hexagon/preg_alias.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/tests/tcg/hexagon/preg_alias.c b/tests/tcg/hexagon/preg_alias.c
index b44a8112b4..8798fbcaf3 100644
--- a/tests/tcg/hexagon/preg_alias.c
+++ b/tests/tcg/hexagon/preg_alias.c
@@ -1,5 +1,5 @@
/*
- * Copyright(c) 2019-2022 Qualcomm Innovation Center, Inc. All Rights
Reserved.
+ * Copyright(c) 2019-2023 Qualcomm Innovation Center, Inc. All Rights
Reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -65,7 +65,7 @@ static inline void creg_alias(int cval, PRegs *pregs)
: "=r"(pregs->pregs.p0), "=r"(pregs->pregs.p1),
"=r"(pregs->pregs.p2), "=r"(pregs->pregs.p3)
: "r"(cval)
- : "p0", "p1", "p2", "p3");
+ : "c4", "p0", "p1", "p2", "p3");
}
int err;
@@ -92,7 +92,7 @@ static inline void creg_alias_pair(unsigned int cval, PRegs
*pregs)
: "=r"(pregs->pregs.p0), "=r"(pregs->pregs.p1),
"=r"(pregs->pregs.p2), "=r"(pregs->pregs.p3), "=r"(c5)
: "r"(cval_pair)
- : "p0", "p1", "p2", "p3");
+ : "c4", "c5", "p0", "p1", "p2", "p3");
check(c5, 0xdeadbeef);
}
@@ -117,7 +117,7 @@ static void test_packet(void)
"}\n\t"
: "+r"(result)
: "r"(0xffffffff), "r"(0xff00ffff), "r"(0x837ed653)
- : "p0", "p1", "p2", "p3");
+ : "c4", "p0", "p1", "p2", "p3");
check(result, old_val);
/* Test a predicated store */
@@ -129,7 +129,7 @@ static void test_packet(void)
"}\n\t"
:
: "r"(0), "r"(0xffffffff), "r"(&result)
- : "p0", "p1", "p2", "p3", "memory");
+ : "c4", "p0", "p1", "p2", "p3", "memory");
check(result, 0x0);
}
--
2.17.1
- [PATCH v4 00/13] Hexagon: COF overrides, new generator, test/bug update, Taylor Simpson, 2023/01/24
- [PATCH v4 03/13] Hexagon (target/hexagon) Add overrides for endloop1/endloop01, Taylor Simpson, 2023/01/24
- [PATCH v4 07/13] Hexagon (tests/tcg/hexagon) Update preg_alias.c,
Taylor Simpson <=
- [PATCH v4 10/13] Hexagon (target/hexagon) Change subtract from zero to change sign, Taylor Simpson, 2023/01/24
- [PATCH v4 13/13] Hexagon (target/hexagon) Improve code gen for predicated HVX instructions, Taylor Simpson, 2023/01/24
- [PATCH v4 09/13] Hexagon (tests/tcg/hexagon) Enable HVX tests, Taylor Simpson, 2023/01/24
- [PATCH v4 02/13] Hexagon (target/hexagon) Add overrides for callr, Taylor Simpson, 2023/01/24
- [PATCH v4 05/13] Hexagon (target/hexagon) Analyze packet before generating TCG, Taylor Simpson, 2023/01/24
- [PATCH v4 12/13] Hexagon (target/hexagon) Reduce manipulation of slot_cancelled, Taylor Simpson, 2023/01/24
- [PATCH v4 06/13] Hexagon (target/hexagon) Analyze packet for HVX, Taylor Simpson, 2023/01/24
- [PATCH v4 08/13] Hexagon (tests/tcg/hexagon) Remove __builtin from scatter_gather, Taylor Simpson, 2023/01/24
- [PATCH v4 11/13] Hexagon (target/hexagon) Remove gen_log_predicated_reg_write[_pair], Taylor Simpson, 2023/01/24
- [PATCH v4 04/13] Hexagon (target/hexagon) Add overrides for dealloc-return instructions, Taylor Simpson, 2023/01/24