aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Support/Allocator.h
AgeCommit message (Expand)Author
2012-12-03Sort the #include lines for the include/... tree with the script.Chandler Carruth
2012-09-23Add LLVM_OVERRIDE to methods that override their base classes.Craig Topper
2012-09-16Use LLVM_DELETED_FUNCTION for copy constructors and copy assignment operators...Craig Topper
2012-07-06Revert r159789.Dmitri Gribenko
2012-07-06Enable new[] on llvm::BumpPtrAllocator.Dmitri Gribenko
2011-04-18Add BumpPtrAllocator::getTotalMemory() to allow clients to query how much mem...Ted Kremenek
2011-01-03Enhance ScopedHashTable to allow it to take an allocator argument.Chris Lattner
2010-11-29Merge System into Support.Michael J. Spencer
2010-10-30Rename alignof -> alignOf to avoid irritating C++'0x compilers,Chris Lattner
2010-10-03Remove two uses of the gcc specific 'aligned' attribute. ThisDuncan Sands
2010-04-08Provide operator delete for BumpPtrAllocator and RecyclingAllocator. They willBenjamin Kramer
2010-04-04Switch SSEDomainFix to SpecificBumpPtrAllocator.Jakob Stoklund Olesen
2010-04-02Fix SpecificBumpPtrAllocator iteration.Torok Edwin
2010-03-30Introduce SpecificBumpPtrAllocator, a wrapper for BumpPtrAllocator which allowsBenjamin Kramer
2010-03-30Reapply r99881 with some fixes: only call destructor in releaseMemory!Torok Edwin
2010-03-30Revert 99881, it brooke smooshlab's llvm-gcc-i386-darwin9.Torok Edwin
2010-03-30Introduce another Reset() method in BumpPtrAllocator that calls a destructorTorok Edwin
2010-03-18offsetof always has type size_t.Dan Gohman
2010-03-18Explicitly cast std::min's arguments to avoid type mismatches.Dan Gohman
2010-03-18Define placement new wrappers for BumpPtrAllocator andDan Gohman
2010-01-16Temporarily revert r93581. It was causing failures in the ExecutionEngine testsBill Wendling
2010-01-15BumpPtrAllocator: Have the DefaultSlabAllocator created at runtime, not initi...Ted Kremenek
2009-10-26Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth
2009-07-23Re-committing changes from r76825 to BumpPtrAllocator with a fix and tests forReid Kleckner
2009-07-23Reverting r76825 and r76828, since they caused clang runtime errors and some ...Reid Kleckner
2009-07-23Parameterize the BumpPtrAllocator over a slab allocator. It defaults to usingReid Kleckner
2009-03-10Changed Allocate to use size_t instead of unsigned.Mon P Wang
2009-03-10Fixed rounding up EltSizeMon P Wang
2009-02-20Removed trailing whitespace.Misha Brukman
2009-02-06Deallocate() methods now take a 'const void*' instead of a 'void *', matching...Ted Kremenek
2009-02-03add a method to BumpPtrAllocator that allows allocating elements Chris Lattner
2009-01-14Add member template MallocAllocator::Allocate(Num) (to match the same functio...Ted Kremenek
2008-07-17Add a new function, ReplaceAllUsesOfValuesWith, which handles bulkDan Gohman
2008-07-07Make BumpPtrAllocator noncopyable.Dan Gohman
2008-07-07Add a space between * and /* to help simple-minded lexers.Dan Gohman
2008-06-26Remove warnings about shadowed and unused variables.Bill Wendling
2008-06-24Make Allocate<T>() return a T* instead of a void*. And useDan Gohman
2008-05-05Fix more -Wshorten-64-to-32 warnings.Evan Cheng
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-12-14Fix a typo in a comment.Dan Gohman
2007-10-18Changed the return type of type-specific Allocate() methods to returnTed Kremenek
2007-10-17Added member template functions to MallocAllocator andTed Kremenek
2007-09-05Added Reset() to free all allocated memory regions and reset state to be the ...Evan Cheng
2006-10-29Add a new llvm::Allocator abstraction, which will be used by a containerChris Lattner