HomeSort by relevance Sort by last modified time
    Searched refs:LoopAccessReport (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/Analysis/
LoopAccessAnalysis.h 40 class LoopAccessReport {
45 LoopAccessReport(const Twine &Message, const Instruction *I)
49 LoopAccessReport(const Instruction *I = nullptr) : Instr(I) {}
51 template <typename A> LoopAccessReport &operator<<(const A &Value) {
66 static void emitAnalysis(const LoopAccessReport &Message,
595 const Optional<LoopAccessReport> &getReport() const { return Report; }
641 void emitAnalysis(LoopAccessReport &Message);
675 Optional<LoopAccessReport> Report;
  /external/llvm/lib/Analysis/
LoopAccessAnalysis.cpp 96 void LoopAccessReport::emitAnalysis(const LoopAccessReport &Message,
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 223 /// \brief This modifies LoopAccessReport to initialize message with
225 class VectorizationReport : public LoopAccessReport {
228 : LoopAccessReport("loop not vectorized: ", I) {}
233 explicit VectorizationReport(const LoopAccessReport &R)
234 : LoopAccessReport(Twine("loop not vectorized: ") + R.str(),
    [all...]

Completed in 643 milliseconds