From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751481AbaBKKw0 (ORCPT ); Tue, 11 Feb 2014 05:52:26 -0500 Received: from merlin.infradead.org ([205.233.59.134]:50433 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751001AbaBKKwZ (ORCPT ); Tue, 11 Feb 2014 05:52:25 -0500 Date: Tue, 11 Feb 2014 11:52:17 +0100 From: Peter Zijlstra To: Stephane Eranian Cc: Don Zickus , Arnaldo Carvalho de Melo , LKML , Jiri Olsa , Joe Mario , Richard Fowles Subject: Re: [PATCH 00/21] perf, c2c: Add new tool to analyze cacheline contention on NUMA systems Message-ID: <20140211105217.GS9987@twins.programming.kicks-ass.net> References: <1392053356-23024-1-git-send-email-dzickus@redhat.com> <20140210212955.GC5002@laptop.programming.kicks-ass.net> <20140211071401.GG27965@twins.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2012-12-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Feb 11, 2014 at 11:35:45AM +0100, Stephane Eranian wrote: > On Tue, Feb 11, 2014 at 8:14 AM, Peter Zijlstra wrote: > > > > That blows; how much is missing? > > They need to annotate load and stores. I asked for that feature a while ago. > It will come. And there is no way to deduce the information? We have type information for all arguments and local variables, right? So we can follow that. struct foo { int ponies; int moar_ponies; }; struct bar { int my_ponies; struct foo *foo; }; int moo(struct bar *bar) { return bar->foo->moar_ponies; } Since we have the argument type, we can find the type for both loads, the first load: *bar+8, we know is: struct foo * bar::foo *foo+4, we know is: int foo::moar_ponies Or am I missing something?