diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-05-07 20:23:43 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-05-07 20:23:43 +0000 |
commit | 03a34f6ddde4ba3c45ace56a6328bf85197625b4 (patch) | |
tree | 680396b6e1b7929a44632681eb89b18b19b458ab /pkg/cpuid/cpuid_state_autogen.go | |
parent | 03daf4f9759e35beea2663b171f134fc48dde512 (diff) | |
parent | 1f4087e7cd6c3cc696e6b26446abd6c5214cfd67 (diff) |
Merge release-20200422.0-51-g1f4087e (automated)
Diffstat (limited to 'pkg/cpuid/cpuid_state_autogen.go')
-rwxr-xr-x | pkg/cpuid/cpuid_state_autogen.go | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/pkg/cpuid/cpuid_state_autogen.go b/pkg/cpuid/cpuid_state_autogen.go index 591868c88..86206a6bf 100755 --- a/pkg/cpuid/cpuid_state_autogen.go +++ b/pkg/cpuid/cpuid_state_autogen.go @@ -1,70 +1,3 @@ // automatically generated by stateify. -// +build 386 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}) -} |