mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
tcg: Add field extraction primitives
Adds tcg_gen_extract_* and tcg_gen_sextract_* for extraction of fixed position bitfields, much like we already have for deposit. Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
41a0e54756
commit
7ec8bab3de
15 changed files with 426 additions and 2 deletions
|
@ -112,6 +112,8 @@ typedef uint64_t TCGRegSet;
|
|||
#define TCG_TARGET_HAS_nand_i64 0
|
||||
#define TCG_TARGET_HAS_nor_i64 0
|
||||
#define TCG_TARGET_HAS_deposit_i64 0
|
||||
#define TCG_TARGET_HAS_extract_i64 0
|
||||
#define TCG_TARGET_HAS_sextract_i64 0
|
||||
#define TCG_TARGET_HAS_movcond_i64 0
|
||||
#define TCG_TARGET_HAS_add2_i64 0
|
||||
#define TCG_TARGET_HAS_sub2_i64 0
|
||||
|
@ -130,6 +132,12 @@ typedef uint64_t TCGRegSet;
|
|||
#ifndef TCG_TARGET_deposit_i64_valid
|
||||
#define TCG_TARGET_deposit_i64_valid(ofs, len) 1
|
||||
#endif
|
||||
#ifndef TCG_TARGET_extract_i32_valid
|
||||
#define TCG_TARGET_extract_i32_valid(ofs, len) 1
|
||||
#endif
|
||||
#ifndef TCG_TARGET_extract_i64_valid
|
||||
#define TCG_TARGET_extract_i64_valid(ofs, len) 1
|
||||
#endif
|
||||
|
||||
/* Only one of DIV or DIV2 should be defined. */
|
||||
#if defined(TCG_TARGET_HAS_div_i32)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue