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

Declarations

tools/polly/include/polly/Support/ISLTools.h
  186 isl::union_map makeIdentityMap(const isl::union_set &USet, bool RestrictDomain);

References

tools/polly/lib/Support/ISLTools.cpp
  482   isl::union_map Factors = makeIdentityMap(Factor, true);
tools/polly/lib/Transform/ForwardOpTree.cpp
  291       Translator = makeIdentityMap(Known.range(), false);
tools/polly/unittests/Isl/IslTest.cpp
  696   EXPECT_EQ(UMAP("{ [i] -> [i] }"), makeIdentityMap(USET("{ [0] }"), false));
  697   EXPECT_EQ(UMAP("{ [0] -> [0] }"), makeIdentityMap(USET("{ [0] }"), true));
  701             makeIdentityMap(USET("{ []; [0] }"), false));
  703             makeIdentityMap(USET("{ []; [0] }"), true));
  706   EXPECT_EQ(UMAP("{ }"), makeIdentityMap(USET("{ }"), false));
  707   EXPECT_EQ(UMAP("{ }"), makeIdentityMap(USET("{ }"), true));