public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 06/16] malloc: Ensure the generic mtag hooks are not used
@ 2021-03-05 15:16 Wilco Dijkstra
  2021-03-05 18:15 ` DJ Delorie
  0 siblings, 1 reply; 7+ messages in thread
From: Wilco Dijkstra @ 2021-03-05 15:16 UTC (permalink / raw)
  To: Szabolcs Nagy, dj; +Cc: 'GNU C Library'

Hi,

>> This may make it impossible to compile individual glibc modules with
>> -O0, say, for debugging purposes.  I do this quite often with malloc.c
>> and do not want to lose that ability.
>> 
>> Do we trust the compiler's default optimizations (at -O0) to do code
>> elimination based on constant conditions?
>
> yes, this breaks -O0, i haven't thought of that.

No this works fine. -O0 optimizes if (0) like you'd expect. You do need a bit
of hacking to do it, I tried:

CPPFLAGS-malloc.c += -O0 -D__OPTIMIZE__

> i thought it's better to guard everything with
> one flag in the code than ifdefs (that can be
> runtime flag with tagging enabled or constant 0
> when disabled) since ifdefed code is not checked
> by the compiler.

Agreed, generic C code is better than preprocessed code that is never
checked for all possible configurations.

And to reduce the overhead further without ifuncs we will likely need to
move most of the tagging code into a separate if (tagging_enabled) block
similar to the single-threaded fast path (instead of checking the boolean
many times).

Cheers,
Wilco

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 06/16] malloc: Ensure the generic mtag hooks are not used
  2021-03-05 15:16 [PATCH 06/16] malloc: Ensure the generic mtag hooks are not used Wilco Dijkstra
@ 2021-03-05 18:15 ` DJ Delorie
  0 siblings, 0 replies; 7+ messages in thread
From: DJ Delorie @ 2021-03-05 18:15 UTC (permalink / raw)
  To: Wilco Dijkstra; +Cc: Szabolcs.Nagy, libc-alpha

Wilco Dijkstra <Wilco.Dijkstra@arm.com> writes:
> No this works fine. -O0 optimizes if (0) like you'd expect. You do need a bit
> of hacking to do it, I tried:

Did you try it on the oldest version of gcc that glibc still supports?

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 06/16] malloc: Ensure the generic mtag hooks are not used
  2021-03-04 16:31 ` [PATCH 06/16] malloc: Ensure the generic mtag hooks are not used Szabolcs Nagy
  2021-03-05  1:05   ` DJ Delorie
@ 2021-03-05 20:30   ` DJ Delorie
  1 sibling, 0 replies; 7+ messages in thread
From: DJ Delorie @ 2021-03-05 20:30 UTC (permalink / raw)
  To: Szabolcs Nagy; +Cc: libc-alpha, Richard.Earnshaw


Szabolcs Nagy <szabolcs.nagy@arm.com> writes:
> Use inline functions instead of macros, because macros can cause unused
> variable warnings and type conversion issues.  We assume these functions
> may appear in the code but only in dead code paths (hidden by a runtime
> check), so it's important that they can compile with correct types, but
> if they are actually used that should be an error.
>
> Currently the hooks are only used when USE_MTAG is true which only
> happens on aarch64 and then the aarch64 specific code is used not this
> generic header.  However followup refactoring will allow the hooks to
> be used with !USE_MTAG.
>
> Note: the const qualifier in the comment was wrong: changing tags is a
> write operation.

This is outside my usual area, but I'll give it my +1 given the
follow-up.

Reviewed-by: DJ Delorie <dj@redhat.com>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH 06/16] malloc: Ensure the generic mtag hooks are not used
@ 2021-03-05 19:01 Wilco Dijkstra
  0 siblings, 0 replies; 7+ messages in thread
From: Wilco Dijkstra @ 2021-03-05 19:01 UTC (permalink / raw)
  To: dj; +Cc: 'GNU C Library'

Hi DJ,

>> No this works fine. -O0 optimizes if (0) like you'd expect. You do need a bit
>> of hacking to do it, I tried:
>
> Did you try it on the oldest version of gcc that glibc still supports?

No, but since this is not an officially supported option (-O0 always gives an error),
I don't see how that matters until -O0 becomes officially supported.

Cheers,
Wilco

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 06/16] malloc: Ensure the generic mtag hooks are not used
  2021-03-05  1:05   ` DJ Delorie
@ 2021-03-05 12:44     ` Szabolcs Nagy
  0 siblings, 0 replies; 7+ messages in thread
From: Szabolcs Nagy @ 2021-03-05 12:44 UTC (permalink / raw)
  To: DJ Delorie; +Cc: libc-alpha, Richard.Earnshaw

The 03/04/2021 20:05, DJ Delorie wrote:
> Szabolcs Nagy <szabolcs.nagy@arm.com> writes:
> > +/* Memory tagging target hooks are only called when memory tagging is
> > +   enabled at runtime.  The generic definitions here must not be used.  */
> > +void __libc_mtag_link_error (void);
> 
> This may make it impossible to compile individual glibc modules with
> -O0, say, for debugging purposes.  I do this quite often with malloc.c
> and do not want to lose that ability.
> 
> Do we trust the compiler's default optimizations (at -O0) to do code
> elimination based on constant conditions?

yes, this breaks -O0, i haven't thought of that.

i thought it's better to guard everything with
one flag in the code than ifdefs (that can be
runtime flag with tagging enabled or constant 0
when disabled) since ifdefed code is not checked
by the compiler.

the link error is to ensure that without tagging
the tagging hooks are not called accidentally.
i can replace that with abort() and then -O0
works but then you only get runtime failure, not
a link time one (which is less useful since it
may be in a very rarely used code path).

alternatively i can remove this safety net or
just go back to ifdefs.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 06/16] malloc: Ensure the generic mtag hooks are not used
  2021-03-04 16:31 ` [PATCH 06/16] malloc: Ensure the generic mtag hooks are not used Szabolcs Nagy
