commit | 310d09bf73c2063626cd824b8df809595d6f0392 | [log] [tgz] |
---|---|---|
author | Michael Matloob <matloob@google.com> | Tue May 12 12:06:45 2015 -0400 |
committer | Alan Donovan <adonovan@google.com> | Fri May 15 20:01:03 2015 +0000 |
tree | dd063ea24c0dc9423337933dc5b646ea2afca6d1 | |
parent | b3137966db7c000d2edd8d2f9d6fd10ebbb4da9c [diff] |
cmd/internal/ssa: utility functions to make Funcs Adds a more convenient way to define Funcs for testing. For instance, b1: v1 = Arg <mem> [.mem] Plain -> b2 b2: Exit v1 b3: v2 = Const <bool> [true] If v2 -> b3 b2 can be defined as fun :=Fun("entry", Bloc("entry", Valu("mem", OpArg, TypeMem, ".mem"), Goto("exit")), Bloc("exit", Exit("mem")), Bloc("deadblock", Valu("deadval", OpConst, TypeBool, true), If("deadval", "deadblock", "exit"))) Also add an Equiv function to test two Funcs for equivalence. Change-Id: If1633865aeefb8e765e772b6dad19250d93a413a Reviewed-on: https://go-review.googlesource.com/9992 Reviewed-by: Keith Randall <khr@golang.org>
Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.
For documentation about how to install and use Go, visit https://golang.org/ or load doc/install-source.html in your web browser.
Our canonical Git repository is located at https://go.googlesource.com/go. There is a mirror of the repository at https://github.com/golang/go.
Please report issues here: https://golang.org/issue/new
Go is the work of hundreds of contributors. We appreciate your help!
To contribute, please read the contribution guidelines: https://golang.org/doc/contribute.html
Unless otherwise noted, the Go source files are distributed under the BSD-style license found in the LICENSE file.
If you have just untarred a binary Go distribution, you need to set the environment variable $GOROOT to the full path of the go directory (the one containing this file). You can omit the variable if you unpack it into /usr/local/go, or if you rebuild from sources by running all.bash (see doc/install-source.html). You should also add the Go binary directory $GOROOT/bin to your shell's path.
For example, if you extracted the tar file into $HOME/go, you might put the following in your .profile:
export GOROOT=$HOME/go export PATH=$PATH:$GOROOT/bin
See https://golang.org/doc/install or doc/install.html for more details.