From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4095 invoked by alias); 8 Feb 2011 16:01:09 -0000 Received: (qmail 4082 invoked by uid 22791); 8 Feb 2011 16:01:08 -0000 X-SWARE-Spam-Status: No, hits=-6.8 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,T_RP_MATCHES_RCVD 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; Tue, 08 Feb 2011 16:00:58 +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 p18G0p8c027680 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 8 Feb 2011 11:00:51 -0500 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p18G0oY4028310; Tue, 8 Feb 2011 11:00:50 -0500 Received: from opsy.redhat.com (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id p18G0mG3031251; Tue, 8 Feb 2011 11:00:49 -0500 Received: by opsy.redhat.com (Postfix, from userid 500) id 8BC0E37817D; Tue, 8 Feb 2011 09:00:48 -0700 (MST) From: Tom Tromey To: Hui Zhu Cc: linux-kernel@vger.kernel.org, Michael Snyder , Marc Khouzam , Thiago Jung Bauermann , Steven , colyli@gmail.com, Christoph Hellwig , "gdb\@sourceware.org" Subject: Re: [PATCH] Linux Kernel GDB tracepoint module 2011-02-05 References: Date: Tue, 08 Feb 2011 16:01:00 -0000 In-Reply-To: (Hui Zhu's message of "Tue, 8 Feb 2011 21:23:52 +0800") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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: 2011-02/txt/msg00045.txt.bz2 >>>>> ">" == Hui Zhu writes: >> My gcc is 4.4.5. Does it have VTA? Nope. VTA went in for 4.5. >> Use the patch is easier than update gcc sometimes, right? :) Yeah. >> BTW does VTA can handle the issue that after -O2 a lot of code >> execution order is worong? >> It affect me when I debug the Linux Kernel in qemu. My understanding is that VTA is solely about better tracking of values through optimization passes. It doesn't affect code reordering, by design. Tom