/external/swiftshader/third_party/LLVM/include/llvm/ |
D | Instruction.h | 220 bool mayWriteToMemory() const; 230 return mayReadFromMemory() || mayWriteToMemory(); in mayReadOrWriteMemory() 244 return mayWriteToMemory() || mayThrow(); in mayHaveSideEffects()
|
/external/llvm/include/llvm/IR/ |
D | Instruction.h | 385 bool mayWriteToMemory() const; 392 return mayReadFromMemory() || mayWriteToMemory(); 408 bool mayHaveSideEffects() const { return mayWriteToMemory() || mayThrow(); }
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Instruction.h | 410 bool mayWriteToMemory() const; 417 return mayReadFromMemory() || mayWriteToMemory(); in mayReadOrWriteMemory() 450 bool mayHaveSideEffects() const { return mayWriteToMemory() || mayThrow(); } in mayHaveSideEffects()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | Instruction.h | 495 bool mayWriteToMemory() const; 502 return mayReadFromMemory() || mayWriteToMemory(); 541 bool mayHaveSideEffects() const { return mayWriteToMemory() || mayThrow(); }
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | LoopDependenceAnalysis.cpp | 65 return I && (I->mayReadFromMemory() || I->mayWriteToMemory()); in IsMemRefInstr() 119 (cast<const Instruction>(A)->mayWriteToMemory() || in isDependencePair() 120 cast<const Instruction>(B)->mayWriteToMemory()); in isDependencePair()
|
D | Loads.cpp | 137 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() && in isSafeToLoadUnconditionally() 224 if (Inst->mayWriteToMemory()) { in FindAvailableLoadedValue()
|
D | MemDepPrinter.cpp | 104 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) in runOnFunction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/ |
D | ValueHandleTest.cpp | 134 EXPECT_FALSE(AVH->mayWriteToMemory()); in TEST_F() 135 EXPECT_FALSE((*AVH).mayWriteToMemory()); in TEST_F() 445 EXPECT_FALSE(VH->mayWriteToMemory()); in TEST_F() 446 EXPECT_FALSE((*VH).mayWriteToMemory()); in TEST_F()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineLoadStoreAlloca.cpp | 446 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory()) in visitStoreInst() 577 if (BBI->mayReadFromMemory() || BBI->mayWriteToMemory() || in SimplifyStoreAtEndOfBlock() 587 if (I->mayReadFromMemory() || I->mayWriteToMemory()) in SimplifyStoreAtEndOfBlock()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
D | FlattenCFG.cpp | 369 if (iter1->mayWriteToMemory()) { in CompareIfRegionBlock() 371 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
|
/external/llvm/lib/Analysis/ |
D | Loads.cpp | 261 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() && in isSafeToLoadUnconditionally() 404 if (Inst->mayWriteToMemory()) { in FindAvailableLoadedValue()
|
D | MemDepPrinter.cpp | 102 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) in runOnFunction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | Loads.cpp | 277 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() && in isSafeToLoadUnconditionally() 426 if (Inst->mayWriteToMemory()) { in FindAvailablePtrLoadStore()
|
D | MemDepPrinter.cpp | 102 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) in runOnFunction()
|
/external/llvm/lib/Transforms/Utils/ |
D | FlattenCFG.cpp | 357 if (iter1->mayWriteToMemory()) { in CompareIfRegionBlock() 359 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopVersioningLICM.cpp | 355 else if (I->mayWriteToMemory()) { in instructionSafeForVersioning() 489 if (!Inst.mayReadFromMemory() && !Inst.mayWriteToMemory()) in setNoAliasToLoop()
|
D | EarlyCSE.cpp | 468 bool mayWriteToMemory() const { in mayWriteToMemory() function in __anoncdf6c96d0311::EarlyCSE::ParseMemoryInst 470 return Inst->mayWriteToMemory(); in mayWriteToMemory() 738 if (Inst->mayWriteToMemory()) { in processNode()
|
D | Sink.cpp | 63 if (Inst->mayWriteToMemory()) { in isSafeToMove()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | LoopVersioningLICM.cpp | 388 else if (I->mayWriteToMemory()) { in instructionSafeForVersioning() 572 if (!Inst.mayReadFromMemory() && !Inst.mayWriteToMemory()) in setNoAliasToLoop()
|
D | Sink.cpp | 63 if (Inst->mayWriteToMemory()) { in isSafeToMove()
|
D | EarlyCSE.cpp | 569 bool mayWriteToMemory() const { in mayWriteToMemory() function in __anon5b5b35a50311::EarlyCSE::ParseMemoryInst 571 return Inst->mayWriteToMemory(); in mayWriteToMemory() 1106 if (Inst->mayWriteToMemory()) { in processNode()
|
/external/swiftshader/third_party/LLVM/unittests/Support/ |
D | ValueHandleTest.cpp | 120 EXPECT_FALSE(AVH->mayWriteToMemory()); in TEST_F() 121 EXPECT_FALSE((*AVH).mayWriteToMemory()); in TEST_F()
|
/external/llvm/unittests/IR/ |
D | ValueHandleTest.cpp | 116 EXPECT_FALSE(AVH->mayWriteToMemory()); in TEST_F() 117 EXPECT_FALSE((*AVH).mayWriteToMemory()); in TEST_F()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | Sink.cpp | 157 if (Inst->mayWriteToMemory()) { in isSafeToMove()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/ |
D | ARMParallelDSP.cpp | 73 if (I->mayWriteToMemory()) in SetMemoryLocations() 499 if (I.mayWriteToMemory()) in AliasCandidates()
|