From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:54792) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R52cz-0008LP-4k for qemu-devel@nongnu.org; Sat, 17 Sep 2011 17:40:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R52cx-0005UW-Vd for qemu-devel@nongnu.org; Sat, 17 Sep 2011 17:40:49 -0400 Received: from mail-iy0-f173.google.com ([209.85.210.173]:41399) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R52cx-0005UE-Ii for qemu-devel@nongnu.org; Sat, 17 Sep 2011 17:40:47 -0400 Received: by iagf6 with SMTP id f6so4525420iag.4 for ; Sat, 17 Sep 2011 14:40:46 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <1316289634-18786-3-git-send-email-weil@mail.berlios.de> References: <4E74FC29.1050003@mail.berlios.de> <1316289634-18786-3-git-send-email-weil@mail.berlios.de> Date: Sat, 17 Sep 2011 22:40:46 +0100 Message-ID: From: Peter Maydell Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 3/8] tcg: Add forward declarations for local functions List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Weil Cc: QEMU Developers On 17 September 2011 21:00, Stefan Weil wrote: > +/* Forward declarations for functions declared and used in tcg-target.c.= */ > +static int target_parse_constraint(TCGArgConstraint *ct, const char **pc= t_str); > +static void tcg_out_ld(TCGContext *s, TCGType type, int ret, int arg1, > + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 tcg_target_long arg2); > +static void tcg_out_mov(TCGContext *s, TCGType type, int ret, int arg); > +static void tcg_out_movi(TCGContext *s, TCGType type, > + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 int ret, tcg_target_long arg); > +static void tcg_out_op(TCGContext *s, TCGOpcode opc, const TCGArg *args, > + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 const int *const_args); > +static void tcg_out_st(TCGContext *s, TCGType type, int arg, int arg1, > + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 tcg_target_long arg2); > +static int tcg_target_const_match(tcg_target_long val, > + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0const TCGArgConstraint *arg= _ct); > +static int tcg_target_get_call_iarg_regs_count(int flags); I'm tempted to submit a bulk rename patch that renames the functions in this list which don't start 'tcg_target_' so that they do... -- PMM