From: Julia Lawall <julia.lawall-L2FTfq7BK8M@public.gmane.org>
To: Frank Rowand <frowand.list-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: devicetree-compiler-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH 2/5] annotations: Add position information to various calls
Date: Wed, 10 Jan 2018 07:30:21 +0100 (CET) [thread overview]
Message-ID: <alpine.DEB.2.20.1801100730080.2157@hadrien> (raw)
In-Reply-To: <a0d1314a-8c1f-e553-dacc-62274c6b4cca-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
On Tue, 9 Jan 2018, Frank Rowand wrote:
> On 01/08/18 05:36, Julia Lawall wrote:
> > Builds on a patch proposed by Frank Rowand:
> >
> > https://www.mail-archive.com/devicetree-compiler-u79uwXL29TY76Z2rM5mHXA@public.gmane.org/msg00372.html
> >
> > Added NULL position argument in a few new places in dtc-parser.tab.c (1)
> > and livetree.c (3).
> >
> > For both '/' nodedef productions, include the '/' in the position.
> >
> > Signed-off-by: Julia Lawall <Julia.Lawall-L2FTfq7BK8M@public.gmane.org>
> > ---
> > dtc-parser.y | 23 +++++++++++++----------
> > dtc.c | 10 ++++++++++
> > dtc.h | 14 ++++++++++----
> > flattree.c | 2 +-
> > fstree.c | 8 +++++---
> > livetree.c | 43 ++++++++++++++++++++++++++++++-------------
> > srcpos.c | 35 +++++++++++++++++++++++++++++++++++
> > srcpos.h | 3 +++
> > treesource.c | 38 +++++++++++++++++++++++++++++++++-----
> > 9 files changed, 140 insertions(+), 36 deletions(-)
> >
> > diff --git a/dtc-parser.y b/dtc-parser.y
> > index 44af170..d668349 100644
> > --- a/dtc-parser.y
> > +++ b/dtc-parser.y
> > @@ -160,11 +160,11 @@ memreserve:
> > devicetree:
> > '/' nodedef
> > {
> > - $$ = name_node($2, "");
> > + $$ = name_node($2, "", &@$);
> > }
> > | devicetree '/' nodedef
> > {
> > - $$ = merge_nodes($1, $3);
> > + $$ = merge_nodes($1, $3, srcpos_combine(&@2, &@3));
> > }
> > | DT_REF nodedef
> > {
> > @@ -175,7 +175,10 @@ devicetree:
> > */
> > if (!($<flags>-1 & DTSF_PLUGIN))
> > ERROR(&@2, "Label or path %s not found", $1);
> > - $$ = add_orphan_node(name_node(build_node(NULL, NULL), ""), $2, $1);
> > + $$ = add_orphan_node(
> > + name_node(build_node(NULL, NULL), "",
> > + NULL),
> > + $2, $1, &@2);
> > }
> > | devicetree DT_LABEL DT_REF nodedef
> > {
> > @@ -183,7 +186,7 @@ devicetree:
> >
> > if (target) {
> > add_label(&target->labels, $2);
> > - merge_nodes(target, $4);
> > + merge_nodes(target, $4, &@4);
> > } else
> > ERROR(&@3, "Label or path %s not found", $3);
> > $$ = $1;
> > @@ -193,7 +196,7 @@ devicetree:
> > struct node *target = get_node_by_ref($1, $2);
> >
> > if (target) {
> > - merge_nodes(target, $3);
> > + merge_nodes(target, $3, &@3);
> > } else {
> > /*
> > * We rely on the rule being always:
> > @@ -201,7 +204,7 @@ devicetree:
> > * so $-1 is what we want (plugindecl)
> > */
> > if ($<flags>-1 & DTSF_PLUGIN)
> > - add_orphan_node($1, $3, $2);
> > + add_orphan_node($1, $3, $2, &@3);
> > else
> > ERROR(&@2, "Label or path %s not found", $2);
> > }
> > @@ -242,11 +245,11 @@ proplist:
> > propdef:
> > DT_PROPNODENAME '=' propdata ';'
> > {
> > - $$ = build_property($1, $3);
> > + $$ = build_property($1, $3, &@$);
> > }
> > | DT_PROPNODENAME ';'
> > {
> > - $$ = build_property($1, empty_data);
> > + $$ = build_property($1, empty_data, &@$);
> > }
> > | DT_DEL_PROP DT_PROPNODENAME ';'
> > {
> > @@ -517,11 +520,11 @@ subnodes:
> > subnode:
> > DT_PROPNODENAME nodedef
> > {
> > - $$ = name_node($2, $1);
> > + $$ = name_node($2, $1, &@$);
> > }
> > | DT_DEL_NODE DT_PROPNODENAME ';'
> > {
> > - $$ = name_node(build_node_delete(), $2);
> > + $$ = name_node(build_node_delete(), $2, &@$);
> > }
> > | DT_LABEL subnode
> > {
> > diff --git a/dtc.c b/dtc.c
> > index c36994e..371d04c 100644
> > --- a/dtc.c
> > +++ b/dtc.c
> > @@ -35,6 +35,7 @@ int phandle_format = PHANDLE_EPAPR; /* Use linux,phandle or phandle properties *
> > int generate_symbols; /* enable symbols & fixup support */
> > int generate_fixups; /* suppress generation of fixups on symbol support */
> > int auto_label_aliases; /* auto generate labels -> aliases */
> > +bool annotate = false; /* annotate .dts with input source location */
> >
> > static int is_power_of_2(int x)
> > {
> > @@ -83,6 +84,7 @@ static struct option const usage_long_opts[] = {
> > {"auto-alias", no_argument, NULL, 'A'},
> > {"help", no_argument, NULL, 'h'},
> > {"version", no_argument, NULL, 'v'},
> > + {"annotate", no_argument, NULL, 'T'},
>
> The "annotate" entry should be just before the "help" entry.
Yes, thanks.
julia
next prev parent reply other threads:[~2018-01-10 6:30 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-08 13:36 [PATCH 0/5] annotations Julia Lawall
[not found] ` <1515418607-26764-1-git-send-email-Julia.Lawall-L2FTfq7BK8M@public.gmane.org>
2018-01-08 13:36 ` [PATCH 1/5] annotations: Check for NULL pos Julia Lawall
[not found] ` <1515418607-26764-2-git-send-email-Julia.Lawall-L2FTfq7BK8M@public.gmane.org>
2018-01-09 10:04 ` David Gibson
[not found] ` <20180109100400.GK2131-K0bRW+63XPQe6aEkudXLsA@public.gmane.org>
2018-01-09 10:32 ` Julia Lawall
2018-01-10 6:08 ` Frank Rowand
[not found] ` <d7cae26a-a92f-6a39-61ca-05fee9509722-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2018-01-10 6:29 ` Julia Lawall
2018-01-08 13:36 ` [PATCH 2/5] annotations: Add position information to various calls Julia Lawall
[not found] ` <1515418607-26764-3-git-send-email-Julia.Lawall-L2FTfq7BK8M@public.gmane.org>
2018-01-08 22:29 ` Rob Herring
[not found] ` <CAL_JsqKaXY+K9LKH1qL1i-OhTjX1Kqvb6F3FJywwrPNZzLCz4A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2018-01-09 0:58 ` Frank Rowand
2018-01-09 6:16 ` Julia Lawall
2018-01-09 14:19 ` Rob Herring
2018-01-09 11:16 ` David Gibson
[not found] ` <20180109111614.GL2131-K0bRW+63XPQe6aEkudXLsA@public.gmane.org>
2018-01-09 12:27 ` Julia Lawall
2018-01-10 5:32 ` David Gibson
[not found] ` <20180110053255.GE19773-K0bRW+63XPQe6aEkudXLsA@public.gmane.org>
2018-01-10 6:26 ` Julia Lawall
2018-01-10 6:34 ` Julia Lawall
2018-01-11 15:21 ` Julia Lawall
2018-01-15 7:36 ` David Gibson
[not found] ` <20180115073609.GA26066-K0bRW+63XPQe6aEkudXLsA@public.gmane.org>
2018-01-15 9:28 ` Julia Lawall
2018-01-16 8:33 ` David Gibson
[not found] ` <20180116083334.GI30352-K0bRW+63XPQe6aEkudXLsA@public.gmane.org>
2018-01-16 8:37 ` Julia Lawall
2018-01-10 6:25 ` Frank Rowand
[not found] ` <a0d1314a-8c1f-e553-dacc-62274c6b4cca-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2018-01-10 6:29 ` Frank Rowand
[not found] ` <bd068783-e34a-293c-ff03-d6dd37bff219-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2018-01-10 6:31 ` Julia Lawall
2018-01-10 6:30 ` Julia Lawall [this message]
2018-01-08 13:36 ` [PATCH 3/5] annotations: short annotations Julia Lawall
[not found] ` <1515418607-26764-4-git-send-email-Julia.Lawall-L2FTfq7BK8M@public.gmane.org>
2018-01-09 11:21 ` David Gibson
[not found] ` <20180109112130.GM2131-K0bRW+63XPQe6aEkudXLsA@public.gmane.org>
2018-01-09 21:01 ` Frank Rowand
2018-01-08 13:36 ` [PATCH 4/5] annotations: shorten file names Julia Lawall
[not found] ` <1515418607-26764-5-git-send-email-Julia.Lawall-L2FTfq7BK8M@public.gmane.org>
2018-01-10 5:44 ` David Gibson
[not found] ` <20180110054410.GF19773-K0bRW+63XPQe6aEkudXLsA@public.gmane.org>
2018-01-10 6:28 ` Julia Lawall
2018-01-08 13:36 ` [PATCH 5/5] annotations: add --annotate-full option Julia Lawall
[not found] ` <1515418607-26764-6-git-send-email-Julia.Lawall-L2FTfq7BK8M@public.gmane.org>
2018-01-10 6:32 ` Frank Rowand
[not found] ` <e249131c-5a60-f17c-a0ad-3a9aa3db8570-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2018-01-10 6:36 ` Julia Lawall
2018-01-10 8:50 ` David Gibson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=alpine.DEB.2.20.1801100730080.2157@hadrien \
--to=julia.lawall-l2ftfq7bk8m@public.gmane.org \
--cc=devicetree-compiler-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=frowand.list-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).