mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/compile/internal: named types for Etype and Op in struct Node
Type Op is enfored now. Type EType will need further CLs. Added TODOs where Node.EType is used as a union type. The TODOs have the format `TODO(marvin): Fix Node.EType union type.`. Furthermore: -The flag of Econv function in fmt.go is removed, since unused. -Some cleaning along the way, e.g. declare vars first when getting initialized. Passes go build -toolexec 'toolstash -cmp' -a std. Fixes #11846 Change-Id: I908b955d5a78a195604970983fb9194bd9e9260b Reviewed-on: https://go-review.googlesource.com/14956 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Marvin Stenger <marvin.stenger94@gmail.com>
This commit is contained in:
parent
f5f480e1df
commit
8e7a3ea11e
36 changed files with 1927 additions and 1729 deletions
|
|
@ -42,11 +42,11 @@ type Node struct {
|
|||
|
||||
Esc uint16 // EscXXX
|
||||
|
||||
Op uint8
|
||||
Op Op
|
||||
Nointerface bool
|
||||
Ullman uint8 // sethi/ullman number
|
||||
Addable bool // addressable
|
||||
Etype uint8 // op for OASOP, etype for OTYPE, exclam for export, 6g saved reg
|
||||
Etype EType // op for OASOP, etype for OTYPE, exclam for export, 6g saved reg
|
||||
Bounded bool // bounds check unnecessary
|
||||
Class Class // PPARAM, PAUTO, PEXTERN, etc
|
||||
Embedded uint8 // ODCLFIELD embedded type
|
||||
|
|
@ -179,9 +179,11 @@ type Func struct {
|
|||
Systemstack bool // must run on system stack
|
||||
}
|
||||
|
||||
type Op uint8
|
||||
|
||||
// Node ops.
|
||||
const (
|
||||
OXXX = iota
|
||||
OXXX = Op(iota)
|
||||
|
||||
// names
|
||||
ONAME // var, const or func name
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue