vmm/cpu_config/mod.rs
1// Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2// SPDX-License-Identifier: Apache-2.0
3
4/// Module with types used for custom CPU templates
5pub mod templates;
6/// Module with ser/de utils for custom CPU templates
7pub mod templates_serde;
8
9/// Module containing type implementations needed for x86 CPU configuration
10#[cfg(target_arch = "x86_64")]
11pub mod x86_64;
12
13/// Module containing type implementations needed for aarch64 (ARM) CPU configuration
14#[cfg(target_arch = "aarch64")]
15pub mod aarch64;
16
17#[cfg(test)]
18pub(crate) mod test_utils;