Reduce code size of encode_optype.go

This commit is contained in:
Masaaki Goshima 2021-01-17 22:23:28 +09:00
parent 5209a753d2
commit 3989252ca9
2 changed files with 2786 additions and 5550 deletions

View File

@ -99,6 +99,12 @@ const (
{{- end }}
)
var opTypeStrings = [{{ .OpLen }}]string{
{{- range $type := .OpTypes }}
"{{ $type.Op }}",
{{- end }}
}
type opType int
const (
@ -108,14 +114,11 @@ const (
)
func (t opType) String() string {
switch t {
{{- range $type := .OpTypes }}
case op{{ $type.Op }}:
return "{{ $type.Op }}"
{{- end }}
}
if int(t) >= {{ .OpLen }} {
return ""
}
return opTypeStrings[int(t)]
}
func (t opType) codeType() codeType {
if strings.Contains(t.String(), "Struct") {

File diff suppressed because it is too large Load Diff