[PATCH] D115380: WIP: ADT: Make SmallVector::set_size() private
Duncan P. N. Exon Smith via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 8 12:43:24 PST 2021
dexonsmith created this revision.
dexonsmith added a reviewer: dblaikie.
dexonsmith requested review of this revision.
Herald added a project: LLVM.
Stop allowing use of `SmallVectorBase::set_size()` outside of the
SmallVector implementation. That sets the size without calling
constructors or destructors. Most callers should probably just use
`resize()`.
(Marked WIP for now since not all the dependent patches are up yet.)
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D115380
Files:
llvm/include/llvm/ADT/SmallVector.h
Index: llvm/include/llvm/ADT/SmallVector.h
===================================================================
--- llvm/include/llvm/ADT/SmallVector.h
+++ llvm/include/llvm/ADT/SmallVector.h
@@ -72,15 +72,11 @@
LLVM_NODISCARD bool empty() const { return !Size; }
+protected:
/// Set the array size to \p N, which the current array must have enough
/// capacity for.
///
/// This does not construct or destroy any elements in the vector.
- ///
- /// Clients can use this in conjunction with capacity() to write past the end
- /// of the buffer when they know that more elements are available, and only
- /// update the size later. This avoids the cost of value initializing elements
- /// which will only be overwritten.
void set_size(size_t N) {
assert(N <= capacity());
Size = N;
@@ -588,6 +584,9 @@
}
private:
+ // Hide set_size() to avoid misuse.
+ void set_size(size_type N) { SuperClass::set_size(N); }
+
template <bool ForOverwrite> void resizeImpl(size_type N) {
if (N == this->size())
return;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D115380.392883.patch
Type: text/x-patch
Size: 1061 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211208/6eccbcb1/attachment.bin>
More information about the llvm-commits
mailing list