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
/
Utils
/
PromoteMemoryToRegister.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Thread DataLayout through the callers and into mem2reg. This will be
Chandler Carruth
2013-07-28
1
-8
/
+13
*
Merge the removal of dead instructions and lifetime markers with the
Chandler Carruth
2013-07-27
1
-41
/
+32
*
Re-implement the analysis of uses in mem2reg to be significantly more
Chandler Carruth
2013-07-26
1
-87
/
+157
*
mem2reg: Minor STL usage cleanup. No functionality change.
Benjamin Kramer
2013-07-21
1
-11
/
+8
*
Make the mem2reg interface use an ArrayRef as it keeps a copy of these
Chandler Carruth
2013-07-21
1
-5
/
+6
*
Hoist the rest of the logic for promoting single-store allocas into the
Chandler Carruth
2013-07-21
1
-23
/
+31
*
Hoist the rest of the logic for fully promoting allocas with all uses in
Chandler Carruth
2013-07-21
1
-55
/
+33
*
Remove a method made dead by the prior refactoring.
Chandler Carruth
2013-07-21
1
-5
/
+0
*
Hoist the two trivial promotion routines out of the big class that
Chandler Carruth
2013-07-20
1
-161
/
+158
*
Hoist the AllocaInfo struct to the top of the file.
Chandler Carruth
2013-07-20
1
-59
/
+57
*
Sink a typedef and comparator down to the function that actually uses them.
Chandler Carruth
2013-07-20
1
-8
/
+10
*
Don't allocate the DIBuilder on the heap and remove all the complexity
Chandler Carruth
2013-07-20
1
-16
/
+8
*
Rename constructor parameters to follow the common member-shadowing
Chandler Carruth
2013-07-20
1
-3
/
+3
*
Reformat the implementation of mem2reg with clang-format so that my
Chandler Carruth
2013-07-20
1
-344
/
+360
*
Remove a DenseMapInfo specialization for std::pair -- we have one of
Chandler Carruth
2013-07-20
1
-20
/
+0
*
Update mem2reg's comments to conform to the new doxygen standards. No
Chandler Carruth
2013-07-20
1
-74
/
+58
*
Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid ...
Craig Topper
2013-07-04
1
-1
/
+1
*
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2013-01-02
1
-6
/
+6
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-12
/
+12
*
Fix typo.
Julien Lerouge
2012-10-23
1
-1
/
+1
*
Explain why DenseMap is still used here instead of MapVector.
Julien Lerouge
2012-10-23
1
-1
/
+9
*
Iterating over a DenseMap<std::pair<BasicBlock*, unsigned>, PHINode*> is not
Julien Lerouge
2012-10-22
1
-4
/
+4
*
The DIBuilder class is just a wrapper around debug info creation
Bill Wendling
2012-06-29
1
-1
/
+1
*
Move lib/Analysis/DebugInfo.cpp to lib/VMCore/DebugInfo.cpp and
Bill Wendling
2012-06-28
1
-1
/
+1
*
Switch mem2reg to use the new hashing infrastructure.
Chandler Carruth
2012-03-05
1
-1
/
+3
*
Fix 80-column violation.
Chad Rosier
2012-02-20
1
-1
/
+2
*
Propagate TargetLibraryInfo throughout ConstantFolding.cpp and
Chad Rosier
2011-12-01
1
-1
/
+1
*
Add comments and test for atomic load/store and mem2reg.
Eli Friedman
2011-08-15
1
-0
/
+4
*
Move onlyUsedByLifetimeMarkers to ValueTracking so that it can be used by other
Nick Lewycky
2011-06-27
1
-16
/
+1
*
When promoting an alloca to registers discard any lifetime intrinsics.
Nick Lewycky
2011-06-17
1
-0
/
+59
*
Make LoadAndStorePromoter preserve debug info and create llvm.dbg.values when
Cameron Zwarich
2011-05-24
1
-12
/
+0
*
Remove unused STL header includes.
Jay Foad
2011-04-23
1
-1
/
+0
*
PR9214: Convert Metadata API to use ArrayRef.
Jay Foad
2011-04-21
1
-1
/
+1
*
Remove PHINode::reserveOperandSpace(). Instead, add a parameter to
Jay Foad
2011-03-30
1
-2
/
+1
*
Refactor into a separate utility function.
Devang Patel
2011-03-17
1
-29
/
+14
*
Do not use DIFactory. Use DIBuilder.
Devang Patel
2011-02-24
1
-6
/
+7
*
Convert two std::vectors to SmallVectors for a 3.4% speedup running -scalarrepl
Cameron Zwarich
2011-01-23
1
-2
/
+2
*
Convert a std::map to a DenseMap for another 1.7% speedup on -scalarrepl.
Cameron Zwarich
2011-01-18
1
-3
/
+3
*
Make a std::vector a SmallVector<*, 32> like the other vectors in the same
Cameron Zwarich
2011-01-18
1
-1
/
+1
*
Remove outdated references to dominance frontiers.
Cameron Zwarich
2011-01-18
1
-7
/
+7
*
Roll r123609 back in with two changes that fix test failures with expensive
Cameron Zwarich
2011-01-17
1
-50
/
+119
*
Roll out r123609 due to failures on the llvm-x86_64-linux-checks bot.
Cameron Zwarich
2011-01-17
1
-118
/
+49
*
Eliminate the use of dominance frontiers in PromoteMemToReg. In addition to
Cameron Zwarich
2011-01-17
1
-49
/
+118
*
split dom frontier handling stuff out to its own DominanceFrontier header,
Chris Lattner
2011-01-02
1
-1
/
+1
*
Don't keep track of inserted phis in PromoteMemoryToRegister: the information
Duncan Sands
2010-11-22
1
-8
/
+3
*
Have a few places that want to simplify phi nodes use SimplifyInstruction
Duncan Sands
2010-11-16
1
-3
/
+4
*
remove some dead code.
Chris Lattner
2010-08-18
1
-8
/
+0
*
Don't look up the "dbg" metadata kind by name.
Dan Gohman
2010-07-20
1
-4
/
+5
*
cache result of operator*
Gabor Greif
2010-07-09
1
-3
/
+5
*
Use A.append(...) instead of A.insert(A.end(), ...) when A is a
Dan Gohman
2010-06-21
1
-3
/
+2
[next]