From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15603 invoked by alias); 26 Nov 2011 00:23:29 -0000 Received: (qmail 15559 invoked by uid 22791); 26 Nov 2011 00:23:12 -0000 X-SWARE-Spam-Status: No, hits=-7.1 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,SPF_HELO_PASS,TW_BJ X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 26 Nov 2011 00:22:57 +0000 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id pAQ0MuCa031461 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 25 Nov 2011 19:22:56 -0500 Received: from host1.jankratochvil.net (ovpn-116-40.ams2.redhat.com [10.36.116.40]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id pAQ0MsZS027730 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Fri, 25 Nov 2011 19:22:55 -0500 Received: from host1.jankratochvil.net (localhost [127.0.0.1]) by host1.jankratochvil.net (8.14.4/8.14.4) with ESMTP id pAQ0MrfW011427; Sat, 26 Nov 2011 01:22:53 +0100 Received: (from jkratoch@localhost) by host1.jankratochvil.net (8.14.4/8.14.4/Submit) id pAQ0Mp9Z011425; Sat, 26 Nov 2011 01:22:51 +0100 Date: Sat, 26 Nov 2011 00:23:00 -0000 From: Jan Kratochvil To: Sanjoy Das Cc: gdb-patches@sourceware.org, Stan Shebs Subject: Regression for gdb.base/jit.exp and gdb.base/jit-so.exp [Re: JIT Interface Patches Landed] Message-ID: <20111126002251.GA5257@host1.jankratochvil.net> References: <4EC8D2D4.1080402@playingwithpointers.com> <4EC9CE39.40604@earthlink.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4EC9CE39.40604@earthlink.net> User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2011-11/txt/msg00710.txt.bz2 On Mon, 21 Nov 2011 05:06:17 +0100, Stan Shebs wrote: > On 11/20/11 2:13 AM, Sanjoy Das wrote: > >Hi all, > > > >I've checked in the work I did to implement a (hopefully) simpler JIT > >interface. > > > > Did you recheck running with the testsuite? I just saw four > regressions in current jit.exp vs a testsuite run I did a week ago, > but haven't investigated further. 9894c3216f7cf02a51d8c2058cac8cba33dc6e69 is the first bad commit commit 9894c3216f7cf02a51d8c2058cac8cba33dc6e69 Author: sanjoyd Date: Sun Nov 20 09:14:45 2011 +0000 gdb/ * jit.c: Include block.h, dictionary.h and frame-unwind.h. (add_objfile_entry, jit_target_read_impl, jit_object_open_impl) (jit_symtab_open_impl, compare_block, jit_block_open_impl) (jit_symtab_line_mapping_add_impl, jit_symtab_close_impl) (finalize_symtab, jit_object_close_impl) (jit_reader_try_read_symtab, jit_bfd_try_read_symtab) (free_objfile_data): New functions. (_initialize_jit): Register jit_objfile_data with a proper cleanup function. -PASS: gdb.base/jit.exp: one_jit_test-1: info function jit_function +FAIL: gdb.base/jit.exp: one_jit_test-1: info function jit_function -PASS: gdb.base/jit.exp: one_jit_test-2: info function jit_function +FAIL: gdb.base/jit.exp: one_jit_test-2: info function jit_function -PASS: gdb.base/jit-so.exp: one_jit_test-1 info function jit_function +FAIL: gdb.base/jit-so.exp: one_jit_test-1 info function jit_function -PASS: gdb.base/jit-so.exp: one_jit_test-2 info function jit_function +FAIL: gdb.base/jit-so.exp: one_jit_test-2 info function jit_function Unable to find JITed code entry at address: 0x602030 Thanks, Jan