From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GN7ip-0003J7-QV for qemu-devel@nongnu.org; Tue, 12 Sep 2006 08:50:39 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GN7in-0003GS-K8 for qemu-devel@nongnu.org; Tue, 12 Sep 2006 08:50:39 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GN7in-0003GL-Ff for qemu-devel@nongnu.org; Tue, 12 Sep 2006 08:50:37 -0400 Received: from [65.74.133.4] (helo=mail.codesourcery.com) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1GN7kH-0002rY-WA for qemu-devel@nongnu.org; Tue, 12 Sep 2006 08:52:10 -0400 From: Paul Brook Subject: Re: [Qemu-devel] ARM CPU Speed simulated by Qemu? Date: Tue, 12 Sep 2006 13:43:35 +0100 References: <20060912072037.96809.qmail@web38105.mail.mud.yahoo.com> In-Reply-To: <20060912072037.96809.qmail@web38105.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200609121343.38015.paul@codesourcery.com> 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 On Tuesday 12 September 2006 08:20, Tieu Ma Dau wrote: > Hi all, > I found that Qemu ARM system simulates ARM926EJ-S and > ARM1026EJ-S processor. And I found on ARM website that > the speed of these CPUs vary from 266 to 540 MHz. > Could you tell me the exact speed of the ARM926EJ-S > and ARM1026EJ-S processor simulated by Qemu? It's very > important for me to finish my report. Qemu is not cycle accurate. There is no particularly meaningful way to translate between qemu performance and how fast something will run on real hardware. Modern CPUs are complicated, with many factors effecting execution speed (pipeline interlocks, multiple levels of cache). A cycle accurate simulator will generally be orders of magnitude slower than qemu. Paul