Re: [RESEND] target/riscv: fix RV128 lq encoding

2022-01-20 Thread Christoph Müllner
Hi Frédéric,

you are right, I misunderstood the "LQ is added to the MISC-MEM major
opcode" part of the spec.
I saw the encoding conflict with the CBO instructions and thought of a
bug in qemu's LQ encoding.
Philipp already highlighted that cbo.* instructions are actually LQ with rd=0.

Thanks,
Christoph

On Wed, Jan 19, 2022 at 8:45 PM Frédéric Pétrot
 wrote:
>
> Le 18/01/2022 à 17:32, Christoph Muellner a écrit :
> > If LQ has func3==010 and is located in the MISC-MEM opcodes,
> > then it conflicts with the CBO opcode space.
> > However, since LQ is specified as: "LQ is added to the MISC-MEM major
> > opcode", we have an implementation bug, because 'major opcode'
> > refers to func3, which must be 111.
> >
> > This results in the following instruction encodings:
> >
> > lq  .111 .000
> > cbo_clean  0001 .010 
> > cbo_flush  0010 .010 
> > cbo_inval   .010 
> > cbo_zero   0100 .010 
> >   ^^^-func3
> >^^^-opcode
>
>Hello Christoph,
>I see page table 26.1 of the last riscv-isa-manual.pdf what is called major
>opcodes in my understanding, and MISC-MEM is one of them with value 
> 00_111_11.
>The value for func3 that I chose comes from
>https://github.com/michaeljclark/riscv-meta/blob/master/opcodes
>which admittedly is out-dated, but I don't see any particular value for
>LQ/SQ in the new spec either (I mean, riscv-isa-manual.pdf, any pointer we
>could refer to ?).
>I have nothing against changing the opcode, but then we need to change
>disas/riscv.c which also uses the previous opcode to dump instructions when
>running with -d in_asm.
>
>Frédéric
> >
> > Signed-off-by: Christoph Muellner 
> > ---
> >   target/riscv/insn32.decode | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/target/riscv/insn32.decode b/target/riscv/insn32.decode
> > index 5bbedc254c..d3f798ca10 100644
> > --- a/target/riscv/insn32.decode
> > +++ b/target/riscv/insn32.decode
> > @@ -168,7 +168,7 @@ sraw 010 .  . 101 . 0111011 @r
> >
> >   # *** RV128I Base Instruction Set (in addition to RV64I) ***
> >   ldu     . 111 . 011 @i
> > -lq      . 010 . 000 @i
> > +lq      . 111 . 000 @i
> >   sq      . 100 . 0100011 @s
> >   addid  .  000 . 1011011 @i
> >   sllid00 ..  . 001 . 1011011 @sh6
>
> --
> +---+
> | Frédéric Pétrot, Pr. Grenoble INP-Ensimag/TIMA,   Ensimag deputy director |
> | Mob/Pho: +33 6 74 57 99 65/+33 4 76 57 48 70  Ad augusta  per angusta |
> | http://tima.univ-grenoble-alpes.fr frederic.pet...@univ-grenoble-alpes.fr |
> +---+



Re: [RESEND] target/riscv: fix RV128 lq encoding

2022-01-19 Thread Philipp Tomsich
The cbo.* mnemonics share their opcode space with lq for those cases where
rd == 0 ("brownfield" encodings).
"Major opcode" refers to inst[6:0] according to chapter 26.

In overlapping multi-group syntax, this would look like:

> {
>
>   # *** RV32 Zicbom Standard Extension ***
>
>   cbo_clean  000 1 . 010 0 000 @sfence_vm
>
>   cbo_flush  000 00010 . 010 0 000 @sfence_vm
>
>   cbo_inval  000 0 . 010 0 000 @sfence_vm
>
>
>   # *** RV32 Zicboz Standard Extension ***
>
>   cbo_zero   000 00100 . 010 0 000 @sfence_vm
>
>
>   # *** RVI128 lq ***
>
>   lq      . 010 . 000 @i
>
> }
>

Instead of using a multigroup here, I would recommend that you take a look
at https://patchwork.kernel.org/project/qemu-devel/list/?series=605340
where we have added a table of optional decoders — this could be used to
split these off into separate decoders that are run before the regular
decoder, if & only if Zicboc and/or Zicboz are enabled.

Cheers,
Philipp.


On Tue, 18 Jan 2022 at 17:32, Christoph Muellner 
wrote:

