Lines Matching defs:reg_ofs
7006 * Load the element at @reg + @reg_ofs, sign or zero-extend as needed.
7008 typedef target_ulong zreg_off_fn(void *reg, intptr_t reg_ofs);
7010 static target_ulong off_zsu_s(void *reg, intptr_t reg_ofs)
7012 return *(uint32_t *)(reg + H1_4(reg_ofs));
7015 static target_ulong off_zss_s(void *reg, intptr_t reg_ofs)
7017 return *(int32_t *)(reg + H1_4(reg_ofs));
7020 static target_ulong off_zsu_d(void *reg, intptr_t reg_ofs)
7022 return (uint32_t)*(uint64_t *)(reg + reg_ofs);
7025 static target_ulong off_zss_d(void *reg, intptr_t reg_ofs)
7027 return (int32_t)*(uint64_t *)(reg + reg_ofs);
7030 static target_ulong off_zd_d(void *reg, intptr_t reg_ofs)
7032 return *(uint64_t *)(reg + reg_ofs);