summaryrefslogtreecommitdiffstats
path: root/content/zettel/2b1e.md
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2023-05-11 19:38:03 +0100
committerYann Herklotz <git@yannherklotz.com>2023-05-11 19:38:03 +0100
commit47c1289ff658a5aec71635d79ffe30bb29a07876 (patch)
tree56cf6b959e37fed88c492d34defd3d7ec40e7148 /content/zettel/2b1e.md
parentfbe0fc62120348f582dc4db2b614078943d0764b (diff)
downloadzk-web-47c1289ff658a5aec71635d79ffe30bb29a07876.tar.gz
zk-web-47c1289ff658a5aec71635d79ffe30bb29a07876.zip
Add content
Diffstat (limited to 'content/zettel/2b1e.md')
-rw-r--r--content/zettel/2b1e.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/content/zettel/2b1e.md b/content/zettel/2b1e.md
new file mode 100644
index 0000000..401d1ea
--- /dev/null
+++ b/content/zettel/2b1e.md
@@ -0,0 +1,21 @@
++++
+title = "Reverse if-conversion"
+author = "Yann Herklotz"
+tags = []
+categories = []
+backlinks = ["3c3f", "2b1d"]
+forwardlinks = ["1c8", "1b8", "3c3f"]
+zettelid = "2b1e"
++++
+
+To be able to target standard processors, reverse if-conversion can be
+used to create if-statements and branches based on the predicated
+instructions. Scheduling over multiple blocks can then be performed by
+adding predicates, doing if-conversion ([\#1c8]) and hyperblock
+scheduling ([\#1b8]). Then, to convert back to a basic-block view of the
+code, reverse if-conversion can be used. This therefore has a similar
+effect to scheduling instructions using trace scheduling ([\#3c3f]).
+
+ [\#1c8]: /zettel/1c8
+ [\#1b8]: /zettel/1b8
+ [\#3c3f]: /zettel/3c3f