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
/
Analysis
/
CFLAliasAnalysis.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[CFLAA] Add AttrEscaped, remove bit twiddling functions.
George Burgess IV
2016-06-07
1
-49
/
+58
*
[CFLAA] Recognize builtin allocation functions.
George Burgess IV
2016-06-01
1
-30
/
+55
*
[CFLAA] Don't link GEP pointers to GEP indices.
George Burgess IV
2016-05-31
1
-2
/
+0
*
[CFLAA] Fix a use-of-invalid-pointer bug.
George Burgess IV
2016-05-02
1
-1
/
+6
*
[NFC] Header cleanup
Mehdi Amini
2016-04-18
1
-2
/
+0
*
[CFLAA] Fix up code style a bit. NFC.
George Burgess IV
2016-04-13
1
-125
/
+112
*
[CFLAA] Fix PR27213; incorrect tagging of args/globals
George Burgess IV
2016-04-05
1
-1
/
+5
*
IR: Introduce ConstantAggregate, NFC
Duncan P. N. Exon Smith
2016-04-05
1
-4
/
+3
*
Rename DenseMap::resize() into DenseMap::reserve() (NFC)
Mehdi Amini
2016-03-22
1
-1
/
+1
*
[PM] Make the AnalysisManager parameter to run methods a reference.
Chandler Carruth
2016-03-11
1
-1
/
+1
*
[PM] Implement the final conclusion as to how the analysis IDs should
Chandler Carruth
2016-03-11
1
-0
/
+2
*
[AA] Hoist the logic to reformulate various AA queries in terms of other
Chandler Carruth
2016-03-02
1
-11
/
+5
*
[PM] Introduce CRTP mixin base classes to help define passes and
Chandler Carruth
2016-02-26
1
-2
/
+0
*
[PM/AA] Wire up CFLAA to the new pass manager fully, and port one of its
Chandler Carruth
2016-02-20
1
-0
/
+1
*
Minor style cleanup of CFLAA. NFC.
George Burgess IV
2016-01-28
1
-6
/
+11
*
[PM/AA] Rebuild LLVM's alias analysis infrastructure in a way compatible
Chandler Carruth
2015-09-09
1
-51
/
+56
*
Fix: CFLAA -- Mark no-args returns as unknown
George Burgess IV
2015-08-28
1
-0
/
+10
*
[PM/AA] Hoist the value handle definition for CFLAA into the header to
Chandler Carruth
2015-08-14
1
-22
/
+0
*
[PM/AA] Extract a minimal interface for CFLAA to its own header file.
Chandler Carruth
2015-08-14
1
-132
/
+78
*
Fix some comment typos.
Benjamin Kramer
2015-08-08
1
-2
/
+2
*
-Wdeprecated-clean: Fix cases of violating the rule of 5 in ways that are dep...
David Blaikie
2015-08-03
1
-3
/
+1
*
Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)
Alexander Kornienko
2015-06-23
1
-1
/
+1
*
[PM/AA] Hoist the AliasResult enum out of the AliasAnalysis class.
Chandler Carruth
2015-06-22
1
-8
/
+8
*
Typo. NFC.
Chad Rosier
2015-06-19
1
-2
/
+1
*
Fixed/added namespace ending comments using clang-tidy. NFC
Alexander Kornienko
2015-06-19
1
-1
/
+1
*
[PM/AA] Remove the Location typedef from the AliasAnalysis class now
Chandler Carruth
2015-06-17
1
-5
/
+5
*
Don't create instructions from ConstantExpr's in CFLAliasAnalysis.
Pete Cooper
2015-06-12
1
-12
/
+41
*
Convert PHI getIncomingValue() to foreach over incoming_values(). NFC.
Pete Cooper
2015-05-12
1
-2
/
+1
*
Use 'override/final' instead of 'virtual' for overridden methods
Alexander Kornienko
2015-04-11
1
-2
/
+2
*
Re-sort includes with sort-includes.py and insert raw_ostream.h where it's used.
Benjamin Kramer
2015-03-23
1
-1
/
+2
*
Made CFLAA agree with clang-format. NFC.
George Burgess IV
2015-03-15
1
-9
/
+7
*
Added ConstantExpr support to CFLAA.
George Burgess IV
2015-03-10
1
-40
/
+143
*
Added special handling for inttoptr in CFLAA.
George Burgess IV
2015-03-10
1
-10
/
+22
*
Make DataLayout Non-Optional in the Module
Mehdi Amini
2015-03-04
1
-1
/
+6
*
Revert "Remove the explicit SDNodeIterator::operator= in favor of the implici...
David Blaikie
2015-03-03
1
-1
/
+3
*
Remove the explicit SDNodeIterator::operator= in favor of the implicit default
David Blaikie
2015-03-03
1
-3
/
+1
*
Fixed a bug where CFLAA would crash the compiler.
George Burgess IV
2015-02-12
1
-6
/
+13
*
Fix incorrect partial aliasing
Daniel Berlin
2015-01-26
1
-7
/
+20
*
Fix delegation
Daniel Berlin
2015-01-26
1
-2
/
+5
*
Fixed a bug with how we determine bitset indices.
George Burgess IV
2015-01-21
1
-1
/
+1
*
[cleanup] Re-sort all the #include lines in LLVM using
Chandler Carruth
2015-01-14
1
-3
/
+3
*
Remove redundant virtual on overriden functions.
David Blaikie
2014-11-14
1
-2
/
+2
*
[CFL-AA] CFL-AA should not assert on an va_arg instruction
Hal Finkel
2014-10-14
1
-0
/
+11
*
[CFL-AA] Update for handling of globals and more tests
Hal Finkel
2014-10-06
1
-3
/
+11
*
Adds 'override' to overriding methods. NFC.
Argyrios Kyrtzidis
2014-10-01
1
-1
/
+1
*
[CFLAA] Remove one final initializer list
Hal Finkel
2014-09-03
1
-1
/
+5
*
[CFLAA] And even more MSVC fixes
Hal Finkel
2014-09-02
1
-1
/
+5
*
[CFLAA] More cleanup for MSVC
Hal Finkel
2014-09-02
1
-9
/
+12
*
[CFLAA] No initializer lists for MSVC
Hal Finkel
2014-09-02
1
-26
/
+27
*
[CFLAA] constexpr -> LLVM_CONSTEXPR
Hal Finkel
2014-09-02
1
-11
/
+12
[next]