Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1210421

Re: [PATCH v1 3/4] perf record: add ability to name registers to record

From Jiri Olsa <jolsa@redhat.com>
Newsgroups linux.kernel
Subject Re: [PATCH v1 3/4] perf record: add ability to name registers to record
Date 2015-08-20 13:20 +0200
Message-ID <pZw2Z-3ei-9@gated-at.bofh.it> (permalink)
References <pZ74B-C4-7@gated-at.bofh.it> <pZ7ej-Nx-37@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Wed, Aug 19, 2015 at 10:38:25AM +0200, Stephane Eranian wrote:

SNIP

> diff --git a/tools/perf/util/parse-regs-options.c b/tools/perf/util/parse-regs-options.c
> new file mode 100644
> index 0000000..4f2c1c2
> --- /dev/null
> +++ b/tools/perf/util/parse-regs-options.c
> @@ -0,0 +1,71 @@
> +#include "perf.h"
> +#include "util/util.h"
> +#include "util/debug.h"
> +#include "util/parse-options.h"
> +#include "util/parse-regs-options.h"
> +
> +int
> +parse_regs(const struct option *opt, const char *str, int unset)
> +{
> +	uint64_t *mode = (uint64_t *)opt->value;
> +	const struct sample_reg *r;
> +	char *s, *os = NULL, *p;
> +	int ret = -1;
> +
> +	if (unset)
> +		return 0;
> +
> +	/*
> +	 * cannot set it twice
> +	 */
> +	if (*mode)
> +		return -1;
> +
> +	/* str may be NULL in case no arg is passed to -I */
> +	if (str) {
> +		/* because str is read-only */
> +		s = os = strdup(str);
> +		if (!s)
> +			return -1;
> +
> +		for (;;) {
> +			p = strchr(s, ',');
> +			if (p)
> +				*p = '\0';
> +
> +			if (!strcmp(s, "?")) {
> +				fprintf(stderr, "available registers: ");
> +				for (r = sample_reg_masks; r->name; r++) {
> +					fprintf(stderr, "%s ", r->name);
> +				}
> +				fputc('\n', stderr);
> +				/* just printing available regs */
> +				return -1;
> +			}
> +			for (r = sample_reg_masks; r->name; r++) {

the new 'I' is arch dependent, would this fail to link on
other archs besides x86_64 ?  haven't tried though

jirka
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v1 0/4] perf: improve script and record for iregs and brstack Stephane Eranian <eranian@google.com> - 2015-08-19 10:40 +0200
  [PATCH v1 1/4] perf script: enable printing of interrupted machine state Stephane Eranian <eranian@google.com> - 2015-08-19 10:40 +0200
  [PATCH v1 3/4] perf record: add ability to name registers to record Stephane Eranian <eranian@google.com> - 2015-08-19 10:50 +0200
    Re: [PATCH v1 3/4] perf record: add ability to name registers to  record Jiri Olsa <jolsa@redhat.com> - 2015-08-20 13:20 +0200
      Re: [PATCH v1 3/4] perf record: add ability to name registers to record Stephane Eranian <eranian@google.com> - 2015-08-20 22:10 +0200
  [PATCH v1 2/4] perf/x86: add list of register names Stephane Eranian <eranian@google.com> - 2015-08-19 10:50 +0200

csiph-web