* [PATCH] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
[not found] <9ea38d87-180f-46b5-a723-45061680980f@linux.vnet.ibm.com>
@ 2024-02-23 9:34 ` jeevitha
2024-03-07 15:27 ` [PING^1][PATCH] " jeevitha
2024-03-18 14:36 ` [PATCH] " Segher Boessenkool
0 siblings, 2 replies; 19+ messages in thread
From: jeevitha @ 2024-02-23 9:34 UTC (permalink / raw)
To: GCC Patches, Kewen.Lin, Segher Boessenkool; +Cc: Peter Bergner
Hi All,
The following patch has been bootstrapped and regtested on powerpc64le-linux.
PTImode attribute assists in generating even/odd register pairs on 128 bits.
When the user specifies PTImode as an attribute, it breaks because there is no
internal type to handle this mode . We have created a tree node with dummy type
to handle PTImode. We are not documenting this dummy type since users are not
allowed to use this type externally.
2024-02-23 Jeevitha Palanisamy <jeevitha@linux.ibm.com>
gcc/
PR target/106895
* config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add fields
to hold PTImode type.
* config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Add node
for PTImode type.
gcc/testsuite/
PR target/106895
* gcc.target/powerpc/pr106895.c: New testcase.
diff --git a/gcc/config/rs6000/rs6000-builtin.cc b/gcc/config/rs6000/rs6000-builtin.cc
index 6698274031b..f553c72779e 100644
--- a/gcc/config/rs6000/rs6000-builtin.cc
+++ b/gcc/config/rs6000/rs6000-builtin.cc
@@ -756,6 +756,15 @@ rs6000_init_builtins (void)
else
ieee128_float_type_node = NULL_TREE;
+ /* PTImode to get even/odd register pairs. */
+ intPTI_type_internal_node = make_node(INTEGER_TYPE);
+ TYPE_PRECISION (intPTI_type_internal_node) = GET_MODE_BITSIZE (PTImode);
+ layout_type (intPTI_type_internal_node);
+ SET_TYPE_MODE (intPTI_type_internal_node, PTImode);
+ t = build_qualified_type (intPTI_type_internal_node, TYPE_QUAL_CONST);
+ lang_hooks.types.register_builtin_type (intPTI_type_internal_node,
+ "__dummypti");
+
/* Vector pair and vector quad support. */
vector_pair_type_node = make_node (OPAQUE_TYPE);
SET_TYPE_MODE (vector_pair_type_node, OOmode);
diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h
index 2291fe8d3a3..77bb937a28b 100644
--- a/gcc/config/rs6000/rs6000.h
+++ b/gcc/config/rs6000/rs6000.h
@@ -2304,6 +2304,7 @@ enum rs6000_builtin_type_index
RS6000_BTI_ptr_vector_quad,
RS6000_BTI_ptr_long_long,
RS6000_BTI_ptr_long_long_unsigned,
+ RS6000_BTI_PTI,
RS6000_BTI_MAX
};
@@ -2348,6 +2349,7 @@ enum rs6000_builtin_type_index
#define uintDI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTDI])
#define intTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTTI])
#define uintTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTTI])
+#define intPTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_PTI])
#define float_type_internal_node (rs6000_builtin_types[RS6000_BTI_float])
#define double_type_internal_node (rs6000_builtin_types[RS6000_BTI_double])
#define long_double_type_internal_node (rs6000_builtin_types[RS6000_BTI_long_double])
diff --git a/gcc/testsuite/gcc.target/powerpc/pr106895.c b/gcc/testsuite/gcc.target/powerpc/pr106895.c
new file mode 100644
index 00000000000..56547b7fa9d
--- /dev/null
+++ b/gcc/testsuite/gcc.target/powerpc/pr106895.c
@@ -0,0 +1,15 @@
+/* PR target/106895 */
+/* { dg-require-effective-target int128 } */
+/* { dg-options "-O2" } */
+
+/* Verify the following generates even/odd register pairs. */
+
+typedef __int128 pti __attribute__((mode(PTI)));
+
+void
+set128 (pti val, pti *mem)
+{
+ asm("stq %1,%0" : "=m"(*mem) : "r"(val));
+}
+
+/* { dg-final { scan-assembler "stq \[123\]?\[02468\]" } } */
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PING^1][PATCH] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2024-02-23 9:34 ` [PATCH] rs6000: Fix issue in specifying PTImode as an attribute [PR106895] jeevitha
@ 2024-03-07 15:27 ` jeevitha
2024-03-21 12:51 ` [PATCH v2] " jeevitha
2024-03-18 14:36 ` [PATCH] " Segher Boessenkool
1 sibling, 1 reply; 19+ messages in thread
From: jeevitha @ 2024-03-07 15:27 UTC (permalink / raw)
To: GCC Patches, Kewen.Lin, Segher Boessenkool; +Cc: Peter Bergner
Ping!
please review.
Thanks & Regards
Jeevitha
On 23/02/24 3:04 pm, jeevitha wrote:
> Hi All,
>
> The following patch has been bootstrapped and regtested on powerpc64le-linux.
>
> PTImode attribute assists in generating even/odd register pairs on 128 bits.
> When the user specifies PTImode as an attribute, it breaks because there is no
> internal type to handle this mode . We have created a tree node with dummy type
> to handle PTImode. We are not documenting this dummy type since users are not
> allowed to use this type externally.
>
> 2024-02-23 Jeevitha Palanisamy <jeevitha@linux.ibm.com>
>
> gcc/
> PR target/106895
> * config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add fields
> to hold PTImode type.
> * config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Add node
> for PTImode type.
>
> gcc/testsuite/
> PR target/106895
> * gcc.target/powerpc/pr106895.c: New testcase.
>
> diff --git a/gcc/config/rs6000/rs6000-builtin.cc b/gcc/config/rs6000/rs6000-builtin.cc
> index 6698274031b..f553c72779e 100644
> --- a/gcc/config/rs6000/rs6000-builtin.cc
> +++ b/gcc/config/rs6000/rs6000-builtin.cc
> @@ -756,6 +756,15 @@ rs6000_init_builtins (void)
> else
> ieee128_float_type_node = NULL_TREE;
>
> + /* PTImode to get even/odd register pairs. */
> + intPTI_type_internal_node = make_node(INTEGER_TYPE);
> + TYPE_PRECISION (intPTI_type_internal_node) = GET_MODE_BITSIZE (PTImode);
> + layout_type (intPTI_type_internal_node);
> + SET_TYPE_MODE (intPTI_type_internal_node, PTImode);
> + t = build_qualified_type (intPTI_type_internal_node, TYPE_QUAL_CONST);
> + lang_hooks.types.register_builtin_type (intPTI_type_internal_node,
> + "__dummypti");
> +
> /* Vector pair and vector quad support. */
> vector_pair_type_node = make_node (OPAQUE_TYPE);
> SET_TYPE_MODE (vector_pair_type_node, OOmode);
> diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h
> index 2291fe8d3a3..77bb937a28b 100644
> --- a/gcc/config/rs6000/rs6000.h
> +++ b/gcc/config/rs6000/rs6000.h
> @@ -2304,6 +2304,7 @@ enum rs6000_builtin_type_index
> RS6000_BTI_ptr_vector_quad,
> RS6000_BTI_ptr_long_long,
> RS6000_BTI_ptr_long_long_unsigned,
> + RS6000_BTI_PTI,
> RS6000_BTI_MAX
> };
>
> @@ -2348,6 +2349,7 @@ enum rs6000_builtin_type_index
> #define uintDI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTDI])
> #define intTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTTI])
> #define uintTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTTI])
> +#define intPTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_PTI])
> #define float_type_internal_node (rs6000_builtin_types[RS6000_BTI_float])
> #define double_type_internal_node (rs6000_builtin_types[RS6000_BTI_double])
> #define long_double_type_internal_node (rs6000_builtin_types[RS6000_BTI_long_double])
> diff --git a/gcc/testsuite/gcc.target/powerpc/pr106895.c b/gcc/testsuite/gcc.target/powerpc/pr106895.c
> new file mode 100644
> index 00000000000..56547b7fa9d
> --- /dev/null
> +++ b/gcc/testsuite/gcc.target/powerpc/pr106895.c
> @@ -0,0 +1,15 @@
> +/* PR target/106895 */
> +/* { dg-require-effective-target int128 } */
> +/* { dg-options "-O2" } */
> +
> +/* Verify the following generates even/odd register pairs. */
> +
> +typedef __int128 pti __attribute__((mode(PTI)));
> +
> +void
> +set128 (pti val, pti *mem)
> +{
> + asm("stq %1,%0" : "=m"(*mem) : "r"(val));
> +}
> +
> +/* { dg-final { scan-assembler "stq \[123\]?\[02468\]" } } */
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2024-02-23 9:34 ` [PATCH] rs6000: Fix issue in specifying PTImode as an attribute [PR106895] jeevitha
2024-03-07 15:27 ` [PING^1][PATCH] " jeevitha
@ 2024-03-18 14:36 ` Segher Boessenkool
2024-03-18 17:35 ` Peter Bergner
1 sibling, 1 reply; 19+ messages in thread
From: Segher Boessenkool @ 2024-03-18 14:36 UTC (permalink / raw)
To: jeevitha; +Cc: GCC Patches, Kewen.Lin, Peter Bergner
Hi!
On Fri, Feb 23, 2024 at 03:04:13PM +0530, jeevitha wrote:
> PTImode attribute assists in generating even/odd register pairs on 128 bits.
It is a mode, not an attribute. Attributes are on declarations, while
modes are on a much more fundamental level (every value has a mode, in
GCC!)
> When the user specifies PTImode as an attribute, it breaks because there is no
> internal type to handle this mode . We have created a tree node with dummy type
> to handle PTImode.
You are talking about the mode attribute. Aha.
This attribute says the mode of the datum is something specific; it is
the only way a user can specify the mode directly. Not something you
want to use normally, but it's a nice escape hatch (like here).
> We are not documenting this dummy type since users are not
> allowed to use this type externally.
Not sure what this is meant to mean? What does "allowed to" mean, even?
We do not forbid people from doing anything (we can discourage them
though). Or dso you mean something just doesn't work?
> gcc/
> PR target/106895
> * config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add fields
> to hold PTImode type.
An enum does not have fields. What do you actually mean?
> --- a/gcc/config/rs6000/rs6000.h
> +++ b/gcc/config/rs6000/rs6000.h
> @@ -2304,6 +2304,7 @@ enum rs6000_builtin_type_index
> RS6000_BTI_ptr_vector_quad,
> RS6000_BTI_ptr_long_long,
> RS6000_BTI_ptr_long_long_unsigned,
> + RS6000_BTI_PTI,
Please call it RS6000_BTI_INTPTI, to be more in line with the naming of
other things.
With that fixed it should be good. Please repost with a good commit
comment and changelog :-)
Thanks,
Segher
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2024-03-18 14:36 ` [PATCH] " Segher Boessenkool
@ 2024-03-18 17:35 ` Peter Bergner
0 siblings, 0 replies; 19+ messages in thread
From: Peter Bergner @ 2024-03-18 17:35 UTC (permalink / raw)
To: Segher Boessenkool, P Jeevitha; +Cc: GCC Patches, Kewen.Lin
On 3/18/24 9:36 AM, Segher Boessenkool wrote:
> Hi!
>
> On Fri, Feb 23, 2024 at 03:04:13PM +0530, jeevitha wrote:
>> PTImode attribute assists in generating even/odd register pairs on 128 bits.
>
> It is a mode, not an attribute. Attributes are on declarations, while
> modes are on a much more fundamental level (every value has a mode, in
> GCC!)
>
>> When the user specifies PTImode as an attribute, it breaks because there is no
>> internal type to handle this mode . We have created a tree node with dummy type
>> to handle PTImode.
>
> You are talking about the mode attribute. Aha.
Correct.
>> We are not documenting this dummy type since users are not
>> allowed to use this type externally.
>
> Not sure what this is meant to mean? What does "allowed to" mean, even?
> We do not forbid people from doing anything (we can discourage them
> though). Or dso you mean something just doesn't work?
The use case is the Linux kernel will use the mode attribute as shown in
the test case. The type she created was needed for the code to "work"
internally, but we don't want to advertise it to users, so that's why we're
not documenting it. Yes, pesky users who go digging through the GCC source
could find it and use it, but we don't want to encourage them. :-)
>> PR target/106895
>> * config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add fields
>> to hold PTImode type.
>
> An enum does not have fields. What do you actually mean?
Yeah, as per your follow-on comment, I think a simple "Add RS6000_BTI_INTPTI."
should suffice.
Peter
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2024-03-07 15:27 ` [PING^1][PATCH] " jeevitha
@ 2024-03-21 12:51 ` jeevitha
2024-04-17 9:14 ` [PING^1][PATCH " jeevitha
` (4 more replies)
0 siblings, 5 replies; 19+ messages in thread
From: jeevitha @ 2024-03-21 12:51 UTC (permalink / raw)
To: GCC Patches, Kewen.Lin, Segher Boessenkool; +Cc: Peter Bergner
Hi All,
The following patch has been bootstrapped and regtested on powerpc64le-linux.
PTImode assists in generating even/odd register pairs on 128 bits. When the user
specifies PTImode as an attribute, it breaks because there is no internal type
to handle this mode. To address this, we have created a tree node with dummy type
to handle PTImode. We are not documenting this dummy type since users are not
allowed to use this type externally.
2024-03-21 Jeevitha Palanisamy <jeevitha@linux.ibm.com>
gcc/
PR target/110411
* config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add
RS6000_BTI_INTPTI.
* config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Add node
for PTImode type.
gcc/testsuite/
PR target/106895
* gcc.target/powerpc/pr106895.c: New testcase.
diff --git a/gcc/config/rs6000/rs6000-builtin.cc b/gcc/config/rs6000/rs6000-builtin.cc
index 6698274031b..f553c72779e 100644
--- a/gcc/config/rs6000/rs6000-builtin.cc
+++ b/gcc/config/rs6000/rs6000-builtin.cc
@@ -756,6 +756,15 @@ rs6000_init_builtins (void)
else
ieee128_float_type_node = NULL_TREE;
+ /* PTImode to get even/odd register pairs. */
+ intPTI_type_internal_node = make_node(INTEGER_TYPE);
+ TYPE_PRECISION (intPTI_type_internal_node) = GET_MODE_BITSIZE (PTImode);
+ layout_type (intPTI_type_internal_node);
+ SET_TYPE_MODE (intPTI_type_internal_node, PTImode);
+ t = build_qualified_type (intPTI_type_internal_node, TYPE_QUAL_CONST);
+ lang_hooks.types.register_builtin_type (intPTI_type_internal_node,
+ "__dummypti");
+
/* Vector pair and vector quad support. */
vector_pair_type_node = make_node (OPAQUE_TYPE);
SET_TYPE_MODE (vector_pair_type_node, OOmode);
diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h
index 68bc45d65ba..b6078077b20 100644
--- a/gcc/config/rs6000/rs6000.h
+++ b/gcc/config/rs6000/rs6000.h
@@ -2302,6 +2302,7 @@ enum rs6000_builtin_type_index
RS6000_BTI_ptr_vector_quad,
RS6000_BTI_ptr_long_long,
RS6000_BTI_ptr_long_long_unsigned,
+ RS6000_BTI_INTPTI,
RS6000_BTI_MAX
};
@@ -2346,6 +2347,7 @@ enum rs6000_builtin_type_index
#define uintDI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTDI])
#define intTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTTI])
#define uintTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTTI])
+#define intPTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTPTI])
#define float_type_internal_node (rs6000_builtin_types[RS6000_BTI_float])
#define double_type_internal_node (rs6000_builtin_types[RS6000_BTI_double])
#define long_double_type_internal_node (rs6000_builtin_types[RS6000_BTI_long_double])
diff --git a/gcc/testsuite/gcc.target/powerpc/pr106895.c b/gcc/testsuite/gcc.target/powerpc/pr106895.c
new file mode 100644
index 00000000000..56547b7fa9d
--- /dev/null
+++ b/gcc/testsuite/gcc.target/powerpc/pr106895.c
@@ -0,0 +1,15 @@
+/* PR target/106895 */
+/* { dg-require-effective-target int128 } */
+/* { dg-options "-O2" } */
+
+/* Verify the following generates even/odd register pairs. */
+
+typedef __int128 pti __attribute__((mode(PTI)));
+
+void
+set128 (pti val, pti *mem)
+{
+ asm("stq %1,%0" : "=m"(*mem) : "r"(val));
+}
+
+/* { dg-final { scan-assembler "stq \[123\]?\[02468\]" } } */
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PING^1][PATCH v2] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2024-03-21 12:51 ` [PATCH v2] " jeevitha
@ 2024-04-17 9:14 ` jeevitha
2024-05-21 4:58 ` [PING^2][PATCH " jeevitha
2024-08-22 7:39 ` [PING^5][PATCH " jeevitha
` (3 subsequent siblings)
4 siblings, 1 reply; 19+ messages in thread
From: jeevitha @ 2024-04-17 9:14 UTC (permalink / raw)
To: GCC Patches, Kewen.Lin, Segher Boessenkool; +Cc: Peter Bergner
Ping!
I've incorporated all the suggested changes. Please review.
Thanks & Regards
Jeevitha
On 21/03/24 6:21 pm, jeevitha wrote:
> Hi All,
>
> The following patch has been bootstrapped and regtested on powerpc64le-linux.
>
> PTImode assists in generating even/odd register pairs on 128 bits. When the user
> specifies PTImode as an attribute, it breaks because there is no internal type
> to handle this mode. To address this, we have created a tree node with dummy type
> to handle PTImode. We are not documenting this dummy type since users are not
> allowed to use this type externally.
>
> 2024-03-21 Jeevitha Palanisamy <jeevitha@linux.ibm.com>
>
> gcc/
> PR target/110411
> * config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add
> RS6000_BTI_INTPTI.
> * config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Add node
> for PTImode type.
>
> gcc/testsuite/
> PR target/106895
> * gcc.target/powerpc/pr106895.c: New testcase.
>
> diff --git a/gcc/config/rs6000/rs6000-builtin.cc b/gcc/config/rs6000/rs6000-builtin.cc
> index 6698274031b..f553c72779e 100644
> --- a/gcc/config/rs6000/rs6000-builtin.cc
> +++ b/gcc/config/rs6000/rs6000-builtin.cc
> @@ -756,6 +756,15 @@ rs6000_init_builtins (void)
> else
> ieee128_float_type_node = NULL_TREE;
>
> + /* PTImode to get even/odd register pairs. */
> + intPTI_type_internal_node = make_node(INTEGER_TYPE);
> + TYPE_PRECISION (intPTI_type_internal_node) = GET_MODE_BITSIZE (PTImode);
> + layout_type (intPTI_type_internal_node);
> + SET_TYPE_MODE (intPTI_type_internal_node, PTImode);
> + t = build_qualified_type (intPTI_type_internal_node, TYPE_QUAL_CONST);
> + lang_hooks.types.register_builtin_type (intPTI_type_internal_node,
> + "__dummypti");
> +
> /* Vector pair and vector quad support. */
> vector_pair_type_node = make_node (OPAQUE_TYPE);
> SET_TYPE_MODE (vector_pair_type_node, OOmode);
> diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h
> index 68bc45d65ba..b6078077b20 100644
> --- a/gcc/config/rs6000/rs6000.h
> +++ b/gcc/config/rs6000/rs6000.h
> @@ -2302,6 +2302,7 @@ enum rs6000_builtin_type_index
> RS6000_BTI_ptr_vector_quad,
> RS6000_BTI_ptr_long_long,
> RS6000_BTI_ptr_long_long_unsigned,
> + RS6000_BTI_INTPTI,
> RS6000_BTI_MAX
> };
>
> @@ -2346,6 +2347,7 @@ enum rs6000_builtin_type_index
> #define uintDI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTDI])
> #define intTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTTI])
> #define uintTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTTI])
> +#define intPTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTPTI])
> #define float_type_internal_node (rs6000_builtin_types[RS6000_BTI_float])
> #define double_type_internal_node (rs6000_builtin_types[RS6000_BTI_double])
> #define long_double_type_internal_node (rs6000_builtin_types[RS6000_BTI_long_double])
> diff --git a/gcc/testsuite/gcc.target/powerpc/pr106895.c b/gcc/testsuite/gcc.target/powerpc/pr106895.c
> new file mode 100644
> index 00000000000..56547b7fa9d
> --- /dev/null
> +++ b/gcc/testsuite/gcc.target/powerpc/pr106895.c
> @@ -0,0 +1,15 @@
> +/* PR target/106895 */
> +/* { dg-require-effective-target int128 } */
> +/* { dg-options "-O2" } */
> +
> +/* Verify the following generates even/odd register pairs. */
> +
> +typedef __int128 pti __attribute__((mode(PTI)));
> +
> +void
> +set128 (pti val, pti *mem)
> +{
> + asm("stq %1,%0" : "=m"(*mem) : "r"(val));
> +}
> +
> +/* { dg-final { scan-assembler "stq \[123\]?\[02468\]" } } */
>
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PING^2][PATCH v2] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2024-04-17 9:14 ` [PING^1][PATCH " jeevitha
@ 2024-05-21 4:58 ` jeevitha
2024-06-19 12:42 ` [PING^3][PATCH " jeevitha
0 siblings, 1 reply; 19+ messages in thread
From: jeevitha @ 2024-05-21 4:58 UTC (permalink / raw)
To: GCC Patches, Kewen.Lin, Segher Boessenkool; +Cc: Peter Bergner
Ping!
please review.
Thanks & Regards
Jeevitha
On 17/04/24 2:44 pm, jeevitha wrote:
> Ping!
>
> I've incorporated all the suggested changes. Please review.
>
> Thanks & Regards
> Jeevitha
>
> On 21/03/24 6:21 pm, jeevitha wrote:
>> Hi All,
>>
>> The following patch has been bootstrapped and regtested on powerpc64le-linux.
>>
>> PTImode assists in generating even/odd register pairs on 128 bits. When the user
>> specifies PTImode as an attribute, it breaks because there is no internal type
>> to handle this mode. To address this, we have created a tree node with dummy type
>> to handle PTImode. We are not documenting this dummy type since users are not
>> allowed to use this type externally.
>>
>> 2024-03-21 Jeevitha Palanisamy <jeevitha@linux.ibm.com>
>>
>> gcc/
>> PR target/110411
>> * config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add
>> RS6000_BTI_INTPTI.
>> * config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Add node
>> for PTImode type.
>>
>> gcc/testsuite/
>> PR target/106895
>> * gcc.target/powerpc/pr106895.c: New testcase.
>>
>> diff --git a/gcc/config/rs6000/rs6000-builtin.cc b/gcc/config/rs6000/rs6000-builtin.cc
>> index 6698274031b..f553c72779e 100644
>> --- a/gcc/config/rs6000/rs6000-builtin.cc
>> +++ b/gcc/config/rs6000/rs6000-builtin.cc
>> @@ -756,6 +756,15 @@ rs6000_init_builtins (void)
>> else
>> ieee128_float_type_node = NULL_TREE;
>>
>> + /* PTImode to get even/odd register pairs. */
>> + intPTI_type_internal_node = make_node(INTEGER_TYPE);
>> + TYPE_PRECISION (intPTI_type_internal_node) = GET_MODE_BITSIZE (PTImode);
>> + layout_type (intPTI_type_internal_node);
>> + SET_TYPE_MODE (intPTI_type_internal_node, PTImode);
>> + t = build_qualified_type (intPTI_type_internal_node, TYPE_QUAL_CONST);
>> + lang_hooks.types.register_builtin_type (intPTI_type_internal_node,
>> + "__dummypti");
>> +
>> /* Vector pair and vector quad support. */
>> vector_pair_type_node = make_node (OPAQUE_TYPE);
>> SET_TYPE_MODE (vector_pair_type_node, OOmode);
>> diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h
>> index 68bc45d65ba..b6078077b20 100644
>> --- a/gcc/config/rs6000/rs6000.h
>> +++ b/gcc/config/rs6000/rs6000.h
>> @@ -2302,6 +2302,7 @@ enum rs6000_builtin_type_index
>> RS6000_BTI_ptr_vector_quad,
>> RS6000_BTI_ptr_long_long,
>> RS6000_BTI_ptr_long_long_unsigned,
>> + RS6000_BTI_INTPTI,
>> RS6000_BTI_MAX
>> };
>>
>> @@ -2346,6 +2347,7 @@ enum rs6000_builtin_type_index
>> #define uintDI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTDI])
>> #define intTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTTI])
>> #define uintTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTTI])
>> +#define intPTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTPTI])
>> #define float_type_internal_node (rs6000_builtin_types[RS6000_BTI_float])
>> #define double_type_internal_node (rs6000_builtin_types[RS6000_BTI_double])
>> #define long_double_type_internal_node (rs6000_builtin_types[RS6000_BTI_long_double])
>> diff --git a/gcc/testsuite/gcc.target/powerpc/pr106895.c b/gcc/testsuite/gcc.target/powerpc/pr106895.c
>> new file mode 100644
>> index 00000000000..56547b7fa9d
>> --- /dev/null
>> +++ b/gcc/testsuite/gcc.target/powerpc/pr106895.c
>> @@ -0,0 +1,15 @@
>> +/* PR target/106895 */
>> +/* { dg-require-effective-target int128 } */
>> +/* { dg-options "-O2" } */
>> +
>> +/* Verify the following generates even/odd register pairs. */
>> +
>> +typedef __int128 pti __attribute__((mode(PTI)));
>> +
>> +void
>> +set128 (pti val, pti *mem)
>> +{
>> + asm("stq %1,%0" : "=m"(*mem) : "r"(val));
>> +}
>> +
>> +/* { dg-final { scan-assembler "stq \[123\]?\[02468\]" } } */
>>
>>
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PING^3][PATCH v2] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2024-05-21 4:58 ` [PING^2][PATCH " jeevitha
@ 2024-06-19 12:42 ` jeevitha
2024-07-10 1:38 ` [PING^4][PATCH " jeevitha
0 siblings, 1 reply; 19+ messages in thread
From: jeevitha @ 2024-06-19 12:42 UTC (permalink / raw)
To: GCC Patches, Kewen.Lin, Segher Boessenkool; +Cc: Peter Bergner
Ping!
Please review. Are there any more changes required?
Thanks & Regards
Jeevitha
On 21/05/24 10:28 am, jeevitha wrote:
> Ping!
>
> please review.
>
> Thanks & Regards
> Jeevitha
>
>
> On 17/04/24 2:44 pm, jeevitha wrote:
>> Ping!
>>
>> I've incorporated all the suggested changes. Please review.
>>
>> Thanks & Regards
>> Jeevitha
>>
>> On 21/03/24 6:21 pm, jeevitha wrote:
>>> Hi All,
>>>
>>> The following patch has been bootstrapped and regtested on powerpc64le-linux.
>>>
>>> PTImode assists in generating even/odd register pairs on 128 bits. When the user
>>> specifies PTImode as an attribute, it breaks because there is no internal type
>>> to handle this mode. To address this, we have created a tree node with dummy type
>>> to handle PTImode. We are not documenting this dummy type since users are not
>>> allowed to use this type externally.
>>>
>>> 2024-03-21 Jeevitha Palanisamy <jeevitha@linux.ibm.com>
>>>
>>> gcc/
>>> PR target/110411
>>> * config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add
>>> RS6000_BTI_INTPTI.
>>> * config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Add node
>>> for PTImode type.
>>>
>>> gcc/testsuite/
>>> PR target/106895
>>> * gcc.target/powerpc/pr106895.c: New testcase.
>>>
>>> diff --git a/gcc/config/rs6000/rs6000-builtin.cc b/gcc/config/rs6000/rs6000-builtin.cc
>>> index 6698274031b..f553c72779e 100644
>>> --- a/gcc/config/rs6000/rs6000-builtin.cc
>>> +++ b/gcc/config/rs6000/rs6000-builtin.cc
>>> @@ -756,6 +756,15 @@ rs6000_init_builtins (void)
>>> else
>>> ieee128_float_type_node = NULL_TREE;
>>>
>>> + /* PTImode to get even/odd register pairs. */
>>> + intPTI_type_internal_node = make_node(INTEGER_TYPE);
>>> + TYPE_PRECISION (intPTI_type_internal_node) = GET_MODE_BITSIZE (PTImode);
>>> + layout_type (intPTI_type_internal_node);
>>> + SET_TYPE_MODE (intPTI_type_internal_node, PTImode);
>>> + t = build_qualified_type (intPTI_type_internal_node, TYPE_QUAL_CONST);
>>> + lang_hooks.types.register_builtin_type (intPTI_type_internal_node,
>>> + "__dummypti");
>>> +
>>> /* Vector pair and vector quad support. */
>>> vector_pair_type_node = make_node (OPAQUE_TYPE);
>>> SET_TYPE_MODE (vector_pair_type_node, OOmode);
>>> diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h
>>> index 68bc45d65ba..b6078077b20 100644
>>> --- a/gcc/config/rs6000/rs6000.h
>>> +++ b/gcc/config/rs6000/rs6000.h
>>> @@ -2302,6 +2302,7 @@ enum rs6000_builtin_type_index
>>> RS6000_BTI_ptr_vector_quad,
>>> RS6000_BTI_ptr_long_long,
>>> RS6000_BTI_ptr_long_long_unsigned,
>>> + RS6000_BTI_INTPTI,
>>> RS6000_BTI_MAX
>>> };
>>>
>>> @@ -2346,6 +2347,7 @@ enum rs6000_builtin_type_index
>>> #define uintDI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTDI])
>>> #define intTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTTI])
>>> #define uintTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTTI])
>>> +#define intPTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTPTI])
>>> #define float_type_internal_node (rs6000_builtin_types[RS6000_BTI_float])
>>> #define double_type_internal_node (rs6000_builtin_types[RS6000_BTI_double])
>>> #define long_double_type_internal_node (rs6000_builtin_types[RS6000_BTI_long_double])
>>> diff --git a/gcc/testsuite/gcc.target/powerpc/pr106895.c b/gcc/testsuite/gcc.target/powerpc/pr106895.c
>>> new file mode 100644
>>> index 00000000000..56547b7fa9d
>>> --- /dev/null
>>> +++ b/gcc/testsuite/gcc.target/powerpc/pr106895.c
>>> @@ -0,0 +1,15 @@
>>> +/* PR target/106895 */
>>> +/* { dg-require-effective-target int128 } */
>>> +/* { dg-options "-O2" } */
>>> +
>>> +/* Verify the following generates even/odd register pairs. */
>>> +
>>> +typedef __int128 pti __attribute__((mode(PTI)));
>>> +
>>> +void
>>> +set128 (pti val, pti *mem)
>>> +{
>>> + asm("stq %1,%0" : "=m"(*mem) : "r"(val));
>>> +}
>>> +
>>> +/* { dg-final { scan-assembler "stq \[123\]?\[02468\]" } } */
>>>
>>>
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PING^4][PATCH v2] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2024-06-19 12:42 ` [PING^3][PATCH " jeevitha
@ 2024-07-10 1:38 ` jeevitha
0 siblings, 0 replies; 19+ messages in thread
From: jeevitha @ 2024-07-10 1:38 UTC (permalink / raw)
To: GCC Patches, Kewen.Lin, Segher Boessenkool; +Cc: Peter Bergner
Ping!
Please review.
Thanks & Regards
Jeevitha
On 19/06/24 6:12 pm, jeevitha wrote:
> Ping!
>
> Please review. Are there any more changes required?
>
> Thanks & Regards
> Jeevitha
>
> On 21/05/24 10:28 am, jeevitha wrote:
>> Ping!
>>
>> please review.
>>
>> Thanks & Regards
>> Jeevitha
>>
>>
>> On 17/04/24 2:44 pm, jeevitha wrote:
>>> Ping!
>>>
>>> I've incorporated all the suggested changes. Please review.
>>>
>>> Thanks & Regards
>>> Jeevitha
>>>
>>> On 21/03/24 6:21 pm, jeevitha wrote:
>>>> Hi All,
>>>>
>>>> The following patch has been bootstrapped and regtested on powerpc64le-linux.
>>>>
>>>> PTImode assists in generating even/odd register pairs on 128 bits. When the user
>>>> specifies PTImode as an attribute, it breaks because there is no internal type
>>>> to handle this mode. To address this, we have created a tree node with dummy type
>>>> to handle PTImode. We are not documenting this dummy type since users are not
>>>> allowed to use this type externally.
>>>>
>>>> 2024-03-21 Jeevitha Palanisamy <jeevitha@linux.ibm.com>
>>>>
>>>> gcc/
>>>> PR target/110411
>>>> * config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add
>>>> RS6000_BTI_INTPTI.
>>>> * config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Add node
>>>> for PTImode type.
>>>>
>>>> gcc/testsuite/
>>>> PR target/106895
>>>> * gcc.target/powerpc/pr106895.c: New testcase.
>>>>
>>>> diff --git a/gcc/config/rs6000/rs6000-builtin.cc b/gcc/config/rs6000/rs6000-builtin.cc
>>>> index 6698274031b..f553c72779e 100644
>>>> --- a/gcc/config/rs6000/rs6000-builtin.cc
>>>> +++ b/gcc/config/rs6000/rs6000-builtin.cc
>>>> @@ -756,6 +756,15 @@ rs6000_init_builtins (void)
>>>> else
>>>> ieee128_float_type_node = NULL_TREE;
>>>>
>>>> + /* PTImode to get even/odd register pairs. */
>>>> + intPTI_type_internal_node = make_node(INTEGER_TYPE);
>>>> + TYPE_PRECISION (intPTI_type_internal_node) = GET_MODE_BITSIZE (PTImode);
>>>> + layout_type (intPTI_type_internal_node);
>>>> + SET_TYPE_MODE (intPTI_type_internal_node, PTImode);
>>>> + t = build_qualified_type (intPTI_type_internal_node, TYPE_QUAL_CONST);
>>>> + lang_hooks.types.register_builtin_type (intPTI_type_internal_node,
>>>> + "__dummypti");
>>>> +
>>>> /* Vector pair and vector quad support. */
>>>> vector_pair_type_node = make_node (OPAQUE_TYPE);
>>>> SET_TYPE_MODE (vector_pair_type_node, OOmode);
>>>> diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h
>>>> index 68bc45d65ba..b6078077b20 100644
>>>> --- a/gcc/config/rs6000/rs6000.h
>>>> +++ b/gcc/config/rs6000/rs6000.h
>>>> @@ -2302,6 +2302,7 @@ enum rs6000_builtin_type_index
>>>> RS6000_BTI_ptr_vector_quad,
>>>> RS6000_BTI_ptr_long_long,
>>>> RS6000_BTI_ptr_long_long_unsigned,
>>>> + RS6000_BTI_INTPTI,
>>>> RS6000_BTI_MAX
>>>> };
>>>>
>>>> @@ -2346,6 +2347,7 @@ enum rs6000_builtin_type_index
>>>> #define uintDI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTDI])
>>>> #define intTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTTI])
>>>> #define uintTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTTI])
>>>> +#define intPTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTPTI])
>>>> #define float_type_internal_node (rs6000_builtin_types[RS6000_BTI_float])
>>>> #define double_type_internal_node (rs6000_builtin_types[RS6000_BTI_double])
>>>> #define long_double_type_internal_node (rs6000_builtin_types[RS6000_BTI_long_double])
>>>> diff --git a/gcc/testsuite/gcc.target/powerpc/pr106895.c b/gcc/testsuite/gcc.target/powerpc/pr106895.c
>>>> new file mode 100644
>>>> index 00000000000..56547b7fa9d
>>>> --- /dev/null
>>>> +++ b/gcc/testsuite/gcc.target/powerpc/pr106895.c
>>>> @@ -0,0 +1,15 @@
>>>> +/* PR target/106895 */
>>>> +/* { dg-require-effective-target int128 } */
>>>> +/* { dg-options "-O2" } */
>>>> +
>>>> +/* Verify the following generates even/odd register pairs. */
>>>> +
>>>> +typedef __int128 pti __attribute__((mode(PTI)));
>>>> +
>>>> +void
>>>> +set128 (pti val, pti *mem)
>>>> +{
>>>> + asm("stq %1,%0" : "=m"(*mem) : "r"(val));
>>>> +}
>>>> +
>>>> +/* { dg-final { scan-assembler "stq \[123\]?\[02468\]" } } */
>>>>
>>>>
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PING^5][PATCH v2] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2024-03-21 12:51 ` [PATCH v2] " jeevitha
2024-04-17 9:14 ` [PING^1][PATCH " jeevitha
@ 2024-08-22 7:39 ` jeevitha
2024-09-09 6:21 ` [PING^6][PATCH " jeevitha
` (2 subsequent siblings)
4 siblings, 0 replies; 19+ messages in thread
From: jeevitha @ 2024-08-22 7:39 UTC (permalink / raw)
To: GCC Patches, Kewen.Lin, Segher Boessenkool; +Cc: Peter Bergner
Ping * 5.
Segher, I've incorporated all the suggested changes. Are there any more changes required?
Jeevitha
On 21/03/24 6:21 pm, jeevitha wrote:
> Hi All,
>
> The following patch has been bootstrapped and regtested on powerpc64le-linux.
>
> PTImode assists in generating even/odd register pairs on 128 bits. When the user
> specifies PTImode as an attribute, it breaks because there is no internal type
> to handle this mode. To address this, we have created a tree node with dummy type
> to handle PTImode. We are not documenting this dummy type since users are not
> allowed to use this type externally.
>
> 2024-03-21 Jeevitha Palanisamy <jeevitha@linux.ibm.com>
>
> gcc/
> PR target/110411
> * config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add
> RS6000_BTI_INTPTI.
> * config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Add node
> for PTImode type.
>
> gcc/testsuite/
> PR target/106895
> * gcc.target/powerpc/pr106895.c: New testcase.
>
> diff --git a/gcc/config/rs6000/rs6000-builtin.cc b/gcc/config/rs6000/rs6000-builtin.cc
> index 6698274031b..f553c72779e 100644
> --- a/gcc/config/rs6000/rs6000-builtin.cc
> +++ b/gcc/config/rs6000/rs6000-builtin.cc
> @@ -756,6 +756,15 @@ rs6000_init_builtins (void)
> else
> ieee128_float_type_node = NULL_TREE;
>
> + /* PTImode to get even/odd register pairs. */
> + intPTI_type_internal_node = make_node(INTEGER_TYPE);
> + TYPE_PRECISION (intPTI_type_internal_node) = GET_MODE_BITSIZE (PTImode);
> + layout_type (intPTI_type_internal_node);
> + SET_TYPE_MODE (intPTI_type_internal_node, PTImode);
> + t = build_qualified_type (intPTI_type_internal_node, TYPE_QUAL_CONST);
> + lang_hooks.types.register_builtin_type (intPTI_type_internal_node,
> + "__dummypti");
> +
> /* Vector pair and vector quad support. */
> vector_pair_type_node = make_node (OPAQUE_TYPE);
> SET_TYPE_MODE (vector_pair_type_node, OOmode);
> diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h
> index 68bc45d65ba..b6078077b20 100644
> --- a/gcc/config/rs6000/rs6000.h
> +++ b/gcc/config/rs6000/rs6000.h
> @@ -2302,6 +2302,7 @@ enum rs6000_builtin_type_index
> RS6000_BTI_ptr_vector_quad,
> RS6000_BTI_ptr_long_long,
> RS6000_BTI_ptr_long_long_unsigned,
> + RS6000_BTI_INTPTI,
> RS6000_BTI_MAX
> };
>
> @@ -2346,6 +2347,7 @@ enum rs6000_builtin_type_index
> #define uintDI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTDI])
> #define intTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTTI])
> #define uintTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTTI])
> +#define intPTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTPTI])
> #define float_type_internal_node (rs6000_builtin_types[RS6000_BTI_float])
> #define double_type_internal_node (rs6000_builtin_types[RS6000_BTI_double])
> #define long_double_type_internal_node (rs6000_builtin_types[RS6000_BTI_long_double])
> diff --git a/gcc/testsuite/gcc.target/powerpc/pr106895.c b/gcc/testsuite/gcc.target/powerpc/pr106895.c
> new file mode 100644
> index 00000000000..56547b7fa9d
> --- /dev/null
> +++ b/gcc/testsuite/gcc.target/powerpc/pr106895.c
> @@ -0,0 +1,15 @@
> +/* PR target/106895 */
> +/* { dg-require-effective-target int128 } */
> +/* { dg-options "-O2" } */
> +
> +/* Verify the following generates even/odd register pairs. */
> +
> +typedef __int128 pti __attribute__((mode(PTI)));
> +
> +void
> +set128 (pti val, pti *mem)
> +{
> + asm("stq %1,%0" : "=m"(*mem) : "r"(val));
> +}
> +
> +/* { dg-final { scan-assembler "stq \[123\]?\[02468\]" } } */
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PING^6][PATCH v2] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2024-03-21 12:51 ` [PATCH v2] " jeevitha
2024-04-17 9:14 ` [PING^1][PATCH " jeevitha
2024-08-22 7:39 ` [PING^5][PATCH " jeevitha
@ 2024-09-09 6:21 ` jeevitha
2024-09-25 15:04 ` [PING^7][PATCH " jeevitha
2024-10-03 19:24 ` [PATCH " Segher Boessenkool
4 siblings, 0 replies; 19+ messages in thread
From: jeevitha @ 2024-09-09 6:21 UTC (permalink / raw)
To: GCC Patches, Kewen.Lin, Segher Boessenkool; +Cc: Peter Bergner
Ping * 6
Please review!
On 21/03/24 6:21 pm, jeevitha wrote:
> Hi All,
>
> The following patch has been bootstrapped and regtested on powerpc64le-linux.
>
> PTImode assists in generating even/odd register pairs on 128 bits. When the user
> specifies PTImode as an attribute, it breaks because there is no internal type
> to handle this mode. To address this, we have created a tree node with dummy type
> to handle PTImode. We are not documenting this dummy type since users are not
> allowed to use this type externally.
>
> 2024-03-21 Jeevitha Palanisamy <jeevitha@linux.ibm.com>
>
> gcc/
> PR target/110411
> * config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add
> RS6000_BTI_INTPTI.
> * config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Add node
> for PTImode type.
>
> gcc/testsuite/
> PR target/106895
> * gcc.target/powerpc/pr106895.c: New testcase.
>
> diff --git a/gcc/config/rs6000/rs6000-builtin.cc b/gcc/config/rs6000/rs6000-builtin.cc
> index 6698274031b..f553c72779e 100644
> --- a/gcc/config/rs6000/rs6000-builtin.cc
> +++ b/gcc/config/rs6000/rs6000-builtin.cc
> @@ -756,6 +756,15 @@ rs6000_init_builtins (void)
> else
> ieee128_float_type_node = NULL_TREE;
>
> + /* PTImode to get even/odd register pairs. */
> + intPTI_type_internal_node = make_node(INTEGER_TYPE);
> + TYPE_PRECISION (intPTI_type_internal_node) = GET_MODE_BITSIZE (PTImode);
> + layout_type (intPTI_type_internal_node);
> + SET_TYPE_MODE (intPTI_type_internal_node, PTImode);
> + t = build_qualified_type (intPTI_type_internal_node, TYPE_QUAL_CONST);
> + lang_hooks.types.register_builtin_type (intPTI_type_internal_node,
> + "__dummypti");
> +
> /* Vector pair and vector quad support. */
> vector_pair_type_node = make_node (OPAQUE_TYPE);
> SET_TYPE_MODE (vector_pair_type_node, OOmode);
> diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h
> index 68bc45d65ba..b6078077b20 100644
> --- a/gcc/config/rs6000/rs6000.h
> +++ b/gcc/config/rs6000/rs6000.h
> @@ -2302,6 +2302,7 @@ enum rs6000_builtin_type_index
> RS6000_BTI_ptr_vector_quad,
> RS6000_BTI_ptr_long_long,
> RS6000_BTI_ptr_long_long_unsigned,
> + RS6000_BTI_INTPTI,
> RS6000_BTI_MAX
> };
>
> @@ -2346,6 +2347,7 @@ enum rs6000_builtin_type_index
> #define uintDI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTDI])
> #define intTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTTI])
> #define uintTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTTI])
> +#define intPTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTPTI])
> #define float_type_internal_node (rs6000_builtin_types[RS6000_BTI_float])
> #define double_type_internal_node (rs6000_builtin_types[RS6000_BTI_double])
> #define long_double_type_internal_node (rs6000_builtin_types[RS6000_BTI_long_double])
> diff --git a/gcc/testsuite/gcc.target/powerpc/pr106895.c b/gcc/testsuite/gcc.target/powerpc/pr106895.c
> new file mode 100644
> index 00000000000..56547b7fa9d
> --- /dev/null
> +++ b/gcc/testsuite/gcc.target/powerpc/pr106895.c
> @@ -0,0 +1,15 @@
> +/* PR target/106895 */
> +/* { dg-require-effective-target int128 } */
> +/* { dg-options "-O2" } */
> +
> +/* Verify the following generates even/odd register pairs. */
> +
> +typedef __int128 pti __attribute__((mode(PTI)));
> +
> +void
> +set128 (pti val, pti *mem)
> +{
> + asm("stq %1,%0" : "=m"(*mem) : "r"(val));
> +}
> +
> +/* { dg-final { scan-assembler "stq \[123\]?\[02468\]" } } */
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PING^7][PATCH v2] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2024-03-21 12:51 ` [PATCH v2] " jeevitha
` (2 preceding siblings ...)
2024-09-09 6:21 ` [PING^6][PATCH " jeevitha
@ 2024-09-25 15:04 ` jeevitha
2024-10-03 19:24 ` [PATCH " Segher Boessenkool
4 siblings, 0 replies; 19+ messages in thread
From: jeevitha @ 2024-09-25 15:04 UTC (permalink / raw)
To: GCC Patches, Kewen.Lin, Segher Boessenkool; +Cc: Peter Bergner
Ping * 7
Please review!
On 21/03/24 6:21 pm, jeevitha wrote:
> Hi All,
>
> The following patch has been bootstrapped and regtested on powerpc64le-linux.
>
> PTImode assists in generating even/odd register pairs on 128 bits. When the user
> specifies PTImode as an attribute, it breaks because there is no internal type
> to handle this mode. To address this, we have created a tree node with dummy type
> to handle PTImode. We are not documenting this dummy type since users are not
> allowed to use this type externally.
>
> 2024-03-21 Jeevitha Palanisamy <jeevitha@linux.ibm.com>
>
> gcc/
> PR target/110411
> * config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add
> RS6000_BTI_INTPTI.
> * config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Add node
> for PTImode type.
>
> gcc/testsuite/
> PR target/106895
> * gcc.target/powerpc/pr106895.c: New testcase.
>
> diff --git a/gcc/config/rs6000/rs6000-builtin.cc b/gcc/config/rs6000/rs6000-builtin.cc
> index 6698274031b..f553c72779e 100644
> --- a/gcc/config/rs6000/rs6000-builtin.cc
> +++ b/gcc/config/rs6000/rs6000-builtin.cc
> @@ -756,6 +756,15 @@ rs6000_init_builtins (void)
> else
> ieee128_float_type_node = NULL_TREE;
>
> + /* PTImode to get even/odd register pairs. */
> + intPTI_type_internal_node = make_node(INTEGER_TYPE);
> + TYPE_PRECISION (intPTI_type_internal_node) = GET_MODE_BITSIZE (PTImode);
> + layout_type (intPTI_type_internal_node);
> + SET_TYPE_MODE (intPTI_type_internal_node, PTImode);
> + t = build_qualified_type (intPTI_type_internal_node, TYPE_QUAL_CONST);
> + lang_hooks.types.register_builtin_type (intPTI_type_internal_node,
> + "__dummypti");
> +
> /* Vector pair and vector quad support. */
> vector_pair_type_node = make_node (OPAQUE_TYPE);
> SET_TYPE_MODE (vector_pair_type_node, OOmode);
> diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h
> index 68bc45d65ba..b6078077b20 100644
> --- a/gcc/config/rs6000/rs6000.h
> +++ b/gcc/config/rs6000/rs6000.h
> @@ -2302,6 +2302,7 @@ enum rs6000_builtin_type_index
> RS6000_BTI_ptr_vector_quad,
> RS6000_BTI_ptr_long_long,
> RS6000_BTI_ptr_long_long_unsigned,
> + RS6000_BTI_INTPTI,
> RS6000_BTI_MAX
> };
>
> @@ -2346,6 +2347,7 @@ enum rs6000_builtin_type_index
> #define uintDI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTDI])
> #define intTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTTI])
> #define uintTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTTI])
> +#define intPTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTPTI])
> #define float_type_internal_node (rs6000_builtin_types[RS6000_BTI_float])
> #define double_type_internal_node (rs6000_builtin_types[RS6000_BTI_double])
> #define long_double_type_internal_node (rs6000_builtin_types[RS6000_BTI_long_double])
> diff --git a/gcc/testsuite/gcc.target/powerpc/pr106895.c b/gcc/testsuite/gcc.target/powerpc/pr106895.c
> new file mode 100644
> index 00000000000..56547b7fa9d
> --- /dev/null
> +++ b/gcc/testsuite/gcc.target/powerpc/pr106895.c
> @@ -0,0 +1,15 @@
> +/* PR target/106895 */
> +/* { dg-require-effective-target int128 } */
> +/* { dg-options "-O2" } */
> +
> +/* Verify the following generates even/odd register pairs. */
> +
> +typedef __int128 pti __attribute__((mode(PTI)));
> +
> +void
> +set128 (pti val, pti *mem)
> +{
> + asm("stq %1,%0" : "=m"(*mem) : "r"(val));
> +}
> +
> +/* { dg-final { scan-assembler "stq \[123\]?\[02468\]" } } */
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v2] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2024-03-21 12:51 ` [PATCH v2] " jeevitha
` (3 preceding siblings ...)
2024-09-25 15:04 ` [PING^7][PATCH " jeevitha
@ 2024-10-03 19:24 ` Segher Boessenkool
2024-10-03 20:16 ` Peter Bergner
4 siblings, 1 reply; 19+ messages in thread
From: Segher Boessenkool @ 2024-10-03 19:24 UTC (permalink / raw)
To: jeevitha; +Cc: GCC Patches, Kewen.Lin, Peter Bergner
On Thu, Mar 21, 2024 at 06:21:48PM +0530, jeevitha wrote:
Hi!
> The following patch has been bootstrapped and regtested on powerpc64le-linux.
Please send v2 patches as their own, new thread. Replies are for
replies (duh), and for patch series. If you mix several versions in one
thread things become much, much harder to deal with.
> PTImode assists in generating even/odd register pairs on 128 bits. When the user
> specifies PTImode as an attribute, it breaks because there is no internal type
> to handle this mode. To address this, we have created a tree node with dummy type
> to handle PTImode. We are not documenting this dummy type since users are not
> allowed to use this type externally.
Like discussed before, do not say this. Users are perfectly well
allowed to use whatever type they want. But we don't *encourage* using
this type, a very different thing.
> 2024-03-21 Jeevitha Palanisamy <jeevitha@linux.ibm.com>
>
> gcc/
> PR target/110411
That is the wrong PR #. To prevent such things, never copy such lines,
always type them from scratch. It is a very short line anyway!
> * config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add
> RS6000_BTI_INTPTI.
> * config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Add node
> for PTImode type.
Please don't break lines early. Changelog lines are 80 positions wide.
> gcc/testsuite/
> PR target/106895
> * gcc.target/powerpc/pr106895.c: New testcase.
> + /* PTImode to get even/odd register pairs. */
> + intPTI_type_internal_node = make_node(INTEGER_TYPE);
> + TYPE_PRECISION (intPTI_type_internal_node) = GET_MODE_BITSIZE (PTImode);
> + layout_type (intPTI_type_internal_node);
> + SET_TYPE_MODE (intPTI_type_internal_node, PTImode);
> + t = build_qualified_type (intPTI_type_internal_node, TYPE_QUAL_CONST);
> + lang_hooks.types.register_builtin_type (intPTI_type_internal_node,
> + "__dummypti");
Please use a real name, not something "dummy". It is a real type after
all!
> --- /dev/null
> +++ b/gcc/testsuite/gcc.target/powerpc/pr106895.c
> @@ -0,0 +1,15 @@
> +/* PR target/106895 */
> +/* { dg-require-effective-target int128 } */
> +/* { dg-options "-O2" } */
> +
> +/* Verify the following generates even/odd register pairs. */
> +
> +typedef __int128 pti __attribute__((mode(PTI)));
> +
> +void
> +set128 (pti val, pti *mem)
> +{
> + asm("stq %1,%0" : "=m"(*mem) : "r"(val));
> +}
> +
> +/* { dg-final { scan-assembler "stq \[123\]?\[02468\]" } } */
Please use {} quoting, and no backslashes. Also use \m and \M.
Or something like
scan-assembler { \mstq .*[02468], }
(you do not have to match the things you don't care about, and you only
need to look at the last digit to see if a number is even).
The patch looks good otherwise, but please fix these things and repost.
In a new thread :-)
Thanks,
Segher
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v2] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2024-10-03 19:24 ` [PATCH " Segher Boessenkool
@ 2024-10-03 20:16 ` Peter Bergner
0 siblings, 0 replies; 19+ messages in thread
From: Peter Bergner @ 2024-10-03 20:16 UTC (permalink / raw)
To: Segher Boessenkool, jeevitha; +Cc: GCC Patches, Kewen.Lin
On 10/3/24 2:24 PM, Segher Boessenkool wrote:
> On Thu, Mar 21, 2024 at 06:21:48PM +0530, jeevitha wrote:
>> PTImode assists in generating even/odd register pairs on 128 bits. When the user
>> specifies PTImode as an attribute, it breaks because there is no internal type
>> to handle this mode. To address this, we have created a tree node with dummy type
>> to handle PTImode. We are not documenting this dummy type since users are not
>> allowed to use this type externally.
>
> Like discussed before, do not say this. Users are perfectly well
> allowed to use whatever type they want. But we don't *encourage* using
> this type, a very different thing.
I think a simple s/allowed/encouraged/ should suffice.
>> + lang_hooks.types.register_builtin_type (intPTI_type_internal_node,
>> + "__dummypti");
>
> Please use a real name, not something "dummy". It is a real type after
> all!
Segher, how about __internal_pti or __pti_internal instead?
>> --- /dev/null
>> +++ b/gcc/testsuite/gcc.target/powerpc/pr106895.c
>> @@ -0,0 +1,15 @@
>> +/* PR target/106895 */
>> +/* { dg-require-effective-target int128 } */
>> +/* { dg-options "-O2" } */
>> +
>> +/* Verify the following generates even/odd register pairs. */
>> +
>> +typedef __int128 pti __attribute__((mode(PTI)));
>> +
>> +void
>> +set128 (pti val, pti *mem)
>> +{
>> + asm("stq %1,%0" : "=m"(*mem) : "r"(val));
>> +}
>> +
>> +/* { dg-final { scan-assembler "stq \[123\]?\[02468\]" } } */
>
> Please use {} quoting, and no backslashes. Also use \m and \M.
>
> Or something like
> scan-assembler { \mstq .*[02468], }
> (you do not have to match the things you don't care about, and you only
> need to look at the last digit to see if a number is even).
I think a better idea is to change this to a { dg-do assemble } test case,
since the assembler will verify that the register number is even and will
also verify the offset is valid too. Then the dg-final can be just:
/* { dg-final { scan-assembler {\mstq\M} } } */
Peter
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2023-08-25 2:19 ` Peter Bergner
@ 2023-08-26 8:37 ` Michael Meissner
0 siblings, 0 replies; 19+ messages in thread
From: Michael Meissner @ 2023-08-26 8:37 UTC (permalink / raw)
To: Peter Bergner
Cc: Michael Meissner, Kewen.Lin, P Jeevitha, GCC Patches, Segher Boessenkool
On Thu, Aug 24, 2023 at 09:19:51PM -0500, Peter Bergner wrote:
> On 8/24/23 12:35 PM, Michael Meissner wrote:
> > On Thu, Jul 20, 2023 at 10:05:28AM +0530, jeevitha wrote:
> >> gcc/
> >> PR target/110411
> >> * config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add fields
> >> to hold PTImode type.
> >> * config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Add node
> >> for PTImode type.
> >
> > It is good as far as it goes, but I suspect we will eventually need to extend
> > it. In particular, the reason people need PTImode is they need the even/odd
> > register layout. What you've done enables users to declare this value.
>
> Sure, it could be extended, but that is not what this patch is about.
> It's purely to allow the kernel team access to the guaranteed even/odd
> register layout for some inline asm code. Any extension would be a
> follow-on patch to this.
I think we need to get the intended users to try the compiler out, and see if
something else happens down the road that we didn't think of.
I tend to think of these things like the children's story "If you give a mouse
a cookie", which in turn leads to another thing and then another.
As I said, I would expect it would be temptimg to start use these types with
either 8 byte atomic built-ins, or do masks, etc.
In a way, it sort of reminds me of OOmode, where we have this opaque type to
load two vectors, but when you start trying to access the two separate
registers, you get all sorts of moves, because the compiler underneath the
covers doesn't really know it is two registers.
In general, I tend that people don't tend to have a full 128-bit integer, but
instead you have a structure with two fields, one is the lock and one is the
data. So you want to load things together (or do compare/swap, etc.) and then
you want to split the parts into 2 pieces, and then later, combine them back
into the PTImode container.
I really wish we had a constraint that matched the 2nd register in a multi-word
register (not an output operation, a constraint so that the register allocator
could know that you want to overlap a register).
--
Michael Meissner, IBM
PO Box 98, Ayer, Massachusetts, USA, 01432
email: meissner@linux.ibm.com
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2023-08-24 17:35 ` Michael Meissner
@ 2023-08-25 2:19 ` Peter Bergner
2023-08-26 8:37 ` Michael Meissner
0 siblings, 1 reply; 19+ messages in thread
From: Peter Bergner @ 2023-08-25 2:19 UTC (permalink / raw)
To: Michael Meissner, Kewen.Lin; +Cc: P Jeevitha, GCC Patches, Segher Boessenkool
On 8/24/23 12:35 PM, Michael Meissner wrote:
> On Thu, Jul 20, 2023 at 10:05:28AM +0530, jeevitha wrote:
>> gcc/
>> PR target/110411
>> * config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add fields
>> to hold PTImode type.
>> * config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Add node
>> for PTImode type.
>
> It is good as far as it goes, but I suspect we will eventually need to extend
> it. In particular, the reason people need PTImode is they need the even/odd
> register layout. What you've done enables users to declare this value.
Sure, it could be extended, but that is not what this patch is about.
It's purely to allow the kernel team access to the guaranteed even/odd
register layout for some inline asm code. Any extension would be a
follow-on patch to this.
On 8/9/23 3:48 AM, Kewen.Lin wrote:
> IIUC, this builtin type registering makes this type expose to users, so
> I wonder if we want to actually expose this type for users' uses.
> If yes, we need to update the documentation (and not sure if the current
> name is good enough); otherwise, I wonder if there is some existing
> practice to declare a builtin type with a name which users can't actually
> use and is just for shadowing a mode.
Segher, Mike, Jeevitha and I talked about the patch and Segher mentioned
that under some conditions, it's fine to keep the type undocumented.
Hopefully he'll weigh in on whether this particular patch is one of
those cases or not.
Peter
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2023-07-20 4:35 jeevitha
2023-08-09 8:48 ` Kewen.Lin
@ 2023-08-24 17:35 ` Michael Meissner
2023-08-25 2:19 ` Peter Bergner
1 sibling, 1 reply; 19+ messages in thread
From: Michael Meissner @ 2023-08-24 17:35 UTC (permalink / raw)
To: jeevitha; +Cc: gcc-patches, segher, meissner, Peter Bergner
On Thu, Jul 20, 2023 at 10:05:28AM +0530, jeevitha wrote:
> Hi All,
>
> The following patch has been bootstrapped and regtested on powerpc64le-linux.
>
> When the user specifies PTImode as an attribute, it breaks. Created
> a tree node to handle PTImode types. PTImode attribute helps in generating
> even/odd register pairs on 128 bits.
>
> 2023-07-20 Jeevitha Palanisamy <jeevitha@linux.ibm.com>
>
> gcc/
> PR target/110411
> * config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add fields
> to hold PTImode type.
> * config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Add node
> for PTImode type.
>
> gcc/testsuite/
> PR target/106895
> * gcc.target/powerpc/pr106895.c: New testcase.
It is good as far as it goes, but I suspect we will eventually need to extend
it. In particular, the reason people need PTImode is they need the even/odd
register layout. What you've done enables users to declare this value.
However, it is likely the users (kernel users mostly) will want to use it with
the atomic built-in functions that take 16 byte values. So I suspect we will
need to add overloads for those built-ins to allow either TImode and PTImode to
be used. Note, the PTImode built-in would bypass the TImode parts where they
convert a TImode into PTImode.
This is the reason PTImode was created in the first place. Due to the calling
sequence, TImode could be passed in odd/even (as well as even/odd) register
pairs, but the atomic insns and lq/stq need even/odd register pairs. But if
you are calling a built-in with PTImode, you don't have to convert it to
PTImode.
But then the next problem is what happens when people start using it. Do we
need to add all of the TImode insns (Add, subtract, and, ior, xor, shifts at
the very least)? These are the things I expect people might want to do for
memory accessed via atomic insns.
Then we get to the thorny problems of load/store on little endian systems, and
do we define the order of the two registers. Unfortunately, the lq/stq
instructions will load words in the opposite order as plq/pstq. I imagine the
kernel folk want to use lq/stq, but we may have to figure out exactly what they
want.
If we define any form of operation on PTImode, we likely need to define whether
register 0 has the high bits or low bits.
Sorry to be so negative, but those are a lot of the issues that might come up
as people use it.
--
Michael Meissner, IBM
PO Box 98, Ayer, Massachusetts, USA, 01432
email: meissner@linux.ibm.com
^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
2023-07-20 4:35 jeevitha
@ 2023-08-09 8:48 ` Kewen.Lin
2023-08-24 17:35 ` Michael Meissner
1 sibling, 0 replies; 19+ messages in thread
From: Kewen.Lin @ 2023-08-09 8:48 UTC (permalink / raw)
To: jeevitha; +Cc: Peter Bergner, gcc-patches, segher, meissner, David Edelsohn
Hi,
on 2023/7/20 12:35, jeevitha via Gcc-patches wrote:
> Hi All,
>
> The following patch has been bootstrapped and regtested on powerpc64le-linux.
>
> When the user specifies PTImode as an attribute, it breaks. Created
> a tree node to handle PTImode types. PTImode attribute helps in generating
> even/odd register pairs on 128 bits.
>
> 2023-07-20 Jeevitha Palanisamy <jeevitha@linux.ibm.com>
>
> gcc/
> PR target/110411
> * config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add fields
> to hold PTImode type.
> * config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Add node
> for PTImode type.
>
> gcc/testsuite/
> PR target/106895
> * gcc.target/powerpc/pr106895.c: New testcase.
>
> diff --git a/gcc/config/rs6000/rs6000-builtin.cc b/gcc/config/rs6000/rs6000-builtin.cc
> index a8f291c6a72..ca00c3b0d4c 100644
> --- a/gcc/config/rs6000/rs6000-builtin.cc
> +++ b/gcc/config/rs6000/rs6000-builtin.cc
> @@ -756,6 +756,15 @@ rs6000_init_builtins (void)
> else
> ieee128_float_type_node = NULL_TREE;
>
> + /* PTImode to get even/odd register pairs. */
> + intPTI_type_internal_node = make_node(INTEGER_TYPE);
> + TYPE_PRECISION (intPTI_type_internal_node) = GET_MODE_BITSIZE (PTImode);
> + layout_type (intPTI_type_internal_node);
> + SET_TYPE_MODE (intPTI_type_internal_node, PTImode);
> + t = build_qualified_type (intPTI_type_internal_node, TYPE_QUAL_CONST);
> + lang_hooks.types.register_builtin_type (intPTI_type_internal_node,
> + "__int128pti");
IIUC, this builtin type registering makes this type expose to users, so
I wonder if we want to actually expose this type for users' uses.
If yes, we need to update the documentation (and not sure if the current
name is good enough); otherwise, I wonder if there is some existing
practice to declare a builtin type with a name which users can't actually
use and is just for shadowing a mode.
BR,
Kewen
> +
> /* Vector pair and vector quad support. */
> vector_pair_type_node = make_node (OPAQUE_TYPE);
> SET_TYPE_MODE (vector_pair_type_node, OOmode);
> diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h
> index 3503614efbd..0456bf56d17 100644
> --- a/gcc/config/rs6000/rs6000.h
> +++ b/gcc/config/rs6000/rs6000.h
> @@ -2303,6 +2303,7 @@ enum rs6000_builtin_type_index
> RS6000_BTI_ptr_vector_quad,
> RS6000_BTI_ptr_long_long,
> RS6000_BTI_ptr_long_long_unsigned,
> + RS6000_BTI_PTI,
> RS6000_BTI_MAX
> };
>
> @@ -2347,6 +2348,7 @@ enum rs6000_builtin_type_index
> #define uintDI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTDI])
> #define intTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTTI])
> #define uintTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTTI])
> +#define intPTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_PTI])
> #define float_type_internal_node (rs6000_builtin_types[RS6000_BTI_float])
> #define double_type_internal_node (rs6000_builtin_types[RS6000_BTI_double])
> #define long_double_type_internal_node (rs6000_builtin_types[RS6000_BTI_long_double])
> diff --git a/gcc/testsuite/gcc.target/powerpc/pr106895.c b/gcc/testsuite/gcc.target/powerpc/pr106895.c
> new file mode 100644
> index 00000000000..04630fe1df5
> --- /dev/null
> +++ b/gcc/testsuite/gcc.target/powerpc/pr106895.c
> @@ -0,0 +1,15 @@
> +/* PR target/106895 */
> +/* { dg-require-effective-target int128 } */
> +/* { dg-options "-O2" } */
> +
> +/* Verify the following generates even/odd register pairs. */
> +
> +typedef __int128 pti __attribute__((mode(PTI)));
> +
> +void
> +set128 (pti val, pti *mem)
> +{
> + asm("stq %1,%0" : "=m"(*mem) : "r"(val));
> +}
> +
> +/* { dg-final { scan-assembler "stq 10,0\\(5\\)" } } */
>
>
^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH] rs6000: Fix issue in specifying PTImode as an attribute [PR106895]
@ 2023-07-20 4:35 jeevitha
2023-08-09 8:48 ` Kewen.Lin
2023-08-24 17:35 ` Michael Meissner
0 siblings, 2 replies; 19+ messages in thread
From: jeevitha @ 2023-07-20 4:35 UTC (permalink / raw)
To: gcc-patches, segher, meissner; +Cc: Peter Bergner
Hi All,
The following patch has been bootstrapped and regtested on powerpc64le-linux.
When the user specifies PTImode as an attribute, it breaks. Created
a tree node to handle PTImode types. PTImode attribute helps in generating
even/odd register pairs on 128 bits.
2023-07-20 Jeevitha Palanisamy <jeevitha@linux.ibm.com>
gcc/
PR target/110411
* config/rs6000/rs6000.h (enum rs6000_builtin_type_index): Add fields
to hold PTImode type.
* config/rs6000/rs6000-builtin.cc (rs6000_init_builtins): Add node
for PTImode type.
gcc/testsuite/
PR target/106895
* gcc.target/powerpc/pr106895.c: New testcase.
diff --git a/gcc/config/rs6000/rs6000-builtin.cc b/gcc/config/rs6000/rs6000-builtin.cc
index a8f291c6a72..ca00c3b0d4c 100644
--- a/gcc/config/rs6000/rs6000-builtin.cc
+++ b/gcc/config/rs6000/rs6000-builtin.cc
@@ -756,6 +756,15 @@ rs6000_init_builtins (void)
else
ieee128_float_type_node = NULL_TREE;
+ /* PTImode to get even/odd register pairs. */
+ intPTI_type_internal_node = make_node(INTEGER_TYPE);
+ TYPE_PRECISION (intPTI_type_internal_node) = GET_MODE_BITSIZE (PTImode);
+ layout_type (intPTI_type_internal_node);
+ SET_TYPE_MODE (intPTI_type_internal_node, PTImode);
+ t = build_qualified_type (intPTI_type_internal_node, TYPE_QUAL_CONST);
+ lang_hooks.types.register_builtin_type (intPTI_type_internal_node,
+ "__int128pti");
+
/* Vector pair and vector quad support. */
vector_pair_type_node = make_node (OPAQUE_TYPE);
SET_TYPE_MODE (vector_pair_type_node, OOmode);
diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h
index 3503614efbd..0456bf56d17 100644
--- a/gcc/config/rs6000/rs6000.h
+++ b/gcc/config/rs6000/rs6000.h
@@ -2303,6 +2303,7 @@ enum rs6000_builtin_type_index
RS6000_BTI_ptr_vector_quad,
RS6000_BTI_ptr_long_long,
RS6000_BTI_ptr_long_long_unsigned,
+ RS6000_BTI_PTI,
RS6000_BTI_MAX
};
@@ -2347,6 +2348,7 @@ enum rs6000_builtin_type_index
#define uintDI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTDI])
#define intTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_INTTI])
#define uintTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_UINTTI])
+#define intPTI_type_internal_node (rs6000_builtin_types[RS6000_BTI_PTI])
#define float_type_internal_node (rs6000_builtin_types[RS6000_BTI_float])
#define double_type_internal_node (rs6000_builtin_types[RS6000_BTI_double])
#define long_double_type_internal_node (rs6000_builtin_types[RS6000_BTI_long_double])
diff --git a/gcc/testsuite/gcc.target/powerpc/pr106895.c b/gcc/testsuite/gcc.target/powerpc/pr106895.c
new file mode 100644
index 00000000000..04630fe1df5
--- /dev/null
+++ b/gcc/testsuite/gcc.target/powerpc/pr106895.c
@@ -0,0 +1,15 @@
+/* PR target/106895 */
+/* { dg-require-effective-target int128 } */
+/* { dg-options "-O2" } */
+
+/* Verify the following generates even/odd register pairs. */
+
+typedef __int128 pti __attribute__((mode(PTI)));
+
+void
+set128 (pti val, pti *mem)
+{
+ asm("stq %1,%0" : "=m"(*mem) : "r"(val));
+}
+
+/* { dg-final { scan-assembler "stq 10,0\\(5\\)" } } */
^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2024-10-03 20:16 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <9ea38d87-180f-46b5-a723-45061680980f@linux.vnet.ibm.com>
2024-02-23 9:34 ` [PATCH] rs6000: Fix issue in specifying PTImode as an attribute [PR106895] jeevitha
2024-03-07 15:27 ` [PING^1][PATCH] " jeevitha
2024-03-21 12:51 ` [PATCH v2] " jeevitha
2024-04-17 9:14 ` [PING^1][PATCH " jeevitha
2024-05-21 4:58 ` [PING^2][PATCH " jeevitha
2024-06-19 12:42 ` [PING^3][PATCH " jeevitha
2024-07-10 1:38 ` [PING^4][PATCH " jeevitha
2024-08-22 7:39 ` [PING^5][PATCH " jeevitha
2024-09-09 6:21 ` [PING^6][PATCH " jeevitha
2024-09-25 15:04 ` [PING^7][PATCH " jeevitha
2024-10-03 19:24 ` [PATCH " Segher Boessenkool
2024-10-03 20:16 ` Peter Bergner
2024-03-18 14:36 ` [PATCH] " Segher Boessenkool
2024-03-18 17:35 ` Peter Bergner
2023-07-20 4:35 jeevitha
2023-08-09 8:48 ` Kewen.Lin
2023-08-24 17:35 ` Michael Meissner
2023-08-25 2:19 ` Peter Bergner
2023-08-26 8:37 ` Michael Meissner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).