mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
tcg: Remove TCG_TARGET_NEED_LDST_LABELS and TCG_TARGET_NEED_POOL_LABELS
Make these features unconditional, as they're used by most tcg backends anyway. Merge tcg-ldst.c.inc and tcg-pool.c.inc into tcg.c and mark some of the functions unused, so that when the features are not used we won't get Werrors. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
@@ -498,12 +498,8 @@ struct TCGContext {
|
|||||||
CPUState *cpu; /* *_trans */
|
CPUState *cpu; /* *_trans */
|
||||||
|
|
||||||
/* These structures are private to tcg-target.c.inc. */
|
/* These structures are private to tcg-target.c.inc. */
|
||||||
#ifdef TCG_TARGET_NEED_LDST_LABELS
|
|
||||||
QSIMPLEQ_HEAD(, TCGLabelQemuLdst) ldst_labels;
|
QSIMPLEQ_HEAD(, TCGLabelQemuLdst) ldst_labels;
|
||||||
#endif
|
|
||||||
#ifdef TCG_TARGET_NEED_POOL_LABELS
|
|
||||||
struct TCGLabelPoolData *pool_labels;
|
struct TCGLabelPoolData *pool_labels;
|
||||||
#endif
|
|
||||||
|
|
||||||
TCGLabel *exitreq_label;
|
TCGLabel *exitreq_label;
|
||||||
|
|
||||||
|
|||||||
@@ -10,8 +10,6 @@
|
|||||||
* See the COPYING file in the top-level directory for details.
|
* See the COPYING file in the top-level directory for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../tcg-ldst.c.inc"
|
|
||||||
#include "../tcg-pool.c.inc"
|
|
||||||
#include "qemu/bitops.h"
|
#include "qemu/bitops.h"
|
||||||
|
|
||||||
/* Used for function call generation. */
|
/* Used for function call generation. */
|
||||||
|
|||||||
@@ -157,7 +157,5 @@ typedef enum {
|
|||||||
#define TCG_TARGET_HAS_tst_vec 1
|
#define TCG_TARGET_HAS_tst_vec 1
|
||||||
|
|
||||||
#define TCG_TARGET_DEFAULT_MO (0)
|
#define TCG_TARGET_DEFAULT_MO (0)
|
||||||
#define TCG_TARGET_NEED_LDST_LABELS
|
|
||||||
#define TCG_TARGET_NEED_POOL_LABELS
|
|
||||||
|
|
||||||
#endif /* AARCH64_TCG_TARGET_H */
|
#endif /* AARCH64_TCG_TARGET_H */
|
||||||
|
|||||||
@@ -23,8 +23,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "elf.h"
|
#include "elf.h"
|
||||||
#include "../tcg-ldst.c.inc"
|
|
||||||
#include "../tcg-pool.c.inc"
|
|
||||||
|
|
||||||
int arm_arch = __ARM_ARCH;
|
int arm_arch = __ARM_ARCH;
|
||||||
|
|
||||||
|
|||||||
@@ -145,7 +145,5 @@ extern bool use_neon_instructions;
|
|||||||
#define TCG_TARGET_HAS_tst_vec 1
|
#define TCG_TARGET_HAS_tst_vec 1
|
||||||
|
|
||||||
#define TCG_TARGET_DEFAULT_MO (0)
|
#define TCG_TARGET_DEFAULT_MO (0)
|
||||||
#define TCG_TARGET_NEED_LDST_LABELS
|
|
||||||
#define TCG_TARGET_NEED_POOL_LABELS
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -22,9 +22,6 @@
|
|||||||
* THE SOFTWARE.
|
* THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../tcg-ldst.c.inc"
|
|
||||||
#include "../tcg-pool.c.inc"
|
|
||||||
|
|
||||||
/* Used for function call generation. */
|
/* Used for function call generation. */
|
||||||
#define TCG_TARGET_STACK_ALIGN 16
|
#define TCG_TARGET_STACK_ALIGN 16
|
||||||
#if defined(_WIN64)
|
#if defined(_WIN64)
|
||||||
|
|||||||
@@ -227,7 +227,5 @@ typedef enum {
|
|||||||
#include "tcg/tcg-mo.h"
|
#include "tcg/tcg-mo.h"
|
||||||
|
|
||||||
#define TCG_TARGET_DEFAULT_MO (TCG_MO_ALL & ~TCG_MO_ST_LD)
|
#define TCG_TARGET_DEFAULT_MO (TCG_MO_ALL & ~TCG_MO_ST_LD)
|
||||||
#define TCG_TARGET_NEED_LDST_LABELS
|
|
||||||
#define TCG_TARGET_NEED_POOL_LABELS
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -29,7 +29,6 @@
|
|||||||
* THE SOFTWARE.
|
* THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../tcg-ldst.c.inc"
|
|
||||||
#include <asm/hwcap.h>
|
#include <asm/hwcap.h>
|
||||||
|
|
||||||
/* used for function call generation */
|
/* used for function call generation */
|
||||||
@@ -2465,6 +2464,14 @@ static void tcg_out_tb_start(TCGContext *s)
|
|||||||
/* nothing to do */
|
/* nothing to do */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void tcg_out_nop_fill(tcg_insn_unit *p, int count)
|
||||||
|
{
|
||||||
|
for (int i = 0; i < count; ++i) {
|
||||||
|
/* Canonical nop is andi r0,r0,0 */
|
||||||
|
p[i] = OPC_ANDI;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void tcg_target_init(TCGContext *s)
|
static void tcg_target_init(TCGContext *s)
|
||||||
{
|
{
|
||||||
unsigned long hwcap = qemu_getauxval(AT_HWCAP);
|
unsigned long hwcap = qemu_getauxval(AT_HWCAP);
|
||||||
|
|||||||
@@ -189,6 +189,4 @@ typedef enum {
|
|||||||
|
|
||||||
#define TCG_TARGET_DEFAULT_MO (0)
|
#define TCG_TARGET_DEFAULT_MO (0)
|
||||||
|
|
||||||
#define TCG_TARGET_NEED_LDST_LABELS
|
|
||||||
|
|
||||||
#endif /* LOONGARCH_TCG_TARGET_H */
|
#endif /* LOONGARCH_TCG_TARGET_H */
|
||||||
|
|||||||
@@ -24,9 +24,6 @@
|
|||||||
* THE SOFTWARE.
|
* THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../tcg-ldst.c.inc"
|
|
||||||
#include "../tcg-pool.c.inc"
|
|
||||||
|
|
||||||
/* used for function call generation */
|
/* used for function call generation */
|
||||||
#define TCG_TARGET_STACK_ALIGN 16
|
#define TCG_TARGET_STACK_ALIGN 16
|
||||||
#if _MIPS_SIM == _ABIO32
|
#if _MIPS_SIM == _ABIO32
|
||||||
|
|||||||
@@ -183,7 +183,5 @@ extern bool use_mips32r2_instructions;
|
|||||||
#define TCG_TARGET_HAS_tst 0
|
#define TCG_TARGET_HAS_tst 0
|
||||||
|
|
||||||
#define TCG_TARGET_DEFAULT_MO 0
|
#define TCG_TARGET_DEFAULT_MO 0
|
||||||
#define TCG_TARGET_NEED_LDST_LABELS
|
|
||||||
#define TCG_TARGET_NEED_POOL_LABELS
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -23,8 +23,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "elf.h"
|
#include "elf.h"
|
||||||
#include "../tcg-pool.c.inc"
|
|
||||||
#include "../tcg-ldst.c.inc"
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Standardize on the _CALL_FOO symbols used by GCC:
|
* Standardize on the _CALL_FOO symbols used by GCC:
|
||||||
|
|||||||
@@ -176,7 +176,5 @@ typedef enum {
|
|||||||
#define TCG_TARGET_HAS_tst_vec 0
|
#define TCG_TARGET_HAS_tst_vec 0
|
||||||
|
|
||||||
#define TCG_TARGET_DEFAULT_MO (0)
|
#define TCG_TARGET_DEFAULT_MO (0)
|
||||||
#define TCG_TARGET_NEED_LDST_LABELS
|
|
||||||
#define TCG_TARGET_NEED_POOL_LABELS
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -27,9 +27,6 @@
|
|||||||
* THE SOFTWARE.
|
* THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../tcg-ldst.c.inc"
|
|
||||||
#include "../tcg-pool.c.inc"
|
|
||||||
|
|
||||||
/* Used for function call generation. */
|
/* Used for function call generation. */
|
||||||
#define TCG_REG_CALL_STACK TCG_REG_SP
|
#define TCG_REG_CALL_STACK TCG_REG_SP
|
||||||
#define TCG_TARGET_STACK_ALIGN 16
|
#define TCG_TARGET_STACK_ALIGN 16
|
||||||
|
|||||||
@@ -161,7 +161,4 @@ typedef enum {
|
|||||||
|
|
||||||
#define TCG_TARGET_DEFAULT_MO (0)
|
#define TCG_TARGET_DEFAULT_MO (0)
|
||||||
|
|
||||||
#define TCG_TARGET_NEED_LDST_LABELS
|
|
||||||
#define TCG_TARGET_NEED_POOL_LABELS
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -24,8 +24,6 @@
|
|||||||
* THE SOFTWARE.
|
* THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../tcg-ldst.c.inc"
|
|
||||||
#include "../tcg-pool.c.inc"
|
|
||||||
#include "elf.h"
|
#include "elf.h"
|
||||||
|
|
||||||
/* Used for function call generation. */
|
/* Used for function call generation. */
|
||||||
|
|||||||
@@ -166,7 +166,5 @@ extern uint64_t s390_facilities[3];
|
|||||||
#define TCG_TARGET_HAS_tst_vec 0
|
#define TCG_TARGET_HAS_tst_vec 0
|
||||||
|
|
||||||
#define TCG_TARGET_DEFAULT_MO (TCG_MO_ALL & ~TCG_MO_ST_LD)
|
#define TCG_TARGET_DEFAULT_MO (TCG_MO_ALL & ~TCG_MO_ST_LD)
|
||||||
#define TCG_TARGET_NEED_LDST_LABELS
|
|
||||||
#define TCG_TARGET_NEED_POOL_LABELS
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -27,9 +27,6 @@
|
|||||||
#error "unsupported code generation mode"
|
#error "unsupported code generation mode"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "../tcg-ldst.c.inc"
|
|
||||||
#include "../tcg-pool.c.inc"
|
|
||||||
|
|
||||||
/* Used for function call generation. */
|
/* Used for function call generation. */
|
||||||
#define TCG_REG_CALL_STACK TCG_REG_O6
|
#define TCG_REG_CALL_STACK TCG_REG_O6
|
||||||
#define TCG_TARGET_STACK_BIAS 2047
|
#define TCG_TARGET_STACK_BIAS 2047
|
||||||
|
|||||||
@@ -143,7 +143,5 @@ extern bool use_vis3_instructions;
|
|||||||
#define TCG_AREG0 TCG_REG_I0
|
#define TCG_AREG0 TCG_REG_I0
|
||||||
|
|
||||||
#define TCG_TARGET_DEFAULT_MO (0)
|
#define TCG_TARGET_DEFAULT_MO (0)
|
||||||
#define TCG_TARGET_NEED_LDST_LABELS
|
|
||||||
#define TCG_TARGET_NEED_POOL_LABELS
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -1,65 +0,0 @@
|
|||||||
/*
|
|
||||||
* TCG Backend Data: load-store optimization only.
|
|
||||||
*
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Generate TB finalization at the end of block
|
|
||||||
*/
|
|
||||||
|
|
||||||
static bool tcg_out_qemu_ld_slow_path(TCGContext *s, TCGLabelQemuLdst *l);
|
|
||||||
static bool tcg_out_qemu_st_slow_path(TCGContext *s, TCGLabelQemuLdst *l);
|
|
||||||
|
|
||||||
static int tcg_out_ldst_finalize(TCGContext *s)
|
|
||||||
{
|
|
||||||
TCGLabelQemuLdst *lb;
|
|
||||||
|
|
||||||
/* qemu_ld/st slow paths */
|
|
||||||
QSIMPLEQ_FOREACH(lb, &s->ldst_labels, next) {
|
|
||||||
if (lb->is_ld
|
|
||||||
? !tcg_out_qemu_ld_slow_path(s, lb)
|
|
||||||
: !tcg_out_qemu_st_slow_path(s, lb)) {
|
|
||||||
return -2;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Test for (pending) buffer overflow. The assumption is that any
|
|
||||||
one operation beginning below the high water mark cannot overrun
|
|
||||||
the buffer completely. Thus we can test for overflow after
|
|
||||||
generating code without having to check during generation. */
|
|
||||||
if (unlikely((void *)s->code_ptr > s->code_gen_highwater)) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Allocate a new TCGLabelQemuLdst entry.
|
|
||||||
*/
|
|
||||||
|
|
||||||
static inline TCGLabelQemuLdst *new_ldst_label(TCGContext *s)
|
|
||||||
{
|
|
||||||
TCGLabelQemuLdst *l = tcg_malloc(sizeof(*l));
|
|
||||||
|
|
||||||
memset(l, 0, sizeof(*l));
|
|
||||||
QSIMPLEQ_INSERT_TAIL(&s->ldst_labels, l, next);
|
|
||||||
|
|
||||||
return l;
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user