From patchwork Tue Apr 29 16:52:04 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 343931 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 11EA31400DE for ; Wed, 30 Apr 2014 02:53:38 +1000 (EST) Received: from localhost ([::1]:51288 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WfBHk-0001em-1C for incoming@patchwork.ozlabs.org; Tue, 29 Apr 2014 12:53:36 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40954) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WfBH4-0000VE-EL for qemu-devel@nongnu.org; Tue, 29 Apr 2014 12:53:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WfBGy-0001eG-At for qemu-devel@nongnu.org; Tue, 29 Apr 2014 12:52:54 -0400 Received: from mail-qa0-x22b.google.com ([2607:f8b0:400d:c00::22b]:34810) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WfBGy-0001eC-5n for qemu-devel@nongnu.org; Tue, 29 Apr 2014 12:52:48 -0400 Received: by mail-qa0-f43.google.com with SMTP id ih12so465762qab.16 for ; Tue, 29 Apr 2014 09:52:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:subject:date:message-id:in-reply-to:references; bh=l7/wvUCBvADVw0FAJrpb6vIGTASwkD9iX8QpEGRQ1L4=; b=GkE2iI7LQ4RDkn9qv3+lAGX2JnIVJb5d726qI0fZbFO5yn0WdoKxfltKv69iLlfgcg XARHEWEetFaL4gUcf2P6XWvIAIeNvcNoV1JnLnKkobMkkEu7WpoEZ0FvR9jKenjv19A9 TqSRzCO6cITp+kEfbiS3D0Q/AXg621qRKG5sL4II25t0M6YsxuYKGm5fIfeQOd2WjvR1 T+gRaxq+ovbo1Z4r+PjFFbfvMmcIQW4A+CVJoDFs3T4KJGWuejgLCgbEK1bvuGYaoHJo gVhDAC+t7OU6lC9MA1DiIBQi+t91BSIZcNMG3C2ua9E8iJZ1Nk1oF6s1GpFRUO/S+EIn qELQ== X-Received: by 10.224.38.138 with SMTP id b10mr13676486qae.98.1398790367638; Tue, 29 Apr 2014 09:52:47 -0700 (PDT) Received: from anchor.com (50-194-63-110-static.hfc.comcastbusiness.net. [50.194.63.110]) by mx.google.com with ESMTPSA id t5sm19120602qaj.34.2014.04.29.09.52.46 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 29 Apr 2014 09:52:46 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Tue, 29 Apr 2014 09:52:04 -0700 Message-Id: <1398790333-29262-2-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.9.0 In-Reply-To: <1398790333-29262-1-git-send-email-rth@twiddle.net> References: <1398790333-29262-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400d:c00::22b Subject: [Qemu-devel] [PATCH 01/10] tcg-i386: Rename tcg_out_calli to tcg_out_call X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Richard Henderson --- tcg/i386/tcg-target.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tcg/i386/tcg-target.c b/tcg/i386/tcg-target.c index eb8d2a1..48a95f8 100644 --- a/tcg/i386/tcg-target.c +++ b/tcg/i386/tcg-target.c @@ -1113,7 +1113,7 @@ static void tcg_out_branch(TCGContext *s, int call, tcg_insn_unit *dest) } } -static inline void tcg_out_calli(TCGContext *s, tcg_insn_unit *dest) +static inline void tcg_out_call(TCGContext *s, tcg_insn_unit *dest) { tcg_out_branch(s, 1, dest); } @@ -1308,7 +1308,7 @@ static void tcg_out_qemu_ld_slow_path(TCGContext *s, TCGLabelQemuLdst *l) (uintptr_t)l->raddr); } - tcg_out_calli(s, qemu_ld_helpers[opc & ~MO_SIGN]); + tcg_out_call(s, qemu_ld_helpers[opc & ~MO_SIGN]); data_reg = l->datalo_reg; switch (opc & MO_SSIZE) { @@ -1748,7 +1748,7 @@ static inline void tcg_out_op(TCGContext *s, TCGOpcode opc, break; case INDEX_op_call: if (const_args[0]) { - tcg_out_calli(s, (tcg_insn_unit *)(uintptr_t)args[0]); + tcg_out_call(s, (tcg_insn_unit *)(uintptr_t)args[0]); } else { /* call *reg */ tcg_out_modrm(s, OPC_GRP5, EXT5_CALLN_Ev, args[0]);