Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
29 lines
642 B
C
29 lines
642 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Define LoongArch target-specific operand constraints.
|
|
*
|
|
* Copyright (c) 2021 WANG Xuerui <[email protected]>
|
|
*
|
|
* Based on tcg/riscv/tcg-target-con-str.h
|
|
*
|
|
* Copyright (c) 2021 Linaro
|
|
*/
|
|
|
|
/*
|
|
* Define constraint letters for register sets:
|
|
* REGS(letter, register_mask)
|
|
*/
|
|
REGS('r', ALL_GENERAL_REGS)
|
|
REGS('w', ALL_VECTOR_REGS)
|
|
|
|
/*
|
|
* Define constraint letters for constants:
|
|
* CONST(letter, TCG_CT_CONST_* bit set)
|
|
*/
|
|
CONST('I', TCG_CT_CONST_S12)
|
|
CONST('J', TCG_CT_CONST_S32)
|
|
CONST('U', TCG_CT_CONST_U12)
|
|
CONST('W', TCG_CT_CONST_WSZ)
|
|
CONST('M', TCG_CT_CONST_VCMP)
|
|
CONST('A', TCG_CT_CONST_VADD)
|