| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | EarlyCSE.cpp | 867 bool isUnordered() const { in isUnordered() function in __anon472e9e410411::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 | 407 if (!SI->isUnordered()) in isLegalStore() 451 bool UnorderedAtomic = SI->isUnordered() && !SI->isSimple(); in isLegalStore() 486 if (!LI->isUnordered()) in isLegalStore() 1170 assert(SI->isUnordered() && "Expected only non-volatile non-ordered stores."); in processLoopStoreOfLoopLoad() 1178 assert(LI->isUnordered() && "Expected only non-volatile non-ordered loads."); in processLoopStoreOfLoopLoad()
|
| H A D | LICM.cpp | 1161 if (!LI->isUnordered()) in canSinkOrHoistInst() 1259 if (!SI->isUnordered()) in canSinkOrHoistInst() 1305 assert(!LI->isUnordered() && "Expected unordered load"); in canSinkOrHoistInst() 2066 if (!Load->isUnordered()) in promoteLoopAccessesToScalars() 2091 if (!Store->isUnordered()) in promoteLoopAccessesToScalars()
|
| H A D | LoopRerollPass.cpp | 702 return LI->isUnordered(); in isUnorderedLoadStore() 704 return SI->isUnordered(); in isUnorderedLoadStore()
|
| H A D | LoopPredication.cpp | 533 if (LI->isUnordered() && L->hasLoopInvariantOperands(LI)) in isLoopInvariantValue()
|
| H A D | JumpThreading.cpp | 1238 if (!LoadI->isUnordered()) return false; in simplifyPartiallyRedundantLoad() 1319 assert(LoadI->isUnordered() && in simplifyPartiallyRedundantLoad()
|
| H A D | GVN.cpp | 1171 assert(Load->isUnordered() && "rules below are incorrect for ordered access"); in AnalyzeLoadAvailability() 2138 if (!L->isUnordered()) in processLoad()
|
| H A D | DeadStoreElimination.cpp | 1117 return SI->isUnordered(); in isRemovable()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineLoadStoreAlloca.cpp | 653 if (!Load.isUnordered()) in combineLoadToOperationType() 1047 if (!LI.isUnordered()) return nullptr; in visitLoadInst() 1081 assert(LI.isUnordered() && "implied by above"); in visitLoadInst() 1183 if (!SI.isUnordered()) in combineStoreToValueType() 1382 if (!SI.isUnordered()) return nullptr; in visitStoreInst() 1419 if (PrevSI->isUnordered() && in visitStoreInst() 1439 assert(SI.isUnordered() && "can't eliminate ordering operation"); in visitStoreInst() 1490 if (!SI.isUnordered()) in mergeStoreIntoSuccessor()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | GenericMachineInstrs.h | 54 bool isUnordered() const { return getMMO().isUnordered(); } in isUnordered() function
|
| /freebsd-14.2/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 | 459 if (!Load->isUnordered()) in FindAvailableLoadedValue() 675 if (!Load->isUnordered()) in FindAvailableLoadedValue()
|
| H A D | MemorySSA.cpp | 1704 if (!SI->isUnordered()) in isOrdered() 1707 if (!LI->isUnordered()) in isOrdered()
|
| H A D | DependenceAnalysis.cpp | 752 return LI->isUnordered(); in isLoadOrStore() 754 return SI->isUnordered(); in isLoadOrStore()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFPreserveStaticOffset.cpp | 232 if (Load->isUnordered()) { in makeGEPAndLoad() 256 if (Store->isUnordered()) { in makeGEPAndStore()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | MachineMemOperand.h | 306 bool isUnordered() const { in isUnordered() function
|
| H A D | SelectionDAGNodes.h | 1369 bool isUnordered() const { return MMO->isUnordered(); }
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | DependenceAnalysis.h | 136 bool isUnordered() const { return isInput(); } in isUnordered() function
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Instruction.cpp | 853 return !cast<StoreInst>(this)->isUnordered(); in mayReadFromMemory() 873 return !cast<LoadInst>(this)->isUnordered(); in mayWriteToMemory()
|
| H A D | ConstantFold.cpp | 1244 return ConstantInt::get(ResultTy, CmpInst::isUnordered(Predicate)); in ConstantFoldCompareInstruction()
|
| /freebsd-14.2/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 | 1415 return !MMO->isUnordered(); in hasOrderedMemoryRef() 1435 if (!MMO->isUnordered()) in isDereferenceableInvariantLoad()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | FunctionAttrs.cpp | 1515 return !SI->isUnordered(); in isOrderedAtomic() 1517 return !LI->isUnordered(); in isOrderedAtomic()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | InstrTypes.h | 1101 static bool isUnordered(Predicate predicate);
|
| H A D | Instructions.h | 258 bool isUnordered() const { in isUnordered() function 392 bool isUnordered() const { in isUnordered() function
|