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
/
SROA.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix PR15674 (and PR15603): a SROA think-o.
Chandler Carruth
2013-04-07
1
-0
/
+1
*
Minor cleanups. No functionality change.
Jakub Staszak
2013-03-24
1
-6
/
+7
*
[SROA] Prefix names using a custom IRBuilder inserter.
Chandler Carruth
2013-03-21
1
-88
/
+108
*
Fix a silly search-and-replace goof with r177495 that only broke
Chandler Carruth
2013-03-20
1
-1
/
+1
*
[SROA] Don't preserve the IR names in release builds.
Chandler Carruth
2013-03-20
1
-28
/
+37
*
Move the endif to the correct line so we don't have warnings about
Chandler Carruth
2013-03-20
1
-1
/
+1
*
Introduce some new statistics to help track the exact behavior of the
Chandler Carruth
2013-03-20
1
-4
/
+20
*
Mark internal classes as POD-like to get better behavior out of
Chandler Carruth
2013-03-18
1
-102
/
+109
*
PR14972: SROA vs. GVN exposed a really bad bug in SROA.
Chandler Carruth
2013-03-14
1
-117
/
+124
*
Keep coding stanard.
Jakub Staszak
2013-03-07
1
-4
/
+3
*
Don't create IRBuilder if we can return from the method earlier.
Jakub Staszak
2013-03-07
1
-2
/
+2
*
Remove unused variable.
Jakub Staszak
2013-02-19
1
-2
/
+1
*
Minor cleanups. No functionality change.
Jakub Staszak
2013-02-19
1
-10
/
+7
*
Remove unneeded #includes.
Jakub Staszak
2013-02-19
1
-2
/
+0
*
Fix typos.
Jakub Staszak
2013-02-19
1
-10
/
+10
*
Fixing warnings revealed by gcc release build
Edwin Vane
2013-01-29
1
-0
/
+1
*
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2013-01-02
1
-10
/
+10
*
Add IRBuilder::CreateVectorSplat and use it to simplify code.
Benjamin Kramer
2013-01-01
1
-12
/
+1
*
SROA: Clean up unused assignment warnings from clang's analyzer.
Benjamin Kramer
2013-01-01
1
-5
/
+4
*
convert a bunch of callers from DataLayout::getIndexedOffset() to GEP::accumu...
Nuno Lopes
2012-12-30
1
-39
/
+1
*
SROA: Replace calls to getScalarSizeInBits to DataLayout's API because
Nadav Rotem
2012-12-18
1
-6
/
+6
*
Fix another SROA crasher, PR14601.
Chandler Carruth
2012-12-17
1
-1
/
+1
*
Teach the rewriting of memcpy calls to support subvector copies.
Chandler Carruth
2012-12-17
1
-40
/
+41
*
Fix a secondary bug I introduced while fixing the first part of PR14478.
Chandler Carruth
2012-12-17
1
-6
/
+2
*
Hoist a convertValue call to the two paths where it is needed.
Chandler Carruth
2012-12-17
1
-3
/
+4
*
Hoist the insertVector helper to be a static helper.
Chandler Carruth
2012-12-17
1
-49
/
+62
*
Lift the extractVector helper all the way out to a static helper function.
Chandler Carruth
2012-12-17
1
-30
/
+32
*
Factor the vector load rewriting into a more generic form.
Chandler Carruth
2012-12-17
1
-16
/
+27
*
Fix the first part of PR14478: memset now works.
Chandler Carruth
2012-12-17
1
-34
/
+68
*
Extract the logic for inserting a subvector into a vector alloca.
Chandler Carruth
2012-12-17
1
-38
/
+50
*
Lift the integer splat computation into a helper function.
Chandler Carruth
2012-12-17
1
-11
/
+28
*
Relax an overly aggressive assert to fix PR14572.
Chandler Carruth
2012-12-15
1
-1
/
+1
*
Add a new visitor for walking the uses of a pointer value.
Chandler Carruth
2012-12-10
1
-219
/
+159
*
Fix PR14548: SROA was crashing on a mixture of i1 and i8 loads and stores.
Chandler Carruth
2012-12-10
1
-2
/
+2
*
Switch SROA to pop Uses off the back of its visitors' queues.
Chandler Carruth
2012-12-09
1
-10
/
+8
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-8
/
+8
*
Remove some buggy and apparantly unnecessary code from SROA.
Chandler Carruth
2012-12-03
1
-25
/
+6
*
SROA: Avoid struct and array types early to avoid creating an overly large in...
Benjamin Kramer
2012-12-01
1
-0
/
+3
*
Move the InstVisitor utility into VMCore where it belongs. It heavily
Chandler Carruth
2012-11-30
1
-1
/
+1
*
PR14055: Implement support for sub-vector operations in SROA.
Chandler Carruth
2012-11-21
1
-21
/
+75
*
Use LLVM_ENABLE_DUMP for the variables used in printing as well as the
Chandler Carruth
2012-11-20
1
-2
/
+2
*
Fix PR14132 and handle OOB loads speculated throuh PHI nodes.
Chandler Carruth
2012-11-20
1
-0
/
+21
*
Add a comment to associate a FIXME with a PR where it is matters.
Chandler Carruth
2012-11-20
1
-1
/
+2
*
Rework the rewriting of loads and stores for vector and integer allocas
Chandler Carruth
2012-11-20
1
-168
/
+118
*
Teach SROA rewriteVectorizedStoreInst to handle cases when the loaded value i...
Evan Cheng
2012-11-17
1
-33
/
+42
*
Revert the majority of the next patch in the address space series:
Chandler Carruth
2012-11-01
1
-7
/
+3
*
Revert the series of commits starting with r166578 which introduced the
Chandler Carruth
2012-11-01
1
-4
/
+4
*
Don't insert and erase load instruction. Simply create (new) and delete it.
Jakub Staszak
2012-11-01
1
-2
/
+2
*
Fix PR14212: For some strange reason I treated vectors differently from
Chandler Carruth
2012-10-30
1
-4
/
+3
*
Teach SROA how to split whole-alloca integer loads and stores into
Chandler Carruth
2012-10-25
1
-4
/
+117
[next]