Searched refs:macl (Results 1 – 11 of 11) sorted by relevance
/qemu/tests/tcg/sh4/ |
H A D | test-macw.c | 9 register uint32_t macl __asm__("macl") = mac; in mac_w() 13 : "+r"(a), "+r"(b), "+x"(macl), "+x"(mach)); in mac_w() 15 return ((uint64_t)mach << 32) | macl; in mac_w()
|
H A D | test-macl.c | 12 register uint32_t macl __asm__("macl") = mac; in mac_l() 16 : "+r"(a), "+r"(b), "+x"(macl), "+x"(mach)); in mac_l() 18 return ((uint64_t)mach << 32) | macl; in mac_l()
|
H A D | Makefile.target | 15 test-macl: CFLAGS += -O -g 16 TESTS += test-macl
|
/qemu/target/sh4/ |
H A D | gdbstub.c | 51 return gdb_get_regl(mem_buf, env->macl); in superh_cpu_gdb_read_register() 107 env->macl = ldl_p(mem_buf); in superh_cpu_gdb_write_register()
|
H A D | op_helper.c | 190 int32_t res, macl = env->macl; in helper_macw() local 192 if (sadd32_overflow(macl, mul, &res)) { in helper_macw() 193 res = macl < 0 ? INT32_MIN : INT32_MAX; in helper_macw() 197 env->macl = res; in helper_macw()
|
H A D | cpu.h | 167 uint32_t mach, macl; member 169 uint32_t macl, mach;
|
H A D | helper.h | 14 DEF_HELPER_3(macl, void, env, s32, s32)
|
H A D | translate.c | 130 offsetof(CPUSH4State, macl), "MACL"); in sh4_translate_init() 1440 LDST(macl, 0x401a, 0x4016, 0x001a, 0x4012, {}) in _decode_opc()
|
/qemu/linux-user/sh4/ |
H A D | target_syscall.h | 11 unsigned long macl; member
|
H A D | signal.c | 133 COPY(macl); COPY(pr); in setup_sigcontext() 161 COPY(macl); COPY(pr); in restore_sigcontext()
|
/qemu/linux-user/ |
H A D | elfload.c | 1633 (*regs)[TARGET_REG_MACL] = tswapreg(env->macl); in elf_core_copy_regs()
|