mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
tcg/s390: 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>
This commit is contained in:
parent
665be288ac
commit
d1c36a9032
3 changed files with 81 additions and 70 deletions
29
tcg/s390/tcg-target-con-set.h
Normal file
29
tcg/s390/tcg-target-con-set.h
Normal file
|
@ -0,0 +1,29 @@
|
|||
/* SPDX-License-Identifier: MIT */
|
||||
/*
|
||||
* Define S390 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(L, L)
|
||||
C_O0_I2(r, r)
|
||||
C_O0_I2(r, ri)
|
||||
C_O1_I1(r, L)
|
||||
C_O1_I1(r, r)
|
||||
C_O1_I2(r, 0, ri)
|
||||
C_O1_I2(r, 0, rI)
|
||||
C_O1_I2(r, 0, rJ)
|
||||
C_O1_I2(r, r, ri)
|
||||
C_O1_I2(r, rZ, r)
|
||||
C_O1_I4(r, r, ri, r, 0)
|
||||
C_O1_I4(r, r, ri, rI, 0)
|
||||
C_O2_I2(b, a, 0, r)
|
||||
C_O2_I3(b, a, 0, 1, r)
|
||||
C_O2_I4(r, r, 0, 1, rA, r)
|
||||
C_O2_I4(r, r, 0, 1, ri, r)
|
||||
C_O2_I4(r, r, 0, 1, r, r)
|
Loading…
Add table
Add a link
Reference in a new issue