forked from quic/qemu
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tcg/riscv: Split out constraint sets to tcg-target-con-set.h
Reviewed-by: Peter Maydell <[email protected]> Reviewed-by: Alistair Francis <[email protected]> Signed-off-by: Richard Henderson <[email protected]>
- Loading branch information
Showing
3 changed files
with
54 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* SPDX-License-Identifier: MIT */ | ||
/* | ||
* Define RISC-V 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(LZ, L) | ||
C_O0_I2(rZ, r) | ||
C_O0_I2(rZ, rZ) | ||
C_O0_I3(LZ, L, L) | ||
C_O0_I3(LZ, LZ, L) | ||
C_O0_I4(LZ, LZ, L, L) | ||
C_O0_I4(rZ, rZ, rZ, rZ) | ||
C_O1_I1(r, L) | ||
C_O1_I1(r, r) | ||
C_O1_I2(r, L, L) | ||
C_O1_I2(r, r, ri) | ||
C_O1_I2(r, r, rI) | ||
C_O1_I2(r, rZ, rN) | ||
C_O1_I2(r, rZ, rZ) | ||
C_O1_I4(r, rZ, rZ, rZ, rZ) | ||
C_O2_I1(r, r, L) | ||
C_O2_I2(r, r, L, L) | ||
C_O2_I4(r, r, rZ, rZ, rM, rM) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters