Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
21 lines
471 B
C
21 lines
471 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Define target-specific opcode support
|
|
* Copyright (c) 2009, 2011 Stefan Weil
|
|
*/
|
|
|
|
#ifndef TCG_TARGET_HAS_H
|
|
#define TCG_TARGET_HAS_H
|
|
|
|
#define TCG_TARGET_HAS_extr_i64_i32 0
|
|
|
|
#define TCG_TARGET_HAS_qemu_ldst_i128 0
|
|
|
|
#define TCG_TARGET_HAS_tst 1
|
|
|
|
#define TCG_TARGET_extract_valid(type, ofs, len) 1
|
|
#define TCG_TARGET_sextract_valid(type, ofs, len) 1
|
|
#define TCG_TARGET_deposit_valid(type, ofs, len) 1
|
|
|
|
#endif
|