HomeSort by: relevance | last modified time | path
    Searched refs:Dominates (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
Local.cpp 1044 // BB dominates Succ, which is non-trivial to calculate in the case where
1050 // Note that if this check finds a live use, BB dominates Succ, so BB is
1955 } else if (!DT.dominates(&DomPoint, DII)) {
2653 const DominatesFn &Dominates) {
2660 if (!Dominates(Root, U))
2690 auto Dominates = [&DT](const BasicBlockEdge &Root, const Use &U) {
2691 return DT.dominates(Root, U);
2693 return ::replaceDominatedUsesWith(From, To, Root, Dominates);
2699 auto Dominates = [&DT](const BasicBlock *BB, const Use &U) {
2700 return DT.dominates(BB, U)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 1574 bool Dominates(const BasicBlock &Other) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCodeComplete.cpp 1209 enum class OverloadCompare { BothViable, Dominates, Dominated };
1211 // Returns Dominates if Candidate is always called, Dominated if Incumbent is
1244 return CandidateRef == RQ_RValue ? OverloadCompare::Dominates
1255 return IncumbentSuperset ? OverloadCompare::Dominates
1349 /// Check whether this dominates another overloaded method, which should
1359 case OverloadCompare::Dominates:
1361 // FIXME: if the overload dominates multiple incumbents then we

Completed in 35 milliseconds