mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
tcg: Add tcg_op_deposit_valid
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
80a3a9423a
commit
0e4c6424d6
2 changed files with 27 additions and 0 deletions
|
@ -840,6 +840,12 @@ typedef struct TCGTargetOpDef {
|
|||
* on which we are currently executing.
|
||||
*/
|
||||
bool tcg_op_supported(TCGOpcode op, TCGType type, unsigned flags);
|
||||
/*
|
||||
* tcg_op_deposit_valid:
|
||||
* Query if a deposit into (ofs, len) is supported for @type by
|
||||
* the host on which we are currently executing.
|
||||
*/
|
||||
bool tcg_op_deposit_valid(TCGType type, unsigned ofs, unsigned len);
|
||||
|
||||
void tcg_gen_call0(void *func, TCGHelperInfo *, TCGTemp *ret);
|
||||
void tcg_gen_call1(void *func, TCGHelperInfo *, TCGTemp *ret, TCGTemp *);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue