[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 02/10] tcg-s390: Rename tgen_calli to tcg_out_call
From: |
Richard Henderson |
Subject: |
[Qemu-devel] [PATCH 02/10] tcg-s390: Rename tgen_calli to tcg_out_call |
Date: |
Tue, 29 Apr 2014 09:52:05 -0700 |
Signed-off-by: Richard Henderson <address@hidden>
---
tcg/s390/tcg-target.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tcg/s390/tcg-target.c b/tcg/s390/tcg-target.c
index ae1be1c..0ae40e1 100644
--- a/tcg/s390/tcg-target.c
+++ b/tcg/s390/tcg-target.c
@@ -1269,7 +1269,7 @@ static void tgen_brcond(TCGContext *s, TCGType type,
TCGCond c,
tgen_branch(s, cc, labelno);
}
-static void tgen_calli(TCGContext *s, tcg_insn_unit *dest)
+static void tcg_out_call(TCGContext *s, tcg_insn_unit *dest)
{
ptrdiff_t off = dest - s->code_ptr;
if (off == (int32_t)off) {
@@ -1460,11 +1460,11 @@ static TCGReg tcg_prepare_qemu_ldst(TCGContext* s,
TCGReg data_reg,
}
tcg_out_movi(s, TCG_TYPE_I32, arg3, mem_index);
tcg_out_mov(s, TCG_TYPE_I64, arg0, TCG_AREG0);
- tgen_calli(s, qemu_st_helpers[s_bits]);
+ tcg_out_call(s, qemu_st_helpers[s_bits]);
} else {
tcg_out_movi(s, TCG_TYPE_I32, arg2, mem_index);
tcg_out_mov(s, TCG_TYPE_I64, arg0, TCG_AREG0);
- tgen_calli(s, qemu_ld_helpers[s_bits]);
+ tcg_out_call(s, qemu_ld_helpers[s_bits]);
/* sign extension */
switch (opc) {
@@ -1614,7 +1614,7 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode
opc,
case INDEX_op_call:
if (const_args[0]) {
- tgen_calli(s, (tcg_insn_unit *)(intptr_t)args[0]);
+ tcg_out_call(s, (tcg_insn_unit *)(intptr_t)args[0]);
} else {
tcg_out_insn(s, RR, BASR, TCG_REG_R14, args[0]);
}
--
1.9.0
- [Qemu-devel] [PATCH 00/10] tcg: call and move cleanups, Richard Henderson, 2014/04/29
- [Qemu-devel] [PATCH 01/10] tcg-i386: Rename tcg_out_calli to tcg_out_call, Richard Henderson, 2014/04/29
- [Qemu-devel] [PATCH 02/10] tcg-s390: Rename tgen_calli to tcg_out_call,
Richard Henderson <=
- [Qemu-devel] [PATCH 03/10] tcg-ppc: Split out tcg_out_call, Richard Henderson, 2014/04/29
- [Qemu-devel] [PATCH 04/10] tcg-ppc64: Rename tcg_out_calli to tcg_out_call, Richard Henderson, 2014/04/29
- [Qemu-devel] [PATCH 06/10] tcg-mips: Split out tcg_out_call, Richard Henderson, 2014/04/29
- [Qemu-devel] [PATCH 05/10] tcg-sparc: Create tcg_out_call, Richard Henderson, 2014/04/29
- [Qemu-devel] [PATCH 08/10] tcg: Make call address a constant parameter, Richard Henderson, 2014/04/29
- [Qemu-devel] [PATCH 07/10] tci: Create tcg_out_call, Richard Henderson, 2014/04/29
- [Qemu-devel] [PATCH 09/10] tcg: Use tcg_target_available_regs in tcg_reg_alloc_mov, Richard Henderson, 2014/04/29
- [Qemu-devel] [PATCH 10/10] tcg: Remove unreachable code in tcg_out_op and op_defs, Richard Henderson, 2014/04/29