-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from Freax13/enhancement/multi-thread-supervisor
move to multi-threaded supervisor for SNP
- Loading branch information
Showing
61 changed files
with
1,859 additions
and
1,650 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
pub const VMEXIT_INTR: u64 = 0x60; | ||
pub const VMEXIT_NMI: u64 = 0x61; | ||
pub const VMEXIT_SMI: u64 = 0x62; | ||
pub const VMEXIT_INIT: u64 = 0x63; | ||
pub const VMEXIT_CPUID: u64 = 0x72; | ||
pub const VMEXIT_PAUSE: u64 = 0x77; | ||
pub const VMEXIT_IOIO: u64 = 0x7b; | ||
pub const VMEXIT_MSR: u64 = 0x7c; | ||
pub const VMEXIT_VMMCALL: u64 = 0x81; | ||
pub const VMEXIT_NPF: u64 = 0x400; | ||
pub const VMEXIT_VMGEXIT: u64 = 0x403; | ||
// FIXME: This name is not official. | ||
pub const VMEXIT_UNVALIDATED: u64 = 0x404; | ||
pub const VMEXIT_INVALID: u64 = !0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.