// automatically generated by stateify.

package bpf

import (
	"gvisor.dev/gvisor/pkg/state"
)

func (x *Program) beforeSave() {}
func (x *Program) save(m state.Map) {
	x.beforeSave()
	m.Save("instructions", &x.instructions)
}

func (x *Program) afterLoad() {}
func (x *Program) load(m state.Map) {
	m.Load("instructions", &x.instructions)
}

func init() {
	state.Register("pkg/bpf.Program", (*Program)(nil), state.Fns{Save: (*Program).save, Load: (*Program).load})
}