From patchwork Wed Apr 7 17:51:25 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [18/18] tcg/arm: don't try to load constants using pc Date: Wed, 07 Apr 2010 07:51:25 -0000 From: Aurelien Jarno X-Patchwork-Id: 49624 Message-Id: <1270662685-7379-19-git-send-email-aurelien@aurel32.net> To: qemu-devel@nongnu.org Cc: Andrzej Zaborowski , Aurelien Jarno This code is never used, neither in user mode nor in system mode. Signed-off-by: Aurelien Jarno --- tcg/arm/tcg-target.c | 7 ------- 1 files changed, 0 insertions(+), 7 deletions(-) diff --git a/tcg/arm/tcg-target.c b/tcg/arm/tcg-target.c index 03fe11c..1d1e28a 100644 --- a/tcg/arm/tcg-target.c +++ b/tcg/arm/tcg-target.c @@ -372,19 +372,12 @@ static inline void tcg_out_dat_imm(TCGContext *s, static inline void tcg_out_movi32(TCGContext *s, int cond, int rd, int32_t arg) { - int offset = (uint32_t) arg - ((uint32_t) s->code_ptr + 8); - /* TODO: This is very suboptimal, we can easily have a constant * pool somewhere after all the instructions. */ if (arg < 0 && arg > -0x100) return tcg_out_dat_imm(s, cond, ARITH_MVN, rd, 0, (~arg) & 0xff); - if (offset < 0x100 && offset > -0x100) - return offset >= 0 ? - tcg_out_dat_imm(s, cond, ARITH_ADD, rd, 15, offset) : - tcg_out_dat_imm(s, cond, ARITH_SUB, rd, 15, -offset); - #ifdef USE_ARMV7_INSTRUCTIONS /* use movw/movt */ /* movw */