target/mips: Rename cpu_is_bigendian() -> disas_is_bigendian()
Methods using the 'cpu_' prefix usually take a (Arch)CPUState argument. Since this method takes a DisasContext argument, rename it as disas_is_bigendian(). Suggested-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20241010215015.44326-3-philmd@linaro.org>
This commit is contained in:
parent
5375bc1674
commit
e99072b6ec
@ -999,7 +999,7 @@ static void gen_llwp(DisasContext *ctx, uint32_t base, int16_t offset,
|
||||
|
||||
gen_base_offset_addr(ctx, taddr, base, offset);
|
||||
tcg_gen_qemu_ld_i64(tval, taddr, ctx->mem_idx, MO_TEUQ | MO_ALIGN);
|
||||
if (cpu_is_bigendian(ctx)) {
|
||||
if (disas_is_bigendian(ctx)) {
|
||||
tcg_gen_extr_i64_tl(tmp2, tmp1, tval);
|
||||
} else {
|
||||
tcg_gen_extr_i64_tl(tmp1, tmp2, tval);
|
||||
@ -1031,7 +1031,7 @@ static void gen_scwp(DisasContext *ctx, uint32_t base, int16_t offset,
|
||||
gen_load_gpr(tmp1, reg1);
|
||||
gen_load_gpr(tmp2, reg2);
|
||||
|
||||
if (cpu_is_bigendian(ctx)) {
|
||||
if (disas_is_bigendian(ctx)) {
|
||||
tcg_gen_concat_tl_i64(tval, tmp2, tmp1);
|
||||
} else {
|
||||
tcg_gen_concat_tl_i64(tval, tmp1, tmp2);
|
||||
|
@ -2010,7 +2010,7 @@ static void gen_lxl(DisasContext *ctx, TCGv reg, TCGv addr,
|
||||
*/
|
||||
tcg_gen_qemu_ld_tl(t1, addr, mem_idx, MO_UB);
|
||||
tcg_gen_andi_tl(t1, addr, sizem1);
|
||||
if (!cpu_is_bigendian(ctx)) {
|
||||
if (!disas_is_bigendian(ctx)) {
|
||||
tcg_gen_xori_tl(t1, t1, sizem1);
|
||||
}
|
||||
tcg_gen_shli_tl(t1, t1, 3);
|
||||
@ -2037,7 +2037,7 @@ static void gen_lxr(DisasContext *ctx, TCGv reg, TCGv addr,
|
||||
*/
|
||||
tcg_gen_qemu_ld_tl(t1, addr, mem_idx, MO_UB);
|
||||
tcg_gen_andi_tl(t1, addr, sizem1);
|
||||
if (cpu_is_bigendian(ctx)) {
|
||||
if (disas_is_bigendian(ctx)) {
|
||||
tcg_gen_xori_tl(t1, t1, sizem1);
|
||||
}
|
||||
tcg_gen_shli_tl(t1, t1, 3);
|
||||
@ -10856,7 +10856,7 @@ static void gen_flt3_arith(DisasContext *ctx, uint32_t opc,
|
||||
tcg_gen_br(l2);
|
||||
gen_set_label(l1);
|
||||
tcg_gen_brcondi_tl(TCG_COND_NE, t0, 4, l2);
|
||||
if (cpu_is_bigendian(ctx)) {
|
||||
if (disas_is_bigendian(ctx)) {
|
||||
gen_load_fpr32(ctx, fp, fs);
|
||||
gen_load_fpr32h(ctx, fph, ft);
|
||||
gen_store_fpr32h(ctx, fp, fd);
|
||||
|
@ -235,7 +235,7 @@ bool decode_ext_vr54xx(DisasContext *ctx, uint32_t insn);
|
||||
static bool trans_##NAME(DisasContext *ctx, arg_##NAME *a) \
|
||||
{ return FUNC(ctx, a, __VA_ARGS__); }
|
||||
|
||||
static inline bool cpu_is_bigendian(DisasContext *ctx)
|
||||
static inline bool disas_is_bigendian(DisasContext *ctx)
|
||||
{
|
||||
return extract32(ctx->CP0_Config0, CP0C0_BE, 1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user