summaryrefslogtreecommitdiff
path: root/lib/Analysis/MemoryBuiltins.cpp
Commit message (Expand)AuthorAge
* Revert the series of commits starting with r166578 which introduced theChandler Carruth2012-11-01
* Add in support for getIntPtrType to get the pointer type based on the address...Micah Villmow2012-10-24
* Use the attribute enums to query if a function has an attribute.Bill Wendling2012-10-09
* Remove more uses of the attribute enums by supplying appropriate query method...Bill Wendling2012-10-09
* Move TargetData to DataLayout.Micah Villmow2012-10-08
* Make MemoryBuiltins aware of TargetLibraryInfo.Benjamin Kramer2012-08-29
* MemoryBuiltins: Properly guard ObjectSizeOffsetVisitor against cycles in the IR.Benjamin Kramer2012-08-17
* Guard MemoryBuiltins against self-looping GEPs, which can occur in unreachabl...Benjamin Kramer2012-08-17
* fix PR13390: do not loop forever with self-referencing self instructionsNuno Lopes2012-07-27
* revert r160742: it's breaking CMake buildNuno Lopes2012-07-25
* MemoryBuiltins: add support to determine the size of strdup'ed non-constant s...Nuno Lopes2012-07-25
* teach objectsize about strdup() and strndup()Nuno Lopes2012-07-24
* baby steps toward fixing some problems with inbound GEPs that overflow, as di...Nuno Lopes2012-07-20
* fold PHI nodes in SizeOffsetEvaluator whenever possible.Nuno Lopes2012-07-03
* MemoryBuiltins:Nuno Lopes2012-06-28
* check for the NoAlias attribute through CallSiteNuno Lopes2012-06-25
* simplify code from previous commits (Thanks Duncan)Nuno Lopes2012-06-22
* remove extractMallocCallFromBitCast, since it was tailor maded for its sole u...Nuno Lopes2012-06-22
* Add support for invoke to the MemoryBuiltin analysid.Nuno Lopes2012-06-21
* fix build in C++11 mode.Nuno Lopes2012-06-21
* hopefully fix the buildbots: some tests have wrong definitions of malloc and...Nuno Lopes2012-06-21
* refactor the MemoryBuiltin analysis:Nuno Lopes2012-06-21
* remove calls to calloc if the allocated memory is not used (it was already be...Nuno Lopes2012-05-03
* add support for calloc to objectsize loweringNuno Lopes2012-05-03
* Validate the return type when checking if a function is malloc.Benjamin Kramer2011-11-23
* land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner2011-07-18
* simplify some code.Chris Lattner2011-06-18
* Add comments for the demanglings. Correct mangled form of operator delete!Nick Lewycky2011-03-17
* Add C++ global operator {new,new[],delete,delete[]}(unsigned {int,long}) to theNick Lewycky2011-03-15
* minor enhancement to llvm::isFreeCall API: return CallInst; no functional changeGabor Greif2010-06-23
* use ArgOperand gettersGabor Greif2010-06-23
* Revert 101465, it broke internal OpenGL testing.Eric Christopher2010-04-16
* reapply r101434Gabor Greif2010-04-16
* back out r101423 and r101397, they break llvm-gcc self-host on darwin10Gabor Greif2010-04-16
* reapply r101364, which has been backed out in r101368Gabor Greif2010-04-15
* back out r101364, as it trips the linux nightlybot on some clang C++ testsGabor Greif2010-04-15
* rotate CallInst operands, i.e. move callee to the backGabor Greif2010-04-15
* rename use_const_iterator to const_use_iterator for consistency's sakeGabor Greif2010-03-25
* Fix "the the" and similar typos.Dan Gohman2010-02-10
* Simplify ComputeMultiple so that it doesn't depend on TargetData.Dan Gohman2009-11-18
* Update computeArraySize() to use ComputeMultiple() to determine the array siz...Victor Hernandez2009-11-10
* Re-commit r86077 now that r86290 fixes the 179.art and 175.vpr ARM regressions.Victor Hernandez2009-11-07
* remove a bunch of extraneous LLVMContext argumentsChris Lattner2009-11-06
* Revert r86077 because it caused crashes in 179.art and 175.vpr on ARMVictor Hernandez2009-11-06
* Update CreateMalloc so that its callers specify the size to allocate:Victor Hernandez2009-11-05
* Changes requested (avoid getFunction(), avoid Type creation via isVoidTy(), a...Victor Hernandez2009-11-03
* Changes (* location in pointer variables, avoiding include, and using APInt::...Victor Hernandez2009-11-03
* Set bit instead of calling pow() to compute 2 << nVictor Hernandez2009-11-02
* Fix for warning seen on DF-BSD, Victor, please fix this to use a shift instea...Edward O'Callaghan2009-11-02
* fix 80-col.Zhongxing Xu2009-10-29