]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Remove remaining traces of m_vecdata from comments [PR109006]
authorJakub Jelinek <jakub@redhat.com>
Sat, 4 Mar 2023 10:24:04 +0000 (11:24 +0100)
committerJakub Jelinek <jakub@redhat.com>
Sat, 4 Mar 2023 10:24:04 +0000 (11:24 +0100)
The following patch adjusts remaining references to the removed m_vecdata
array from vec.h in various comments.

2023-03-04  Jakub Jelinek  <jakub@redhat.com>

PR middle-end/109006
* vec.cc (test_auto_alias): Adjust comment for removal of
m_vecdata.
* read-rtl-function.cc (function_reader::parse_block): Likewise.
* gdbhooks.py: Likewise.

gcc/gdbhooks.py
gcc/read-rtl-function.cc
gcc/vec.cc

index e29bd458909c3410fed32edd6f163b83e3da0961..32ddaf625e6020774661d4962ed0bb5137f075ba 100644 (file)
@@ -133,10 +133,10 @@ vector: attempting to do so instead gives you the vec itself (for vec[0]),
 or a (probably) invalid cast to vec<> for the memory after the vec (for
 vec[1] onwards).
 
-Instead (for now) you must access m_vecdata:
-  (gdb) p bb->preds->m_vecdata[0]
+Instead (for now) you must access the payload directly:
+  (gdb) p ((edge_def**)(bb->preds+1))[0]
   $20 = <edge 0x7ffff044d380 (3 -> 5)>
-  (gdb) p bb->preds->m_vecdata[1]
+  (gdb) p ((edge_def**)(bb->preds+1))[1]
   $21 = <edge 0x7ffff044d3b8 (4 -> 5)>
 """
 import os.path
index 74bd4ddb336c385f6b7d658ec86bc1f4efcbc4e3..b89a811e037bba8e06125052079e3aeb9dda9c79 100644 (file)
@@ -622,10 +622,11 @@ function_reader::parse_block ()
 
      These can get out-of-sync when basic blocks are optimized away.
      They get back in sync by "compact_blocks".
-     We reconstruct cfun->cfg->x_basic_block_info->m_vecdata with NULL
-     values in it for any missing basic blocks, so that (a) == (b) for
-     all of the blocks we create.  The doubly-linked list of basic
-     blocks (next_bb/prev_bb) skips over these "holes".  */
+     We reconstruct cfun->cfg->x_basic_block_info->address () pointed
+     vector elements with NULL values in it for any missing basic blocks,
+     so that (a) == (b) for all of the blocks we create.  The
+     doubly-linked list of basic blocks (next_bb/prev_bb) skips over
+     these "holes".  */
 
   if (m_highest_bb_idx < bb_idx)
     m_highest_bb_idx = bb_idx;
index 2128f6666b197edf2f615da463e092a73e18e887..69c86f63ee8f63e6cfcb56275bafba47130c7790 100644 (file)
@@ -568,7 +568,7 @@ test_auto_delete_vec ()
   ASSERT_EQ (dtor_count, 2);
 }
 
-/* Verify accesses to m_vecdata are done indirectly.  */
+/* Verify accesses to vector elements are done indirectly.  */
 
 static void
 test_auto_alias ()