/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | EarlyCSE.cpp | 867 bool isUnordered() const { in isUnordered() function in __anon2439b80b0411::EarlyCSE::ParseMemoryInst 869 return Info.isUnordered(); in isUnordered() 872 return LI->isUnordered(); in isUnordered() 874 return SI->isUnordered(); in isUnordered() 1256 if (MemInst.isVolatile() || !MemInst.isUnordered()) in getMatchingValue() 1316 assert(Earlier.isUnordered() && !Earlier.isVolatile() && in overridingStores() 1330 if (!Earlier.isUnordered() || !Later.isUnordered()) in overridingStores() 1557 if (MemInst.isVolatile() || !MemInst.isUnordered()) { in processNode() 1765 if (MemInst.isUnordered() && !MemInst.isVolatile()) in processNode()
|
H A D | LoopIdiomRecognize.cpp | 412 if (!SI->isUnordered()) in isLegalStore() 456 bool UnorderedAtomic = SI->isUnordered() && !SI->isSimple(); in isLegalStore() 491 if (!LI->isUnordered()) in isLegalStore() 1175 assert(SI->isUnordered() && "Expected only non-volatile non-ordered stores."); in processLoopStoreOfLoopLoad() 1183 assert(LI->isUnordered() && "Expected only non-volatile non-ordered loads."); in processLoopStoreOfLoopLoad()
|
H A D | LICM.cpp | 1172 if (!LI->isUnordered()) in canSinkOrHoistInst() 1270 if (!SI->isUnordered()) in canSinkOrHoistInst() 1316 assert(!LI->isUnordered() && "Expected unordered load"); in canSinkOrHoistInst() 2081 if (!Load->isUnordered()) in promoteLoopAccessesToScalars() 2106 if (!Store->isUnordered()) in promoteLoopAccessesToScalars()
|
H A D | LoopPredication.cpp | 533 if (LI->isUnordered() && L->hasLoopInvariantOperands(LI)) in findInsertPt()
|
H A D | JumpThreading.cpp | 1225 if (!LoadI->isUnordered()) return false; in simplifyPartiallyRedundantLoad() 1308 assert(LoadI->isUnordered() && in simplifyPartiallyRedundantLoad()
|
H A D | GVN.cpp | 1236 assert(Load->isUnordered() && "rules below are incorrect for ordered access"); in AnalyzeLoadAvailability() 2204 if (!L->isUnordered()) in processLoad()
|
H A D | DeadStoreElimination.cpp | 1129 return SI->isUnordered(); in isRemovable()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineLoadStoreAlloca.cpp | 652 if (!Load.isUnordered()) in combineLoadToOperationType() 1046 if (!LI.isUnordered()) return nullptr; in visitLoadInst() 1080 assert(LI.isUnordered() && "implied by above"); in visitLoadInst() 1182 if (!SI.isUnordered()) in combineStoreToValueType() 1381 if (!SI.isUnordered()) return nullptr; in visitStoreInst() 1418 if (PrevSI->isUnordered() && in visitStoreInst() 1438 assert(SI.isUnordered() && "can't eliminate ordering operation"); in visitStoreInst() 1489 if (!SI.isUnordered()) in mergeStoreIntoSuccessor()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/ |
H A D | SandboxIR.h | 648 bool isUnordered() const { return cast<llvm::LoadInst>(Val)->isUnordered(); } in isUnordered() function 686 bool isUnordered() const { return cast<llvm::StoreInst>(Val)->isUnordered(); } in isUnordered() function
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | MemoryDependenceAnalysis.cpp | 111 if (LI->isUnordered()) { in GetLocation() 124 if (SI->isUnordered()) { in GetLocation() 574 if (!SI->isUnordered() && SI->isAtomic()) { in getSimplePointerDependencyFrom() 902 return !LI->isUnordered(); in getNonLocalPointerDependency() 904 return !SI->isUnordered(); in getNonLocalPointerDependency()
|
H A D | Loads.cpp | 468 if (!Load->isUnordered()) in FindAvailableLoadedValue() 684 if (!Load->isUnordered()) in FindAvailableLoadedValue()
|
H A D | MemorySSA.cpp | 1747 if (!SI->isUnordered()) in isOrdered() 1750 if (!LI->isUnordered()) in isOrdered()
|
H A D | InstructionSimplify.cpp | 1874 (FCmpInst::isUnordered(PredR) && !IsAnd))) { in simplifyAndOrOfFCmps() 1887 (FCmpInst::isUnordered(PredL) && !IsAnd))) { in simplifyAndOrOfFCmps() 4101 return ConstantInt::get(RetTy, CmpInst::isUnordered(Pred)); in simplifyFCmpInst() 4165 return ConstantInt::get(RetTy, CmpInst::isUnordered(Pred)); in simplifyFCmpInst()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | GenericMachineInstrs.h | 67 bool isUnordered() const { return getMMO().isUnordered(); } in isUnordered() function
|
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/ |
H A D | BPFPreserveStaticOffset.cpp | 233 if (Load->isUnordered()) { in makeGEPAndLoad() 257 if (Store->isUnordered()) { in makeGEPAndStore()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | MachineMemOperand.h | 311 bool isUnordered() const { in isUnordered() function
|
H A D | SelectionDAGNodes.h | 1396 bool isUnordered() const { return MMO->isUnordered(); }
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | DependenceAnalysis.h | 134 /// isUnordered - Returns true if dependence is Input 136 bool isUnordered() const { return isInput(); } in isUnordered() function
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Instruction.cpp | 945 return !cast<StoreInst>(this)->isUnordered(); in mayReadFromMemory() 965 return !cast<LoadInst>(this)->isUnordered(); in mayWriteToMemory()
|
H A D | ConstantFold.cpp | 1160 return ConstantInt::get(ResultTy, CmpInst::isUnordered(Predicate)); in ConstantFoldCompareInstruction()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ImplicitNullChecks.cpp | 246 auto IsUnordered = [](MachineMemOperand *MMO) { return MMO->isUnordered(); }; in canHandle()
|
H A D | MachineInstr.cpp | 1473 return !MMO->isUnordered(); in hasOrderedMemoryRef() 1493 if (!MMO->isUnordered()) in isDereferenceableInvariantLoad()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | FunctionAttrs.cpp | 1536 return !SI->isUnordered(); in isOrderedAtomic() 1538 return !LI->isUnordered(); in isOrderedAtomic()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Instructions.h | 247 bool isUnordered() const { in isUnordered() function 368 bool isUnordered() const { in isUnordered() function
|
H A D | InstrTypes.h | 1078 static bool isUnordered(Predicate predicate);
|