[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 08/19] target/ppc: Introduce REQUIRE_FPU
From: |
David Gibson |
Subject: |
Re: [PATCH 08/19] target/ppc: Introduce REQUIRE_FPU |
Date: |
Wed, 25 Aug 2021 13:46:34 +1000 |
On Tue, Aug 24, 2021 at 11:27:19AM -0300, Luis Pires wrote:
> From: Fernando Valle <fernando.valle@eldorado.org.br>
>
> Signed-off-by: Fernando Valle <fernando.valle@eldorado.org.br>
> Signed-off-by: Luis Pires <luis.pires@eldorado.org.br>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
> ---
> target/ppc/translate.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/target/ppc/translate.c b/target/ppc/translate.c
> index 4749ecdaa9..5489b4b6e0 100644
> --- a/target/ppc/translate.c
> +++ b/target/ppc/translate.c
> @@ -7461,6 +7461,14 @@ static int times_4(DisasContext *ctx, int x)
> } \
> } while (0)
>
> +#define REQUIRE_FPU(ctx) \
> + do { \
> + if (unlikely(!(ctx)->fpu_enabled)) { \
> + gen_exception((ctx), POWERPC_EXCP_FPU); \
> + return true; \
> + } \
> + } while (0)
> +
> /*
> * Helpers for implementing sets of trans_* functions.
> * Defer the implementation of NAME to FUNC, with optional extra arguments.
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
signature.asc
Description: PGP signature
- [PATCH 02/19] host-utils: move abs64() to host-utils, (continued)
- [PATCH 02/19] host-utils: move abs64() to host-utils, Luis Pires, 2021/08/24
- [PATCH 03/19] host-utils: move checks out of divu128/divs128, Luis Pires, 2021/08/24
- [PATCH 04/19] host-utils: add 128-bit quotient support to divu128/divs128, Luis Pires, 2021/08/24
- [PATCH 05/19] host-utils: add unit tests for divu128/divs128, Luis Pires, 2021/08/24
- [PATCH 06/19] libdecnumber: introduce decNumberFrom[U]Int128, Luis Pires, 2021/08/24
- [PATCH 07/19] target/ppc: Move REQUIRE_ALTIVEC/VECTOR to translate.c, Luis Pires, 2021/08/24
- [PATCH 08/19] target/ppc: Introduce REQUIRE_FPU, Luis Pires, 2021/08/24
- Re: [PATCH 08/19] target/ppc: Introduce REQUIRE_FPU,
David Gibson <=
- [PATCH 09/19] target/ppc: Implement DCFFIXQQ, Luis Pires, 2021/08/24
- [PATCH 10/19] host-utils: Introduce mulu128, Luis Pires, 2021/08/24
- [PATCH 11/19] libdecnumber: Introduce decNumberIntegralToInt128, Luis Pires, 2021/08/24
- [PATCH 12/19] target/ppc: Implement DCTFIXQQ, Luis Pires, 2021/08/24
- [PATCH 13/19] target/ppc: Move dtstdc[q]/dtstdg[q] to decodetree, Luis Pires, 2021/08/24
- [PATCH 14/19] target/ppc: Move d{add, sub, mul, div, iex}[q] to decodetree, Luis Pires, 2021/08/24
- [PATCH 15/19] target/ppc: Move dcmp{u, o}[q], dts{tex, tsf, tsfi}[q] to decodetree, Luis Pires, 2021/08/24
- [PATCH 16/19] target/ppc: Move dquai[q], drint{x,n}[q] to decodetree, Luis Pires, 2021/08/24