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
/
SeparateConstOffsetFromGEP.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Sink all InitializePasses.h includes
Reid Kleckner
2019-11-13
1
-1
/
+2
*
Change TargetLibraryInfo analysis passes to always require Function
Teresa Johnson
2019-09-07
1
-1
/
+1
*
Update the file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
1
-4
/
+3
*
[NFC] fix trivial typos in comments
Hiroshi Inoue
2018-06-14
1
-2
/
+2
*
Move Analysis/Utils/Local.h back to Transforms
David Blaikie
2018-06-04
1
-1
/
+1
*
[Split GEP] handle trunc() in separate-const-offset-from-gep pass.
Artem Belevich
2018-05-11
1
-2
/
+7
*
Remove \brief commands from doxygen comments.
Adrian Prantl
2018-05-01
1
-2
/
+2
*
[NFC] ConstantOffsetExtractor::CanTraceInto(): add FIXME: no tests
Roman Lebedev
2018-04-15
1
-0
/
+2
*
Plumb useAA through TargetTransformInfo to remove Transforms->CodeGen header ...
David Blaikie
2018-03-28
1
-13
/
+9
*
Fix a couple of layering violations in Transforms
David Blaikie
2018-03-21
1
-1
/
+1
*
Adding a width of the GEP index to the Data Layout.
Elena Demikhovsky
2018-02-14
1
-1
/
+1
*
[SeparateConstOffsetFromGEP] Preserve metadata when splitting GEPs
Marek Olsak
2018-01-31
1
-0
/
+2
*
[SeparateConstOffsetFromGEP] Fix a typo. NFC.
Haicheng Wu
2017-12-19
1
-1
/
+1
*
Fix a bunch more layering of CodeGen headers that are in Target
David Blaikie
2017-11-17
1
-1
/
+1
*
[Transforms] Fix some Clang-tidy modernize and Include What You Use warnings;...
Eugene Zelenko
2017-10-26
1
-8
/
+52
*
Sort the remaining #include lines in include/... and lib/....
Chandler Carruth
2017-06-06
1
-5
/
+5
*
Rename isKnownNotFullPoison to programUndefinedIfPoison; NFC
Sanjoy Das
2017-04-30
1
-1
/
+1
*
Revert @llvm.assume with operator bundles (r289755-r289757)
Daniel Jasper
2016-12-19
1
-1
/
+1
*
Remove the AssumptionCache
Hal Finkel
2016-12-15
1
-1
/
+1
*
IR: Change the gep_type_iterator API to avoid always exposing the "current" t...
Peter Collingbourne
2016-12-02
1
-6
/
+6
*
Partially revert 279331, as we modify this instruction in the loop
Daniel Berlin
2016-08-19
1
-3
/
+7
*
Convert some depth first traversals to depth_first
Daniel Berlin
2016-08-19
1
-8
/
+3
*
[GraphTraits] Make nodes_iterator dereference to NodeType*/NodeRef
Tim Shen
2016-08-19
1
-1
/
+1
*
Apply clang-tidy's modernize-loop-convert to most of lib/Transforms.
Benjamin Kramer
2016-06-26
1
-7
/
+7
*
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
*
Bug fix: use dyn_cast_or_null instead of dyn_cast
Lawrence Hu
2016-02-19
1
-2
/
+2
*
[opaque pointer types] [NFC] GEP: replace get(Pointer)ElementType uses with g...
Eduard Burtescu
2016-01-19
1
-2
/
+2
*
Replace dyn_cast with isa in places that weren't using the returned value for...
Craig Topper
2015-11-18
1
-3
/
+3
*
Scalar: Remove remaining ilist iterator implicit conversions
Duncan P. N. Exon Smith
2015-10-13
1
-1
/
+1
*
Swap loop invariant GEP with loop variant GEP to allow more LICM.
Lawrence Hu
2015-09-23
1
-8
/
+133
*
[PM] Port ScalarEvolution to the new pass manager.
Chandler Carruth
2015-08-17
1
-3
/
+3
*
[SeparateConstOffsetFromGEP] sext(a)+sext(b) => sext(a+b) when a+b can't sign...
Jingyue Wu
2015-08-14
1
-5
/
+100
*
[SeparateConstOffsetFromGEP] strengthen the inbounds attribute
Jingyue Wu
2015-08-13
1
-4
/
+9
*
SeparateConstOffsetFromGEP: Pass address space to isLegalAddressingMode
Matt Arsenault
2015-06-07
1
-1
/
+3
*
[ValueTracking] refactor: extract method haveNoCommonBitsSet
Jingyue Wu
2015-05-14
1
-57
/
+45
*
Fix comment for NoCommonBits.
Michael Zolotukhin
2015-04-23
1
-1
/
+2
*
[SeparateConstOffsetFromGEP] garbage-collect intermediate instructions
Jingyue Wu
2015-04-21
1
-26
/
+65
*
[opaque pointer type] More GEP API migrations in IRBuilder uses
David Blaikie
2015-04-03
1
-2
/
+4
*
[opaque pointer type] Start migrating GEP creation to explicitly specify the ...
David Blaikie
2015-03-14
1
-4
/
+6
*
DataLayout is mandatory, update the API to reflect it with references.
Mehdi Amini
2015-03-10
1
-32
/
+24
*
Make DataLayout Non-Optional in the Module
Mehdi Amini
2015-03-04
1
-6
/
+1
*
[multiversion] Thread a function argument through all the callers of the
Chandler Carruth
2015-02-01
1
-1
/
+2
*
[SeparateConstOffsetFromGEP] skip optnone functions
Jingyue Wu
2015-02-01
1
-0
/
+3
*
[SeparateConstOffsetFromGEP] set PreservesCFG flag
Jingyue Wu
2015-02-01
1
-0
/
+1
*
[PM] Change the core design of the TTI analysis to use a polymorphic
Chandler Carruth
2015-01-31
1
-3
/
+4
*
Migrate SeparateConstOffsetFromGEP to use a Function with
Eric Christopher
2015-01-27
1
-1
/
+1
*
[SeparateConstOffsetFromGEP] Allow SeparateConstOffsetFromGEP pass to lower G...
Hao Liu
2014-11-19
1
-40
/
+272
*
[SeparateConstOffsetFromGEP] Fixed a bug related to unsigned modulo
Jingyue Wu
2014-10-25
1
-6
/
+6
[next]