From patchwork Fri Jan 7 20:34:50 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 77907 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D9354B710D for ; Sat, 8 Jan 2011 07:37:54 +1100 (EST) Received: from localhost ([127.0.0.1]:46155 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PbJ2c-0001mC-EI for incoming@patchwork.ozlabs.org; Fri, 07 Jan 2011 15:36:06 -0500 Received: from [140.186.70.92] (port=51193 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PbJ1S-0001Mj-RP for qemu-devel@nongnu.org; Fri, 07 Jan 2011 15:34:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PbJ1R-0004Pb-Qr for qemu-devel@nongnu.org; Fri, 07 Jan 2011 15:34:54 -0500 Received: from moutng.kundenserver.de ([212.227.17.10]:62865) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PbJ1R-0004PW-Dh for qemu-devel@nongnu.org; Fri, 07 Jan 2011 15:34:53 -0500 Received: from flocke.fritz.box (p5086F727.dip.t-dialin.net [80.134.247.39]) by mrelayeu.kundenserver.de (node=mreu1) with ESMTP (Nemesis) id 0LgL1E-1Q55rM1Cpo-00o7NU; Fri, 07 Jan 2011 21:34:52 +0100 Received: from stefan by flocke.fritz.box with local (Exim 4.72) (envelope-from ) id 1PbJ1P-0007WC-Fc; Fri, 07 Jan 2011 21:34:51 +0100 From: Stefan Weil To: QEMU Developers Date: Fri, 7 Jan 2011 21:34:50 +0100 Message-Id: <1294432490-28871-1-git-send-email-weil@mail.berlios.de> X-Mailer: git-send-email 1.7.2.3 X-Provags-ID: V02:K0:CWaS5E9Ez7XLlxHGBKd5V0ul48FWBe4I/hGp8196YeE rPlNdSFxt5EhPlU/oDQEH07KG/iTh89nvmsVvYHjBUyyxVbbq0 phxHLOv7MXG7vjXpRgea03BuXp5Z2XduWBUZmhaQXnoE5buMe0 H0JiUmRvzg77R7/rIDuIZjnWXaBSnr6Bv/tR78k+eilM1vBg3j eKs+2mwCRc9efUpAzgNccgyF7LUpzPWYsYaZKgRIeS30PqUsLs 0QI5psF4lmV5S X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. Cc: Subject: [Qemu-devel] [PATCH] tcg/README: Spelling fixes X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Stefan Weil --- tcg/README | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tcg/README b/tcg/README index 68d27ff..a2b69dd 100644 --- a/tcg/README +++ b/tcg/README @@ -75,11 +75,11 @@ destroyed, but local temporaries and globals are preserved. * Helpers: Using the tcg_gen_helper_x_y it is possible to call any function -taking i32, i64 or pointer types. By default, before calling an helper, +taking i32, i64 or pointer types. By default, before calling a helper, all globals are stored at their canonical location and it is assumed -that the function can modify them. This can be overriden by the +that the function can modify them. This can be overridden by the TCG_CALL_CONST function modifier. By default, the helper is allowed to -modify the CPU state or raise an exception. This can be overriden by +modify the CPU state or raise an exception. This can be overridden by the TCG_CALL_PURE function modifier, in which case the call to the function is removed if the return value is not used. @@ -488,7 +488,7 @@ register. the speed of the translation. - Don't hesitate to use helpers for complicated or seldom used target - intructions. There is little performance advantage in using TCG to + instructions. There is little performance advantage in using TCG to implement target instructions taking more than about twenty TCG instructions.