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
/
IPO
/
GlobalOpt.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Don't delete one more instruction than we're allowed to. This should fix the
Nick Lewycky
2012-07-24
1
-1
/
+3
*
Teach globalopt to not nuke all stores to globals. Keep them around of they
Nick Lewycky
2012-07-24
1
-8
/
+177
*
Revert r160602.
Nick Lewycky
2012-07-21
1
-177
/
+8
*
Teach globalopt to play nice with leak checkers. This is a reapplication of
Nick Lewycky
2012-07-21
1
-8
/
+177
*
Revert r160529 due to crashes.
Nick Lewycky
2012-07-19
1
-171
/
+8
*
Don't wipe out global variables that are probably storing pointers to heap
Nick Lewycky
2012-07-19
1
-8
/
+171
*
GlobalOpt forgot to handle bitcast when analyzing globals. Found by inspection.
Duncan Sands
2012-07-02
1
-0
/
+2
*
Revert r159136 due to PR13124.
Matt Beaumont-Gay
2012-06-27
1
-11
/
+0
*
If a constant or a function has linkonce_odr linkage and unnamed_addr, mark it
Rafael Espindola
2012-06-25
1
-0
/
+11
*
Tab to spaces. No functionality change.
Nick Lewycky
2012-06-24
1
-1
/
+1
*
Extend the IL for selecting TLS models (PR9788)
Hans Wennborg
2012-06-23
1
-7
/
+7
*
fix whitespace in my last commit.
Nuno Lopes
2012-06-22
1
-1
/
+1
*
remove extractMallocCallFromBitCast, since it was tailor maded for its sole u...
Nuno Lopes
2012-06-22
1
-2
/
+4
*
Some optimizations done by globalopt are safe only for internal linkage, not
Rafael Espindola
2012-06-15
1
-0
/
+3
*
Implement the isSafeToDiscardIfUnused predicate and use it in globalopt and
Rafael Espindola
2012-06-14
1
-1
/
+1
*
Teach Function::hasAddressTaken that BlockAddress doesn't really take
Jay Foad
2012-05-12
1
-0
/
+4
*
GlobalOpt: If we have an inbounds GEP from a ConstantAggregateZero global tha...
Benjamin Kramer
2012-03-28
1
-0
/
+6
*
Teach globalopt how to evaluate an invoke with a non-void return type.
Dan Gohman
2012-03-13
1
-5
/
+6
*
Taken into account Duncan's comments for r149481 dated by 2nd Feb 2012:
Stepan Dyatkovskiy
2012-03-08
1
-2
/
+1
*
Plog a memleak in GlobalOpt.
Benjamin Kramer
2012-02-27
1
-1
/
+1
*
GCC fails to understand that NextBB is always initialized if EvaluateBlock
Duncan Sands
2012-02-23
1
-1
/
+1
*
Use the target-aware constant folder on expressions to improve the chance
Nick Lewycky
2012-02-21
1
-2
/
+9
*
Check for the correct size in the invariant marker.
Nick Lewycky
2012-02-20
1
-4
/
+7
*
Rename class Evaluate to Evaluator and put it in an anonymous namespace.
Nick Lewycky
2012-02-20
1
-12
/
+17
*
Move EvaluateFunction and EvaluateBlock into a class, and make the class store
Nick Lewycky
2012-02-19
1
-122
/
+137
*
Add support for invariant.start inside the static constructor evaluator. This is
Nick Lewycky
2012-02-17
1
-12
/
+47
*
Handle InvokeInst in EvaluateBlock. Don't try to support exceptions, it's just
Nick Lewycky
2012-02-12
1
-9
/
+14
*
false is totally null!
Nick Lewycky
2012-02-12
1
-1
/
+1
*
Remove redundant getAnalysis<> calls in GlobalOpt. Add a few Itanium ABI calls
Nick Lewycky
2012-02-12
1
-10
/
+8
*
Pass TargetData and TargetLibraryInfo through to the constant folder. Fixes a
Nick Lewycky
2012-02-12
1
-25
/
+37
*
Fix function name in comment to match actual name. Fix comments that are using
Nick Lewycky
2012-02-12
1
-15
/
+15
*
Don't traverse the PHI nodes twice. No functionality change!
Nick Lewycky
2012-02-12
1
-7
/
+6
*
Tweak comment readability and grammar.
Benjamin Kramer
2012-02-09
1
-2
/
+2
*
GlobalOpt: Be more aggressive about elminating side-effect free static dtors.
Benjamin Kramer
2012-02-09
1
-4
/
+5
*
Split part of EvaluateFunction into a new EvaluateBlock method. No functionality
Nick Lewycky
2012-02-06
1
-57
/
+95
*
Teach GlobalOpt to handle atomic accesses to globals.
Nick Lewycky
2012-02-05
1
-13
/
+40
*
Clean up some whitespace and comments. No functionality change.
Nick Lewycky
2012-02-05
1
-13
/
+13
*
SwitchInst refactoring.
Stepan Dyatkovskiy
2012-02-01
1
-1
/
+2
*
continue making the world safe for ConstantDataVector. At this point,
Chris Lattner
2012-01-27
1
-1
/
+1
*
Continue improving support for ConstantDataAggregate, and use the
Chris Lattner
2012-01-26
1
-28
/
+5
*
use Constant::getAggregateElement to simplify a bunch of code.
Chris Lattner
2012-01-25
1
-36
/
+2
*
More dead code removal (using -Wunreachable-code)
David Blaikie
2012-01-20
1
-1
/
+0
*
PR11705, part 2: globalopt shouldn't put inttoptr/ptrtoint operations into gl...
Eli Friedman
2012-01-05
1
-10
/
+20
*
Fix a few more places where TargetData/TargetLibraryInfo is not being passed.
Chad Rosier
2011-12-02
1
-2
/
+5
*
Last bit of TargetLibraryInfo propagation. Also fixed a case for TargetData
Chad Rosier
2011-12-01
1
-9
/
+17
*
Refactor code from inlining and globalopt that checks whether a function defi...
Eli Friedman
2011-10-20
1
-1
/
+1
*
Stop emitting instructions with the name "tmp" they eat up memory and have to...
Benjamin Kramer
2011-09-27
1
-2
/
+1
*
Minor comment fixes.
Eli Friedman
2011-08-16
1
-4
/
+6
*
Update inter-procedural optimizations for atomic load/store.
Eli Friedman
2011-08-15
1
-4
/
+4
*
Add the 'resume' instruction for the new EH rewrite.
Bill Wendling
2011-07-31
1
-1
/
+1
[next]