mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
Move Flag, Debug, Ctxt, Exit, and error messages to
new package cmd/compile/internal/base.
These are the core functionality that everything in gc uses
and which otherwise prevent splitting any other code
out of gc into different packages.
A minor milestone: the compiler source code
no longer contains the string "yy".
[git-generate]
cd src/cmd/compile/internal/gc
rf '
mv atExit AtExit
mv Ctxt atExitFuncs AtExit Exit base.go
mv lineno Pos
mv linestr FmtPos
mv flusherrors FlushErrors
mv yyerror Errorf
mv yyerrorl ErrorfAt
mv yyerrorv ErrorfVers
mv noder.yyerrorpos noder.errorAt
mv Warnl WarnfAt
mv errorexit ErrorExit
mv base.go debug.go flag.go print.go cmd/compile/internal/base
'
: # update comments
sed -i '' 's/yyerrorl/ErrorfAt/g; s/yyerror/Errorf/g' *.go
: # bootstrap.go is not built by default so invisible to rf
sed -i '' 's/Fatalf/base.Fatalf/' bootstrap.go
goimports -w bootstrap.go
: # update cmd/dist to add internal/base
cd ../../../dist
sed -i '' '/internal.amd64/a\
"cmd/compile/internal/base",
' buildtool.go
gofmt -w buildtool.go
Change-Id: I59903c7084222d6eaee38823fd222159ba24a31a
Reviewed-on: https://go-review.googlesource.com/c/go/+/272250
Trust: Russ Cox <rsc@golang.org>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
78 lines
1.9 KiB
Go
78 lines
1.9 KiB
Go
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package gc
|
|
|
|
import "cmd/compile/internal/base"
|
|
|
|
// evalunsafe evaluates a package unsafe operation and returns the result.
|
|
func evalunsafe(n *Node) int64 {
|
|
switch n.Op {
|
|
case OALIGNOF, OSIZEOF:
|
|
n.Left = typecheck(n.Left, ctxExpr)
|
|
n.Left = defaultlit(n.Left, nil)
|
|
tr := n.Left.Type
|
|
if tr == nil {
|
|
return 0
|
|
}
|
|
dowidth(tr)
|
|
if n.Op == OALIGNOF {
|
|
return int64(tr.Align)
|
|
}
|
|
return tr.Width
|
|
|
|
case OOFFSETOF:
|
|
// must be a selector.
|
|
if n.Left.Op != OXDOT {
|
|
base.Errorf("invalid expression %v", n)
|
|
return 0
|
|
}
|
|
|
|
// Remember base of selector to find it back after dot insertion.
|
|
// Since r->left may be mutated by typechecking, check it explicitly
|
|
// first to track it correctly.
|
|
n.Left.Left = typecheck(n.Left.Left, ctxExpr)
|
|
sbase := n.Left.Left
|
|
|
|
n.Left = typecheck(n.Left, ctxExpr)
|
|
if n.Left.Type == nil {
|
|
return 0
|
|
}
|
|
switch n.Left.Op {
|
|
case ODOT, ODOTPTR:
|
|
break
|
|
case OCALLPART:
|
|
base.Errorf("invalid expression %v: argument is a method value", n)
|
|
return 0
|
|
default:
|
|
base.Errorf("invalid expression %v", n)
|
|
return 0
|
|
}
|
|
|
|
// Sum offsets for dots until we reach sbase.
|
|
var v int64
|
|
for r := n.Left; r != sbase; r = r.Left {
|
|
switch r.Op {
|
|
case ODOTPTR:
|
|
// For Offsetof(s.f), s may itself be a pointer,
|
|
// but accessing f must not otherwise involve
|
|
// indirection via embedded pointer types.
|
|
if r.Left != sbase {
|
|
base.Errorf("invalid expression %v: selector implies indirection of embedded %v", n, r.Left)
|
|
return 0
|
|
}
|
|
fallthrough
|
|
case ODOT:
|
|
v += r.Xoffset
|
|
default:
|
|
Dump("unsafenmagic", n.Left)
|
|
base.Fatalf("impossible %#v node after dot insertion", r.Op)
|
|
}
|
|
}
|
|
return v
|
|
}
|
|
|
|
base.Fatalf("unexpected op %v", n.Op)
|
|
return 0
|
|
}
|