index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Analysis
/
CaptureTracking.cpp
Age
Commit message (
Expand
)
Author
2013-03-10
Remove unneeded #includes. Use forward declarations instead.
Jakub Staszak
2012-10-08
Give CaptureTracker::shouldExplore a base implementation. Most users want to do
Nick Lewycky
2012-05-10
Fix intendation.
Chad Rosier
2012-01-17
Move includes to the .cpp file.
Jakub Staszak
2011-12-28
Change CaptureTracking to pass a Use* instead of a Value* when a value is
Nick Lewycky
2011-11-21
Fix crasher in GVN due to my recent capture tracking changes.
Nick Lewycky
2011-11-21
Add virtual destructor. Whoops!
Nick Lewycky
2011-11-20
Less template, more virtual! Refactoring suggested by Chris in code review.
Nick Lewycky
2011-11-14
Refactor capture tracking (which already had a couple flags for whether returns
Nick Lewycky
2011-04-11
Don't include Operator.h from InstrTypes.h.
Jay Foad
2010-11-09
VAArg doesn't capture its operand.
Dan Gohman
2010-07-28
simplify
Gabor Greif
2010-03-25
rename use_const_iterator to const_use_iterator for consistency's sake
Gabor Greif
2010-02-16
There are two ways of checking for a given type, for example isa<PointerType>(T)
Duncan Sands
2009-12-09
Reuse the Threshold value to size these containers because it's
Dan Gohman
2009-12-09
Fix a typo in a comment, and adjust SmallSet and SmallVector sizes,
Dan Gohman
2009-12-08
Put a threshold on the number of users PointerMayBeCaptured
Dan Gohman
2009-11-20
Use stripPointerCasts(). Thanks Duncan!
Dan Gohman
2009-11-20
Revert the rule that considers comparisons between two pointers in the
Dan Gohman
2009-11-20
Simplify this code; it's not necessary to check isIdentifiedObject here
Dan Gohman
2009-11-20
Refine the capture tracking rules for comparisons to be more
Dan Gohman
2009-11-20
Use isVoidTy().
Dan Gohman
2009-11-19
Refine this to only apply to null in the default address space.
Dan Gohman
2009-11-19
Extend CaptureTracking to indicate when a value is never stored, even
Dan Gohman
2009-11-19
Comparing a pointer with null is not a capture.
Dan Gohman
2009-11-03
remove a check of isFreeCall: the argument to free is already nocapture so th...
Chris Lattner
2009-10-27
Rename MallocFreeHelper as MemoryBuiltins
Victor Hernandez
2009-10-26
Rename MallocHelper as MallocFreeHelper, since it now also identifies calls t...
Victor Hernandez
2009-10-26
Remove FreeInst.
Victor Hernandez
2009-08-13
Push LLVMContexts through the IntegerType APIs.
Owen Anderson
2009-05-07
Revert r70876 and add a testcase (@c7) showing the problem:
Duncan Sands
2009-05-04
Restore minor deletion.
Mike Stump
2009-01-18
BasicAliasAnalysis and FunctionAttrs were both
Duncan Sands