From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=55337 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PgIFe-0005Sy-7Z for qemu-devel@nongnu.org; Fri, 21 Jan 2011 09:46:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PgIFc-0003VD-Sv for qemu-devel@nongnu.org; Fri, 21 Jan 2011 09:46:10 -0500 Received: from adelie.canonical.com ([91.189.90.139]:42402) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PgIFc-0003Ut-Ob for qemu-devel@nongnu.org; Fri, 21 Jan 2011 09:46:08 -0500 Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1PgIFa-0008O0-87 for ; Fri, 21 Jan 2011 14:46:06 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id C87FF2EA101 for ; Fri, 21 Jan 2011 14:45:59 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Date: Fri, 21 Jan 2011 14:36:34 -0000 From: Wolfgang Schildbach <702885@bugs.launchpad.net> Sender: bounces@canonical.com References: <20110114142110.10678.10510.malonedeb@gandwana.canonical.com> Message-Id: <20110121143634.6215.99120.malone@gandwana.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 ** Attachment added: "Binary to reproduce bug" https://bugs.launchpad.net/qemu/+bug/702885/+attachment/1801849/+files/m= ain.axf -- = 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