diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-09 03:39:58 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-09 03:39:58 +0000 |
commit | aa3437359864a40e37ab0ddb221f243c3c952b14 (patch) | |
tree | 3ea3b8f3757b8102c4aa79d4d0e4f8426b3ea776 /target-mips/translate.c | |
parent | 6dab28d5b5bfa67bef724efac0bc051a69ff1339 (diff) | |
download | qemu-aa3437359864a40e37ab0ddb221f243c3c952b14.zip qemu-aa3437359864a40e37ab0ddb221f243c3c952b14.tar.gz qemu-aa3437359864a40e37ab0ddb221f243c3c952b14.tar.bz2 |
Use always_inline in the MIPS support where applicable.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3375 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/translate.c')
-rw-r--r-- | target-mips/translate.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/target-mips/translate.c b/target-mips/translate.c index 77499e8..d69edea 100644 --- a/target-mips/translate.c +++ b/target-mips/translate.c @@ -436,7 +436,7 @@ NAME ## 20, NAME ## 21, NAME ## 22, NAME ## 23, \ NAME ## 24, NAME ## 25, NAME ## 26, NAME ## 27, \ NAME ## 28, NAME ## 29, NAME ## 30, NAME ## 31, \ }; \ -static inline void func(int n) \ +static always_inline void func(int n) \ { \ NAME ## _table[n](); \ } @@ -470,7 +470,7 @@ NAME ## 20, NAME ## 21, NAME ## 22, NAME ## 23, \ NAME ## 24, NAME ## 25, NAME ## 26, NAME ## 27, \ NAME ## 28, NAME ## 29, NAME ## 30, NAME ## 31, \ }; \ -static inline void func(int n) \ +static always_inline void func(int n) \ { \ NAME ## _table[n](); \ } @@ -521,7 +521,7 @@ static GenOpFunc1 * gen_op_cmp ## type ## _ ## fmt ## _table[16] = { \ gen_op_cmp ## type ## _ ## fmt ## _le, \ gen_op_cmp ## type ## _ ## fmt ## _ngt, \ }; \ -static inline void gen_cmp ## type ## _ ## fmt(int n, long cc) \ +static always_inline void gen_cmp ## type ## _ ## fmt(int n, long cc) \ { \ gen_op_cmp ## type ## _ ## fmt ## _table[n](cc); \ } @@ -636,7 +636,7 @@ do { \ glue(gen_op_store_fpr_, FTn)(Fn); \ } while (0) -static inline void gen_save_pc(target_ulong pc) +static always_inline void gen_save_pc(target_ulong pc) { #if defined(TARGET_MIPSN32) || defined(TARGET_MIPS64) if (pc == (int32_t)pc) { @@ -649,7 +649,7 @@ static inline void gen_save_pc(target_ulong pc) #endif } -static inline void gen_save_btarget(target_ulong btarget) +static always_inline void gen_save_btarget(target_ulong btarget) { #if defined(TARGET_MIPSN32) || defined(TARGET_MIPS64) if (btarget == (int32_t)btarget) { @@ -662,7 +662,7 @@ static inline void gen_save_btarget(target_ulong btarget) #endif } -static inline void save_cpu_state (DisasContext *ctx, int do_save_pc) +static always_inline void save_cpu_state (DisasContext *ctx, int do_save_pc) { #if defined MIPS_DEBUG_DISAS if (loglevel & CPU_LOG_TB_IN_ASM) { @@ -694,7 +694,7 @@ static inline void save_cpu_state (DisasContext *ctx, int do_save_pc) } } -static inline void restore_cpu_state (CPUState *env, DisasContext *ctx) +static always_inline void restore_cpu_state (CPUState *env, DisasContext *ctx) { ctx->saved_hflags = ctx->hflags; switch (ctx->hflags & MIPS_HFLAG_BMASK) { @@ -712,7 +712,7 @@ static inline void restore_cpu_state (CPUState *env, DisasContext *ctx) } } -static inline void generate_exception_err (DisasContext *ctx, int excp, int err) +static always_inline void generate_exception_err (DisasContext *ctx, int excp, int err) { #if defined MIPS_DEBUG_DISAS if (loglevel & CPU_LOG_TB_IN_ASM) @@ -726,24 +726,24 @@ static inline void generate_exception_err (DisasContext *ctx, int excp, int err) ctx->bstate = BS_EXCP; } -static inline void generate_exception (DisasContext *ctx, int excp) +static always_inline void generate_exception (DisasContext *ctx, int excp) { generate_exception_err (ctx, excp, 0); } -static inline void check_cp0_enabled(DisasContext *ctx) +static always_inline void check_cp0_enabled(DisasContext *ctx) { if (unlikely(!(ctx->hflags & MIPS_HFLAG_CP0))) generate_exception_err(ctx, EXCP_CpU, 1); } -static inline void check_cp1_enabled(DisasContext *ctx) +static always_inline void check_cp1_enabled(DisasContext *ctx) { if (unlikely(!(ctx->hflags & MIPS_HFLAG_FPU))) generate_exception_err(ctx, EXCP_CpU, 1); } -static inline void check_cp1_64bitmode(DisasContext *ctx) +static always_inline void check_cp1_64bitmode(DisasContext *ctx) { if (unlikely(!(ctx->hflags & MIPS_HFLAG_F64))) generate_exception(ctx, EXCP_RI); @@ -768,7 +768,7 @@ void check_cp1_registers(DisasContext *ctx, int regs) /* This code generates a "reserved instruction" exception if the CPU does not support the instruction set corresponding to flags. */ -static inline void check_insn(CPUState *env, DisasContext *ctx, int flags) +static always_inline void check_insn(CPUState *env, DisasContext *ctx, int flags) { if (unlikely(!(env->insn_flags & flags))) generate_exception(ctx, EXCP_RI); @@ -776,7 +776,7 @@ static inline void check_insn(CPUState *env, DisasContext *ctx, int flags) /* This code generates a "reserved instruction" exception if the CPU is not MIPS MT capable. */ -static inline void check_mips_mt(CPUState *env, DisasContext *ctx) +static always_inline void check_mips_mt(CPUState *env, DisasContext *ctx) { if (unlikely(!(env->CP0_Config3 & (1 << CP0C3_MT)))) generate_exception(ctx, EXCP_RI); @@ -784,7 +784,7 @@ static inline void check_mips_mt(CPUState *env, DisasContext *ctx) /* This code generates a "reserved instruction" exception if 64-bit instructions are not enabled. */ -static inline void check_mips_64(DisasContext *ctx) +static always_inline void check_mips_64(DisasContext *ctx) { if (unlikely(!(ctx->hflags & MIPS_HFLAG_64))) generate_exception(ctx, EXCP_RI); @@ -1634,7 +1634,7 @@ static void gen_trap (DisasContext *ctx, uint32_t opc, ctx->bstate = BS_STOP; } -static inline void gen_goto_tb(DisasContext *ctx, int n, target_ulong dest) +static always_inline void gen_goto_tb(DisasContext *ctx, int n, target_ulong dest) { TranslationBlock *tb; tb = ctx->tb; @@ -6477,7 +6477,7 @@ static void decode_opc (CPUState *env, DisasContext *ctx) } } -static inline int +static always_inline int gen_intermediate_code_internal (CPUState *env, TranslationBlock *tb, int search_pc) { |