diff options
Diffstat (limited to 'target-ppc/op_helper.h')
-rw-r--r-- | target-ppc/op_helper.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/target-ppc/op_helper.h b/target-ppc/op_helper.h index b25db4a991..8c8c812051 100644 --- a/target-ppc/op_helper.h +++ b/target-ppc/op_helper.h @@ -51,6 +51,7 @@ void glue(do_dcbz_64, MEMSUFFIX) (void); void do_print_mem_EA (target_ulong EA); /* Registers load and stores */ +void do_load_cr (void); void do_store_cr (uint32_t mask); #if defined(TARGET_PPC64) void do_store_pri (int prio); @@ -87,6 +88,10 @@ void do_subfmeo_64 (void); void do_subfzeo_64 (void); void do_srad (void); #endif +void do_popcntb (void); +#if defined(TARGET_PPC64) +void do_popcntb_64 (void); +#endif /* Floating-point arithmetic helpers */ void do_compute_fprf (int set_class); @@ -133,6 +138,7 @@ void do_tw (int flags); void do_td (int flags); #endif #if !defined(CONFIG_USER_ONLY) +void do_store_msr (void); void do_rfi (void); #if defined(TARGET_PPC64) void do_rfid (void); |