public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* Where in C++ module streaming to handle a new bitfield added in "tree_decl_common"
@ 2022-08-02 14:44 Qing Zhao
  2022-08-15 13:28 ` Nathan Sidwell
  0 siblings, 1 reply; 7+ messages in thread
From: Qing Zhao @ 2022-08-02 14:44 UTC (permalink / raw)
  To: Nathan; +Cc: gcc-patches Paul A Clarke via

Hi, Nathan,

I am adding a new bitfield “decl_not_flexarray” in “tree_decl_common”  (gcc/tree-core.h) for the new gcc feature -fstrict-flex-arrays. 

====
diff --git a/gcc/tree-core.h b/gcc/tree-core.h
index ea9f281f1cc..458c6e6ceea 100644
--- a/gcc/tree-core.h
+++ b/gcc/tree-core.h
@@ -1813,7 +1813,10 @@ struct GTY(()) tree_decl_common {
     TYPE_WARN_IF_NOT_ALIGN.  */
  unsigned int warn_if_not_align : 6;

-  /* 14 bits unused.  */
+  /* In FIELD_DECL, this is DECL_NOT_FLEXARRAY.  */
+  unsigned int decl_not_flexarray : 1;
+
+  /* 13 bits unused.  */

  /* UID for points-to sets, stable over copying from inlining.  */
  unsigned int pt_uid;
====

(Please refer to the following for details:

https://gcc.gnu.org/pipermail/gcc-patches/2022-July/598556.html
https://gcc.gnu.org/pipermail/gcc-patches/2022-July/598965.html
)

Richard mentioned the following:

"I've not seen it so you are probably missing it - the bit has to be
streamed in tree-streamer-{in,out}.cc to be usable from LTO.  Possibly
C++ module streaming also needs to handle it.”

I have figured out that where to add the handling of the bit in “tree-streamer-{in, out}.cc,
However, it’s quite difficult for me to locate where should I add the handling of this new bit in 
C++ module streaming,  could you please help me on this?

Thanks a lot for your help.

Qing

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

end of thread, other threads:[~2022-08-16 13:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-02 14:44 Where in C++ module streaming to handle a new bitfield added in "tree_decl_common" Qing Zhao
2022-08-15 13:28 ` Nathan Sidwell
2022-08-15 14:03   ` Richard Biener
2022-08-16 12:16     ` Nathan Sidwell
2022-08-16 12:37       ` Richard Biener
2022-08-16 13:50         ` Qing Zhao
2022-08-16 13:44   ` Qing Zhao

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