diff options
Diffstat (limited to 'tcg/sparc64/tcg-target-con-set.h')
| -rw-r--r-- | tcg/sparc64/tcg-target-con-set.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tcg/sparc64/tcg-target-con-set.h b/tcg/sparc64/tcg-target-con-set.h new file mode 100644 index 0000000000..31e6fea1fc --- /dev/null +++ b/tcg/sparc64/tcg-target-con-set.h @@ -0,0 +1,22 @@ +/* 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, rJ) +C_O0_I2(sZ, s) +C_O1_I1(r, s) +C_O1_I1(r, r) +C_O1_I2(r, r, r) +C_O1_I2(r, rZ, rJ) +C_O1_I4(r, rZ, rJ, rI, 0) +C_O2_I2(r, r, rZ, rJ) +C_O2_I4(r, r, rZ, rZ, rJ, rJ) |