reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
619 if (isa<LoadInst>(I) || isa<StoreInst>(I)) { 619 if (isa<LoadInst>(I) || isa<StoreInst>(I)) { 620 if (!is_contained(Chain, &I)) 621 MemoryInstrs.push_back(&I); 623 ChainInstrs.push_back(&I); 624 } else if (isa<IntrinsicInst>(&I) && 625 cast<IntrinsicInst>(&I)->getIntrinsicID() == 628 } else if (IsLoadChain && (I.mayWriteToMemory() || I.mayThrow())) { 628 } else if (IsLoadChain && (I.mayWriteToMemory() || I.mayThrow())) { 629 LLVM_DEBUG(dbgs() << "LSV: Found may-write/throw operation: " << I 632 } else if (!IsLoadChain && (I.mayReadOrWriteMemory() || I.mayThrow())) { 632 } else if (!IsLoadChain && (I.mayReadOrWriteMemory() || I.mayThrow())) { 633 LLVM_DEBUG(dbgs() << "LSV: Found may-read/write/throw operation: " << I