diff options
author | Richard Henderson <rth@twiddle.net> | 2015-09-15 11:45:10 -0700 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2015-10-23 12:59:27 -0200 |
commit | 696ad9e4b27a49a9706010d00b31b17fe1f0d569 (patch) | |
tree | 54270c726fb01863db9415dfaeb8a180b96405db /target-i386/cpu.h | |
parent | 9055330ffbf5ca85f024c29874799d9c8bd17aa9 (diff) | |
download | qemu-696ad9e4b27a49a9706010d00b31b17fe1f0d569.tar.gz qemu-696ad9e4b27a49a9706010d00b31b17fe1f0d569.tar.bz2 qemu-696ad9e4b27a49a9706010d00b31b17fe1f0d569.zip |
target-i386: Move hw_*breakpoint_* functions
They're only used from bpt_helper.c now.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target-i386/cpu.h')
-rw-r--r-- | target-i386/cpu.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h index 70d1b219d9..0ccd5130fb 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -1128,33 +1128,6 @@ void x86_stl_phys(CPUState *cs, hwaddr addr, uint32_t val); void x86_stq_phys(CPUState *cs, hwaddr addr, uint64_t val); #endif -static inline bool hw_local_breakpoint_enabled(unsigned long dr7, int index) -{ - return (dr7 >> (index * 2)) & 1; -} - -static inline bool hw_global_breakpoint_enabled(unsigned long dr7, int index) -{ - return (dr7 >> (index * 2)) & 2; - -} -static inline bool hw_breakpoint_enabled(unsigned long dr7, int index) -{ - return hw_global_breakpoint_enabled(dr7, index) || - hw_local_breakpoint_enabled(dr7, index); -} - -static inline int hw_breakpoint_type(unsigned long dr7, int index) -{ - return (dr7 >> (DR7_TYPE_SHIFT + (index * 4))) & 3; -} - -static inline int hw_breakpoint_len(unsigned long dr7, int index) -{ - int len = ((dr7 >> (DR7_LEN_SHIFT + (index * 4))) & 3); - return (len == 2) ? 8 : len + 1; -} - void breakpoint_handler(CPUState *cs); /* will be suppressed */ |