qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [RFC PATCH v3 10/34] Hexagon (target/hexagon) instruction and packet


From: Taylor Simpson
Subject: RE: [RFC PATCH v3 10/34] Hexagon (target/hexagon) instruction and packet types
Date: Wed, 26 Aug 2020 23:52:12 +0000


> -----Original Message-----
> From: Richard Henderson <richard.henderson@linaro.org>
> Sent: Wednesday, August 26, 2020 8:22 AM
> To: Taylor Simpson <tsimpson@quicinc.com>; qemu-devel@nongnu.org
> Cc: ale@rev.ng; riku.voipio@iki.fi; laurent@vivier.eu; philmd@redhat.com;
> aleksandar.m.mail@gmail.com
> Subject: Re: [RFC PATCH v3 10/34] Hexagon (target/hexagon) instruction and
> packet types
>
> On 8/18/20 8:50 AM, Taylor Simpson wrote:
> > +struct Instruction {
> > +    semantic_insn_t generate;            /* pointer to genptr routine */
> > +    size1u_t regno[REG_OPERANDS_MAX];    /* reg operands including
> predicates */
> > +    size2u_t opcode;
> > +
> > +    size4u_t iclass:6;
> > +    size4u_t slot:3;
> > +    size4u_t part1:1;        /*
> > +                              * cmp-jumps are split into two insns.
> > +                              * set for the compare and clear for the jump
> > +                              */
> > +    size4u_t extension_valid:1;   /* Has a constant extender attached */
> > +    size4u_t which_extended:1;    /* If has an extender, which immediate
> */
> > +    size4u_t is_endloop:1;   /* This is an end of loop */
> > +    size4u_t new_value_producer_slot:4;
> > +    size4s_t immed[IMMEDS_MAX];    /* immediate field */
> > +};
>
> Is this an imported file or not?
>
> If it is not imported, I'd very much prefer that we stick to the stdint.h type
> names.

Agreed.  My goal is to stick with stdint.h types outside the imported 
directory.  I'll change this.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]