mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
tcg: Move tcg_temp_new_*, tcg_global_mem_new_* out of line
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20231029210848.78234-11-richard.henderson@linaro.org>
This commit is contained in:
parent
16edaee720
commit
4643f3e07e
4 changed files with 76 additions and 77 deletions
|
@ -17,6 +17,17 @@ TCGv_i64 tcg_constant_i64(int64_t val);
|
|||
TCGv_vec tcg_constant_vec(TCGType type, unsigned vece, int64_t val);
|
||||
TCGv_vec tcg_constant_vec_matching(TCGv_vec match, unsigned vece, int64_t val);
|
||||
|
||||
TCGv_i32 tcg_temp_new_i32(void);
|
||||
TCGv_i64 tcg_temp_new_i64(void);
|
||||
TCGv_ptr tcg_temp_new_ptr(void);
|
||||
TCGv_i128 tcg_temp_new_i128(void);
|
||||
TCGv_vec tcg_temp_new_vec(TCGType type);
|
||||
TCGv_vec tcg_temp_new_vec_matching(TCGv_vec match);
|
||||
|
||||
TCGv_i32 tcg_global_mem_new_i32(TCGv_ptr reg, intptr_t off, const char *name);
|
||||
TCGv_i64 tcg_global_mem_new_i64(TCGv_ptr reg, intptr_t off, const char *name);
|
||||
TCGv_ptr tcg_global_mem_new_ptr(TCGv_ptr reg, intptr_t off, const char *name);
|
||||
|
||||
/* Generic ops. */
|
||||
|
||||
void gen_set_label(TCGLabel *l);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue