mirror of https://github.com/xemu-project/xemu.git
ARM host fixes
Minor TCG cleanups and warning fixes for ARM hosts. Signed-off-by: Paul Brook <paul@codesourcery.com>
This commit is contained in:
parent
5e65000260
commit
2d69f3590d
|
@ -1567,7 +1567,7 @@ static inline void tcg_out_st(TCGContext *s, TCGType type, int arg,
|
||||||
tcg_out_st32(s, COND_AL, arg, arg1, arg2);
|
tcg_out_st32(s, COND_AL, arg, arg1, arg2);
|
||||||
}
|
}
|
||||||
|
|
||||||
void tcg_out_addi(TCGContext *s, int reg, tcg_target_long val)
|
static void tcg_out_addi(TCGContext *s, int reg, tcg_target_long val)
|
||||||
{
|
{
|
||||||
if (val > 0)
|
if (val > 0)
|
||||||
if (val < 0x100)
|
if (val < 0x100)
|
||||||
|
|
|
@ -51,9 +51,10 @@ enum {
|
||||||
TCG_REG_R12,
|
TCG_REG_R12,
|
||||||
TCG_REG_R13,
|
TCG_REG_R13,
|
||||||
TCG_REG_R14,
|
TCG_REG_R14,
|
||||||
TCG_TARGET_NB_REGS
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#define TCG_TARGET_NB_REGS 15
|
||||||
|
|
||||||
/* used for function call generation */
|
/* used for function call generation */
|
||||||
#define TCG_REG_CALL_STACK TCG_REG_R13
|
#define TCG_REG_CALL_STACK TCG_REG_R13
|
||||||
#define TCG_TARGET_STACK_ALIGN 8
|
#define TCG_TARGET_STACK_ALIGN 8
|
||||||
|
@ -69,8 +70,7 @@ enum {
|
||||||
static inline void flush_icache_range(unsigned long start, unsigned long stop)
|
static inline void flush_icache_range(unsigned long start, unsigned long stop)
|
||||||
{
|
{
|
||||||
#if QEMU_GNUC_PREREQ(4, 1)
|
#if QEMU_GNUC_PREREQ(4, 1)
|
||||||
void __clear_cache(char *beg, char *end);
|
__builtin___clear_cache((char *) start, (char *) stop);
|
||||||
__clear_cache((char *) start, (char *) stop);
|
|
||||||
#else
|
#else
|
||||||
register unsigned long _beg __asm ("a1") = start;
|
register unsigned long _beg __asm ("a1") = start;
|
||||||
register unsigned long _end __asm ("a2") = stop;
|
register unsigned long _end __asm ("a2") = stop;
|
||||||
|
|
Loading…
Reference in New Issue