forked from qemu/qemu
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some parts of this code are shared with the 32-bit arm, specifically tracing of flags and conditions. For AArch64, we store operands only for the flags that are actually used, as opposed to existing arm code, which always dumps all of them unconditionally. To account for this change, loaded_cpsr and store_cpsr have been refactored to now be bitfields indicating the individual flags, rather than being just single booleans. Old code just sets them to TRACE_CPSR_ALL and can be made more fine-grained successively in the future if desired.
- Loading branch information
1 parent
281acb4
commit 03d66a8
Showing
9 changed files
with
491 additions
and
243 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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#pragma once | ||
|
||
#include "frame_arch.h" | ||
|
||
const uint64_t frame_arch = frame_arch_aarch64; | ||
const uint64_t frame_mach = frame_mach_aarch64; |
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
Oops, something went wrong.