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] Split into Anders+Steens analysis.
George Burgess IV
2016-07-06
1
-1145
/
+0
*
[CFLAA] Add support for ModRef queries.
George Burgess IV
2016-06-30
1
-0
/
+71
*
[CFLAA] Make MSVC happy. NFC.
George Burgess IV
2016-06-27
1
-1
/
+3
*
[CFLAA] Use unsigned numbers for bit-shifts.
George Burgess IV
2016-06-27
1
-1
/
+1
*
Attempt to fix MSVC breakage caused by r273636.
George Burgess IV
2016-06-24
1
-9
/
+13
*
[CFLAA] Propagate StratifiedAttrs in interproc. analysis.
George Burgess IV
2016-06-24
1
-48
/
+113
*
Attempt #2 to unbreak bots broken by r273596.
George Burgess IV
2016-06-23
1
-2
/
+2
*
Attempt to fix breakage caused by r273596.
George Burgess IV
2016-06-23
1
-3
/
+3
*
[CFLAA] Use better interprocedural function summaries.
George Burgess IV
2016-06-23
1
-92
/
+110
*
[CFLAA] Be more aggressive with interprocedural analysis.
George Burgess IV
2016-06-21
1
-1
/
+1
*
Attempt to make MSVC buildbots happy.
George Burgess IV
2016-06-20
1
-3
/
+1
*
[CFLAA] Add interprocedural function summaries.
George Burgess IV
2016-06-20
1
-141
/
+154
*
[CFLAA] Ignore non-pointers, move Attrs to graph nodes.
George Burgess IV
2016-06-15
1
-64
/
+93
*
[CFLAA] Tag arguments as escaped instead of unknown.
George Burgess IV
2016-06-14
1
-305
/
+216
*
[CFLAA] Refactor graph-building code. NFC.
George Burgess IV
2016-06-14
1
-170
/
+160
*
Attempt to make windows buildbots happy.
George Burgess IV
2016-06-13
1
-4
/
+0
*
[CFLAA] Refactor to remove redundant maps. NFC.
George Burgess IV
2016-06-13
1
-209
/
+104
*
[CFLAA] Handle global/arg attrs more sanely.
George Burgess IV
2016-06-09
1
-20
/
+29
*
[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
[next]