aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/SmallVector.cpp
AgeCommit message (Expand)AuthorFilesLines
2024-01-22[LLVM][ADT] Explicitly convert size_t values to SmallVector's size type (#77939)Andrei Golubev1-2/+1
2022-10-06[SmallVector] Reallocate if assigned memory is right after the current vector...Alina Sbirlea1-4/+25
2022-08-27[Support] Use std::clamp (NFC)Kazu Hirata1-1/+1
2022-01-21[llvm] Cleanup header dependencies in ADT and Supportserge-sans-paille1-0/+1
2021-10-05[Support] Update SmallVector report_fatal_error calls to use Twine and add mi...Simon Pilgrim1-2/+3
2021-08-30[AIX] Suppress -Waix-compat warning with SmallVector classJake Egan1-0/+9
2021-07-28[llvm] Replace LLVM_ATTRIBUTE_NORETURN with C++11 [[noreturn]]Fangrui Song1-3/+2
2021-01-21ADT: Fix reference invalidation in SmallVector::emplace_back and assign(N,V)Duncan P. N. Exon Smith1-13/+34
2020-12-01s/instantate/instantiate/ throughout. NFCI.Arthur O'Dwyer1-1/+1
2020-09-06[SmallVector] Move error handling out of lineBenjamin Kramer1-20/+31
2020-09-02Improve error handling for SmallVector programming errorsGeoffrey Martin-Noble1-7/+23
2020-04-30[NFC] Add include cstdint for SIZE_MAX.Andrew Browne1-0/+1
2020-04-30Revert "Revert "[ADT] Fix SmallVector unused template instantiation on 32-bit...Andrew Browne1-0/+14
2020-04-30Revert "[ADT] Fix SmallVector unused template instantiation on 32-bit systems."Andrew Browne1-14/+0
2020-04-30[ADT] Fix SmallVector unused template instantiation on 32-bit systems.Andrew Browne1-0/+14
2020-04-27ADT: SmallVector size/capacity use word-size integers when elements are smallAndrew Browne1-10/+19
2020-04-24Revert "ADT: SmallVector size/capacity use word-size integers when elements a...Andrew Browne1-19/+10
2020-04-24ADT: SmallVector size/capacity use word-size integers when elements are smallAndrew Browne1-10/+19
2020-04-21Make SmallVector assert if it cannot grow.Andrew Browne1-0/+7
2020-04-18Revert "ADT: SmallVector size/capacity use word-size integers when elements a...Nikita Popov1-3/+27
2020-04-17ADT: SmallVector size/capacity use word-size integers when elements are smallAndrew Browne1-27/+3
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-07-24ADT: Shrink SmallVector size 0 to 16B on 64-bit platformsDuncan P. N. Exon Smith1-2/+21
2018-07-20Reapply "ADT: Shrink size of SmallVector by 8B on 64-bit platforms"Duncan P. N. Exon Smith1-11/+14
2018-07-20Revert "ADT: Shrink size of SmallVector by 8B on 64-bit platforms"Duncan P. N. Exon Smith1-14/+11
2018-07-19ADT: Shrink size of SmallVector by 8B on 64-bit platformsDuncan P. N. Exon Smith1-11/+14
2018-06-23ADT: Use EBO to shrink SmallVector size 1Duncan P. N. Exon Smith1-0/+4
2018-06-09Use uniform mechanism for OOM errors handlingSerge Pavlov1-6/+2
2018-05-30Revert commit 333506Serge Pavlov1-2/+6
2018-05-30Use uniform mechanism for OOM errors handlingSerge Pavlov1-6/+2
2018-05-29Reverted commits 333390, 333391 and 333394Serge Pavlov1-2/+6
2018-05-29Use uniform mechanism for OOM errors handlingSerge Pavlov1-6/+2
2017-07-20Support, IR, ADT: Check nullptr after allocation with malloc/realloc or callocMatthias Braun1-1/+4
2015-06-09[ADT] Assert that SmallVectorBase::grow_pod() successfully reallocates memory.Daniel Sanders1-0/+1
2012-08-22Reduce alignment of SmallVector<T> to the required amount, rather than forcin...Richard Smith1-3/+3
2010-09-02After some discussion with djg, teach SmallVector to grow from a zeroJohn McCall1-1/+1
2010-06-08Use realloc instead of malloc+memcpy when growing a POD SmallVector. A smartBenjamin Kramer1-9/+12
2009-12-16now that libsystem no longer uses SmallVector, we can move Chris Lattner1-0/+37