HomeSort by relevance Sort by last modified time
    Searched refs:mayWriteToMemory (Results 1 - 20 of 20) sorted by null

  /external/llvm/lib/Analysis/
Loads.cpp 137 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() &&
224 if (Inst->mayWriteToMemory()) {
LoopDependenceAnalysis.cpp 65 return I && (I->mayReadFromMemory() || I->mayWriteToMemory());
119 (cast<const Instruction>(A)->mayWriteToMemory() ||
120 cast<const Instruction>(B)->mayWriteToMemory());
MemDepPrinter.cpp 104 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory())
AliasSetTracker.cpp 129 if (!I->mayWriteToMemory()) {
MemoryDependenceAnalysis.cpp 182 if (Inst->mayWriteToMemory())
    [all...]
  /external/llvm/include/llvm/
Instruction.h 218 /// mayWriteToMemory - Return true if this instruction may modify memory.
220 bool mayWriteToMemory() const;
230 return mayReadFromMemory() || mayWriteToMemory();
244 return mayWriteToMemory() || mayThrow();
  /external/llvm/lib/Transforms/Scalar/
Sink.cpp 157 if (Inst->mayWriteToMemory()) {
LoopRotation.cpp 238 !Inst->mayReadFromMemory() && !Inst->mayWriteToMemory() &&
EarlyCSE.cpp 414 if (Inst->mayWriteToMemory()) {
TailRecursionElimination.cpp 245 if (CI->mayWriteToMemory() ||
MemCpyOptimizer.cpp 380 if (BI->mayWriteToMemory() || BI->mayReadFromMemory())
    [all...]
ScalarReplAggregates.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 446 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory())
577 if (BBI->mayReadFromMemory() || BBI->mayWriteToMemory() ||
587 if (I->mayReadFromMemory() || I->mayWriteToMemory())
InstCombinePHI.cpp 251 if (BBI->mayWriteToMemory())
    [all...]
InstCombineCalls.cpp     [all...]
InstructionCombining.cpp     [all...]
  /external/llvm/unittests/Support/
ValueHandleTest.cpp 120 EXPECT_FALSE(AVH->mayWriteToMemory());
121 EXPECT_FALSE((*AVH).mayWriteToMemory());
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 188 if (I->mayWriteToMemory())
  /external/llvm/lib/VMCore/
Instruction.cpp 333 /// mayWriteToMemory - Return true if this instruction may modify memory.
335 bool Instruction::mayWriteToMemory() const {
338 case Instruction::Fence: // FIXME: refine definition of mayWriteToMemory
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 818 return !I->mayWriteToMemory() && // Side-effecting instructions aren't folded.
    [all...]

Completed in 558 milliseconds