minor formatting changes, clarify comments on runtime modification

pull/52/head
Andrew LeFevre 5 years ago
parent 4a942314ec
commit cee83e8f1d

@ -86,14 +86,12 @@ package main
import _ "unsafe"
//go:linkname HidePanics runtime.HidePanics
func HidePanics(hide bool)
//go:linkname hidePanics runtime.HidePanics
func hidePanics(hide bool)
func init() {
HidePanics(true)
}
func init() { hidePanics(true) }
func main() {
panic("!!!")
panic("ya like jazz?")
}
```

@ -34,11 +34,15 @@ func addRuntimeAPI(filename string, file *ast.File) {
case "error.go":
// Add a function panicprint, that does nothing if panics are
// hidden, otherwise forwards arguments to printany to print them
// as normal.
// as normal. Although we add an if statement to printany to do
// nothing if panics are hidden, printany only takes one argument,
// and both print and printany are used to print panic messages.
// panicprint's entire purpose is to act as a replacement to print
// that respects HidePanics, and print is variadic, so print must be
// replaced by a variadic function, hence panicprint.
//
// We will also add two statements to printany:
// 1. An if statement that returns early if panics are hidden, as
// printany is called directly when printing panics
// 1. An if statement that returns early if panics are hidden
// 2. An additional case statement that handles printing runtime.hex
// values. Without this case statement, the default case will print
// the runtime.hex values in a way not consistent with normal panic
@ -70,14 +74,10 @@ func addRuntimeAPI(filename string, file *ast.File) {
}
var hidePanicsCheckStmt = &ast.IfStmt{
Cond: &ast.Ident{
Name: "hidePanics",
},
Body: &ast.BlockStmt{
List: []ast.Stmt{
&ast.ReturnStmt{},
},
},
Cond: &ast.Ident{Name: "hidePanics"},
Body: &ast.BlockStmt{List: []ast.Stmt{
&ast.ReturnStmt{},
}},
}
var hidePanicsDecls = []ast.Decl{
@ -86,32 +86,22 @@ var hidePanicsDecls = []ast.Decl{
Specs: []ast.Spec{
&ast.ValueSpec{
Names: []*ast.Ident{
&ast.Ident{
Name: "hidePanics",
},
},
Type: &ast.Ident{
Name: "bool",
&ast.Ident{Name: "hidePanics"},
},
Type: &ast.Ident{Name: "bool"},
},
},
},
&ast.FuncDecl{
Name: &ast.Ident{
Name: "HidePanics",
},
Name: &ast.Ident{Name: "HidePanics"},
Type: &ast.FuncType{
Params: &ast.FieldList{
List: []*ast.Field{
&ast.Field{
Names: []*ast.Ident{
&ast.Ident{
Name: "hide",
},
},
Type: &ast.Ident{
Name: "bool",
&ast.Ident{Name: "hide"},
},
Type: &ast.Ident{Name: "bool"},
},
},
},
@ -120,15 +110,11 @@ var hidePanicsDecls = []ast.Decl{
List: []ast.Stmt{
&ast.AssignStmt{
Lhs: []ast.Expr{
&ast.Ident{
Name: "hidePanics",
},
&ast.Ident{Name: "hidePanics"},
},
Tok: token.ASSIGN,
Rhs: []ast.Expr{
&ast.Ident{
Name: "hide",
},
&ast.Ident{Name: "hide"},
},
},
},
@ -138,20 +124,14 @@ var hidePanicsDecls = []ast.Decl{
var printanyHexCase = &ast.CaseClause{
List: []ast.Expr{
&ast.Ident{
Name: "hex",
},
&ast.Ident{Name: "hex"},
},
Body: []ast.Stmt{
&ast.ExprStmt{
X: &ast.CallExpr{
Fun: &ast.Ident{
Name: "print",
},
Fun: &ast.Ident{Name: "print"},
Args: []ast.Expr{
&ast.Ident{
Name: "v",
},
&ast.Ident{Name: "v"},
},
},
},
@ -159,67 +139,45 @@ var printanyHexCase = &ast.CaseClause{
}
var panicprintDecl = &ast.FuncDecl{
Name: &ast.Ident{
Name: "panicprint",
},
Type: &ast.FuncType{
Params: &ast.FieldList{
List: []*ast.Field{
&ast.Field{
Names: []*ast.Ident{
&ast.Ident{
Name: "args",
},
},
Type: &ast.Ellipsis{
Elt: &ast.InterfaceType{
Methods: &ast.FieldList{},
},
},
},
},
},
},
Body: &ast.BlockStmt{
List: []ast.Stmt{
&ast.IfStmt{
Cond: &ast.Ident{
Name: "hidePanics",
Name: &ast.Ident{Name: "panicprint"},
Type: &ast.FuncType{Params: &ast.FieldList{
List: []*ast.Field{
&ast.Field{
Names: []*ast.Ident{
&ast.Ident{Name: "args"},
},
Body: &ast.BlockStmt{
List: []ast.Stmt{
&ast.ReturnStmt{},
Type: &ast.Ellipsis{
Elt: &ast.InterfaceType{
Methods: &ast.FieldList{},
},
},
},
&ast.RangeStmt{
Key: &ast.Ident{
Name: "_",
},
Value: &ast.Ident{
Name: "arg",
},
Tok: token.DEFINE,
X: &ast.Ident{
Name: "args",
},
Body: &ast.BlockStmt{
List: []ast.Stmt{
&ast.ExprStmt{
X: &ast.CallExpr{
Fun: &ast.Ident{
Name: "printany",
},
Args: []ast.Expr{
&ast.Ident{
Name: "arg",
},
},
},
}},
Body: &ast.BlockStmt{List: []ast.Stmt{
&ast.IfStmt{
Cond: &ast.Ident{Name: "hidePanics"},
Body: &ast.BlockStmt{List: []ast.Stmt{
&ast.ReturnStmt{},
}},
},
&ast.RangeStmt{
Key: &ast.Ident{Name: "_"},
Value: &ast.Ident{Name: "arg"},
Tok: token.DEFINE,
X: &ast.Ident{Name: "args"},
Body: &ast.BlockStmt{
List: []ast.Stmt{
&ast.ExprStmt{
X: &ast.CallExpr{
Fun: &ast.Ident{Name: "printany"},
Args: []ast.Expr{
&ast.Ident{Name: "arg"},
},
},
},
},
},
},
},
}},
}

@ -9,15 +9,13 @@ package main
import _ "unsafe"
//go:linkname HidePanics runtime.HidePanics
func HidePanics(hide bool)
//go:linkname hidePanics runtime.HidePanics
func hidePanics(hide bool)
func init() {
HidePanics(true)
}
func init() { hidePanics(true) }
func main() {
panic("!!!")
panic("ya like jazz?")
}
-- main.stderr --

Loading…
Cancel
Save