HomeSort by: relevance | last modified time | path
    Searched defs:Dependences (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonVectorLoopCarriedReuse.cpp 11 // to identify loop carried dependences. This is scalar replacement for vector
58 cl::desc("Maximum distance of loop carried dependences that are handled"),
194 SetVector<DepChain *> Dependences;
372 for (auto *D : Dependences) {
589 Dependences.clear();
599 llvm::for_each(Dependences, std::default_delete<DepChain>());
643 for (auto *D : Dependences) {
660 Dependences.insert(D);
664 LLVM_DEBUG(dbgs() << "Found " << Dependences.size() << " dependences\n")
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
VectorUtils.h 704 // To avoid breaking dependences, vectorized instructions of an interleave
811 /// Holds dependences among the memory accesses in the loop. It maps a source
813 DenseMap<Instruction *, SmallPtrSet<Instruction *, 2>> Dependences;
899 // dependences could potentially be reordered safely.
909 // Code motion for interleaved accesses can't violate WAR dependences.
925 return Dependences.find(Src) == Dependences.end() ||
926 !Dependences.lookup(Src).count(Sink);
929 /// Collect the dependences from LoopAccessInfo.
931 /// We process the dependences once during the interleaved access analysis t
    [all...]
LoopAccessAnalysis.h 53 /// Checks memory dependences among accesses to the same underlying
98 // Can vectorize safely without RT checks. All dependences are known to be
117 // FIXME: If we only have loop-independent forward dependences (e.g. a
120 // enumerating loop-independent forward dependences in
231 /// Returns the memory dependences. If null is returned we exceeded
235 return RecordDependences ? &Dependences : nullptr;
238 void clearDependences() { Dependences.clear(); }
265 /// expressions need to be made in order to avoid unknown dependences. For
294 /// dependences are safe for vectorization, require RT checks or are known to
298 //// True if Dependences reflects the dependences in th
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntime.h 116 SmallVector<DependData, 4> Dependences;

Completed in 22 milliseconds