Re: [Qemu-devel] [PATCH v2 01/12] Introduce TCGOpcode for fence instruction

2016-05-27 Thread Pranith Kumar
Sergey Fedorov writes: > On 27/05/16 04:00, Richard Henderson wrote: >> diff --git a/tcg/tcg-opc.h b/tcg/tcg-opc.h >> index 6d0410c..b772d90 100644 >> --- a/tcg/tcg-opc.h >> +++ b/tcg/tcg-opc.h >> @@ -42,6 +42,8 @@ DEF(br, 0, 0, 1, TCG_OPF_BB_END) >> # define IMPL64 TCG_OPF_64BIT >> #endif >>

Re: [Qemu-devel] [PATCH v2 01/12] Introduce TCGOpcode for fence instruction

2016-05-27 Thread Peter Maydell
On 27 May 2016 at 11:56, Lluís Vilanova wrote: > Richard Henderson writes: > >> This commit introduces the TCGOpcode for fence instruction. > [...] > > I think this patch sould also document the opcpde in "tcg/README". Yes, please. I have no idea what this thing is for, and neither this patch nor

Re: [Qemu-devel] [PATCH v2 01/12] Introduce TCGOpcode for fence instruction

2016-05-27 Thread Lluís Vilanova
Richard Henderson writes: > This commit introduces the TCGOpcode for fence instruction. [...] I think this patch sould also document the opcpde in "tcg/README". Cheers, Lluis

Re: [Qemu-devel] [PATCH v2 01/12] Introduce TCGOpcode for fence instruction

2016-05-27 Thread Sergey Fedorov
On 27/05/16 04:00, Richard Henderson wrote: > diff --git a/tcg/tcg-opc.h b/tcg/tcg-opc.h > index 6d0410c..b772d90 100644 > --- a/tcg/tcg-opc.h > +++ b/tcg/tcg-opc.h > @@ -42,6 +42,8 @@ DEF(br, 0, 0, 1, TCG_OPF_BB_END) > # define IMPL64 TCG_OPF_64BIT > #endif > > +DEF(fence, 0, 0, 0, TCG_OPF_SI

[Qemu-devel] [PATCH v2 01/12] Introduce TCGOpcode for fence instruction

2016-05-26 Thread Richard Henderson
This commit introduces the TCGOpcode for fence instruction. Signed-off-by: Pranith Kumar Message-Id: <20160524171856.1000-2-bobby.pr...@gmail.com> Signed-off-by: Richard Henderson --- tcg/tcg-op.c | 6 ++ tcg/tcg-op.h | 2 ++ tcg/tcg-opc.h | 2 ++ 3 files changed, 10 insertions(+) diff -