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
/
Vectorize
/
LoopVectorize.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[LoopVectorizer] Rename BypassBlock to VectorPH, and CheckBlock to NewVectorP...
Michael Zolotukhin
2015-07-08
1
-46
/
+46
*
[LoopVectorizer] Restructurize code for emitting RT checks. NFCI.
Michael Zolotukhin
2015-07-08
1
-18
/
+22
*
[LoopVectorizer] Remove redundant variables PastOverflowCheck and OverflowChe...
Michael Zolotukhin
2015-07-08
1
-11
/
+2
*
[LoopVectorizer] Move some code around to ease further refactoring. NFCI.
Michael Zolotukhin
2015-07-08
1
-16
/
+13
*
[LoopVectorizer] Remove redundant variable LastBypassBlock. NFC.
Michael Zolotukhin
2015-07-08
1
-14
/
+12
*
[LoopVectorize] Use ReplaceInstWithInst() helper where appropriate.
Alexey Samsonov
2015-07-01
1
-22
/
+15
*
[LoopVectorize] Pointer indicies may be wider than the pointer
David Majnemer
2015-06-27
1
-3
/
+10
*
Move VectorUtils from Transforms to Analysis to correct layering violation
David Blaikie
2015-06-26
1
-1
/
+1
*
[LoopVectorizer] Fix bailing-out condition for OptForSize case.
Michael Zolotukhin
2015-06-24
1
-4
/
+3
*
Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)
Alexander Kornienko
2015-06-23
1
-1
/
+1
*
Fixed/added namespace ending comments using clang-tidy. NFC
Alexander Kornienko
2015-06-19
1
-1
/
+1
*
Refactor RecurrenceInstDesc
Tyler Nowicki
2015-06-16
1
-1
/
+1
*
Rename Reduction variables/structures to Recurrence.
Tyler Nowicki
2015-06-16
1
-16
/
+16
*
[LoopVectorize] Revert the enabling of interleaved memory access in Loop Vect...
Hao Liu
2015-06-11
1
-1
/
+1
*
[AArch64] Match interleaved memory accesses into ldN/stN instructions.
Hao Liu
2015-06-11
1
-1
/
+1
*
[LoopVectorize] Teach Loop Vectorizor about interleaved memory accesses.
Hao Liu
2015-06-08
1
-2
/
+699
*
[X86] Disable loop unrolling in loop vectorization pass when VF is 1.
Wei Mi
2015-05-06
1
-1
/
+1
*
Fix a couple of typos in comments.
Michael Zolotukhin
2015-04-24
1
-3
/
+3
*
Move common loop utility function isInductionPHI into LoopUtils.cpp
Karthik Bhat
2015-04-23
1
-43
/
+0
*
[NFC] Refactor identification of reductions as common utility function.
Karthik Bhat
2015-04-20
1
-519
/
+30
*
[LoopAccesses] Allow analysis to complete in the presence of uniform stores
Adam Nemet
2015-04-08
1
-0
/
+8
*
Revert "[LoopAccesses] Allow analysis to complete in the presence of uniform ...
Adam Nemet
2015-04-08
1
-8
/
+0
*
[LoopAccesses] Allow analysis to complete in the presence of uniform stores
Adam Nemet
2015-04-07
1
-0
/
+8
*
[opaque pointer type] More GEP API migrations in IRBuilder uses
David Blaikie
2015-04-03
1
-7
/
+9
*
Transforms: Use the new DebugLoc API, NFC
Duncan P. N. Exon Smith
2015-03-30
1
-2
/
+1
*
Refactor Code inside LoopVectorizer's function isInductionVariable.
Karthik Bhat
2015-03-27
1
-9
/
+23
*
Try to fix a test broken by one of my previous commits.
Michael Zolotukhin
2015-03-17
1
-0
/
+3
*
LoopVectorize: teach loop vectorizer to vectorize calls.
Michael Zolotukhin
2015-03-17
1
-35
/
+157
*
LoopVectorizer: Add TargetTransformInfo.
Michael Zolotukhin
2015-03-17
1
-9
/
+12
*
[LAA-memchecks 2/3] Move number of memcheck threshold checking to LV
Adam Nemet
2015-03-10
1
-1
/
+13
*
DataLayout is mandatory, update the API to reflect it with references.
Mehdi Amini
2015-03-10
1
-64
/
+52
*
Make helper functions static.
Benjamin Kramer
2015-03-09
1
-4
/
+3
*
Introduce runtime unrolling disable matadata and use it to mark the scalar lo...
Kevin Qin
2015-03-09
1
-2
/
+52
*
Do not restrict interleaved unrolling to small loops, depending on the target.
Olivier Sallenave
2015-03-06
1
-0
/
+8
*
Make DataLayout Non-Optional in the Module
Mehdi Amini
2015-03-04
1
-2
/
+1
*
Make ToVectorTy static.
Michael Zolotukhin
2015-03-02
1
-11
/
+9
*
Remove DebugLoc::print(LLVMContext, raw_ostream), it was just
Eric Christopher
2015-02-26
1
-1
/
+1
*
[LoopAccesses] Change LAA:getInfo to return a constant reference
Adam Nemet
2015-02-19
1
-3
/
+3
*
[LoopAccesses] Split out LoopAccessReport from VectorizerReport
Adam Nemet
2015-02-19
1
-7
/
+26
*
[LoopAccesses] Add missing const to APIs in VectorizationReport
Adam Nemet
2015-02-19
1
-2
/
+2
*
[LoopAccesses] Change debug messages from LV to LAA
Adam Nemet
2015-02-19
1
-2
/
+2
*
[LoopAccesses] Create the analysis pass
Adam Nemet
2015-02-19
1
-17
/
+25
*
[LoopAccesses] Cache the result of canVectorizeMemory
Adam Nemet
2015-02-19
1
-2
/
+2
*
[LoopAccesses] Stash the report from the analysis rather than emitting it
Adam Nemet
2015-02-19
1
-2
/
+6
*
[LoopAccesses] Make VectorizerParams global + fix for cyclic dep
Adam Nemet
2015-02-19
1
-24
/
+6
*
Revert "Reformat."
Adam Nemet
2015-02-19
1
-19
/
+31
*
Reformat.
NAKAMURA Takumi
2015-02-18
1
-31
/
+19
*
Revert r229622: "[LoopAccesses] Make VectorizerParams global" and others. r22...
NAKAMURA Takumi
2015-02-18
1
-70
/
+37
*
[LoopAccesses] Change LAA:getInfo to return a constant reference
Adam Nemet
2015-02-18
1
-3
/
+3
*
[LoopAccesses] Split out LoopAccessReport from VectorizerReport
Adam Nemet
2015-02-18
1
-7
/
+26
[next]