From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=55198 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PgJZw-0004zL-Ty for qemu-devel@nongnu.org; Fri, 21 Jan 2011 11:11:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PgJZu-0002oe-NN for qemu-devel@nongnu.org; Fri, 21 Jan 2011 11:11:12 -0500 Received: from adelie.canonical.com ([91.189.90.139]:60829) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PgJZu-0002oW-FX for qemu-devel@nongnu.org; Fri, 21 Jan 2011 11:11:10 -0500 Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1PgJZs-0002i9-9F for ; Fri, 21 Jan 2011 16:11:08 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 979A22E8E5B for ; Fri, 21 Jan 2011 16:11:06 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Date: Fri, 21 Jan 2011 16:01:03 -0000 From: Peter Maydell Sender: bounces@canonical.com References: <20110114142110.10678.10510.malonedeb@gandwana.canonical.com> Message-Id: <20110121160103.5547.44712.malone@soybean.canonical.com> Errors-To: bounces@canonical.com Subject: [Qemu-devel] [Bug 702885] Re: "Internal resource leak" error with ARM NEON vmull.s32 insn Reply-To: Bug 702885 <702885@bugs.launchpad.net> List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org That binary executes OK for me with no resource leak messages with: qemu master as of commit b646968336 http://patchwork.ozlabs.org/patch/79728/ http://patchwork.ozlabs.org/patch/79581/ (i386 host.) -- = You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/702885 Title: "Internal resource leak" error with ARM NEON vmull.s32 insn Status in QEMU: New Bug description: This bug occurs in qemu, commit 78a59470e6bbc6e16dc4033767492649c1ae4cfd (most recent as of 01/14/2011). Compile, assemble, and link the code below, with the ARM tools. (I use ARM C/C++ Compiler, 4.1 [Build 462]). armasm --cpu Cortex-A8 --licensing=3Dflex foo.s armcc --cpu Cortex-A8 --licensing=3Dflex -o main -L--sysv main.c foo.o Execute on qemu-arm and observe an "Internal resource leak" message. > qemu-arm main Internal resource leak before 0000818c - Wolfgang main.c: int main(void) { void foofunc(void); foofunc(); return 0 ; } = foo.s: ARM REQUIRE8 PRESERVE8 AREA code, CODE, READONLY, ALIGN=3D2 = foofunc PROC VMULL.S32 q1, d2, d4 MOV pc, lr ENDP = EXPORT foofunc [CODE] END