diff mbox series

[3/8] tcg: Add types for host vectors

Message ID 20170817230114.3655-4-richard.henderson@linaro.org
State Superseded
Headers show
Series TCG vectorization and example conversion | expand

Commit Message

Richard Henderson Aug. 17, 2017, 11:01 p.m. UTC
Nothing uses or enables them yet.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

---
 tcg/tcg.h | 5 +++++
 tcg/tcg.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

-- 
2.13.5

Comments

Philippe Mathieu-Daudé Aug. 17, 2017, 11:46 p.m. UTC | #1
On 08/17/2017 08:01 PM, Richard Henderson wrote:
> Nothing uses or enables them yet.

> 

> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>


Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>


> ---

>   tcg/tcg.h | 5 +++++

>   tcg/tcg.c | 2 +-

>   2 files changed, 6 insertions(+), 1 deletion(-)

> 

> diff --git a/tcg/tcg.h b/tcg/tcg.h

> index dd97095af5..1277caed3d 100644

> --- a/tcg/tcg.h

> +++ b/tcg/tcg.h

> @@ -256,6 +256,11 @@ typedef struct TCGPool {

>   typedef enum TCGType {

>       TCG_TYPE_I32,

>       TCG_TYPE_I64,

> +

> +    TCG_TYPE_V64,

> +    TCG_TYPE_V128,

> +    TCG_TYPE_V256,

> +

>       TCG_TYPE_COUNT, /* number of different types */

>   

>       /* An alias for the size of the host register.  */

> diff --git a/tcg/tcg.c b/tcg/tcg.c

> index 787c8ba0f7..ea78d47fad 100644

> --- a/tcg/tcg.c

> +++ b/tcg/tcg.c

> @@ -118,7 +118,7 @@ static TCGReg tcg_reg_alloc_new(TCGContext *s, TCGType t)

>   static bool tcg_out_ldst_finalize(TCGContext *s);

>   #endif

>   

> -static TCGRegSet tcg_target_available_regs[2];

> +static TCGRegSet tcg_target_available_regs[TCG_TYPE_COUNT];

>   static TCGRegSet tcg_target_call_clobber_regs;

>   

>   #if TCG_TARGET_INSN_UNIT_SIZE == 1

>
Alex Bennée Sept. 7, 2017, 6:18 p.m. UTC | #2
Richard Henderson <richard.henderson@linaro.org> writes:

> Nothing uses or enables them yet.

>

> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>


Reviewed-by: Alex Bennée <alex.bennee@linaro.org>


> ---

>  tcg/tcg.h | 5 +++++

>  tcg/tcg.c | 2 +-

>  2 files changed, 6 insertions(+), 1 deletion(-)

>

> diff --git a/tcg/tcg.h b/tcg/tcg.h

> index dd97095af5..1277caed3d 100644

> --- a/tcg/tcg.h

> +++ b/tcg/tcg.h

> @@ -256,6 +256,11 @@ typedef struct TCGPool {

>  typedef enum TCGType {

>      TCG_TYPE_I32,

>      TCG_TYPE_I64,

> +

> +    TCG_TYPE_V64,

> +    TCG_TYPE_V128,

> +    TCG_TYPE_V256,

> +

>      TCG_TYPE_COUNT, /* number of different types */

>

>      /* An alias for the size of the host register.  */

> diff --git a/tcg/tcg.c b/tcg/tcg.c

> index 787c8ba0f7..ea78d47fad 100644

> --- a/tcg/tcg.c

> +++ b/tcg/tcg.c

> @@ -118,7 +118,7 @@ static TCGReg tcg_reg_alloc_new(TCGContext *s, TCGType t)

>  static bool tcg_out_ldst_finalize(TCGContext *s);

>  #endif

>

> -static TCGRegSet tcg_target_available_regs[2];

> +static TCGRegSet tcg_target_available_regs[TCG_TYPE_COUNT];

>  static TCGRegSet tcg_target_call_clobber_regs;

>

>  #if TCG_TARGET_INSN_UNIT_SIZE == 1



--
Alex Bennée
diff mbox series

Patch

diff --git a/tcg/tcg.h b/tcg/tcg.h
index dd97095af5..1277caed3d 100644
--- a/tcg/tcg.h
+++ b/tcg/tcg.h
@@ -256,6 +256,11 @@  typedef struct TCGPool {
 typedef enum TCGType {
     TCG_TYPE_I32,
     TCG_TYPE_I64,
+
+    TCG_TYPE_V64,
+    TCG_TYPE_V128,
+    TCG_TYPE_V256,
+
     TCG_TYPE_COUNT, /* number of different types */
 
     /* An alias for the size of the host register.  */
diff --git a/tcg/tcg.c b/tcg/tcg.c
index 787c8ba0f7..ea78d47fad 100644
--- a/tcg/tcg.c
+++ b/tcg/tcg.c
@@ -118,7 +118,7 @@  static TCGReg tcg_reg_alloc_new(TCGContext *s, TCGType t)
 static bool tcg_out_ldst_finalize(TCGContext *s);
 #endif
 
-static TCGRegSet tcg_target_available_regs[2];
+static TCGRegSet tcg_target_available_regs[TCG_TYPE_COUNT];
 static TCGRegSet tcg_target_call_clobber_regs;
 
 #if TCG_TARGET_INSN_UNIT_SIZE == 1