> If LQ has func3==010 and is located in the MISC-MEM opcodes,
> then it conflicts with the CBO opcode space.
> However, since LQ is specified as: "LQ is added to the MISC-MEM major
> opcode", we have an implementation bug, because 'major opcode'
> refers to func3, which must be 111.
>
> This results in the following instruction encodings:
>
> lq  .111 .000
> cbo_clean  0001 .010 
> cbo_flush  0010 .010 
> cbo_inval   .010 
> cbo_zero   0100 .010 
>  ^^^-func3
>   ^^^-opcode
>
> Signed-off-by: Christoph Muellner 
> ---
>  target/riscv/insn32.decode | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/target/riscv/insn32.decode b/target/riscv/insn32.decode
> index 5bbedc254c..d3f798ca10 100644
> --- a/target/riscv/insn32.decode
> +++ b/target/riscv/insn32.decode
> @@ -168,7 +168,7 @@ sraw 010 .  . 101 . 0111011 @r
>
>  # *** RV128I Base Instruction Set (in addition to RV64I) ***
>  ldu     . 111 . 011 @i
> -lq      . 010 . 000 @i
> +lq      . 111 . 000 @i
>  sq      . 100 . 0100011 @s
>  addid  .  000 . 1011011 @i
>  sllid00 ..  . 001 . 1011011 @sh6
> --
> 2.34.1
>
>


Re: [RESEND] target/riscv: fix RV128 lq encoding

2022-01-19 Thread Frédéric Pétrot

Le 18/01/2022 à 17:32, Christoph Muellner a écrit :

If LQ has func3==010 and is located in the MISC-MEM opcodes,
then it conflicts with the CBO opcode space.
However, since LQ is specified as: "LQ is added to the MISC-MEM major
opcode", we have an implementation bug, because 'major opcode'
refers to func3, which must be 111.

This results in the following instruction encodings:

lq  .111 .000
cbo_clean  0001 .010 
cbo_flush  0010 .010 
cbo_inval   .010 
cbo_zero   0100 .010 
  ^^^-func3
   ^^^-opcode


  Hello Christoph,
  I see page table 26.1 of the last riscv-isa-manual.pdf what is called major
  opcodes in my understanding, and MISC-MEM is one of them with value 00_111_11.
  The value for func3 that I chose comes from
  https://github.com/michaeljclark/riscv-meta/blob/master/opcodes
  which admittedly is out-dated, but I don't see any particular value for
  LQ/SQ in the new spec either (I mean, riscv-isa-manual.pdf, any pointer we
  could refer to ?).
  I have nothing against changing the opcode, but then we need to change
  disas/riscv.c which also uses the previous opcode to dump instructions when
  running with -d in_asm.

  Frédéric


Signed-off-by: Christoph Muellner 
---
  target/riscv/insn32.decode | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/riscv/insn32.decode b/target/riscv/insn32.decode
index 5bbedc254c..d3f798ca10 100644
--- a/target/riscv/insn32.decode
+++ b/target/riscv/insn32.decode
@@ -168,7 +168,7 @@ sraw 010 .  . 101 . 0111011 @r
  
  # *** RV128I Base Instruction Set (in addition to RV64I) ***

  ldu     . 111 . 011 @i
-lq      . 010 . 000 @i
+lq      . 111 . 000 @i
  sq      . 100 . 0100011 @s
  addid  .  000 . 1011011 @i
  sllid00 ..  . 001 . 1011011 @sh6


--
+---+
| Frédéric Pétrot, Pr. Grenoble INP-Ensimag/TIMA,   Ensimag deputy director |
| Mob/Pho: +33 6 74 57 99 65/+33 4 76 57 48 70  Ad augusta  per angusta |
| http://tima.univ-grenoble-alpes.fr frederic.pet...@univ-grenoble-alpes.fr |
+---+



[RESEND] target/riscv: fix RV128 lq encoding

2022-01-18 Thread Christoph Muellner
If LQ has func3==010 and is located in the MISC-MEM opcodes,
then it conflicts with the CBO opcode space.
However, since LQ is specified as: "LQ is added to the MISC-MEM major
opcode", we have an implementation bug, because 'major opcode'
refers to func3, which must be 111.

This results in the following instruction encodings:

lq  .111 .000
cbo_clean  0001 .010 
cbo_flush  0010 .010 
cbo_inval   .010 
cbo_zero   0100 .010 
 ^^^-func3
  ^^^-opcode

Signed-off-by: Christoph Muellner 
---
 target/riscv/insn32.decode | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/riscv/insn32.decode b/target/riscv/insn32.decode
index 5bbedc254c..d3f798ca10 100644
--- a/target/riscv/insn32.decode
+++ b/target/riscv/insn32.decode
@@ -168,7 +168,7 @@ sraw 010 .  . 101 . 0111011 @r
 
 # *** RV128I Base Instruction Set (in addition to RV64I) ***
 ldu     . 111 . 011 @i
-lq      . 010 . 000 @i
+lq      . 111 . 000 @i
 sq      . 100 . 0100011 @s
 addid  .  000 . 1011011 @i
 sllid00 ..  . 001 . 1011011 @sh6
-- 
2.34.1