From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lqo1i-0007LT-6D for qemu-devel@nongnu.org; Mon, 06 Apr 2009 08:34:10 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lqo1h-0007KK-ML for qemu-devel@nongnu.org; Mon, 06 Apr 2009 08:34:09 -0400 Received: from [199.232.76.173] (port=57839 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lqo1g-0007Jp-Sb for qemu-devel@nongnu.org; Mon, 06 Apr 2009 08:34:08 -0400 Received: from savannah.gnu.org ([199.232.41.3]:44324 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Lqo1g-0002ZY-Jc for qemu-devel@nongnu.org; Mon, 06 Apr 2009 08:34:08 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Lqo1f-0004Yy-Vx for qemu-devel@nongnu.org; Mon, 06 Apr 2009 12:34:08 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.69) (envelope-from ) id 1Lqo1f-0004Yu-NI for qemu-devel@nongnu.org; Mon, 06 Apr 2009 12:34:07 +0000 MIME-Version: 1.0 Errors-To: aurel32 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Aurelien Jarno Message-Id: Date: Mon, 06 Apr 2009 12:34:07 +0000 Subject: [Qemu-devel] [7009] target-mips: use the TCG_CALL_PURE and TCG_CALL_CONST for some helpers 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 Revision: 7009 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=7009 Author: aurel32 Date: 2009-04-06 12:34:07 +0000 (Mon, 06 Apr 2009) Log Message: ----------- target-mips: use the TCG_CALL_PURE and TCG_CALL_CONST for some helpers Signed-off-by: Aurelien Jarno Modified Paths: -------------- trunk/target-mips/helper.h Modified: trunk/target-mips/helper.h =================================================================== --- trunk/target-mips/helper.h 2009-04-06 12:33:59 UTC (rev 7008) +++ trunk/target-mips/helper.h 2009-04-06 12:34:07 UTC (rev 7009) @@ -15,11 +15,11 @@ DEF_HELPER_3(swl, void, tl, tl, int) DEF_HELPER_3(swr, void, tl, tl, int) -DEF_HELPER_1(clo, tl, tl) -DEF_HELPER_1(clz, tl, tl) +DEF_HELPER_FLAGS_1(clo, TCG_CALL_CONST | TCG_CALL_PURE, tl, tl) +DEF_HELPER_FLAGS_1(clz, TCG_CALL_CONST | TCG_CALL_PURE, tl, tl) #ifdef TARGET_MIPS64 -DEF_HELPER_1(dclo, tl, tl) -DEF_HELPER_1(dclz, tl, tl) +DEF_HELPER_FLAGS_1(dclo, TCG_CALL_CONST | TCG_CALL_PURE, tl, tl) +DEF_HELPER_FLAGS_1(dclz, TCG_CALL_CONST | TCG_CALL_PURE, tl, tl) DEF_HELPER_2(dmult, void, tl, tl) DEF_HELPER_2(dmultu, void, tl, tl) #endif