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

1 2

  /external/llvm/lib/Analysis/
Loads.cpp 109 if (isa<CallInst>(BBI) && BBI->mayWriteToMemory() &&
205 if (Inst->mayWriteToMemory()) {
MemDepPrinter.cpp 103 if (!Inst->mayReadFromMemory() && !Inst->mayWriteToMemory())
DependenceAnalysis.cpp 201 return Src->mayWriteToMemory() && Dst->mayWriteToMemory();
207 return Src->mayWriteToMemory() && Dst->mayReadFromMemory();
213 return Src->mayReadFromMemory() && Dst->mayWriteToMemory();
    [all...]
AliasSetTracker.cpp 128 if (!I->mayWriteToMemory()) {
MemoryDependenceAnalysis.cpp 186 if (Inst->mayWriteToMemory())
    [all...]
  /external/llvm/include/llvm/IR/
Instruction.h 311 /// mayWriteToMemory - Return true if this instruction may modify memory.
313 bool mayWriteToMemory() const;
323 return mayReadFromMemory() || mayWriteToMemory();
343 return mayWriteToMemory() || mayThrow() || !mayReturn();
  /external/llvm/lib/Transforms/Utils/
FlattenCFG.cpp 357 if (iter1->mayWriteToMemory()) {
359 if (BI->mayReadFromMemory() || BI->mayWriteToMemory()) {
  /external/llvm/unittests/IR/
ValueHandleTest.cpp 116 EXPECT_FALSE(AVH->mayWriteToMemory());
117 EXPECT_FALSE((*AVH).mayWriteToMemory());
  /external/llvm/lib/Transforms/Scalar/
LoadCombine.cpp 235 if (I.mayWriteToMemory() || I.mayThrow()) {
Sink.cpp 162 if (Inst->mayWriteToMemory()) {
LoopRotation.cpp 392 !Inst->mayReadFromMemory() && !Inst->mayWriteToMemory() &&
EarlyCSE.cpp 519 if (Inst->mayWriteToMemory()) {
TailRecursionElimination.cpp 453 if (CI->mayWriteToMemory() ||
    [all...]
LoopRerollPass.cpp 876 if (J2->mayWriteToMemory())
    [all...]
MemCpyOptimizer.cpp 391 if (BI->mayWriteToMemory() || BI->mayReadFromMemory())
    [all...]
ScalarReplAggregates.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 674 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory())
805 if (BBI->mayReadFromMemory() || BBI->mayWriteToMemory() ||
815 if (I->mayReadFromMemory() || I->mayWriteToMemory())
    [all...]
InstCombinePHI.cpp 253 if (BBI->mayWriteToMemory())
    [all...]
InstCombineCalls.cpp     [all...]
InstructionCombining.cpp     [all...]
  /external/llvm/lib/IR/
Instruction.cpp 421 /// mayWriteToMemory - Return true if this instruction may modify memory.
423 bool Instruction::mayWriteToMemory() const {
426 case Instruction::Fence: // FIXME: refine definition of mayWriteToMemory
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp     [all...]
SLPVectorizer.cpp     [all...]
LoopVectorize.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 252 if (I->mayWriteToMemory())
    [all...]

Completed in 590 milliseconds

1 2