From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752408AbaCFLdX (ORCPT ); Thu, 6 Mar 2014 06:33:23 -0500 Received: from cam-admin0.cambridge.arm.com ([217.140.96.50]:38828 "EHLO cam-admin0.cambridge.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750805AbaCFLdW (ORCPT ); Thu, 6 Mar 2014 06:33:22 -0500 Date: Thu, 6 Mar 2014 11:33:15 +0000 From: Will Deacon To: Jean Pihet Cc: "linux-kernel@vger.kernel.org" , "linaro-kernel@lists.linaro.org" , "linux-arm-kernel@lists.infradead.org" , Arnaldo , Ingo Molnar , Jiri Olsa , "steve.capper@linaro.org" , "patches@linaro.org" , Corey Ashford , Frederic Weisbecker , Namhyung Kim , Paul Mackerras , Peter Zijlstra , David Ahern Subject: Re: [PATCH 1/3] perf tests: Introduce perf_regs_load function on ARM Message-ID: <20140306113314.GD5202@mudshark.cambridge.arm.com> References: <1393840403-26639-1-git-send-email-jean.pihet@linaro.org> <1393840403-26639-2-git-send-email-jean.pihet@linaro.org> <20140304110042.GD8766@mudshark.cambridge.arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Mar 05, 2014 at 02:17:00AM +0000, Jean Pihet wrote: > On 4 March 2014 12:00, Will Deacon wrote: > > On Mon, Mar 03, 2014 at 09:53:21AM +0000, Jean Pihet wrote: > >> + str lr, [r0, #PC] @ Save caller PC > > > > This isn't necessarily the `caller PC' (depending on how you define it). > > It's the return address, which is probably (but not always) the instruction > > following the branch to this function. > Agreed. However the perf test code expects a registers buffer filled > in with the caller's values. > I can change the comment here, is that needed? It depends what the perf test code really expects. At the moment, you're not providing it with anything consistent which doesn't sound correct. What does it use the caller PC for? Will