Revert "[Windows] Simplify assertion code. NFC."
[oota-llvm.git] / lib / Support / Allocator.cpp
2015-06-23 Alexander KornienkoRevert r240137 (Fixed/added namespace ending comments...
2015-06-19 Alexander KornienkoFixed/added namespace ending comments using clang-tidy...
2015-03-23 Benjamin KramerPurge unused includes throughout libSupport.
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 Carruth[Allocator] Switch the BumpPtrAllocator to use a vector...
2014-04-09 Craig Topper[C++11] Replace some comparisons with 'nullptr' with...
2014-04-07 Craig Topper[C++11] Make use of 'nullptr' in the Support library.
2014-03-30 Chandler Carruth[Allocator] Lift the slab size and size threshold into...
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...
2013-08-28 Argyrios Kyrtzidis[BumpPtrAllocator] Move DefaultSlabAllocator to a membe...
2013-02-20 Pedro Artigasas the allocator is reset zero out the number of bytes...
2013-02-04 Evgeniy StepanovMore MSan/ASan annotations.
2013-01-31 Evgeniy StepanovAnnotate BumpPtrAllocator for MemorySanitizer.
2012-12-03 Chandler CarruthUse the new script to sort the includes of every file...
2012-03-01 Benjamin KramerBumpPtrAllocator: Make sure threshold cannot be initial...
2012-03-01 Argyrios KyrtzidisIf BumpPtrAllocator is requested to allocate a size...
2011-04-18 Ted KremenekAdd BumpPtrAllocator::getTotalMemory() to allow clients...
2010-11-29 Michael J. SpencerMerge System into Support.
2010-09-30 Benjamin KramerGrow BumpPtrAllocator's slab size dynamically if we...
2010-04-13 Benjamin KramerBumpPtrAllocator::Reset() doesn't need to allocate...
2010-04-13 Benjamin KramerLet BumpPtrAllocator lazily allocate the first slab.
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-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-09-09 Evan ChengMake sure the memory range is writable before memset...
2009-07-25 Reid KlecknerAdded a test and fixed a bug in BumpPtrAllocator relati...
2009-07-24 Daniel DunbarSwitch to raw_ostream.
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 Zhongxing Xuadd header for 'memset'.
2009-07-23 Reid KlecknerParameterize the BumpPtrAllocator over a slab allocator...
2008-07-28 Dan GohmanFold the useful features of alist and alist_node into...
2008-07-07 Dan GohmanAdd some basic Pool-allocation infrastructure. This...
2008-05-05 Evan ChengFix more -Wshorten-64-to-32 warnings.
2008-04-28 Dan GohmanFix a pointer-arithmetic bug that caused 64-bit host...
2008-04-28 Ted KremenekBug fix in BumpPtrAllocator: don't assume that all...
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-09-08 Evan ChengSmarter Reset(). Instead of deallocating all memory...
2007-09-05 Evan ChengAdded Reset() to free all allocated memory regions...
2007-02-23 Chris LattnerAvoid TBAA issue.
2006-12-07 Bill WendlingDon't use <sstream> in Streams.h but <iosfwd> instead.
2006-12-07 Bill WendlingChanged llvm_ostream et all to OStream. llvm_cerr,...
2006-11-26 Bill WendlingRemoved #include <iostream> and replace with llvm_...
2006-11-08 John CriswellInclude llvm/Support/DataTypes.h to define intptr_t.
2006-10-29 Chris LattnerAdd a new llvm::Allocator abstraction, which will be...