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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
// automatically generated by stateify.
// +build i386 amd64
package cpuid
import (
"gvisor.dev/gvisor/pkg/state"
)
func (x *Cache) beforeSave() {}
func (x *Cache) save(m state.Map) {
x.beforeSave()
m.Save("Level", &x.Level)
m.Save("Type", &x.Type)
m.Save("FullyAssociative", &x.FullyAssociative)
m.Save("Partitions", &x.Partitions)
m.Save("Ways", &x.Ways)
m.Save("Sets", &x.Sets)
m.Save("InvalidateHierarchical", &x.InvalidateHierarchical)
m.Save("Inclusive", &x.Inclusive)
m.Save("DirectMapped", &x.DirectMapped)
}
func (x *Cache) afterLoad() {}
func (x *Cache) load(m state.Map) {
m.Load("Level", &x.Level)
m.Load("Type", &x.Type)
m.Load("FullyAssociative", &x.FullyAssociative)
m.Load("Partitions", &x.Partitions)
m.Load("Ways", &x.Ways)
m.Load("Sets", &x.Sets)
m.Load("InvalidateHierarchical", &x.InvalidateHierarchical)
m.Load("Inclusive", &x.Inclusive)
m.Load("DirectMapped", &x.DirectMapped)
}
func (x *FeatureSet) beforeSave() {}
func (x *FeatureSet) save(m state.Map) {
x.beforeSave()
m.Save("Set", &x.Set)
m.Save("VendorID", &x.VendorID)
m.Save("ExtendedFamily", &x.ExtendedFamily)
m.Save("ExtendedModel", &x.ExtendedModel)
m.Save("ProcessorType", &x.ProcessorType)
m.Save("Family", &x.Family)
m.Save("Model", &x.Model)
m.Save("SteppingID", &x.SteppingID)
m.Save("Caches", &x.Caches)
m.Save("CacheLine", &x.CacheLine)
}
func (x *FeatureSet) afterLoad() {}
func (x *FeatureSet) load(m state.Map) {
m.Load("Set", &x.Set)
m.Load("VendorID", &x.VendorID)
m.Load("ExtendedFamily", &x.ExtendedFamily)
m.Load("ExtendedModel", &x.ExtendedModel)
m.Load("ProcessorType", &x.ProcessorType)
m.Load("Family", &x.Family)
m.Load("Model", &x.Model)
m.Load("SteppingID", &x.SteppingID)
m.Load("Caches", &x.Caches)
m.Load("CacheLine", &x.CacheLine)
}
func init() {
state.Register("pkg/cpuid.Cache", (*Cache)(nil), state.Fns{Save: (*Cache).save, Load: (*Cache).load})
state.Register("pkg/cpuid.FeatureSet", (*FeatureSet)(nil), state.Fns{Save: (*FeatureSet).save, Load: (*FeatureSet).load})
}
|