aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/ssa/TODO
diff options
context:
space:
mode:
authorDaniel Morsing <daniel.morsing@gmail.com>2015-06-27 15:45:20 +0100
committerDaniel Morsing <daniel.morsing@gmail.com>2015-07-01 15:47:41 +0000
commit66b47812eb2753eb874a622d8820dee351c4ffeb (patch)
tree458e0a3216c2d2491ed20f67541060402d26ad9f /src/cmd/compile/internal/ssa/TODO
parentc9372619f2b6cfc7edff790b20b67e2ce5d8e044 (diff)
downloadgo-66b47812eb2753eb874a622d8820dee351c4ffeb.tar.gz
go-66b47812eb2753eb874a622d8820dee351c4ffeb.zip
[dev.ssa] cmd/compile/internal/ssa: Initial implementation of memory zeroing
This will make it possible for us to start implementing interfaces and other stack allocated types which are more than one machine word. Change-Id: I52b187a791cf1919cb70ed6dabdc9f57b317ea83 Reviewed-on: https://go-review.googlesource.com/11631 Reviewed-by: Keith Randall <khr@golang.org>
Diffstat (limited to 'src/cmd/compile/internal/ssa/TODO')
-rw-r--r--src/cmd/compile/internal/ssa/TODO2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cmd/compile/internal/ssa/TODO b/src/cmd/compile/internal/ssa/TODO
index e2e3fb8a57..340c905654 100644
--- a/src/cmd/compile/internal/ssa/TODO
+++ b/src/cmd/compile/internal/ssa/TODO
@@ -59,3 +59,5 @@ Other
checkOpcodeCounts. Michael Matloob suggests using a similar
pattern matcher to the rewrite engine to check for certain
expression subtrees in the output.
+ - Implement memory zeroing with REPSTOSQ and DuffZero
+ - make deadstore work with zeroing.