Home
last modified time | relevance | path

Searched refs:isUnordered (Results 1 – 25 of 39) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp867 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 DLoopIdiomRecognize.cpp412 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 DLICM.cpp1172 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 DLoopPredication.cpp533 if (LI->isUnordered() && L->hasLoopInvariantOperands(LI)) in findInsertPt()
H A DJumpThreading.cpp1225 if (!LoadI->isUnordered()) return false; in simplifyPartiallyRedundantLoad()
1308 assert(LoadI->isUnordered() && in simplifyPartiallyRedundantLoad()
H A DGVN.cpp1236 assert(Load->isUnordered() && "rules below are incorrect for ordered access"); in AnalyzeLoadAvailability()
2204 if (!L->isUnordered()) in processLoad()
H A DDeadStoreElimination.cpp1129 return SI->isUnordered(); in isRemovable()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp652 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 DSandboxIR.h648 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 DMemoryDependenceAnalysis.cpp111 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 DLoads.cpp468 if (!Load->isUnordered()) in FindAvailableLoadedValue()
684 if (!Load->isUnordered()) in FindAvailableLoadedValue()
H A DMemorySSA.cpp1747 if (!SI->isUnordered()) in isOrdered()
1750 if (!LI->isUnordered()) in isOrdered()
H A DInstructionSimplify.cpp1874 (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 DGenericMachineInstrs.h67 bool isUnordered() const { return getMMO().isUnordered(); } in isUnordered() function
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFPreserveStaticOffset.cpp233 if (Load->isUnordered()) { in makeGEPAndLoad()
257 if (Store->isUnordered()) { in makeGEPAndStore()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h311 bool isUnordered() const { in isUnordered() function
H A DSelectionDAGNodes.h1396 bool isUnordered() const { return MMO->isUnordered(); }
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h134 /// 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 DInstruction.cpp945 return !cast<StoreInst>(this)->isUnordered(); in mayReadFromMemory()
965 return !cast<LoadInst>(this)->isUnordered(); in mayWriteToMemory()
H A DConstantFold.cpp1160 return ConstantInt::get(ResultTy, CmpInst::isUnordered(Predicate)); in ConstantFoldCompareInstruction()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DImplicitNullChecks.cpp246 auto IsUnordered = [](MachineMemOperand *MMO) { return MMO->isUnordered(); }; in canHandle()
H A DMachineInstr.cpp1473 return !MMO->isUnordered(); in hasOrderedMemoryRef()
1493 if (!MMO->isUnordered()) in isDereferenceableInvariantLoad()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp1536 return !SI->isUnordered(); in isOrderedAtomic()
1538 return !LI->isUnordered(); in isOrderedAtomic()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h247 bool isUnordered() const { in isUnordered() function
368 bool isUnordered() const { in isUnordered() function
H A DInstrTypes.h1078 static bool isUnordered(Predicate predicate);

12