]> git.proxmox.com Git - mirror_qemu.git/blame - tcg/arm/tcg-target-con-str.h
tcg: Move tb_target_set_jmp_target declaration to tcg.h
[mirror_qemu.git] / tcg / arm / tcg-target-con-str.h
CommitLineData
3440d583
RH
1/* SPDX-License-Identifier: MIT */
2/*
3 * Define Arm target-specific operand constraints.
4 * Copyright (c) 2021 Linaro
5 */
6
7/*
8 * Define constraint letters for register sets:
9 * REGS(letter, register_mask)
10 */
11REGS('r', ALL_GENERAL_REGS)
12REGS('l', ALL_QLOAD_REGS)
13REGS('s', ALL_QSTORE_REGS)
000cf477 14REGS('w', ALL_VECTOR_REGS)
3440d583
RH
15
16/*
17 * Define constraint letters for constants:
18 * CONST(letter, TCG_CT_CONST_* bit set)
19 */
20CONST('I', TCG_CT_CONST_ARM)
21CONST('K', TCG_CT_CONST_INV)
22CONST('N', TCG_CT_CONST_NEG)
d74b86ed
RH
23CONST('O', TCG_CT_CONST_ORRI)
24CONST('V', TCG_CT_CONST_ANDI)
3440d583 25CONST('Z', TCG_CT_CONST_ZERO)