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

  /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/Analysis/
LoopDependenceAnalysis.cpp 65 return I && (I->mayReadFromMemory() || I->mayWriteToMemory());
117 (cast<const Instruction>(A)->mayWriteToMemory() ||
118 cast<const Instruction>(B)->mayWriteToMemory());
Loads.cpp 138 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() &&
234 if (Inst->mayWriteToMemory()) {
MemDepPrinter.cpp 104 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory())
AliasSetTracker.cpp 129 if (!I->mayWriteToMemory()) {
MemoryDependenceAnalysis.cpp 184 if (Inst->mayWriteToMemory())
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Sink.cpp 158 if (Inst->mayWriteToMemory()) {
LoopRotation.cpp 341 !Inst->mayReadFromMemory() && !Inst->mayWriteToMemory() &&
EarlyCSE.cpp 470 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 515 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory())
646 if (BBI->mayReadFromMemory() || BBI->mayWriteToMemory() ||
656 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/VMCore/
Instruction.cpp 330 /// mayWriteToMemory - Return true if this instruction may modify memory.
332 bool Instruction::mayWriteToMemory() const {
335 case Instruction::Fence: // FIXME: refine definition of mayWriteToMemory
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 189 if (I->mayWriteToMemory())
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp 763 if (J->mayWriteToMemory()) WriteSet.add(J);
    [all...]

Completed in 150 milliseconds