mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
tcg/mips: 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
7166eebb9b
commit
0263330bce
3 changed files with 66 additions and 67 deletions
36
tcg/mips/tcg-target-con-set.h
Normal file
36
tcg/mips/tcg-target-con-set.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/* SPDX-License-Identifier: MIT */
|
||||
/*
|
||||
* Define MIPS 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, rZ)
|
||||
C_O0_I2(SZ, S)
|
||||
C_O0_I3(SZ, S, S)
|
||||
C_O0_I3(SZ, SZ, S)
|
||||
C_O0_I4(rZ, rZ, rZ, rZ)
|
||||
C_O0_I4(SZ, SZ, S, S)
|
||||
C_O1_I1(r, L)
|
||||
C_O1_I1(r, r)
|
||||
C_O1_I2(r, 0, rZ)
|
||||
C_O1_I2(r, L, L)
|
||||
C_O1_I2(r, r, ri)
|
||||
C_O1_I2(r, r, rI)
|
||||
C_O1_I2(r, r, rIK)
|
||||
C_O1_I2(r, r, rJ)
|
||||
C_O1_I2(r, r, rWZ)
|
||||
C_O1_I2(r, rZ, rN)
|
||||
C_O1_I2(r, rZ, rZ)
|
||||
C_O1_I4(r, rZ, rZ, rZ, 0)
|
||||
C_O1_I4(r, rZ, rZ, rZ, rZ)
|
||||
C_O2_I1(r, r, L)
|
||||
C_O2_I2(r, r, L, L)
|
||||
C_O2_I2(r, r, r, r)
|
||||
C_O2_I4(r, r, rZ, rZ, rN, rN)
|
Loading…
Add table
Add a link
Reference in a new issue