2021-03-09 23:24:14 +01:00
|
|
|
/*
|
|
|
|
* Internal declarations for Tiny Code Generator for QEMU
|
|
|
|
*
|
|
|
|
* Copyright (c) 2008 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TCG_INTERNAL_H
|
2022-05-06 15:49:10 +02:00
|
|
|
#define TCG_INTERNAL_H
|
2021-03-09 23:24:14 +01:00
|
|
|
|
2023-03-30 03:09:28 +02:00
|
|
|
#include "tcg/helper-info.h"
|
2022-11-22 19:08:04 +01:00
|
|
|
|
2021-03-09 23:24:14 +01:00
|
|
|
#define TCG_HIGHWATER 1024
|
|
|
|
|
2021-03-13 20:36:51 +01:00
|
|
|
extern TCGContext tcg_init_ctx;
|
2021-03-09 23:24:14 +01:00
|
|
|
extern TCGContext **tcg_ctxs;
|
2021-03-10 06:06:32 +01:00
|
|
|
extern unsigned int tcg_cur_ctxs;
|
|
|
|
extern unsigned int tcg_max_ctxs;
|
2021-03-09 23:24:14 +01:00
|
|
|
|
2021-03-10 05:52:45 +01:00
|
|
|
void tcg_region_init(size_t tb_size, int splitwx, unsigned max_cpus);
|
2021-03-09 23:24:14 +01:00
|
|
|
bool tcg_region_alloc(TCGContext *s);
|
|
|
|
void tcg_region_initial_alloc(TCGContext *s);
|
|
|
|
void tcg_region_prologue_set(TCGContext *s);
|
|
|
|
|
2021-03-18 23:40:07 +01:00
|
|
|
static inline void *tcg_call_func(TCGOp *op)
|
|
|
|
{
|
|
|
|
return (void *)(uintptr_t)op->args[TCGOP_CALLO(op) + TCGOP_CALLI(op)];
|
|
|
|
}
|
|
|
|
|
2021-03-18 18:29:50 +01:00
|
|
|
static inline const TCGHelperInfo *tcg_call_info(TCGOp *op)
|
|
|
|
{
|
|
|
|
return (void *)(uintptr_t)op->args[TCGOP_CALLO(op) + TCGOP_CALLI(op) + 1];
|
|
|
|
}
|
|
|
|
|
2021-03-18 17:21:45 +01:00
|
|
|
static inline unsigned tcg_call_flags(TCGOp *op)
|
|
|
|
{
|
2021-03-18 18:29:50 +01:00
|
|
|
return tcg_call_info(op)->flags;
|
2021-03-18 17:21:45 +01:00
|
|
|
}
|
|
|
|
|
2022-10-17 03:07:39 +02:00
|
|
|
#if TCG_TARGET_REG_BITS == 32
|
|
|
|
static inline TCGv_i32 TCGV_LOW(TCGv_i64 t)
|
|
|
|
{
|
2022-10-19 03:53:27 +02:00
|
|
|
return temp_tcgv_i32(tcgv_i64_temp(t) + HOST_BIG_ENDIAN);
|
2022-10-17 03:07:39 +02:00
|
|
|
}
|
|
|
|
static inline TCGv_i32 TCGV_HIGH(TCGv_i64 t)
|
|
|
|
{
|
2022-10-19 03:53:27 +02:00
|
|
|
return temp_tcgv_i32(tcgv_i64_temp(t) + !HOST_BIG_ENDIAN);
|
2022-10-17 03:07:39 +02:00
|
|
|
}
|
|
|
|
#else
|
2023-03-20 14:21:29 +01:00
|
|
|
TCGv_i32 TCGV_LOW(TCGv_i64) QEMU_ERROR("32-bit code path is reachable");
|
|
|
|
TCGv_i32 TCGV_HIGH(TCGv_i64) QEMU_ERROR("32-bit code path is reachable");
|
2022-10-17 03:07:39 +02:00
|
|
|
#endif
|
|
|
|
|
2022-10-20 00:00:51 +02:00
|
|
|
static inline TCGv_i64 TCGV128_LOW(TCGv_i128 t)
|
|
|
|
{
|
|
|
|
/* For 32-bit, offset by 2, which may then have TCGV_{LOW,HIGH} applied. */
|
|
|
|
int o = HOST_BIG_ENDIAN ? 64 / TCG_TARGET_REG_BITS : 0;
|
|
|
|
return temp_tcgv_i64(tcgv_i128_temp(t) + o);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline TCGv_i64 TCGV128_HIGH(TCGv_i128 t)
|
|
|
|
{
|
|
|
|
int o = HOST_BIG_ENDIAN ? 0 : 64 / TCG_TARGET_REG_BITS;
|
|
|
|
return temp_tcgv_i64(tcgv_i128_temp(t) + o);
|
|
|
|
}
|
|
|
|
|
2023-04-19 12:43:17 +02:00
|
|
|
bool tcg_target_has_memory_bswap(MemOp memop);
|
|
|
|
|
2024-01-10 08:21:58 +01:00
|
|
|
TCGTemp *tcg_temp_new_internal(TCGType type, TCGTempKind kind);
|
|
|
|
|
2023-10-29 22:08:46 +01:00
|
|
|
/*
|
|
|
|
* Locate or create a read-only temporary that is a constant.
|
|
|
|
* This kind of temporary need not be freed, but for convenience
|
|
|
|
* will be silently ignored by tcg_temp_free_*.
|
|
|
|
*/
|
|
|
|
TCGTemp *tcg_constant_internal(TCGType type, int64_t val);
|
|
|
|
|
2023-10-29 22:08:44 +01:00
|
|
|
void tcg_gen_op1(TCGOpcode, TCGArg);
|
|
|
|
void tcg_gen_op2(TCGOpcode, TCGArg, TCGArg);
|
|
|
|
void tcg_gen_op3(TCGOpcode, TCGArg, TCGArg, TCGArg);
|
|
|
|
void tcg_gen_op4(TCGOpcode, TCGArg, TCGArg, TCGArg, TCGArg);
|
|
|
|
void tcg_gen_op5(TCGOpcode, TCGArg, TCGArg, TCGArg, TCGArg, TCGArg);
|
|
|
|
void tcg_gen_op6(TCGOpcode, TCGArg, TCGArg, TCGArg, TCGArg, TCGArg, TCGArg);
|
|
|
|
|
2023-10-29 22:08:43 +01:00
|
|
|
void vec_gen_2(TCGOpcode, TCGType, unsigned, TCGArg, TCGArg);
|
|
|
|
void vec_gen_3(TCGOpcode, TCGType, unsigned, TCGArg, TCGArg, TCGArg);
|
|
|
|
void vec_gen_4(TCGOpcode, TCGType, unsigned, TCGArg, TCGArg, TCGArg, TCGArg);
|
|
|
|
|
2021-03-09 23:24:14 +01:00
|
|
|
#endif /* TCG_INTERNAL_H */
|