From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1634 invoked by alias); 16 Oct 2009 20:34:46 -0000 Received: (qmail 1626 invoked by uid 22791); 16 Oct 2009 20:34:45 -0000 X-SWARE-Spam-Status: No, hits=-2.6 required=5.0 tests=AWL,BAYES_00,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mail-fx0-f225.google.com (HELO mail-fx0-f225.google.com) (209.85.220.225) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 16 Oct 2009 20:34:40 +0000 Received: by fxm25 with SMTP id 25so3067221fxm.24 for ; Fri, 16 Oct 2009 13:34:37 -0700 (PDT) Received: by 10.103.133.25 with SMTP id k25mr894135mun.62.1255725277556; Fri, 16 Oct 2009 13:34:37 -0700 (PDT) Received: from ?192.168.3.3? (cpe-76-171-188-7.socal.res.rr.com [76.171.188.7]) by mx.google.com with ESMTPS id j2sm1458652mue.16.2009.10.16.13.34.35 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 16 Oct 2009 13:34:36 -0700 (PDT) Message-ID: <4AD8D8DC.2080904@gmail.com> Date: Fri, 16 Oct 2009 21:07:00 -0000 From: burlen User-Agent: Thunderbird 2.0.0.23 (X11/20090817) MIME-Version: 1.0 To: gdb@sourceware.org Subject: reverse execution Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2009-10/txt/msg00276.txt.bz2 Is it possible to use reverse execution features on x86-64 linux platform? I turned it on bad things happened. namely sigtrap then sigabrt. it spit out these messages: Process record doesn't support instruction 0xf10 at address 0x7fffdda0dc77. Process record: failed to record execution log. My session follows. Does this mean reverse execution isn't going to work on this platform? or perhaps I have done something wrong in my attempt to use the feature? Thanks Burlen (gdb) run Starting program: /home/burlen/ext/ParaView/PV3-3.7/bin/pvserver [Thread debugging using libthread_db enabled] Listen on port: 11111 Waiting for client... Waiting for server... Client connected. ^C Program received signal SIGINT, Interrupt. 0x00007fffe31a66f3 in select () from /lib/libc.so.6 (gdb) br vtkOOCFieldTracer::OOCIntegrateOne Breakpoint 1 at 0x7fffdda0b591: file /home/burlen/ext/ParaView/SciVisToolKit/vtkOOCFieldTracer.cxx, line 447. (gdb) cont Continuing. Breakpoint 1, vtkOOCFieldTracer::OOCIntegrateOne (this=0xa77570, oocR=0x1fbff10, fieldName=0xed88b8 "vi", line=0x1fd2020, tcon=0x7fffffffc480) at /home/burlen/ext/ParaView/SciVisToolKit/vtkOOCFieldTracer.cxx:447 447 int w=0; (gdb) target record (gdb) disable 1 (gdb) cont Continuing. Process record doesn't support instruction 0xf10 at address 0x7fffdda0dc77. Process record: failed to record execution log. Program received signal SIGTRAP, Trace/breakpoint trap. 0x00007fffdda0dc76 in FieldLine::GetSeedPoint (this=0x1fd2020, p=0x7fffffffc2e0) at /home/burlen/ext/ParaView/SciVisToolKit/FieldLine.h:113 113 p[0]=this->Seed[0]; (gdb) cont Continuing. Process record doesn't support instruction 0xf10 at address 0x7fffdda0dc77. Process record: failed to record execution log. Program received signal SIGABRT, Aborted. 0x00007fffdda0dc76 in FieldLine::GetSeedPoint (this=0x1fd2020, p=0x7fffffffc2e0) at /home/burlen/ext/ParaView/SciVisToolKit/FieldLine.h:113 113 p[0]=this->Seed[0]; (gdb)