Lines Matching refs:vregA

1975     uint32_t vregA = inst->VRegA_12x(inst_data);  in ExecuteGotoImpl()  local
1976 shadow_frame.SetVReg(vregA, in ExecuteGotoImpl()
1977 SafeAdd(shadow_frame.GetVReg(vregA), in ExecuteGotoImpl()
1984 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
1985 shadow_frame.SetVReg(vregA, in ExecuteGotoImpl()
1986 SafeSub(shadow_frame.GetVReg(vregA), in ExecuteGotoImpl()
1993 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
1994 shadow_frame.SetVReg(vregA, in ExecuteGotoImpl()
1995 SafeMul(shadow_frame.GetVReg(vregA), in ExecuteGotoImpl()
2002 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2003 bool success = DoIntDivide(shadow_frame, vregA, shadow_frame.GetVReg(vregA), in ExecuteGotoImpl()
2010 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2011 bool success = DoIntRemainder(shadow_frame, vregA, shadow_frame.GetVReg(vregA), in ExecuteGotoImpl()
2018 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2019 shadow_frame.SetVReg(vregA, in ExecuteGotoImpl()
2020 shadow_frame.GetVReg(vregA) << in ExecuteGotoImpl()
2027 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2028 shadow_frame.SetVReg(vregA, in ExecuteGotoImpl()
2029 shadow_frame.GetVReg(vregA) >> in ExecuteGotoImpl()
2036 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2037 shadow_frame.SetVReg(vregA, in ExecuteGotoImpl()
2038 static_cast<uint32_t>(shadow_frame.GetVReg(vregA)) >> in ExecuteGotoImpl()
2045 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2046 shadow_frame.SetVReg(vregA, in ExecuteGotoImpl()
2047 shadow_frame.GetVReg(vregA) & in ExecuteGotoImpl()
2054 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2055 shadow_frame.SetVReg(vregA, in ExecuteGotoImpl()
2056 shadow_frame.GetVReg(vregA) | in ExecuteGotoImpl()
2063 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2064 shadow_frame.SetVReg(vregA, in ExecuteGotoImpl()
2065 shadow_frame.GetVReg(vregA) ^ in ExecuteGotoImpl()
2072 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2073 shadow_frame.SetVRegLong(vregA, in ExecuteGotoImpl()
2074 SafeAdd(shadow_frame.GetVRegLong(vregA), in ExecuteGotoImpl()
2081 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2082 shadow_frame.SetVRegLong(vregA, in ExecuteGotoImpl()
2083 SafeSub(shadow_frame.GetVRegLong(vregA), in ExecuteGotoImpl()
2090 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2091 shadow_frame.SetVRegLong(vregA, in ExecuteGotoImpl()
2092 SafeMul(shadow_frame.GetVRegLong(vregA), in ExecuteGotoImpl()
2099 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2100 bool success = DoLongDivide(shadow_frame, vregA, shadow_frame.GetVRegLong(vregA), in ExecuteGotoImpl()
2107 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2108 bool success = DoLongRemainder(shadow_frame, vregA, shadow_frame.GetVRegLong(vregA), in ExecuteGotoImpl()
2115 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2116 shadow_frame.SetVRegLong(vregA, in ExecuteGotoImpl()
2117 shadow_frame.GetVRegLong(vregA) & in ExecuteGotoImpl()
2124 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2125 shadow_frame.SetVRegLong(vregA, in ExecuteGotoImpl()
2126 shadow_frame.GetVRegLong(vregA) | in ExecuteGotoImpl()
2133 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2134 shadow_frame.SetVRegLong(vregA, in ExecuteGotoImpl()
2135 shadow_frame.GetVRegLong(vregA) ^ in ExecuteGotoImpl()
2142 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2143 shadow_frame.SetVRegLong(vregA, in ExecuteGotoImpl()
2144 shadow_frame.GetVRegLong(vregA) << in ExecuteGotoImpl()
2151 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2152 shadow_frame.SetVRegLong(vregA, in ExecuteGotoImpl()
2153 shadow_frame.GetVRegLong(vregA) >> in ExecuteGotoImpl()
2160 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2161 shadow_frame.SetVRegLong(vregA, in ExecuteGotoImpl()
2162 static_cast<uint64_t>(shadow_frame.GetVRegLong(vregA)) >> in ExecuteGotoImpl()
2169 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2170 shadow_frame.SetVRegFloat(vregA, in ExecuteGotoImpl()
2171 shadow_frame.GetVRegFloat(vregA) + in ExecuteGotoImpl()
2178 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2179 shadow_frame.SetVRegFloat(vregA, in ExecuteGotoImpl()
2180 shadow_frame.GetVRegFloat(vregA) - in ExecuteGotoImpl()
2187 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2188 shadow_frame.SetVRegFloat(vregA, in ExecuteGotoImpl()
2189 shadow_frame.GetVRegFloat(vregA) * in ExecuteGotoImpl()
2196 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2197 shadow_frame.SetVRegFloat(vregA, in ExecuteGotoImpl()
2198 shadow_frame.GetVRegFloat(vregA) / in ExecuteGotoImpl()
2205 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2206 shadow_frame.SetVRegFloat(vregA, in ExecuteGotoImpl()
2207 fmodf(shadow_frame.GetVRegFloat(vregA), in ExecuteGotoImpl()
2214 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2215 shadow_frame.SetVRegDouble(vregA, in ExecuteGotoImpl()
2216 shadow_frame.GetVRegDouble(vregA) + in ExecuteGotoImpl()
2223 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2224 shadow_frame.SetVRegDouble(vregA, in ExecuteGotoImpl()
2225 shadow_frame.GetVRegDouble(vregA) - in ExecuteGotoImpl()
2232 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2233 shadow_frame.SetVRegDouble(vregA, in ExecuteGotoImpl()
2234 shadow_frame.GetVRegDouble(vregA) * in ExecuteGotoImpl()
2241 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2242 shadow_frame.SetVRegDouble(vregA, in ExecuteGotoImpl()
2243 shadow_frame.GetVRegDouble(vregA) / in ExecuteGotoImpl()
2250 uint32_t vregA = inst->VRegA_12x(inst_data); in ExecuteGotoImpl() local
2251 shadow_frame.SetVRegDouble(vregA, in ExecuteGotoImpl()
2252 fmod(shadow_frame.GetVRegDouble(vregA), in ExecuteGotoImpl()