aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/Allocator.cpp
AgeCommit message (Expand)Author
2009-10-26Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth
2009-09-09Make sure the memory range is writable before memset'ing it.Evan Cheng
2009-07-25Added a test and fixed a bug in BumpPtrAllocator relating to large alignmentReid Kleckner
2009-07-24Switch to raw_ostream.Daniel Dunbar
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-23add header for 'memset'.Zhongxing Xu
2009-07-23Parameterize the BumpPtrAllocator over a slab allocator. It defaults to usingReid Kleckner
2008-07-28Fold the useful features of alist and alist_node into ilist, andDan Gohman
2008-07-07Add some basic Pool-allocation infrastructure. This adds a Recycler class,Dan Gohman
2008-05-05Fix more -Wshorten-64-to-32 warnings.Evan Cheng
2008-04-28Fix a pointer-arithmetic bug that caused 64-bit host pointer values toDan Gohman
2008-04-28Bug fix in BumpPtrAllocator: don't assume that all objects have the same alig...Ted Kremenek
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-09-08Smarter Reset(). Instead of deallocating all memory regions and reallocate theEvan Cheng
2007-09-05Added Reset() to free all allocated memory regions and reset state to be the ...Evan Cheng
2007-02-23Avoid TBAA issue.Chris Lattner
2006-12-07Don't use <sstream> in Streams.h but <iosfwd> instead.Bill Wendling
2006-12-07Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, areBill Wendling
2006-11-26Removed #include <iostream> and replace with llvm_* streams.Bill Wendling
2006-11-08Include llvm/Support/DataTypes.h to define intptr_t.John Criswell
2006-10-29Add a new llvm::Allocator abstraction, which will be used by a containerChris Lattner