Re: [PATCH v4 09/12] target/hexagon: import lexer for idef-parser

2021-04-29 Thread Paolo Montesel
dhat.com; > >richard.hender...@linaro.org; Alessandro Di Federico > >Subject: Re: [PATCH v4 09/12] target/hexagon: import lexer for idef-parser > > > >Thanks for spotting this. It's actually a bug in the lexer. The token > >`{IMM_ID}"iV"` didn't initial

RE: [PATCH v4 09/12] target/hexagon: import lexer for idef-parser

2021-04-28 Thread Taylor Simpson
>From: Paolo Montesel >Sent: Wednesday, April 28, 2021 5:25 AM >To: Taylor Simpson >Cc: Alessandro Di Federico ; qemu-devel@nongnu.org; Brian >Cain ; ni...@rev.ng; >phi...@redhat.com; >richard.hender...@linaro.org; Alessandro Di Federico >Subject: Re: [PATCH

Re: [PATCH v4 09/12] target/hexagon: import lexer for idef-parser

2021-04-28 Thread Paolo Montesel
> > > +/** > > + * Semantic record of the IMM token, identifying an immediate constant > > + */ > > +typedef struct HexImm { > > +union { > > +char id;/**< Identifier of the immediate > */ > > +uint64_t value; /**< Immediate value (for VALUE type > immediate

RE: [PATCH v4 09/12] target/hexagon: import lexer for idef-parser

2021-04-26 Thread Taylor Simpson
> Subject: [PATCH v4 09/12] target/hexagon: import lexer for idef-parser > +/** > + * Semantic record of the IMM token, identifying an immediate constant > + */ > +typedef struct HexImm { > +union { > +char id;/**< Identifier of the immediate

[PATCH v4 09/12] target/hexagon: import lexer for idef-parser

2021-04-15 Thread Alessandro Di Federico via
From: Paolo Montesel Signed-off-by: Alessandro Di Federico Signed-off-by: Paolo Montesel --- target/hexagon/idef-parser/idef-parser.h | 254 target/hexagon/idef-parser/idef-parser.lex| 611 ++ target/hexagon/meson.build| 4 + tests/docker