From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LIUmF-00048G-9r for qemu-devel@nongnu.org; Thu, 01 Jan 2009 16:08:23 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LIUmE-00047O-FD for qemu-devel@nongnu.org; Thu, 01 Jan 2009 16:08:22 -0500 Received: from [199.232.76.173] (port=36711 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LIUmE-00047H-B6 for qemu-devel@nongnu.org; Thu, 01 Jan 2009 16:08:22 -0500 Received: from mtaout02-winn.ispmail.ntl.com ([81.103.221.48]:45990) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LIUmD-0002on-QB for qemu-devel@nongnu.org; Thu, 01 Jan 2009 16:08:22 -0500 Received: from aamtaout01-winn.ispmail.ntl.com ([81.103.221.35]) by mtaout02-winn.ispmail.ntl.com (InterMail vM.7.08.04.00 201-2186-134-20080326) with ESMTP id <20090101210820.QLVP4080.mtaout02-winn.ispmail.ntl.com@aamtaout01-winn.ispmail.ntl.com> for ; Thu, 1 Jan 2009 21:08:20 +0000 Received: from miranda.arrow ([213.107.23.205]) by aamtaout01-winn.ispmail.ntl.com (InterMail vG.2.02.00.01 201-2161-120-102-20060912) with ESMTP id <20090101210820.CMQY19264.aamtaout01-winn.ispmail.ntl.com@miranda.arrow> for ; Thu, 1 Jan 2009 21:08:20 +0000 Received: from sdb by miranda.arrow with local (Exim 4.63) (envelope-from ) id 1LIUmA-0004tu-5o for qemu-devel@nongnu.org; Thu, 01 Jan 2009 21:08:18 +0000 Date: Thu, 1 Jan 2009 21:08:17 +0000 From: Stuart Brady Message-ID: <20090101210817.GA18828@miranda.arrow> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] Fix documentation of qemu_ld/st ops Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This patch corrects the documentation of the qemu_ld and qemu_st ops. The functions defined in tcg/tcg-op.h have no _i32 or _i64 suffix, qemu_ld64 and qemu_st64 were missing from the list, and there are no 'plain' qemu_ld/qemu_st ops. Signed-off-by: Stuart Brady Index: tcg/README =================================================================== --- tcg/README (revision 6146) +++ tcg/README (working copy) @@ -334,22 +334,22 @@ current TB was linked to this TB. Otherwise execute the next instructions. -* qemu_ld_i32/i64 t0, t1, flags -qemu_ld8u_i32/i64 t0, t1, flags -qemu_ld8s_i32/i64 t0, t1, flags -qemu_ld16u_i32/i64 t0, t1, flags -qemu_ld16s_i32/i64 t0, t1, flags -qemu_ld32u_i64 t0, t1, flags -qemu_ld32s_i64 t0, t1, flags +* qemu_ld8u t0, t1, flags +qemu_ld8s t0, t1, flags +qemu_ld16u t0, t1, flags +qemu_ld16s t0, t1, flags +qemu_ld32u t0, t1, flags +qemu_ld32s t0, t1, flags +qemu_ld64 t0, t1, flags Load data at the QEMU CPU address t1 into t0. t1 has the QEMU CPU address type. 'flags' contains the QEMU memory index (selects user or kernel access) for example. -* qemu_st_i32/i64 t0, t1, flags -qemu_st8_i32/i64 t0, t1, flags -qemu_st16_i32/i64 t0, t1, flags -qemu_st32_i64 t0, t1, flags +* qemu_st8 t0, t1, flags +qemu_st16 t0, t1, flags +qemu_st32 t0, t1, flags +qemu_st64 t0, t1, flags Store the data t0 at the QEMU CPU Address t1. t1 has the QEMU CPU address type. 'flags' contains the QEMU memory index (selects user or Cheers, -- Stuart Brady