index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
Transforms
/
Scalar
/
GVN.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[GVN] Minor code cleanup. NFC.
Chad Rosier
2016-04-28
1
-65
/
+60
*
Re-commit optimization bisect support (r267022) without new pass manager supp...
Andrew Kaylor
2016-04-22
1
-1
/
+1
*
Revert "Initial implementation of optimization bisect support."
Vedant Kumar
2016-04-22
1
-5
/
+1
*
[GVN] Respect fast-math-flags on fcmps
David Majnemer
2016-04-22
1
-22
/
+21
*
Initial implementation of optimization bisect support.
Andrew Kaylor
2016-04-21
1
-1
/
+5
*
[NFC] Header cleanup
Mehdi Amini
2016-04-18
1
-1
/
+0
*
[GVN] Address review comments for D18662
Ulrich Weigand
2016-04-07
1
-9
/
+10
*
[GVN] Fix handling of sub-byte types in big-endian mode
Ulrich Weigand
2016-04-07
1
-3
/
+4
*
[PM] Sink the "Expression" type for GVN into the class as a private
Chandler Carruth
2016-03-11
1
-11
/
+11
*
[PM] The order of evaluation of these analyses is actually significant,
Chandler Carruth
2016-03-11
1
-5
/
+10
*
[PM] Make the AnalysisManager parameter to run methods a reference.
Chandler Carruth
2016-03-11
1
-6
/
+6
*
[PM] Port GVN to the new pass manager, wire it up, and teach a couple of
Chandler Carruth
2016-03-11
1
-349
/
+205
*
[gvn] Fix more indenting and formatting in regions of code that will
Chandler Carruth
2016-03-10
1
-64
/
+62
*
[gvn] Reformat a chunk of the GVN code that is strangely indented prior
Chandler Carruth
2016-03-10
1
-241
/
+240
*
[PM] Port memdep to the new pass manager.
Chandler Carruth
2016-03-10
1
-9
/
+9
*
Remove unused variable
David Majnemer
2016-02-12
1
-1
/
+0
*
[GVN] Common code for local and non-local load availability [NFCI]
Philip Reames
2016-02-12
1
-248
/
+148
*
[GVN] Add clarifying assert [NFCI]
Philip Reames
2016-01-29
1
-0
/
+5
*
[GVN] Split AvailableValueInBlock into two parts [NFC]
Philip Reames
2016-01-26
1
-29
/
+69
*
[GVN] Rearrange code to make local vs non-local cases more obvious [NFCI]
Philip Reames
2016-01-25
1
-13
/
+18
*
[GVN] Factor out common code [NFCI]
Philip Reames
2016-01-25
1
-40
/
+21
*
[opaque pointer types] [NFC] Add an explicit type argument to ConstantFoldLoa...
Eduard Burtescu
2016-01-22
1
-2
/
+2
*
Fix for two constant propagation problems in GVN with the assume intrinsic
David L Kreitzer
2016-01-21
1
-3
/
+4
*
Use range-based for loops. NFC
Craig Topper
2015-11-28
1
-37
/
+20
*
[WinEH] Fix a case where GVN could incorrectly PRE a load into an EH pad.
Andrew Kaylor
2015-11-23
1
-0
/
+10
*
Fix bug 25440: GVN assertion after coercing loads
Weiming Zhao
2015-11-19
1
-1
/
+12
*
Fix returned value for GVN: could return "false" even after modifying the IR
Mehdi Amini
2015-11-18
1
-1
/
+1
*
Disable gvn non-local speculative loads under asan.
Mike Aizatsky
2015-11-18
1
-0
/
+4
*
[PRE] Preserve !invariant.load metadata
Philip Reames
2015-11-17
1
-0
/
+2
*
Revert "Fix bug 25440: GVN assertion after coercing loads"
Tobias Grosser
2015-11-12
1
-41
/
+13
*
Fix bug 25440: GVN assertion after coercing loads
Weiming Zhao
2015-11-12
1
-13
/
+41
*
GVN: don't try to replace instruction with itself.
Tim Northover
2015-10-23
1
-5
/
+9
*
Scalar: Remove some implicit ilist iterator conversions, NFC
Duncan P. N. Exon Smith
2015-10-13
1
-5
/
+5
*
inariant.group handling in GVN
Piotr Padlewski
2015-10-02
1
-8
/
+9
*
gvn small fix
Piotr Padlewski
2015-09-17
1
-3
/
+1
*
[PM/AA] Rebuild LLVM's alias analysis infrastructure in a way compatible
Chandler Carruth
2015-09-09
1
-4
/
+6
*
assuem(X) handling in GVN bugfix
Piotr Padlewski
2015-09-02
1
-1
/
+20
*
Constant propagation after hitting assume(cmp) bugfix
Piotr Padlewski
2015-09-02
1
-9
/
+26
*
Constant propagation after hiting llvm.assume
Piotr Padlewski
2015-09-02
1
-3
/
+68
*
Revert r246244 and r246243
Steven Wu
2015-08-28
1
-93
/
+11
*
Constant propagation after hitting assume(cmp) bugfix
Piotr Padlewski
2015-08-28
1
-9
/
+26
*
Constant propagation after hiting llvm.assume
Piotr Padlewski
2015-08-28
1
-3
/
+68
*
Rename Instruction::dropUnknownMetadata() to dropUnknownNonDebugMetadata()
Adrian Prantl
2015-08-20
1
-1
/
+0
*
Fix a bug that caused SimplifyCFG to drop DebugLocs.
Adrian Prantl
2015-08-20
1
-0
/
+1
*
Fix a debug location handling bug in GVN.
Adrian Prantl
2015-08-20
1
-1
/
+2
*
Revert "Constant propagation after hiting llvm.assume"
Justin Bogner
2015-08-18
1
-68
/
+3
*
Constant propagation after hiting llvm.assume
Piotr Padlewski
2015-08-18
1
-3
/
+68
*
Fix some comment typos.
Benjamin Kramer
2015-08-08
1
-2
/
+2
*
Drive-by fixes for LandingPad -> EHPad
David Majnemer
2015-08-04
1
-4
/
+4
*
Fix typo "fuction" noticed in comments in AssumptionCache.h, and also all the...
Nick Lewycky
2015-07-29
1
-1
/
+1
[next]