[enco] Introduce IR Utils (#1693)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Mon, 1 Oct 2018 07:40:51 +0000 (16:40 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Mon, 1 Oct 2018 07:40:51 +0000 (16:40 +0900)
This commit introduces IRUtils.h and IRUtils.cpp which will hold
coco IR-related utilities used in enco.

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
contrib/enco/core/src/IRUtils.cpp [new file with mode: 0644]
contrib/enco/core/src/IRUtils.h [new file with mode: 0644]
contrib/enco/core/src/Transforms/FeatureUnification.cpp

diff --git a/contrib/enco/core/src/IRUtils.cpp b/contrib/enco/core/src/IRUtils.cpp
new file mode 100644 (file)
index 0000000..71fd592
--- /dev/null
@@ -0,0 +1,36 @@
+/*
+ * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "IRUtils.h"
+
+#include <cassert>
+
+namespace enco
+{
+
+void subst(coco::Object *from, coco::Object *into)
+{
+  assert(from != into);
+
+  while (!from->uses()->empty())
+  {
+    auto use = *(from->uses()->begin());
+
+    use->value(into);
+  }
+}
+
+} // namespace enco
diff --git a/contrib/enco/core/src/IRUtils.h b/contrib/enco/core/src/IRUtils.h
new file mode 100644 (file)
index 0000000..984a8c1
--- /dev/null
@@ -0,0 +1,34 @@
+/*
+ * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef __ENCO_IR_UTILS_H__
+#define __ENCO_IR_UTILS_H__
+
+#include <coco/IR.h>
+
+namespace enco
+{
+
+/**
+ * @brief Replace all the "USE" of 'from' with 'into'
+ *
+ * NOTE subst(from, into) WILL NOT update 'DEF'
+ */
+void subst(coco::Object *from, coco::Object *into);
+
+} // namespace enco
+
+#endif // __ENCO_IR_UTILS_H__
index 56db326..95e79b5 100644 (file)
@@ -15,6 +15,7 @@
  */
 
 #include "FeatureUnification.h"
+#include "IRUtils.h"
 
 #include <nncc/foundation/Memory.h>
 
@@ -28,18 +29,6 @@ using nncc::foundation::make_unique;
 namespace
 {
 
-void subst(coco::Object *from, coco::Object *into)
-{
-  assert(from != into);
-
-  while (!from->uses()->empty())
-  {
-    auto use = *(from->uses()->begin());
-
-    use->value(into);
-  }
-}
-
 bool is_static_layout(const coco::FeatureLayout::ID *id)
 {
   if (id == coco::FeatureLayouts::BHWC::uid())