mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
[dev.regabi] go/constant: avoid heap allocations in match
When type switching from interface{} to T, and then returning the T as
interface{} again, it's better to return the original interface{}
value. This avoids needing to heap allocate the T for
non-pointer-shaped types (i.e., int64Val, complexVal, stringVal).
Change-Id: I25c83b3f9ec9bd2ffeec5a65279b68f4fcef8a19
Reviewed-on: https://go-review.googlesource.com/c/go/+/272647
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Trust: Matthew Dempsky <mdempsky@google.com>
Reviewed-by: Robert Griesemer <gri@golang.org>
This commit is contained in:
parent
1abb12fc97
commit
96f3fb7244
1 changed files with 18 additions and 15 deletions
|
|
@ -1023,52 +1023,55 @@ func match(x, y Value) (_, _ Value) {
|
||||||
}
|
}
|
||||||
// ord(x) <= ord(y)
|
// ord(x) <= ord(y)
|
||||||
|
|
||||||
switch x := x.(type) {
|
// Prefer to return the original x and y arguments when possible,
|
||||||
|
// to avoid unnecessary heap allocations.
|
||||||
|
|
||||||
|
switch x1 := x.(type) {
|
||||||
case boolVal, *stringVal, complexVal:
|
case boolVal, *stringVal, complexVal:
|
||||||
return x, y
|
return x, y
|
||||||
|
|
||||||
case int64Val:
|
case int64Val:
|
||||||
switch y := y.(type) {
|
switch y.(type) {
|
||||||
case int64Val:
|
case int64Val:
|
||||||
return x, y
|
return x, y
|
||||||
case intVal:
|
case intVal:
|
||||||
return i64toi(x), y
|
return i64toi(x1), y
|
||||||
case ratVal:
|
case ratVal:
|
||||||
return i64tor(x), y
|
return i64tor(x1), y
|
||||||
case floatVal:
|
case floatVal:
|
||||||
return i64tof(x), y
|
return i64tof(x1), y
|
||||||
case complexVal:
|
case complexVal:
|
||||||
return vtoc(x), y
|
return vtoc(x1), y
|
||||||
}
|
}
|
||||||
|
|
||||||
case intVal:
|
case intVal:
|
||||||
switch y := y.(type) {
|
switch y.(type) {
|
||||||
case intVal:
|
case intVal:
|
||||||
return x, y
|
return x, y
|
||||||
case ratVal:
|
case ratVal:
|
||||||
return itor(x), y
|
return itor(x1), y
|
||||||
case floatVal:
|
case floatVal:
|
||||||
return itof(x), y
|
return itof(x1), y
|
||||||
case complexVal:
|
case complexVal:
|
||||||
return vtoc(x), y
|
return vtoc(x1), y
|
||||||
}
|
}
|
||||||
|
|
||||||
case ratVal:
|
case ratVal:
|
||||||
switch y := y.(type) {
|
switch y.(type) {
|
||||||
case ratVal:
|
case ratVal:
|
||||||
return x, y
|
return x, y
|
||||||
case floatVal:
|
case floatVal:
|
||||||
return rtof(x), y
|
return rtof(x1), y
|
||||||
case complexVal:
|
case complexVal:
|
||||||
return vtoc(x), y
|
return vtoc(x1), y
|
||||||
}
|
}
|
||||||
|
|
||||||
case floatVal:
|
case floatVal:
|
||||||
switch y := y.(type) {
|
switch y.(type) {
|
||||||
case floatVal:
|
case floatVal:
|
||||||
return x, y
|
return x, y
|
||||||
case complexVal:
|
case complexVal:
|
||||||
return vtoc(x), y
|
return vtoc(x1), y
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue