]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/compile: delete stray file
authorJosh Bleecher Snyder <josharian@gmail.com>
Mon, 24 Feb 2020 22:52:19 +0000 (14:52 -0800)
committerJosh Bleecher Snyder <josharian@gmail.com>
Tue, 25 Feb 2020 02:03:06 +0000 (02:03 +0000)
This found its way in accidentally.

Change-Id: I830f1e3ec4852a213901a679ad20094a6958cb07
Reviewed-on: https://go-review.googlesource.com/c/go/+/220680
Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/cmd/compile/internal/ssa/rewrite_rule_idea.txt [deleted file]

diff --git a/src/cmd/compile/internal/ssa/rewrite_rule_idea.txt b/src/cmd/compile/internal/ssa/rewrite_rule_idea.txt
deleted file mode 100644 (file)
index 003e4c0..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-idea: pack info about value substructure into an int64
-all values should be encoded as 1<<x, probably byte by byte
-and the hardcoded values should be encoded the same way,
-or as 11111111 for "any"
-then AND together "have" and "want"
-and if zero in any byte (or maybe use popcount < 8?)
-then skip because there is a mismatch
-
-possibble things to include:
-* number of args of v.Args[0], v.Args[1], ...
-* op of v.Args[0]%8, v.Args[1]%8, ...
-
-then can also calculate v.Args[0][0], etc at top and share,
-
-also: cut down commutativity
-
-