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
/
LoopStrengthReduce.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[LoopStrengthReduce] Don't increment iterator past the end of the BB
David Majnemer
2015-11-16
1
-1
/
+1
*
[LoopStrengthReduce] Don't bother fixing up PHIs from EH Pad preds
David Majnemer
2015-11-08
1
-0
/
+3
*
Scalar: Remove remaining ilist iterator implicit conversions
Duncan P. N. Exon Smith
2015-10-13
1
-19
/
+22
*
Replace some calls to isa<LandingPadInst> with isEHPad()
David Majnemer
2015-08-19
1
-2
/
+2
*
[PM] Port ScalarEvolution to the new pass manager.
Chandler Carruth
2015-08-17
1
-5
/
+7
*
[LSR][NFC] Don’t duplicate entity name at the beginning of the comment.
Sanjoy Das
2015-08-16
1
-236
/
+208
*
[LSR][NFC] Use camelCase for method names in Formula and RegUseTracker.
Sanjoy Das
2015-08-16
1
-34
/
+34
*
LoopStrengthReduce: Try to pass address space to isLegalAddressingMode
Matt Arsenault
2015-08-15
1
-63
/
+94
*
Revert "[LSR] Generate and use zero extends"
Sanjoy Das
2015-08-04
1
-139
/
+21
*
[LSR] Generate and use zero extends
Sanjoy Das
2015-07-27
1
-21
/
+139
*
[PM/AA] Remove all of the dead AliasAnalysis pointers being threaded
Chandler Carruth
2015-07-22
1
-2
/
+1
*
Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)
Alexander Kornienko
2015-06-23
1
-9
/
+9
*
Fixed/added namespace ending comments using clang-tidy. NFC
Alexander Kornienko
2015-06-19
1
-9
/
+9
*
Replace push_back(Constructor(foo)) with emplace_back(foo) for non-trivial types
Benjamin Kramer
2015-05-29
1
-5
/
+5
*
Use range-based for loops. NFC.
Craig Topper
2015-05-25
1
-130
/
+84
*
Give more meaningful names than I and J to some for loop variables after conv...
Craig Topper
2015-05-23
1
-10
/
+10
*
Fix an unused variable warning in release builds.
Craig Topper
2015-05-23
1
-0
/
+1
*
Use range-based for loops. NFC.
Craig Topper
2015-05-23
1
-76
/
+36
*
[LSR][NFC] Remove a stale comment.
Sanjoy Das
2015-04-21
1
-3
/
+0
*
Mark empty default constructors as =default if it makes the type POD
Benjamin Kramer
2015-04-11
1
-2
/
+0
*
[NFC] Fix typo in comment.
Sanjoy Das
2015-03-27
1
-1
/
+1
*
DataLayout is mandatory, update the API to reflect it with references.
Mehdi Amini
2015-03-10
1
-2
/
+5
*
Remove the remaining uses of abs64 and nuke it.
Benjamin Kramer
2015-03-09
1
-2
/
+2
*
LSR: Move set instead of copying. NFC.
Benjamin Kramer
2015-02-19
1
-4
/
+2
*
[multiversion] Thread a function argument through all the callers of the
Chandler Carruth
2015-02-01
1
-3
/
+5
*
[PM] Change the core design of the TTI analysis to use a polymorphic
Chandler Carruth
2015-01-31
1
-5
/
+5
*
[PM] Remove the Pass argument from all of the critical edge splitting
Chandler Carruth
2015-01-19
1
-3
/
+4
*
[PM] Lift the analyses into the interface for
Chandler Carruth
2015-01-19
1
-1
/
+2
*
[PM] Split the LoopInfo object apart from the legacy pass, creating
Chandler Carruth
2015-01-17
1
-4
/
+4
*
Update SetVector to rely on the underlying set's insert to return a pair<iter...
David Blaikie
2014-11-19
1
-5
/
+5
*
LSR: Minor cleanup after Daniel's patch.
Andrew Trick
2014-10-25
1
-4
/
+2
*
Fix LSR compile time.
Andrew Trick
2014-10-25
1
-0
/
+5
*
Use range based for loops to avoid needing to re-mention SmallPtrSet size.
Craig Topper
2014-08-24
1
-19
/
+14
*
Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoid needin...
Craig Topper
2014-08-21
1
-12
/
+12
*
Revert "Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoi...
Craig Topper
2014-08-18
1
-12
/
+12
*
Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoid needin...
Craig Topper
2014-08-17
1
-12
/
+12
*
[LSR] Canonicalize reg1 + ... + regN into reg1 + ... + 1*regN.
Quentin Colombet
2014-05-20
1
-183
/
+375
*
Reapply r207271 without the testcase
Adam Nemet
2014-04-29
1
-9
/
+12
*
Revert r207271 for now. This commit introduced a test case that ran
Chandler Carruth
2014-04-28
1
-12
/
+9
*
[LoopStrengthReduce] Don't trim formula that uses a subset of required registers
Adam Nemet
2014-04-25
1
-9
/
+12
*
[C++] Use 'nullptr'. Transforms edition.
Craig Topper
2014-04-25
1
-54
/
+55
*
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
2014-04-22
1
-1
/
+2
*
Remove some dead assignements found by scan-build
Arnaud A. de Grandmaison
2014-03-15
1
-1
/
+1
*
LSR: Compress a pair (and get rid of the DenseMapInfo for it).
Benjamin Kramer
2014-03-15
1
-33
/
+6
*
[C++11] Add range based accessors for the Use-Def chain of a Value.
Chandler Carruth
2014-03-09
1
-20
/
+17
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-05
1
-2
/
+2
*
[Modules] Move ValueHandle into the IR library where Value itself lives.
Chandler Carruth
2014-03-04
1
-1
/
+1
*
[C++11] Use std::tie to simplify compare operators.
Benjamin Kramer
2014-03-03
1
-15
/
+5
*
[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.
Benjamin Kramer
2014-03-02
1
-12
/
+13
*
Fix PR18165: LSR must avoid scaling factors that exceed the limit on truncate...
Andrew Trick
2014-02-26
1
-0
/
+12
[next]