aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Analysis/AliasAnalysis.cpp
AgeCommit message (Expand)AuthorFilesLines
2016-07-15[AliasAnalysis] Give back AA results for fence instructionsDavid Majnemer1-0/+3
2016-07-11AliasAnalysis: unify getModRefInfo(I, CS) semantics with other overloadsNicolai Haehnle1-1/+1
2016-07-06[CFLAA] Split into Anders+Steens analysis.George Burgess IV1-6/+14
2016-07-04Add writeonly IR attributeNicolai Haehnle1-0/+4
2016-06-13Fix AAResults::callCapturesBefore for operand bundlesSanjoy Das1-1/+1
2016-04-06NFC: make AtomicOrdering an enum classJF Bastien1-2/+2
2016-03-11[PM] Implement the final conclusion as to how the analysis IDs shouldChandler Carruth1-1/+1
2016-03-02[AA] Hoist the logic to reformulate various AA queries in terms of otherChandler Carruth1-11/+127
2016-02-28[PM] Appease mingw32's auto-import DLL build with minimal tweaks, with fix fo...NAKAMURA Takumi1-0/+3
2016-02-28Revert r262185, "[PM] Appease mingw32's auto-import DLL build with minimal tw...NAKAMURA Takumi1-3/+0
2016-02-28[PM] Appease mingw32's auto-import DLL build with minimal tweaks.NAKAMURA Takumi1-0/+3
2016-02-26[PM] Introduce CRTP mixin base classes to help define passes andChandler Carruth1-3/+0
2016-02-13[PM/AA] Actually wire the AAManager I built for the new pass managerChandler Carruth1-0/+3
2016-02-09Add an "addUsedAAAnalyses" helper functionSanjoy Das1-0/+11
2016-02-09Remove SCEVAAWrapperPass from createLegacyPMAAResults; NFCSanjoy Das1-2/+0
2016-01-13fix formatting; NFCSanjay Patel1-4/+2
2016-01-13don't duplicate comments that are in the header file; NFCSanjay Patel1-16/+0
2015-11-17[AliasAnalysis] CatchPad and CatchRet can modify escaped memoryDavid Majnemer1-0/+26
2015-10-21[AA] Enhance the new AliasAnalysis infrastructure with an optionalChandler Carruth1-0/+40
2015-10-10Analysis: Remove implicit ilist iterator conversionsDuncan P. N. Exon Smith1-3/+3
2015-09-09[PM/AA] Rebuild LLVM's alias analysis infrastructure in a way compatibleChandler Carruth1-207/+234
2015-08-06[PM/AA] Simplify the AliasAnalysis interface by removing a wrapperChandler Carruth1-7/+0
2015-08-05[AA] Use CallSite cast idiom. No functionality change.Benjamin Kramer1-3/+2
2015-07-31[CaptureTracker] Provide an ordered basic block to PointerMayBeCapturedBeforeBruno Cardoso Lopes1-6/+12
2015-07-22[PM/AA] Extract the ModRef enums from the AliasAnalysis class inChandler Carruth1-91/+91
2015-07-22[PM/AA] Remove the last of the legacy update API from AliasAnalysis asChandler Carruth1-5/+0
2015-07-18[PM/AA] Remove the addEscapingUse update API that won't be easy toChandler Carruth1-5/+0
2015-07-11[PM/AA] Completely remove the AliasAnalysis::copyValue interface.Chandler Carruth1-5/+0
2015-06-22[PM/AA] Hoist the AliasResult enum out of the AliasAnalysis class.Chandler Carruth1-2/+2
2015-06-17[PM/AA] Remove the UnknownSize static member from AliasAnalysis.Chandler Carruth1-1/+1
2015-06-17[PM/AA] Remove the Location typedef from the AliasAnalysis class nowChandler Carruth1-22/+21
2015-06-17[PM/AA] Split the location computation out of getArgLocation so theChandler Carruth1-21/+20
2015-06-04[PM/AA] Start refactoring AliasAnalysis to remove the analysis group andChandler Carruth1-78/+6
2015-05-13Test commit: Remove unnecessary spaces.Teresa Johnson1-1/+1
2015-04-28Make getModRefInfo(Instruction *) not crash on certain types of instructionsDaniel Berlin1-10/+13
2015-04-13Add new getModRefInfo API to determine whether an Instruction and a call modi...Daniel Berlin1-0/+17
2015-04-13Make getModRefInfo with a default location not crash.Daniel Berlin1-9/+12
2015-03-10DataLayout is mandatory, update the API to reflect it with references.Mehdi Amini1-2/+3
2015-03-04Make DataLayout Non-Optional in the ModuleMehdi Amini1-3/+2
2015-01-15[PM] Separate the TargetLibraryInfo object from the immutable pass.Chandler Carruth1-1/+2
2015-01-15[PM] Move TargetLibraryInfo into the Analysis library.Chandler Carruth1-1/+1
2014-12-15Sink store based on alias analysisElena Demikhovsky1-10/+11
2014-10-28Reformat partially, where I touched for whitespace changes.NAKAMURA Takumi1-3/+2
2014-10-28Untabify and whitespace cleanups.NAKAMURA Takumi1-9/+8
2014-10-04Make AAMDNodes ctor and operator bool (!!!) explicit, mop up bugs and weirdne...Benjamin Kramer1-1/+1
2014-07-24AA metadata refactoring (introduce AAMDNodes)Hal Finkel1-18/+30
2014-07-21Match semantics of PointerMayBeCapturedBefore to its name by defaultHal Finkel1-1/+2
2014-07-21Move the CapturesBefore tracker from AA into CaptureTrackingHal Finkel1-50/+2
2014-07-21Move isIdentifiedFunctionLocal from BasicAA to AAHal Finkel1-0/+11
2014-07-17Improve BasicAA CS-CS queries (redux)Hal Finkel1-13/+40