Home
last modified time | relevance | path

Searched refs:MRI_Ref (Results 1 – 10 of 10) sorted by relevance

/external/llvm/include/llvm/Analysis/
DAliasAnalysis.h98 MRI_Ref = 1, enumerator
102 MRI_ModRef = MRI_Ref | MRI_Mod
137 FMRB_OnlyReadsArgumentPointees = FMRL_ArgumentPointees | MRI_Ref,
152 FMRB_OnlyReadsMemory = FMRL_Anywhere | MRI_Ref,
325 return !(MRB & MRI_Ref); in doesNotReadMemory()
466 if (MRB & MRI_Ref) in getModRefInfo()
467 return MRI_Ref; in getModRefInfo()
/external/llvm/lib/Analysis/
DAliasAnalysis.cpp145 Result = ModRefInfo(Result & MRI_Ref); in getModRefInfo()
212 Result = ModRefInfo(Result & MRI_Ref); in getModRefInfo()
234 else if (ArgMask == MRI_Ref) in getModRefInfo()
266 ((ArgMask & MRI_Ref) != MRI_NoModRef && in getModRefInfo()
324 return MRI_Ref; in getModRefInfo()
471 R = MRI_Ref; in callCapturesBefore()
DGlobalsModRef.cpp147 ModRefInfo GlobalMRI = mayReadAnyGlobal() ? MRI_Ref : MRI_NoModRef; in getModRefInfoForGlobal()
300 FunctionInfos[Reader].addModRefInfoForGlobal(GV, MRI_Ref); in AnalyzeGlobals()
500 FI.addModRefInfo(MRI_Ref); in AnalyzeCallGraph()
569 FI.addModRefInfo(MRI_Ref); in AnalyzeCallGraph()
859 ModRefInfo ConservativeResult = CS.onlyReadsMemory() ? MRI_Ref : MRI_ModRef; in getModRefInfoForArgument()
DAliasAnalysisEvaluator.cpp256 case MRI_Ref: in runInternal()
283 case MRI_Ref: in runInternal()
DMemoryDependenceAnalysis.cpp94 return MRI_Ref; in GetLocation()
159 return MRI_Ref; in GetLocation()
659 case MRI_Ref: in getSimplePointerDependencyFrom()
DBasicAliasAnalysis.cpp643 return MRI_Ref; in getArgModRefInfo()
782 return MRI_Ref; in getModRefInfo()
809 return getModRefBehavior(CS2) & MRI_Mod ? MRI_Ref : MRI_NoModRef; in getModRefInfo()
/external/llvm/unittests/Analysis/
DAliasAnalysisTest.cpp195 EXPECT_EQ(AA.getModRefInfo(Load1, MemoryLocation()), MRI_Ref); in TEST_F()
196 EXPECT_EQ(AA.getModRefInfo(Load1), MRI_Ref); in TEST_F()
/external/llvm/lib/Transforms/IPO/
DFunctionAttrs.cpp110 if (MRB & MRI_Ref) in checkFunctionMemoryAccess()
135 if (MRB & MRI_Ref) in checkFunctionMemoryAccess()
/external/llvm/lib/Transforms/Scalar/
DDeadStoreElimination.cpp770 return A == MRI_ModRef || A == MRI_Ref; in handleEndBlock()
1007 if (AA->getModRefInfo(DepWrite, Loc) & MRI_Ref) in eliminateDeadStores()
/external/llvm/lib/Transforms/Utils/
DMemorySSA.cpp530 bool Use = bool(ModRef & MRI_Ref); in createNewAccess()