Documentation ¶
Overview ¶
Package compare contains code for generating comparison routines for structs, strings and interfaces.
Index ¶
- func EqCanPanic(t *types.Type) bool
- func EqInterface(s, t ir.Node) (eqtab *ir.BinaryExpr, eqdata *ir.CallExpr)
- func EqString(s, t ir.Node) (eqlen *ir.BinaryExpr, eqmem *ir.CallExpr)
- func EqStruct(t *types.Type, np, nq ir.Node) []ir.Node
- func EqStructCost(t *types.Type) int64
- func IsRegularMemory(t *types.Type) bool
- func Memrun(t *types.Type, start int) (size int64, next int)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func EqCanPanic ¶
EqCanPanic reports whether == on type t could panic (has an interface somewhere). t must be comparable.
func EqInterface ¶
EqInterface returns the nodes
s.tab == t.tab (or s.typ == t.typ, as appropriate)
and
ifaceeq(s.tab, s.data, t.data) (or efaceeq(s.typ, s.data, t.data), as appropriate)
which can be used to construct interface equality comparison. eqtab must be evaluated before eqdata, and shortcircuiting is required.
func EqString ¶
EqString returns the nodes
len(s) == len(t)
and
memequal(s.ptr, t.ptr, len(s))
which can be used to construct string equality comparison. eqlen must be evaluated before eqmem, and shortcircuiting is required.
func EqStruct ¶
EqStruct compares two structs np and nq for equality. It works by building a list of boolean conditions to satisfy. Conditions must be evaluated in the returned order and properly short-circuited by the caller.
func EqStructCost ¶ added in go1.20
EqStructCost returns the cost of an equality comparison of two structs.
The cost is determined using an algorithm which takes into consideration the size of the registers in the current architecture and the size of the memory-only fields in the struct.
func IsRegularMemory ¶
IsRegularMemory reports whether t can be compared/hashed as regular memory.
Types ¶
This section is empty.