Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jordanlewis/gcassert
Assert your Go code is inlined and bounds-check eliminated
https://github.com/jordanlewis/gcassert
go golang
Last synced: 13 days ago
JSON representation
Assert your Go code is inlined and bounds-check eliminated
- Host: GitHub
- URL: https://github.com/jordanlewis/gcassert
- Owner: jordanlewis
- License: mit
- Created: 2020-06-28T18:47:31.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-01T19:50:08.000Z (7 months ago)
- Last Synced: 2024-10-14T00:27:58.335Z (26 days ago)
- Topics: go, golang
- Language: Go
- Homepage:
- Size: 48.8 KB
- Stars: 244
- Watchers: 4
- Forks: 11
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-go-perf - jordanlewis/gcassert - Assert your Go code is inlined and bounds-check eliminated. (Compiling)
README
# gcassert
gcassert is a program for making assertions about compiler decisions in
Go programs, via inline comment directives like `//gcassert:inline`.Currently supported [directives](#directives):
- `//gcassert:inline` to assert function callsites are inlined
- `//gcassert:bce` to assert bounds checks are eliminated
- `//gcassert:noescape` to assert variables don't escape to the heap## Example
Given a file `foo.go`:
```go
package foofunc addOne(i int) int {
return i+1
}//gcassert:inline
func addTwo(i int) int {
return i+1
}func a(ints []int) int {
var sum int
for i := range ints {
//gcassert:bce,inline
sum += addOne(ints[i])sum += addTwo(ints[i]) //gcassert:bce
sum += ints[i] //gcassert:bce
}
return sum
}
```The inline `//gcassert` directive will cause `gcassert` to fail if the line
`sum += addOne(ints[i])` is either not inlined or contains bounds checks.A `//gcassert:inline` directive on a function will cause `gcassert` to fail
if any of the callers of that function do not get inlined.`//gcassert` comments expect a comma-separated list of directives after
`//gcassert:`. They can be included above the line in question or after, as an
inline comment.## Installation
To get the gcassert binary:
```bash
go get github.com/jordanlewis/gcassert/cmd/gcassert
```To get the gcassert library:
```bash
go get github.com/jordanlewis/gcassert
```## Usage
### As a binary
Run gcassert on packages containing gcassert directives, like this:
```bash
gcassert ./package/path
```The program will output all lines that had a gcassert directive that wasn't
respected by the compiler.For example, running on the testdata directory in this library will produce the
following output:```bash
$ gcassert ./testdata
testdata/noescape.go:21: foo := foo{a: 1, b: 2}: foo escapes to heap:
testdata/bce.go:8: fmt.Println(ints[5]): Found IsInBounds
testdata/bce.go:17: sum += notInlinable(ints[i]): call was not inlined
testdata/bce.go:19: sum += notInlinable(ints[i]): call was not inlined
testdata/inline.go:45: alwaysInlined(3): call was not inlined
testdata/inline.go:51: sum += notInlinable(i): call was not inlined
testdata/inline.go:55: sum += 1: call was not inlined
testdata/inline.go:58: test(0).neverInlinedMethod(10): call was not inlined
```Inspecting each of the listed lines will show a `//gcassert` directive
that wasn't upheld when running the compiler on the package.### As a library
gcassert is runnable as a library as well, for integration into your linter
suite. It has a single package function, `gcassert.GCAssert`.To use it, pass in an `io.Writer` to which errors will be written and a list of
paths to check for `gcassert` assertions, like this:```go
package mainimport "github.com/jordanlewis/gcassert"
func main() {
var buf strings.Builder
if err := gcassert.GCAssert(&buf, "./path/to/package", "./otherpath/to/package"); err != nil {
// handle non-lint-failure related errors
panic(err)
}
// Output the errors to stdout.
fmt.Println(buf.String())
}
```## Directives
```
//gcassert:inline
```The inline directive on a CallExpr asserts that the following statement
contains a function that is inlined by the compiler. If the function does not
get inlined, gcassert will fail.The inline directive on a FuncDecl asserts that every caller of that function
is actually inlined by the compiler.```
//gcassert:bce
```The bce directive asserts that the following statement contains a slice index
that has no necessary bounds checks. If the compiler adds bounds checks,
gcassert will fail.```
//gcassert:noescape
```The noescape directive asserts that the line it's attached to (meaning,
whichever Go AST node is annotated by the comment) produces no "escaped to
heap" messages by the Go compiler.The Go compiler emits an "escaped to heap" message for a particular line of
code if any variables on that line of code are forced to escape.Typically, the compiler will emit such a message on the line of code that the
variable is declared on. This includes method receivers, method arguments, and
var declarations.This means that the annotation must be attached to the line of code that
actually contains the variable in question. For a multi-line function
signature, for example, the annotation must come on the line that has the
variable that would be expected not to escape to the heap:```go
type foo struct { a int }// This annotation will pass, because f does not escape.
//gcassert:noescape
func (f foo) returnA(
// This annotation will fail, because a will escape to the heap.
//gcassert:noescape
a int,
) *int {
return &a
}
```