/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-10.0/llvm/include/llvm/IR/ |
D | Instruction.h | 536 bool mayWriteToMemory() const; 543 return mayReadFromMemory() || mayWriteToMemory(); 582 bool mayHaveSideEffects() const { return mayWriteToMemory() || mayThrow(); }
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | InstructionPrecedenceTracking.h | 126 bool mayWriteToMemory(const BasicBlock *BB) { in mayWriteToMemory() function
|
D | VectorUtils.h | 696 assert(!getMember(0)->mayWriteToMemory() && in requiresScalarEpilogue() 921 if (!Src->mayWriteToMemory()) in canReorderMemAccessesForInterleavedGroups()
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | Instruction.h | 580 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/ |
D | InstructionPrecedenceTracking.h | 134 bool mayWriteToMemory(const BasicBlock *BB) { in mayWriteToMemory() function
|
D | VectorUtils.h | 522 assert(!getMember(0)->mayWriteToMemory() && in requiresScalarEpilogue() 739 if (!Src->mayWriteToMemory()) in canReorderMemAccessesForInterleavedGroups()
|
/external/llvm-project/llvm/unittests/IR/ |
D | ValueHandleTest.cpp | 133 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/ |
D | InstructionPrecedenceTracking.cpp | 137 return Insn->mayWriteToMemory(); in isSpecialInstruction()
|
D | MemDepPrinter.cpp | 103 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) in runOnFunction()
|
D | Loads.cpp | 331 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() && in isSafeToLoadUnconditionally() 529 if (Inst->mayWriteToMemory()) { in FindAvailablePtrLoadStore()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | InstructionPrecedenceTracking.cpp | 160 return Insn->mayWriteToMemory(); in isSpecialInstruction()
|
D | Loads.cpp | 299 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() && in isSafeToLoadUnconditionally() 465 if (Inst->mayWriteToMemory()) { in FindAvailablePtrLoadStore()
|
D | MemDepPrinter.cpp | 101 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory()) in runOnFunction()
|
/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 __anone097c8540311::EarlyCSE::ParseMemoryInst 470 return Inst->mayWriteToMemory(); in mayWriteToMemory() 738 if (Inst->mayWriteToMemory()) { in processNode()
|
/external/llvm/lib/Transforms/Utils/ |
D | FlattenCFG.cpp | 357 if (iter1->mayWriteToMemory()) { in CompareIfRegionBlock() 359 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LoopVersioningLICM.cpp | 366 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/ |
D | FlattenCFG.cpp | 368 if (iter1->mayWriteToMemory()) { in CompareIfRegionBlock() 370 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/llvm-project/llvm/lib/Transforms/Utils/ |
D | FlattenCFG.cpp | 359 if (iter1->mayWriteToMemory()) { in CompareIfRegionBlock() 361 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) { in CompareIfRegionBlock()
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | LoopVersioningLICM.cpp | 379 else if (I->mayWriteToMemory()) { in instructionSafeForVersioning() 563 if (!Inst.mayReadFromMemory() && !Inst.mayWriteToMemory()) in setNoAliasToLoop()
|
/external/llvm/unittests/IR/ |
D | ValueHandleTest.cpp | 116 EXPECT_FALSE(AVH->mayWriteToMemory()); in TEST_F() 117 EXPECT_FALSE((*AVH).mayWriteToMemory()); in TEST_F()
|