linux-user: Use do_munmap for target_mmap failure
[qemu/kevin.git] / tcg / riscv / tcg-target-con-set.h
blobaac5ceee2b6e4937036406a87a944b44b651a4f1
1 /* SPDX-License-Identifier: MIT */
2 /*
3 * Define RISC-V target-specific constraint sets.
4 * Copyright (c) 2021 Linaro
5 */
7 /*
8 * C_On_Im(...) defines a constraint set with <n> outputs and <m> inputs.
9 * Each operand should be a sequence of constraint letters as defined by
10 * tcg-target-con-str.h; the constraint combination is inclusive or.
12 C_O0_I1(r)
13 C_O0_I2(rZ, r)
14 C_O0_I2(rZ, rZ)
15 C_O1_I1(r, r)
16 C_O1_I2(r, r, ri)
17 C_O1_I2(r, r, rI)
18 C_O1_I2(r, r, rJ)
19 C_O1_I2(r, rZ, rN)
20 C_O1_I2(r, rZ, rZ)
21 C_N1_I2(r, r, rM)
22 C_O1_I4(r, r, rI, rM, rM)
23 C_O2_I4(r, r, rZ, rZ, rM, rM)