BumpPtrAllocator: don't accept 0 for the alignment parameter
[oota-llvm.git] / include / llvm / Support / Allocator.h
2014-08-19 Hans WennborgBumpPtrAllocator: don't accept 0 for the alignment...
2014-08-17 Hans WennborgBumpPtrAllocator: remove 'no slabs allocated yet' check
2014-04-18 Benjamin KramerAllocator: Remove ReferenceAdder hack.
2014-04-18 Chandler Carruth[Allocator] Fix an obvious think-o with the move assignment
2014-04-17 Chandler Carruth[Allocator] Make SpecificBumpPtrAllocator also movable...
2014-04-16 Chandler Carruth[Allocator] Make BumpPtrAllocator movable and move...
2014-04-16 Chandler Carruth[Allocator] Nuke to useless functions. The implicit...
2014-04-15 Chandler Carruth[Allocator] Fold the two templated overloads into a...
2014-04-15 Chandler Carruth[Allocator] Remove a really problematic overload. This...
2014-04-15 Chandler Carruth[Allocator] Finally, finish nuking the redundant code...
2014-04-15 Chandler Carruth[Allocator] Pass the size to the deallocation function...
2014-04-15 Chandler Carruth[Allocator] Fix r206256 which got the enabling case...
2014-04-15 Chandler Carruth[Allocator] MSVC apparantly has broken SFINAE context...
2014-04-15 Chandler Carruth[Allocator] Constrain the Deallocate templated overload...
2014-04-15 Chandler Carruth[Allocator] Add Deallocate support to the AllocatorBase...
2014-04-15 Chandler Carruth[Allocator] Hack around the fact that GCC can't compile the
2014-04-15 Chandler Carruth[Allocator] Factor the Allocate template overloads...
2014-04-14 Chandler Carruth[Allocator] Hoist the external helper function into...
2014-04-14 Chandler Carruth[Allocator] Make the underlying allocator a template...
2014-04-14 Chandler CarruthFix the compile from r206147 in release builds by movin...
2014-04-14 Chandler Carruth[Allocator] Switch the BumpPtrAllocator to use a vector...
2014-04-07 Craig Topper[C++11] Make use of 'nullptr' in the Support library.
2014-03-31 Rui UeyamaFix MSVC warning.
2014-03-30 Chandler Carruth[Allocator] Lift the slab size and size threshold into...
2014-03-28 Chandler Carruth[Allocator Cleanup] Sink the private data members and...
2014-03-28 Chandler Carruth[Allocator Cleanup] Move generic pointer alignment...
2014-03-28 Chandler Carruth[Allocator Cleanup] Make the growth of the "slab" size...
2014-03-27 Chandler Carruth[cleanup] Run clang-format over these routines to remov...
2014-03-27 Chandler Carruth[cleanup] Modernize doxygen comments for the BumpPtrAll...
2014-03-10 Craig Topper[C++11] Remove 'virtual' keyword from methods marked...
2014-03-02 Craig TopperSwitch all uses of LLVM_OVERRIDE to just use 'override...
2014-02-05 Nick KledzikFix layering StringRef copy using BumpPtrAllocator.
2014-01-28 Nick KledzikBe more explicit about which overloaded variant to...
2014-01-28 Nick Kledzikfix templates to work with pre c++11
2014-01-28 Nick KledzikAdd BumpPtrAllocator::allocateCopy() utilities
2013-08-28 Argyrios Kyrtzidis[BumpPtrAllocator] Move DefaultSlabAllocator to a membe...
2012-12-03 Chandler CarruthSort the #include lines for the include/... tree with...
2012-09-23 Craig TopperAdd LLVM_OVERRIDE to methods that override their base...
2012-09-16 Craig TopperUse LLVM_DELETED_FUNCTION for copy constructors and...
2012-07-06 Dmitri GribenkoRevert r159789.
2012-07-06 Dmitri GribenkoEnable new[] on llvm::BumpPtrAllocator.
2011-04-18 Ted KremenekAdd BumpPtrAllocator::getTotalMemory() to allow clients...
2011-01-03 Chris LattnerEnhance ScopedHashTable to allow it to take an allocato...
2010-11-29 Michael J. SpencerMerge System into Support.
2010-10-30 Chris LattnerRename alignof -> alignOf to avoid irritating C++'0x...
2010-10-03 Duncan SandsRemove two uses of the gcc specific 'aligned' attribute...
2010-04-08 Benjamin KramerProvide operator delete for BumpPtrAllocator and Recycl...
2010-04-04 Jakob Stoklund OlesenSwitch SSEDomainFix to SpecificBumpPtrAllocator.
2010-04-02 Torok EdwinFix SpecificBumpPtrAllocator iteration.
2010-03-30 Benjamin KramerIntroduce SpecificBumpPtrAllocator, a wrapper for BumpP...
2010-03-30 Torok EdwinReapply r99881 with some fixes: only call destructor...
2010-03-30 Torok EdwinRevert 99881, it brooke smooshlab's llvm-gcc-i386-darwin9.
2010-03-30 Torok EdwinIntroduce another Reset() method in BumpPtrAllocator...
2010-03-18 Dan Gohmanoffsetof always has type size_t.
2010-03-18 Dan GohmanExplicitly cast std::min's arguments to avoid type...
2010-03-18 Dan GohmanDefine placement new wrappers for BumpPtrAllocator and
2010-01-16 Bill WendlingTemporarily revert r93581. It was causing failures...
2010-01-15 Ted KremenekBumpPtrAllocator: Have the DefaultSlabAllocator created...
2009-10-26 Chandler CarruthMove DataTypes.h to include/llvm/System, update all...
2009-07-23 Reid KlecknerRe-committing changes from r76825 to BumpPtrAllocator...
2009-07-23 Reid KlecknerReverting r76825 and r76828, since they caused clang...
2009-07-23 Reid KlecknerParameterize the BumpPtrAllocator over a slab allocator...
2009-03-10 Mon P WangChanged Allocate to use size_t instead of unsigned.
2009-03-10 Mon P WangFixed rounding up EltSize
2009-02-20 Misha BrukmanRemoved trailing whitespace.
2009-02-06 Ted KremenekDeallocate() methods now take a 'const void*' instead...
2009-02-03 Chris Lattneradd a method to BumpPtrAllocator that allows allocating...
2009-01-14 Ted KremenekAdd member template MallocAllocator::Allocate(Num)...
2008-07-17 Dan GohmanAdd a new function, ReplaceAllUsesOfValuesWith, which...
2008-07-07 Dan GohmanMake BumpPtrAllocator noncopyable.
2008-07-07 Dan GohmanAdd a space between * and /* to help simple-minded...
2008-06-26 Bill WendlingRemove warnings about shadowed and unused variables.
2008-06-24 Dan GohmanMake Allocate<T>() return a T* instead of a void*....
2008-05-05 Evan ChengFix more -Wshorten-64-to-32 warnings.
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-12-14 Dan GohmanFix a typo in a comment.
2007-10-18 Ted KremenekChanged the return type of type-specific Allocate(...
2007-10-17 Ted KremenekAdded member template functions to MallocAllocator and
2007-09-05 Evan ChengAdded Reset() to free all allocated memory regions...
2006-10-29 Chris LattnerAdd a new llvm::Allocator abstraction, which will be...