aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/MemoryBuiltins.cpp
Commit message (Expand)AuthorAgeFilesLines
* fix PR17635: false positive with packed structuresNuno Lopes2013-10-241-3/+5
* Rename DataLayout variables TD -> DLMatt Arsenault2013-10-031-26/+25
* ObjectSizeOffsetEvaluator: Don't run into infinite recursion if we have a cyc...Benjamin Kramer2013-09-291-5/+7
* MemoryBuiltins: Remove posix_memalign from the list and replace it with a TODO.Benjamin Kramer2013-09-241-1/+1
* MemoryBuiltins: Reinstate optimizing (uninitialized) loads from operator new.Benjamin Kramer2013-09-241-7/+7
* MemoryBuiltins: Fix operator new bits.Benjamin Kramer2013-09-241-3/+3
* Teach MemoryBuiltins and InstructionSimplify that operator new never returns ...Benjamin Kramer2013-09-241-4/+12
* Treat nothrow forms of ::operator delete and ::operator delete[] asRichard Smith2013-07-211-4/+10
* Added support for the Builtin attribute.Michael Gottesman2013-06-271-1/+1
* Respect the 'nobuiltin' attribute when determining if a call is to a memory b...Richard Smith2013-05-161-0/+3
* Revert r176408 and r176407 to address PR15540.Nadav Rotem2013-04-091-49/+12
* Revert 179071 because it is not the right way to support non standard new/new...Nadav Rotem2013-04-091-0/+8
* c++ new operators are not malloc-like functions because they do not return un...Nadav Rotem2013-04-081-8/+0
* Early exit from getAllocationData() and isFreeCall() for intrinsics.Michael Ilseman2013-03-081-1/+5
* Remove trailing whitespaceMichael Ilseman2013-03-081-5/+5
* Simplify code. No functionality change.Jakub Staszak2013-03-071-3/+3
* Change NULL to 0.Jakub Staszak2013-03-071-8/+8
* recommit r172363 & r171325 (reverted in r172756)Nuno Lopes2013-03-021-12/+29
* add getUnderlyingObjectSize()Nuno Lopes2013-03-021-0/+20
* Reverting r171325 & r172363. This was causing a mis-compile on the self-hoste...Bill Wendling2013-01-171-29/+12
* fix compile-time regression report by Joerg Sonnenberger:Nuno Lopes2013-01-131-9/+11
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-6/+6
* recommit r171298 (add support for PHI nodes to ObjectSizeOffsetVisitor). Hope...Nuno Lopes2012-12-311-11/+26
* Revert "add support for PHI nodes to ObjectSizeOffsetVisitor"Benjamin Kramer2012-12-311-14/+3
* revert r171306, since we cannot compare APInts with different bitwidthsNuno Lopes2012-12-311-1/+1
* minor code simplificationNuno Lopes2012-12-311-1/+1
* add support for GlobalAlias to ObjectSizeOffsetVisitorNuno Lopes2012-12-311-0/+9
* add support for PHI nodes to ObjectSizeOffsetVisitorNuno Lopes2012-12-311-3/+14
* convert a bunch of callers from DataLayout::getIndexedOffset() to GEP::accumu...Nuno Lopes2012-12-301-3/+2
* Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling2012-12-191-1/+1
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-4/+4
* Revert the series of commits starting with r166578 which introduced theChandler Carruth2012-11-011-6/+4
* Add in support for getIntPtrType to get the pointer type based on the address...Micah Villmow2012-10-241-4/+6
* Use the attribute enums to query if a function has an attribute.Bill Wendling2012-10-091-1/+1
* Remove more uses of the attribute enums by supplying appropriate query method...Bill Wendling2012-10-091-1/+1
* Move TargetData to DataLayout.Micah Villmow2012-10-081-7/+7
* Make MemoryBuiltins aware of TargetLibraryInfo.Benjamin Kramer2012-08-291-56/+86
* MemoryBuiltins: Properly guard ObjectSizeOffsetVisitor against cycles in the IR.Benjamin Kramer2012-08-171-18/+14
* Guard MemoryBuiltins against self-looping GEPs, which can occur in unreachabl...Benjamin Kramer2012-08-171-0/+4
* fix PR13390: do not loop forever with self-referencing self instructionsNuno Lopes2012-07-271-0/+8
* revert r160742: it's breaking CMake buildNuno Lopes2012-07-251-18/+7
* MemoryBuiltins: add support to determine the size of strdup'ed non-constant s...Nuno Lopes2012-07-251-7/+18
* teach objectsize about strdup() and strndup()Nuno Lopes2012-07-241-3/+16
* baby steps toward fixing some problems with inbound GEPs that overflow, as di...Nuno Lopes2012-07-201-1/+1
* fold PHI nodes in SizeOffsetEvaluator whenever possible.Nuno Lopes2012-07-031-1/+13
* MemoryBuiltins:Nuno Lopes2012-06-281-14/+37
* check for the NoAlias attribute through CallSiteNuno Lopes2012-06-251-2/+2
* simplify code from previous commits (Thanks Duncan)Nuno Lopes2012-06-221-7/+2
* remove extractMallocCallFromBitCast, since it was tailor maded for its sole u...Nuno Lopes2012-06-221-8/+1
* Add support for invoke to the MemoryBuiltin analysid.Nuno Lopes2012-06-211-15/+22