diff mbox

[5/5] target/s390x: mark CSST, CSST2, FPSEH facilities as available

Message ID 20170615055356.20684-6-rth@twiddle.net (mailing list archive)
State New, archived
Headers show

Commit Message

Richard Henderson June 15, 2017, 5:53 a.m. UTC
Signed-off-by: Richard Henderson <rth@twiddle.net>
---
 target/s390x/cpu_models.c | 3 +++
 1 file changed, 3 insertions(+)

Comments

Thomas Huth June 15, 2017, 9:02 a.m. UTC | #1
On 15.06.2017 07:53, Richard Henderson wrote:
> Signed-off-by: Richard Henderson <rth@twiddle.net>
> ---
>  target/s390x/cpu_models.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/target/s390x/cpu_models.c b/target/s390x/cpu_models.c
> index c3a4ce6..703feca 100644
> --- a/target/s390x/cpu_models.c
> +++ b/target/s390x/cpu_models.c
> @@ -683,8 +683,11 @@ static void add_qemu_cpu_model_features(S390FeatBitmap fbm)
>          S390_FEAT_ETF2_ENH,
>          S390_FEAT_STORE_CLOCK_FAST,
>          S390_FEAT_MOVE_WITH_OPTIONAL_SPEC,
> +        S390_FEAT_COMPARE_AND_SWAP_AND_STORE,
> +        S390_FEAT_COMPARE_AND_SWAP_AND_STORE_2,

Do we really support the CSST instruction in TCG already (Opcode
0xc802)? I did not spot it in the source code yet...?

 Thomas
Richard Henderson June 15, 2017, 3:55 p.m. UTC | #2
On 06/15/2017 02:02 AM, Thomas Huth wrote:
> On 15.06.2017 07:53, Richard Henderson wrote:
>> Signed-off-by: Richard Henderson <rth@twiddle.net>
>> ---
>>   target/s390x/cpu_models.c | 3 +++
>>   1 file changed, 3 insertions(+)
>>
>> diff --git a/target/s390x/cpu_models.c b/target/s390x/cpu_models.c
>> index c3a4ce6..703feca 100644
>> --- a/target/s390x/cpu_models.c
>> +++ b/target/s390x/cpu_models.c
>> @@ -683,8 +683,11 @@ static void add_qemu_cpu_model_features(S390FeatBitmap fbm)
>>           S390_FEAT_ETF2_ENH,
>>           S390_FEAT_STORE_CLOCK_FAST,
>>           S390_FEAT_MOVE_WITH_OPTIONAL_SPEC,
>> +        S390_FEAT_COMPARE_AND_SWAP_AND_STORE,
>> +        S390_FEAT_COMPARE_AND_SWAP_AND_STORE_2,
> 
> Do we really support the CSST instruction in TCG already (Opcode
> 0xc802)? I did not spot it in the source code yet...?

Whoops.  No indeed.  I claim late-ness of the hour.

On the other hand, it shouldn't be difficult to implement...


r~
Aurelien Jarno June 15, 2017, 8:49 p.m. UTC | #3
On 2017-06-14 22:53, Richard Henderson wrote:
> Signed-off-by: Richard Henderson <rth@twiddle.net>
> ---
>  target/s390x/cpu_models.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/target/s390x/cpu_models.c b/target/s390x/cpu_models.c
> index c3a4ce6..703feca 100644
> --- a/target/s390x/cpu_models.c
> +++ b/target/s390x/cpu_models.c
> @@ -683,8 +683,11 @@ static void add_qemu_cpu_model_features(S390FeatBitmap fbm)
>          S390_FEAT_ETF2_ENH,
>          S390_FEAT_STORE_CLOCK_FAST,
>          S390_FEAT_MOVE_WITH_OPTIONAL_SPEC,
> +        S390_FEAT_COMPARE_AND_SWAP_AND_STORE,
> +        S390_FEAT_COMPARE_AND_SWAP_AND_STORE_2,
>          S390_FEAT_GENERAL_INSTRUCTIONS_EXT,
>          S390_FEAT_EXECUTE_EXT,
> +        S390_FEAT_FLOATING_POINT_SUPPPORT_ENH,

Theoretically the floating-point-support-enhancement facilities include
the DFP rounding facility. Given We don't implement the DFP facility I
guess this can be ignored.
Richard Henderson June 15, 2017, 9:10 p.m. UTC | #4
On 06/15/2017 01:49 PM, Aurelien Jarno wrote:
>> +        S390_FEAT_FLOATING_POINT_SUPPPORT_ENH,
> 
> Theoretically the floating-point-support-enhancement facilities include
> the DFP rounding facility. Given We don't implement the DFP facility I
> guess this can be ignored.

We *do* implement the one instruction in DFP-rounding-facility: SRNMT.


r~
Aurelien Jarno June 15, 2017, 9:19 p.m. UTC | #5
On 2017-06-15 14:10, Richard Henderson wrote:
> On 06/15/2017 01:49 PM, Aurelien Jarno wrote:
> > > +        S390_FEAT_FLOATING_POINT_SUPPPORT_ENH,
> > 
> > Theoretically the floating-point-support-enhancement facilities include
> > the DFP rounding facility. Given We don't implement the DFP facility I
> > guess this can be ignored.
> 
> We *do* implement the one instruction in DFP-rounding-facility: SRNMT.
> 

Ah ok, nevermind then. The DFP support is in better state than I
thought ;-).
diff mbox

Patch

diff --git a/target/s390x/cpu_models.c b/target/s390x/cpu_models.c
index c3a4ce6..703feca 100644
--- a/target/s390x/cpu_models.c
+++ b/target/s390x/cpu_models.c
@@ -683,8 +683,11 @@  static void add_qemu_cpu_model_features(S390FeatBitmap fbm)
         S390_FEAT_ETF2_ENH,
         S390_FEAT_STORE_CLOCK_FAST,
         S390_FEAT_MOVE_WITH_OPTIONAL_SPEC,
+        S390_FEAT_COMPARE_AND_SWAP_AND_STORE,
+        S390_FEAT_COMPARE_AND_SWAP_AND_STORE_2,
         S390_FEAT_GENERAL_INSTRUCTIONS_EXT,
         S390_FEAT_EXECUTE_EXT,
+        S390_FEAT_FLOATING_POINT_SUPPPORT_ENH,
         S390_FEAT_STFLE_45,
     };
     int i;