[PATCH] D115380: 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 13:19:25 PST 2021
dexonsmith updated this revision to Diff 392912.
dexonsmith added a comment.
Re-uploading diff to trigger bots now that dependent patches are live.
I'm measuring compile-time perf at http://llvm-compile-time-tracker.com for the full patch set to confirm this doesn't regress anything. I'll report back once I see results.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D115380/new/
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.392912.patch
Type: text/x-patch
Size: 1061 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211208/3ad2d46d/attachment.bin>
More information about the llvm-commits
mailing list