index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
include
/
llvm
/
ADT
/
SmallVector.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
SmallVector and SmallPtrSet allocations now power-of-two aligned.
Jean-Luc Duprat
2013-03-29
1
-1
/
+3
*
Revert "Fix allocations of SmallVector and SmallPtrSet so they are more prone...
Rafael Espindola
2013-03-29
1
-3
/
+1
*
Fix allocations of SmallVector and SmallPtrSet so they are more prone to
Jean-Luc Duprat
2013-03-29
1
-1
/
+3
*
Add asserts to SmallVector so that calls to front() and back() only succeed
Richard Trieu
2013-01-24
1
-0
/
+4
*
Switch LLVM_USE_RVALUE_REFERENCES to LLVM_HAS_RVALUE_REFERENCES.
Chandler Carruth
2012-11-30
1
-9
/
+9
*
Use LLVM_DELETED_FUNCTION.
Jakub Staszak
2012-11-15
1
-1
/
+1
*
Fix Doxygen issues:
Dmitri Gribenko
2012-09-13
1
-2
/
+2
*
Reduce alignment of SmallVector<T> to the required amount, rather than forcin...
Richard Smith
2012-08-22
1
-97
/
+55
*
Move the SmallVector unit tests to be type-parameterized so that we can
Chandler Carruth
2012-07-30
1
-3
/
+17
*
SmallVector: Crank up verbosity of asserts per Chandler's request.
Benjamin Kramer
2012-07-27
1
-3
/
+19
*
SmallVector::erase: Assert that iterators are actually inside the vector.
Benjamin Kramer
2012-07-27
1
-0
/
+3
*
SmallVector: Make use of move semantics to speed up moving objects in erase()...
Benjamin Kramer
2012-07-08
1
-6
/
+6
*
Bring the return value of SmallVector::insert in line with std::vector::insert.
Benjamin Kramer
2012-06-17
1
-10
/
+11
*
SmallVector: return a valid iterator for the rare case of inserting an empty ...
Benjamin Kramer
2012-06-17
1
-2
/
+2
*
Update SmallVector to support move semantics if the host does.
John McCall
2012-05-02
1
-14
/
+212
*
SmallVector: Don't rely on having an assignment operator around in push_back ...
Benjamin Kramer
2012-04-29
1
-1
/
+1
*
Remove an old hack for pre-2005 MSVC. We don't support ancient microsoft comp...
Benjamin Kramer
2012-03-13
1
-24
/
+0
*
Template specialize SmallVector::push_back based on POD-ness of the type. Re...
Pete Cooper
2012-02-16
1
-19
/
+35
*
SmallVector's construct_range is the same thing as std::uninitialized_fill, n...
Benjamin Kramer
2012-02-05
1
-9
/
+3
*
Simplify code. No functionality change.
Benjamin Kramer
2012-02-05
1
-6
/
+2
*
Protect SmallVectorImpl's constructor and a few other methods that aren't mea...
Benjamin Kramer
2012-01-20
1
-4
/
+6
*
Add a generic 'capacity_in_bytes' function to allow inspection of memory usag...
Ted Kremenek
2011-07-27
1
-6
/
+11
*
Fix a subtle issue in SmallVector. The following code did not work as expected:
Owen Anderson
2011-07-06
1
-1
/
+8
*
Add missing standard headers. Patch by Joerg Sonnenberger!
Nick Lewycky
2010-12-19
1
-0
/
+1
*
Support: Move c_str from SmallVector back to SmallString and add a free standing
Michael J. Spencer
2010-12-09
1
-7
/
+0
*
Support/ADT: Move c_str() from SmallString to SmallVectorImpl. The Windows Pa...
Michael J. Spencer
2010-12-06
1
-0
/
+6
*
Fix spelling!
Michael J. Spencer
2010-11-26
1
-1
/
+1
*
Fix Whitespace.
Michael J. Spencer
2010-11-26
1
-1
/
+1
*
GCC extensions are no longer used here - update the comment.
Duncan Sands
2010-10-03
1
-2
/
+2
*
Remove two uses of the gcc specific 'aligned' attribute. This
Duncan Sands
2010-10-03
1
-11
/
+5
*
After some discussion with djg, teach SmallVector to grow from a zero
John McCall
2010-09-02
1
-17
/
+6
*
SmallVector's growth policies don't like starting from zero capacity.
John McCall
2010-08-26
1
-1
/
+9
*
Provide an explicit specialization of SmallVector at N=0 which does
John McCall
2010-08-25
1
-0
/
+33
*
disable SmallVectorImpl's copy constructor. This prevents a class
Chris Lattner
2010-06-15
1
-0
/
+2
*
Add includes to get ptrdiff_t. This is needed by gcc-4.6 which has
Duncan Sands
2010-06-10
1
-0
/
+1
*
Use realloc instead of malloc+memcpy when growing a POD SmallVector. A smart
Benjamin Kramer
2010-06-08
1
-3
/
+4
*
remove trailing whitespace
Jim Grosbach
2010-06-02
1
-75
/
+75
*
Fix PR6910.
Torok Edwin
2010-04-29
1
-1
/
+1
*
Fix SmallVector's insert to handle non-random-access iterators.
Dan Gohman
2010-03-26
1
-6
/
+18
*
Fix a name clash that was breaking MSVC builds.
Benjamin Kramer
2010-03-18
1
-1
/
+1
*
Fix a bug found by inspection; in the __GNUC__ code, the alignment
Dan Gohman
2010-03-18
1
-8
/
+9
*
tabs -> spaces.
Chris Lattner
2009-12-17
1
-3
/
+3
*
Fix Windows build breakage...
Steve Naroff
2009-12-17
1
-4
/
+4
*
Fix unused variable warning.
Eric Christopher
2009-12-17
1
-1
/
+1
*
Fix one more missing this-> to placate that picky clang++.
Daniel Dunbar
2009-12-16
1
-1
/
+1
*
fix more missing this->'s to placate clang++
Chris Lattner
2009-12-16
1
-26
/
+27
*
Fix a missing this-> that clang++ notices.
Chris Lattner
2009-12-16
1
-1
/
+1
*
now that libsystem no longer uses SmallVector, we can move
Chris Lattner
2009-12-16
1
-21
/
+3
*
factor out the grow() method for all pod implementations into one
Chris Lattner
2009-12-16
1
-37
/
+76
*
pull destroy_range and uninitialized_copy up to the
Chris Lattner
2009-12-16
1
-26
/
+32
[next]