index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
ObjCARC
Commit message (
Expand
)
Author
Age
Files
Lines
*
Move C++ code out of the C headers and into either C++ headers
Eric Christopher
2013-04-22
1
-0
/
+1
*
When we strength reduce an objc_retainBlock call to objc_retain, increment Nu...
Michael Gottesman
2013-04-21
1
-1
/
+6
*
Fixed comment typo.
Michael Gottesman
2013-04-21
1
-1
/
+1
*
[objc-arc] Fixed typo in debug message.
Michael Gottesman
2013-04-21
1
-1
/
+1
*
[objc-arc] Fixed comment typo.
Michael Gottesman
2013-04-21
1
-1
/
+1
*
[objc-arc] Refactored OptimizeReturns so that it uses continue instead of a l...
Michael Gottesman
2013-04-21
1
-25
/
+30
*
[objc-arc] Added debug statement saying when we are resetting a sequence's pr...
Michael Gottesman
2013-04-20
1
-0
/
+1
*
[objc-arc] Do not mismatch up retains inside a for loop with releases outside...
Michael Gottesman
2013-04-18
1
-96
/
+131
*
Removed trailing whitespace.
Michael Gottesman
2013-04-18
1
-3
/
+3
*
[objc-arc] Added annotation option to only emit annotations for a specific ss...
Michael Gottesman
2013-04-17
1
-0
/
+24
*
Fixed typo.
Michael Gottesman
2013-04-17
1
-4
/
+4
*
[objc-arc] Added descriptions for EnableARCAnnotations, EnableCheckForCFGHaza...
Michael Gottesman
2013-04-17
2
-3
/
+7
*
[objc-arc] Added an option to arc-annotations for turning off CheckForCFGHazard.
Michael Gottesman
2013-04-17
1
-0
/
+6
*
Fix some comment typos.
Bob Wilson
2013-04-09
1
-2
/
+2
*
Removed trailing whitespace.
Michael Gottesman
2013-04-05
1
-27
/
+27
*
An objc_retain can serve as a use for a different pointer.
Michael Gottesman
2013-04-05
1
-2
/
+3
*
Properly model precise lifetime when given an incomplete dataflow sequence.
Michael Gottesman
2013-04-05
1
-6
/
+20
*
Added two debug logging messages to VisitInstructionsTopDown to match VisitIn...
Michael Gottesman
2013-04-05
1
-0
/
+4
*
Cleaned up whitespace and made debug logging less verbose.
Michael Gottesman
2013-04-05
1
-114
/
+95
*
Refactored out the helper method FindPredecessorAutoreleaseWithSafePath from ...
Michael Gottesman
2013-04-03
1
-25
/
+45
*
Refactored out the helper function FindPredecessorRetainWithSafePath from Obj...
Michael Gottesman
2013-04-03
1
-18
/
+32
*
Small cleanups.
Michael Gottesman
2013-04-03
1
-14
/
+14
*
Refactored out a part of ObjCARCOpt::OptimizeReturns into its own method HasS...
Michael Gottesman
2013-04-03
1
-22
/
+33
*
Removed an old comment.
Michael Gottesman
2013-04-03
1
-7
/
+0
*
Clean up arc annotations by moving the top/bottom BB annotations into conditi...
Michael Gottesman
2013-04-03
1
-58
/
+46
*
Remove an optimization where we were changing an objc_autorelease into an obj...
Michael Gottesman
2013-04-03
1
-16
/
+1
*
Improved comment. No functionality change.
Michael Gottesman
2013-04-03
1
-1
/
+2
*
Add clang.arc.used to ModuleHasARC so ARC always runs if said call is present...
Michael Gottesman
2013-03-29
1
-1
/
+2
*
Removed trailing whitespace.
Michael Gottesman
2013-03-29
1
-15
/
+15
*
Removed dead code from ObjCARCOpts relating to tracking objc_retainBlocks thr...
Michael Gottesman
2013-03-28
1
-37
/
+6
*
Non optimizable objc_retainBlock calls are not forwarding.
Michael Gottesman
2013-03-28
1
-3
/
+0
*
[ObjCARC] Strength reduce objc_retainBlock -> objc_retain if the objc_retainB...
Michael Gottesman
2013-03-28
1
-10
/
+45
*
[ObjCARC Annotations] Added support for displaying the state of pointers at t...
Michael Gottesman
2013-03-26
2
-4
/
+147
*
[ObjCARC Annotations] Implemented ARC annotation metadata to expose the ARC d...
Michael Gottesman
2013-03-26
1
-5
/
+186
*
Changed isNullOrUndef => IsNullOrUndef and isNoopInstruction => IsNoopInstruc...
Michael Gottesman
2013-03-25
3
-14
/
+14
*
Change method name ClearRefCount => ClearKnownPositiveRefCount to match the n...
Michael Gottesman
2013-03-23
1
-4
/
+4
*
Changed the method name PtrState.IsKnownIncremented() to PtrState.HasKnownPos...
Michael Gottesman
2013-03-23
1
-3
/
+3
*
Kill every call to @clang.arc.use in the ARC contract phase.
John McCall
2013-03-22
5
-3
/
+22
*
Fixed a careless mistake.
Michael Gottesman
2013-02-23
1
-1
/
+1
*
Make helpers static. Add missing include so LLVMInitializeObjCARCOpts gets C ...
Benjamin Kramer
2013-02-15
1
-0
/
+1
*
Changed isStoredObjCPointer => IsStoredObjCPointer. No functionality change.
Michael Gottesman
2013-02-12
1
-4
/
+4
*
Moved some comments due to the recent refactoring of ObjCARC.
Michael Gottesman
2013-02-07
2
-5
/
+4
*
Removed explicit inline as per the LLVM style guide.
Michael Gottesman
2013-02-05
1
-7
/
+7
*
Made certain small functions in PtrState inlined.
Michael Gottesman
2013-01-29
1
-7
/
+7
*
Removed trailing comma in last element of enum declaration.
Michael Gottesman
2013-01-29
1
-1
/
+1
*
Moved S_Stop back to its previous position in the sequence order.
Michael Gottesman
2013-01-29
1
-1
/
+1
*
Fixed a few debug messages and some 80+ violations.
Michael Gottesman
2013-01-29
1
-9
/
+10
*
Added some periods to some comments and added an overload for operator<< for ...
Michael Gottesman
2013-01-29
1
-6
/
+28
*
Changed DoesObjCBlockEscape => DoesRetainableObjPtrEscape so I can use it to ...
Michael Gottesman
2013-01-29
1
-14
/
+17
*
Hopefully fix the Windows build failure introduced in r173769
Timur Iskhodzhanov
2013-01-29
2
-0
/
+2
[next]