reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/polly/include/polly/CodeGen/IslAst.h
   35   IslAst(const IslAst &) = delete;
   36   IslAst &operator=(const IslAst &) = delete;
   36   IslAst &operator=(const IslAst &) = delete;
   37   IslAst(IslAst &&);
   38   IslAst &operator=(IslAst &&) = delete;
   38   IslAst &operator=(IslAst &&) = delete;
   41   static IslAst create(Scop &Scop, const Dependences &D);
  113   IslAst Ast;
  116   IslAstInfo(Scop &S, const Dependences &D) : S(S), Ast(IslAst::create(S, D)) {}
  119   IslAst &getIslAst() { return Ast; }
tools/polly/lib/CodeGen/CodeGeneration.cpp
  183   IslAst &Ast = AI.getIslAst();
tools/polly/lib/CodeGen/IslAst.cpp
  510 IslAst::IslAst(IslAst &&O)
  574 IslAst IslAst::create(Scop &Scop, const Dependences &D) {
  575   IslAst Ast{Scop};