blob: 45bfbfca1e38db0068a223ce97b09a6687f8f1f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// automatically generated by stateify.
//go:build arm64 && arm64 && arm64
// +build arm64,arm64,arm64
package arch
import (
"gvisor.dev/gvisor/pkg/state"
)
func (c *context64) StateTypeName() string {
return "pkg/sentry/arch.context64"
}
func (c *context64) StateFields() []string {
return []string{
"State",
"sigFPState",
}
}
func (c *context64) beforeSave() {}
// +checklocksignore
func (c *context64) StateSave(stateSinkObject state.Sink) {
c.beforeSave()
stateSinkObject.Save(0, &c.State)
stateSinkObject.Save(1, &c.sigFPState)
}
func (c *context64) afterLoad() {}
// +checklocksignore
func (c *context64) StateLoad(stateSourceObject state.Source) {
stateSourceObject.Load(0, &c.State)
stateSourceObject.Load(1, &c.sigFPState)
}
func init() {
state.Register((*context64)(nil))
}
|