summaryrefslogtreecommitdiffstats
path: root/tcg/sparc/tcg-target-con-set.h
diff options
context:
space:
mode:
authorRichard Henderson2020-10-17 20:23:30 +0200
committerRichard Henderson2021-02-02 23:12:43 +0100
commit0d11dc7c97e609e641892ab2f22f30f3d292f7b2 (patch)
tree6420e3cce19070a17772c6dd2cefe0342a842d6a /tcg/sparc/tcg-target-con-set.h
parenttcg/s390: Split out constraint sets to tcg-target-con-set.h (diff)
downloadqemu-0d11dc7c97e609e641892ab2f22f30f3d292f7b2.tar.gz
qemu-0d11dc7c97e609e641892ab2f22f30f3d292f7b2.tar.xz
qemu-0d11dc7c97e609e641892ab2f22f30f3d292f7b2.zip
tcg/sparc: Split out constraint sets to tcg-target-con-set.h
Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/sparc/tcg-target-con-set.h')
-rw-r--r--tcg/sparc/tcg-target-con-set.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/tcg/sparc/tcg-target-con-set.h b/tcg/sparc/tcg-target-con-set.h
new file mode 100644
index 0000000000..3b751dc3fb
--- /dev/null
+++ b/tcg/sparc/tcg-target-con-set.h
@@ -0,0 +1,32 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Define Sparc target-specific constraint sets.
+ * Copyright (c) 2021 Linaro
+ */
+
+/*
+ * C_On_Im(...) defines a constraint set with <n> outputs and <m> inputs.
+ * Each operand should be a sequence of constraint letters as defined by
+ * tcg-target-con-str.h; the constraint combination is inclusive or.
+ */
+C_O0_I1(r)
+C_O0_I2(rZ, r)
+C_O0_I2(RZ, r)
+C_O0_I2(rZ, rJ)
+C_O0_I2(RZ, RJ)
+C_O0_I2(sZ, A)
+C_O0_I2(SZ, A)
+C_O1_I1(r, A)
+C_O1_I1(R, A)
+C_O1_I1(r, r)
+C_O1_I1(r, R)
+C_O1_I1(R, r)
+C_O1_I1(R, R)
+C_O1_I2(R, R, R)
+C_O1_I2(r, rZ, rJ)
+C_O1_I2(R, RZ, RJ)
+C_O1_I4(r, rZ, rJ, rI, 0)
+C_O1_I4(R, RZ, RJ, RI, 0)
+C_O2_I2(r, r, rZ, rJ)
+C_O2_I4(R, R, RZ, RZ, RJ, RI)
+C_O2_I4(r, r, rZ, rZ, rJ, rJ)