Lines Matching defs:conflict
23 /// Log RAW or WAW conflict.
52 /// against the effect of the current assignment, and if any conflict is found,
75 /// evaluation. If any conflict is found with the current assignment, or if
326 return true; // unknown conflict.
342 conflict(llvm::ArrayRef<mlir::MemoryEffects::EffectInstance> effectsA,
415 } else if (conflict(effects, assignEffects)) {
423 conflict(effects, assignEvaluateEffects)) {
424 // If evaluations of the assignment may conflict with the yield
444 // could try to prove the effects do not conflict with the previous
451 // that "effects" do not conflict with the current run assignments.
472 // run is already known to conflict. Skip the analysis.
476 return !conflict(previousRunEffects, assignEffects) &&
477 !conflict(previousRunEffects, parentEvaluationEffects) &&
478 !conflict(previousRunEffects, independentEvaluationEffects);
492 // conflict() calls more and more expensive.
723 os << "conflict: R/W: ";