Lines Matching refs:value

554                                     int64_t *tb_offsetp, uint64_t value)  in cpu_ppc_store_tb()  argument
556 *tb_offsetp = value - ns_to_tb(tb_env->tb_freq, vmclk); in cpu_ppc_store_tb()
558 trace_ppc_tb_store(value, *tb_offsetp); in cpu_ppc_store_tb()
561 void cpu_ppc_store_tbl (CPUPPCState *env, uint32_t value) in cpu_ppc_store_tbl() argument
569 cpu_ppc_store_tb(tb_env, clock, &tb_env->tb_offset, tb | (uint64_t)value); in cpu_ppc_store_tbl()
572 static inline void _cpu_ppc_store_tbu(CPUPPCState *env, uint32_t value) in _cpu_ppc_store_tbu() argument
581 ((uint64_t)value << 32) | tb); in _cpu_ppc_store_tbu()
584 void cpu_ppc_store_tbu (CPUPPCState *env, uint32_t value) in cpu_ppc_store_tbu() argument
586 _cpu_ppc_store_tbu(env, value); in cpu_ppc_store_tbu()
613 void cpu_ppc_store_atbl (CPUPPCState *env, uint32_t value) in cpu_ppc_store_atbl() argument
621 cpu_ppc_store_tb(tb_env, clock, &tb_env->atb_offset, tb | (uint64_t)value); in cpu_ppc_store_atbl()
624 void cpu_ppc_store_atbu (CPUPPCState *env, uint32_t value) in cpu_ppc_store_atbu() argument
633 ((uint64_t)value << 32) | tb); in cpu_ppc_store_atbu()
654 void cpu_ppc_store_vtb(CPUPPCState *env, uint64_t value) in cpu_ppc_store_vtb() argument
659 &tb_env->vtb_offset, value); in cpu_ppc_store_vtb()
662 void cpu_ppc_store_tbu40(CPUPPCState *env, uint64_t value) in cpu_ppc_store_tbu40() argument
670 tb |= (value & ~0xFFFFFFUL); in cpu_ppc_store_tbu40()
844 target_ulong value, int nr_bits) in __cpu_ppc_store_decr() argument
853 value = extract64(value, 0, nr_bits); in __cpu_ppc_store_decr()
855 signed_value = sextract64(value, 0, nr_bits); in __cpu_ppc_store_decr()
858 trace_ppc_decr_store(nr_bits, decr, value); in __cpu_ppc_store_decr()
866 next = ns_to_tb(tb_env->decr_freq, now) + value; in __cpu_ppc_store_decr()
895 target_ulong decr, target_ulong value, in _cpu_ppc_store_decr() argument
902 tb_env->flags, decr, value, nr_bits); in _cpu_ppc_store_decr()
905 void cpu_ppc_store_decr(CPUPPCState *env, target_ulong value) in cpu_ppc_store_decr() argument
924 _cpu_ppc_store_decr(cpu, now, decr, value, nr_bits); in cpu_ppc_store_decr()
935 target_ulong hdecr, target_ulong value, in _cpu_ppc_store_hdecr() argument
945 hdecr, value, nr_bits); in _cpu_ppc_store_hdecr()
949 void cpu_ppc_store_hdecr(CPUPPCState *env, target_ulong value) in cpu_ppc_store_hdecr() argument
958 _cpu_ppc_store_hdecr(cpu, now, hdecr, value, pcc->lrg_decr_bits); in cpu_ppc_store_hdecr()
968 static void _cpu_ppc_store_purr(CPUPPCState *env, int64_t now, uint64_t value) in _cpu_ppc_store_purr() argument
972 cpu_ppc_store_tb(tb_env, now, &tb_env->purr_offset, value); in _cpu_ppc_store_purr()
975 void cpu_ppc_store_purr(CPUPPCState *env, uint64_t value) in cpu_ppc_store_purr() argument
977 _cpu_ppc_store_purr(env, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL), value); in cpu_ppc_store_purr()