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

Declarations

tools/polly/include/polly/Support/ISLTools.h
   86 isl::union_map beforeScatter(isl::union_map UMap, bool Strict);

References

tools/polly/lib/Support/ISLTools.cpp
  129   isl::union_map BeforeTo = beforeScatter(To, !InclTo);
tools/polly/unittests/Isl/IslTest.cpp
  513             beforeScatter(UMAP("{ A[] -> [0]; B[] -> [0] }"), false));
  515             beforeScatter(UMAP("{ A[] -> [0]; B[] -> [0] }"), true));
  519             beforeScatter(UMAP("{ [] -> [0, 0] }"), false));
  521             beforeScatter(UMAP("{ [] -> [0, 0] }"), true));
  525             beforeScatter(UMAP("{ [i] -> [i] }"), false));
  527             beforeScatter(UMAP("{ [i] -> [i] }"), true));
  531             beforeScatter(UMAP("[i] -> { [] -> [i] }"), false));
  533             beforeScatter(UMAP("[i] -> { [] -> [i] }"), true));
  537             beforeScatter(UMAP("{ [] -> [0]; [] -> [10] }"), false));
  539             beforeScatter(UMAP("{ [] -> [0]; [] -> [10] }"), true));
  543             beforeScatter(UMAP("{ [] -> [i] : 1 = 0 }"), false));
  545             beforeScatter(UMAP("{ [] -> [i] : 1 = 0 }"), true));