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
/
MemCpyOptimizer.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[NFC] fix trivial typos in comments
Hiroshi Inoue
2018-06-14
1
-1
/
+1
*
Move Analysis/Utils/Local.h back to Transforms
David Blaikie
2018-06-04
1
-1
/
+1
*
Rename DEBUG macro to LLVM_DEBUG.
Nicola Zaghen
2018-05-14
1
-13
/
+13
*
[MemCpyOpt] Skip optimizing basic blocks not reachable from entry
Bjorn Pettersson
2018-04-23
1
-1
/
+10
*
Fix a couple of layering violations in Transforms
David Blaikie
2018-03-21
1
-1
/
+1
*
[MemCpyOpt] Update to new API for memory intrinsic alignment
Daniel Neilson
2018-03-21
1
-25
/
+35
*
Revert "[memcpyopt] Teach memcpyopt to optimize across basic blocks"
Reid Kleckner
2017-12-28
1
-46
/
+10
*
[memcpyopt] Teach memcpyopt to optimize across basic blocks
Dan Gohman
2017-12-20
1
-10
/
+46
*
Revert r319482 and r319483 "[memcpyopt] Teach memcpyopt to optimize across ba...
Hans Wennborg
2017-12-06
1
-28
/
+3
*
Modify ModRefInfo values using static inline method abstractions [NFC].
Alina Sbirlea
2017-12-05
1
-11
/
+11
*
[memcpyopt] Teach memcpyopt to optimize across basic blocks
Dan Gohman
2017-11-30
1
-3
/
+28
*
[Transforms] Fix some Clang-tidy modernize and Include What You Use warnings;...
Eugene Zelenko
2017-10-18
1
-6
/
+13
*
Default MemoryLocation passed to getModRefInfo should be None (D35441)
Alina Sbirlea
2017-08-01
1
-1
/
+1
*
Allow None as a MemoryLocation to getModRefInfo
Alina Sbirlea
2017-08-01
1
-1
/
+1
*
Sort the remaining #include lines in include/... and lib/....
Chandler Carruth
2017-06-06
1
-4
/
+4
*
Make getParamAlignment use argument numbers
Reid Kleckner
2017-04-28
1
-1
/
+1
*
[MemCpyOpt] Only replace memcpy with bitcast if address spaces match
Matt Arsenault
2017-04-10
1
-0
/
+5
*
MemCpyOptimizer: don't create new addrspace casts
Fiona Glaser
2017-03-14
1
-0
/
+11
*
[MemCpyOpt] clang-format + trim the legacy pass. NFC.
George Burgess IV
2017-03-08
1
-39
/
+23
*
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
David L. Jones
2017-01-23
1
-2
/
+2
*
[Target, Transforms] Fix some Clang-tidy modernize and Include What You Use w...
Eugene Zelenko
2017-01-18
1
-16
/
+49
*
[PM] Introduce an analysis set used to preserve all analyses over
Chandler Carruth
2017-01-15
1
-0
/
+2
*
[MemCpyOpt] Don't sink LoadInst below possible clobber.
Bryant Wong
2016-12-27
1
-5
/
+11
*
Revert @llvm.assume with operator bundles (r289755-r289757)
Daniel Jasper
2016-12-19
1
-3
/
+16
*
Remove the AssumptionCache
Hal Finkel
2016-12-15
1
-16
/
+3
*
IR: Change the gep_type_iterator API to avoid always exposing the "current" t...
Peter Collingbourne
2016-12-02
1
-1
/
+1
*
[MemCpyOpt] Don't emit IR in an unspecified order
Benjamin Kramer
2016-11-07
1
-4
/
+4
*
[MemCpy] Add comments for r279769
Tim Shen
2016-08-25
1
-1
/
+2
*
[MemCpy] Check for alias in performMemCpyToMemSetOptzn, instead of the identi...
Tim Shen
2016-08-25
1
-1
/
+3
*
Use range algorithms instead of unpacking begin/end
David Majnemer
2016-08-11
1
-8
/
+6
*
Apply clang-tidy's modernize-loop-convert to most of lib/Transforms.
Benjamin Kramer
2016-06-26
1
-3
/
+4
*
Apply another batch of fixes from clang-tidy's performance-unnecessary-value-...
Benjamin Kramer
2016-06-17
1
-3
/
+3
*
[PM] Port MemCpyOpt to the new PM.
Sean Silva
2016-06-14
1
-56
/
+96
*
[MemCpyOpt] Do not exchange llvm.lifetime.start and llvm.memcpy
Tim Shen
2016-06-08
1
-0
/
+5
*
[MemCpyOpt] Don't perform callslot optimization across may-throw calls
David Majnemer
2016-05-26
1
-1
/
+13
*
Rename getLargestLegalIntTypeSize to getLargestLegalIntTypeSizeInBits(). NFC.
Jun Bum Lim
2016-05-13
1
-1
/
+1
*
[MemCpyOpt] Use MaxIntSize in byte instead of bit
Jun Bum Lim
2016-05-13
1
-1
/
+1
*
Revert "MemCpyOpt: combine local load/store sequences into memcpy."
Tim Northover
2016-05-10
1
-222
/
+48
*
MemCpyOpt: combine local load/store sequences into memcpy.
Tim Northover
2016-05-10
1
-48
/
+222
*
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
-1
/
+1
*
Initial implementation of optimization bisect support.
Andrew Kaylor
2016-04-21
1
-1
/
+1
*
Imporove load to store => memcpy
Amaury Sechet
2016-03-14
1
-18
/
+99
*
[PM] Port memdep to the new pass manager.
Chandler Carruth
2016-03-10
1
-5
/
+5
*
Fix PR26051: Memcpy optimization should introduce a call to memcpy before the...
Mehdi Amini
2016-01-06
1
-2
/
+4
*
Promote aggregate store to memset when possible
Amaury Sechet
2016-01-06
1
-1
/
+27
*
Remove useless DEBUG
Amaury Sechet
2016-01-06
1
-1
/
+0
*
Improve load/store to memcpy for aggregate
Amaury Sechet
2016-01-06
1
-9
/
+23
*
Implement load to store => memcpy in MemCpyOpt for aggregates
Amaury Sechet
2016-01-05
1
-11
/
+73
*
getParent() ^ 3 == getModule() ; NFCI
Sanjay Patel
2015-12-14
1
-3
/
+2
[next]