summaryrefslogtreecommitdiff
path: root/lib/Support/Allocator.cpp
Commit message (Expand)AuthorAge
* [BumpPtrAllocator] Move DefaultSlabAllocator to a member of BumpPtrAllocator,...Argyrios Kyrtzidis2013-08-28
* as the allocator is reset zero out the number of bytes allocated, this was justPedro Artigas2013-02-20
* More MSan/ASan annotations.Evgeniy Stepanov2013-02-04
* Annotate BumpPtrAllocator for MemorySanitizer.Evgeniy Stepanov2013-01-31
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* BumpPtrAllocator: Make sure threshold cannot be initialized with a value smal...Benjamin Kramer2012-03-01
* If BumpPtrAllocator is requested to allocate a size that exceeds the slab size,Argyrios Kyrtzidis2012-03-01
* Add BumpPtrAllocator::getTotalMemory() to allow clients to query how much mem...Ted Kremenek2011-04-18
* Merge System into Support.Michael J. Spencer2010-11-29
* Grow BumpPtrAllocator's slab size dynamically if we allocated many slabs. ThisBenjamin Kramer2010-09-30
* BumpPtrAllocator::Reset() doesn't need to allocate anything. (Thanks, Jakob)Benjamin Kramer2010-04-13
* Let BumpPtrAllocator lazily allocate the first slab.Benjamin Kramer2010-04-13
* Introduce SpecificBumpPtrAllocator, a wrapper for BumpPtrAllocator which allowsBenjamin Kramer2010-03-30
* Reapply r99881 with some fixes: only call destructor in releaseMemory!Torok Edwin2010-03-30
* Revert 99881, it brooke smooshlab's llvm-gcc-i386-darwin9.Torok Edwin2010-03-30
* Introduce another Reset() method in BumpPtrAllocator that calls a destructorTorok Edwin2010-03-30
* Temporarily revert r93581. It was causing failures in the ExecutionEngine testsBill Wendling2010-01-16
* BumpPtrAllocator: Have the DefaultSlabAllocator created at runtime, not initi...Ted Kremenek2010-01-15
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-26
* Make sure the memory range is writable before memset'ing it.Evan Cheng2009-09-09
* Added a test and fixed a bug in BumpPtrAllocator relating to large alignmentReid Kleckner2009-07-25
* Switch to raw_ostream.Daniel Dunbar2009-07-24
* Re-committing changes from r76825 to BumpPtrAllocator with a fix and tests forReid Kleckner2009-07-23
* Reverting r76825 and r76828, since they caused clang runtime errors and some ...Reid Kleckner2009-07-23
* add header for 'memset'.Zhongxing Xu2009-07-23
* Parameterize the BumpPtrAllocator over a slab allocator. It defaults to usingReid Kleckner2009-07-23
* Fold the useful features of alist and alist_node into ilist, andDan Gohman2008-07-28
* Add some basic Pool-allocation infrastructure. This adds a Recycler class,Dan Gohman2008-07-07
* Fix more -Wshorten-64-to-32 warnings.Evan Cheng2008-05-05
* Fix a pointer-arithmetic bug that caused 64-bit host pointer values toDan Gohman2008-04-28
* Bug fix in BumpPtrAllocator: don't assume that all objects have the same alig...Ted Kremenek2008-04-28
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-29
* Smarter Reset(). Instead of deallocating all memory regions and reallocate theEvan Cheng2007-09-08
* Added Reset() to free all allocated memory regions and reset state to be the ...Evan Cheng2007-09-05
* Avoid TBAA issue.Chris Lattner2007-02-23
* Don't use <sstream> in Streams.h but <iosfwd> instead.Bill Wendling2006-12-07
* Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, areBill Wendling2006-12-07
* Removed #include <iostream> and replace with llvm_* streams.Bill Wendling2006-11-26
* Include llvm/Support/DataTypes.h to define intptr_t.John Criswell2006-11-08
* Add a new llvm::Allocator abstraction, which will be used by a containerChris Lattner2006-10-29