Home
last modified time | relevance | path

Searched refs:mayWriteToMemory (Results 1 – 25 of 118) sorted by relevance

12345

/external/llvm/include/llvm/IR/
DInstruction.h385 bool mayWriteToMemory() const;
392 return mayReadFromMemory() || mayWriteToMemory();
408 bool mayHaveSideEffects() const { return mayWriteToMemory() || mayThrow(); }
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DInstruction.h410 bool mayWriteToMemory() const;
417 return mayReadFromMemory() || mayWriteToMemory(); in mayReadOrWriteMemory()
450 bool mayHaveSideEffects() const { return mayWriteToMemory() || mayThrow(); } in mayHaveSideEffects()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DInstruction.h536 bool mayWriteToMemory() const;
543 return mayReadFromMemory() || mayWriteToMemory();
582 bool mayHaveSideEffects() const { return mayWriteToMemory() || mayThrow(); }
/external/llvm-project/llvm/include/llvm/Analysis/
DInstructionPrecedenceTracking.h126 bool mayWriteToMemory(const BasicBlock *BB) { in mayWriteToMemory() function
DVectorUtils.h696 assert(!getMember(0)->mayWriteToMemory() && in requiresScalarEpilogue()
921 if (!Src->mayWriteToMemory()) in canReorderMemAccessesForInterleavedGroups()
/external/llvm-project/llvm/include/llvm/IR/
DInstruction.h580 bool mayWriteToMemory() const;
587 return mayReadFromMemory() || mayWriteToMemory();
626 bool mayHaveSideEffects() const { return mayWriteToMemory() || mayThrow(); }
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DInstructionPrecedenceTracking.h134 bool mayWriteToMemory(const BasicBlock *BB) { in mayWriteToMemory() function
DVectorUtils.h522 assert(!getMember(0)->mayWriteToMemory() && in requiresScalarEpilogue()
739 if (!Src->mayWriteToMemory()) in canReorderMemAccessesForInterleavedGroups()
/external/llvm-project/llvm/unittests/IR/
DValueHandleTest.cpp133 EXPECT_FALSE(AVH->mayWriteToMemory()); in TEST_F()
134 EXPECT_FALSE((*AVH).mayWriteToMemory()); in TEST_F()
444 EXPECT_FALSE(VH->mayWriteToMemory()); in TEST_F()
445 EXPECT_FALSE((*VH).mayWriteToMemory()); in TEST_F()
/external/llvm-project/llvm/lib/Analysis/
DInstructionPrecedenceTracking.cpp137 return Insn->mayWriteToMemory(); in isSpecialInstruction()
DMemDepPrinter.cpp103 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) in runOnFunction()
DLoads.cpp331 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() && in isSafeToLoadUnconditionally()
529 if (Inst->mayWriteToMemory()) { in FindAvailablePtrLoadStore()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DInstructionPrecedenceTracking.cpp160 return Insn->mayWriteToMemory(); in isSpecialInstruction()
DLoads.cpp299 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() && in isSafeToLoadUnconditionally()
465 if (Inst->mayWriteToMemory()) { in FindAvailablePtrLoadStore()
DMemDepPrinter.cpp101 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) in runOnFunction()
/external/llvm/lib/Transforms/Scalar/
DLoopVersioningLICM.cpp355 else if (I->mayWriteToMemory()) { in instructionSafeForVersioning()
489 if (!Inst.mayReadFromMemory() && !Inst.mayWriteToMemory()) in setNoAliasToLoop()
DEarlyCSE.cpp468 bool mayWriteToMemory() const { in mayWriteToMemory() function in __anone097c8540311::EarlyCSE::ParseMemoryInst
470 return Inst->mayWriteToMemory(); in mayWriteToMemory()
738 if (Inst->mayWriteToMemory()) { in processNode()
/external/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp357 if (iter1->mayWriteToMemory()) { in CompareIfRegionBlock()
359 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopVersioningLICM.cpp366 else if (I->mayWriteToMemory()) { in instructionSafeForVersioning()
550 if (!Inst.mayReadFromMemory() && !Inst.mayWriteToMemory()) in setNoAliasToLoop()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp368 if (iter1->mayWriteToMemory()) { in CompareIfRegionBlock()
370 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
/external/llvm/lib/Analysis/
DLoads.cpp261 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() && in isSafeToLoadUnconditionally()
404 if (Inst->mayWriteToMemory()) { in FindAvailableLoadedValue()
DMemDepPrinter.cpp102 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) in runOnFunction()
/external/llvm-project/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp359 if (iter1->mayWriteToMemory()) { in CompareIfRegionBlock()
361 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DLoopVersioningLICM.cpp379 else if (I->mayWriteToMemory()) { in instructionSafeForVersioning()
563 if (!Inst.mayReadFromMemory() && !Inst.mayWriteToMemory()) in setNoAliasToLoop()
/external/llvm/unittests/IR/
DValueHandleTest.cpp116 EXPECT_FALSE(AVH->mayWriteToMemory()); in TEST_F()
117 EXPECT_FALSE((*AVH).mayWriteToMemory()); in TEST_F()

12345