@ 2021-03-05  1:05   ` DJ Delorie
  2021-03-05 12:44     ` Szabolcs Nagy
  2021-03-05 20:30   ` DJ Delorie
  1 sibling, 1 reply; 7+ messages in thread
From: DJ Delorie @ 2021-03-05  1:05 UTC (permalink / raw)
  To: Szabolcs Nagy; +Cc: libc-alpha, Richard.Earnshaw

Szabolcs Nagy <szabolcs.nagy@arm.com> writes:
> +/* Memory tagging target hooks are only called when memory tagging is
> +   enabled at runtime.  The generic definitions here must not be used.  */
> +void __libc_mtag_link_error (void);

This may make it impossible to compile individual glibc modules with
-O0, say, for debugging purposes.  I do this quite often with malloc.c
and do not want to lose that ability.

Do we trust the compiler's default optimizations (at -O0) to do code
elimination based on constant conditions?

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH 06/16] malloc: Ensure the generic mtag hooks are not used
  2021-03-04 16:30 [PATCH 00/16] memory tagging improvements Szabolcs Nagy
@ 2021-03-04 16:31 ` Szabolcs Nagy
  2021-03-05  1:05   ` DJ Delorie
  2021-03-05 20:30   ` DJ Delorie
  0 siblings, 2 replies; 7+ messages in thread
From: Szabolcs Nagy @ 2021-03-04 16:31 UTC (permalink / raw)
  To: libc-alpha, Richard.Earnshaw, DJ Delorie

Use inline functions instead of macros, because macros can cause unused
variable warnings and type conversion issues.  We assume these functions
may appear in the code but only in dead code paths (hidden by a runtime
check), so it's important that they can compile with correct types, but
if they are actually used that should be an error.

Currently the hooks are only used when USE_MTAG is true which only
happens on aarch64 and then the aarch64 specific code is used not this
generic header.  However followup refactoring will allow the hooks to
be used with !USE_MTAG.

Note: the const qualifier in the comment was wrong: changing tags is a
write operation.
---
 sysdeps/generic/libc-mtag.h | 41 ++++++++++++++++++++++++++++---------
 1 file changed, 31 insertions(+), 10 deletions(-)

diff --git a/sysdeps/generic/libc-mtag.h b/sysdeps/generic/libc-mtag.h
index 1a866cdc0c..e8fc236b6c 100644
--- a/sysdeps/generic/libc-mtag.h
+++ b/sysdeps/generic/libc-mtag.h
@@ -31,22 +31,43 @@
 /* Extra flags to pass to mmap() to request a tagged region of memory.  */
 #define __MTAG_MMAP_FLAGS 0
 
+/* Memory tagging target hooks are only called when memory tagging is
+   enabled at runtime.  The generic definitions here must not be used.  */
+void __libc_mtag_link_error (void);
+
 /* Set the tags for a region of memory, which must have size and alignment
-   that are multiples of __MTAG_GRANULE_SIZE.  Size cannot be zero.
-   void *__libc_mtag_tag_region (const void *, size_t)  */
-#define __libc_mtag_tag_region(p, s) (p)
+   that are multiples of __MTAG_GRANULE_SIZE.  Size cannot be zero.  */
+static inline void *
+__libc_mtag_tag_region (void *p, size_t n)
+{
+  __libc_mtag_link_error ();
+  return p;
+}
 
 /* Optimized equivalent to __libc_mtag_tag_region followed by memset.  */
-#define __libc_mtag_memset_with_tag memset
+static inline void *
+__libc_mtag_memset_with_tag (void *p, int c, size_t n)
+{
+  __libc_mtag_link_error ();
+  return memset (p, c, n);
+}
 
 /* Convert address P to a pointer that is tagged correctly for that
-   location.
-   void *__libc_mtag_address_get_tag (void*)  */
-#define __libc_mtag_address_get_tag(p) (p)
+   location.  */
+static inline void *
+__libc_mtag_address_get_tag (void *p)
+{
+  __libc_mtag_link_error ();
+  return p;
+}
 
 /* Assign a new (random) tag to a pointer P (does not adjust the tag on
-   the memory addressed).
-   void *__libc_mtag_new_tag (void*)  */
-#define __libc_mtag_new_tag(p) (p)
+   the memory addressed).  */
+static inline void *
+__libc_mtag_new_tag (void *p)
+{
+  __libc_mtag_link_error ();
+  return p;
+}
 
 #endif /* _GENERIC_LIBC_MTAG_H */
-- 
2.17.1


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-03-05 20:31 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-05 15:16 [PATCH 06/16] malloc: Ensure the generic mtag hooks are not used Wilco Dijkstra
2021-03-05 18:15 ` DJ Delorie
  -- strict thread matches above, loose matches on Subject: below --
2021-03-05 19:01 Wilco Dijkstra
2021-03-04 16:30 [PATCH 00/16] memory tagging improvements Szabolcs Nagy
2021-03-04 16:31 ` [PATCH 06/16] malloc: Ensure the generic mtag hooks are not used Szabolcs Nagy
2021-03-05  1:05   ` DJ Delorie
2021-03-05 12:44     ` Szabolcs Nagy
2021-03-05 20:30   ` DJ Delorie

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).