add auto_sbitmap class
authorTrevor Saunders <tbsaunde+gcc@tbsaunde.org>
Tue, 26 Jul 2016 10:43:58 +0000 (10:43 +0000)
committerTrevor Saunders <tbsaunde@gcc.gnu.org>
Tue, 26 Jul 2016 10:43:58 +0000 (10:43 +0000)
gcc/ChangeLog:

2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>

* sbitmap.h (auto_sbitmap): New class.

From-SVN: r238747

gcc/ChangeLog
gcc/sbitmap.h

index cbb70a79428caeb6906979e46b564a77e8075633..79f79ebc55b38f4ec190cd0eac06519065fe341b 100644 (file)
@@ -1,3 +1,7 @@
+2016-07-26  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
+
+       * sbitmap.h (auto_sbitmap): New class.
+
 2016-07-26  Alan Modra  <amodra@gmail.com>
 
        PR target/72103
index c2081710bd293e41c9f1f691637c6327abea11c7..bd734f96eddafa1ea4b90247de2f52bd3e413016 100644 (file)
@@ -256,4 +256,29 @@ extern int bitmap_last_set_bit (const_sbitmap);
 
 extern void debug_bitmap (const_sbitmap);
 extern sbitmap sbitmap_realloc (sbitmap, unsigned int);
+
+/* a class that ties the lifetime of a sbitmap to its scope.  */
+class auto_sbitmap
+{
+public:
+  explicit auto_sbitmap (unsigned int size) :
+    m_bitmap (sbitmap_alloc (size)) {}
+  ~auto_sbitmap () { sbitmap_free (m_bitmap); }
+
+  /* Allow calling sbitmap functions on our bitmap.  */
+  operator sbitmap () { return m_bitmap; }
+
+private:
+  /* Prevent making a copy that refers to our sbitmap.  */
+  auto_sbitmap (const auto_sbitmap &);
+  auto_sbitmap &operator = (const auto_sbitmap &);
+#if __cplusplus >= 201103L
+  auto_sbitmap (auto_sbitmap &&);
+  auto_sbitmap &operator = (auto_sbitmap &&);
+#endif
+
+  /* The bitmap we are managing.  */
+  sbitmap m_bitmap;
+};
+
 #endif /* ! GCC_SBITMAP_H */