Home | History | Annotate | Download | only in interpreter

Lines Matching refs:vregA

1989         uint4_t vregA = inst->VRegA_12x(inst_data);
1990 shadow_frame.SetVReg(vregA, SafeAdd(shadow_frame.GetVReg(vregA),
1997 uint4_t vregA = inst->VRegA_12x(inst_data);
1998 shadow_frame.SetVReg(vregA,
1999 SafeSub(shadow_frame.GetVReg(vregA),
2006 uint4_t vregA = inst->VRegA_12x(inst_data);
2007 shadow_frame.SetVReg(vregA,
2008 SafeMul(shadow_frame.GetVReg(vregA),
2015 uint4_t vregA = inst->VRegA_12x(inst_data);
2016 bool success = DoIntDivide(shadow_frame, vregA, shadow_frame.GetVReg(vregA),
2023 uint4_t vregA = inst->VRegA_12x(inst_data);
2024 bool success = DoIntRemainder(shadow_frame, vregA, shadow_frame.GetVReg(vregA),
2031 uint4_t vregA = inst->VRegA_12x(inst_data);
2032 shadow_frame.SetVReg(vregA,
2033 shadow_frame.GetVReg(vregA) <<
2040 uint4_t vregA = inst->VRegA_12x(inst_data);
2041 shadow_frame.SetVReg(vregA,
2042 shadow_frame.GetVReg(vregA) >>
2049 uint4_t vregA = inst->VRegA_12x(inst_data);
2050 shadow_frame.SetVReg(vregA,
2051 static_cast<uint32_t>(shadow_frame.GetVReg(vregA)) >>
2058 uint4_t vregA = inst->VRegA_12x(inst_data);
2059 shadow_frame.SetVReg(vregA,
2060 shadow_frame.GetVReg(vregA) &
2067 uint4_t vregA = inst->VRegA_12x(inst_data);
2068 shadow_frame.SetVReg(vregA,
2069 shadow_frame.GetVReg(vregA) |
2076 uint4_t vregA = inst->VRegA_12x(inst_data);
2077 shadow_frame.SetVReg(vregA,
2078 shadow_frame.GetVReg(vregA) ^
2085 uint4_t vregA = inst->VRegA_12x(inst_data);
2086 shadow_frame.SetVRegLong(vregA,
2087 SafeAdd(shadow_frame.GetVRegLong(vregA),
2094 uint4_t vregA = inst->VRegA_12x(inst_data);
2095 shadow_frame.SetVRegLong(vregA,
2096 SafeSub(shadow_frame.GetVRegLong(vregA),
2103 uint4_t vregA = inst->VRegA_12x(inst_data);
2104 shadow_frame.SetVRegLong(vregA,
2105 SafeMul(shadow_frame.GetVRegLong(vregA),
2112 uint4_t vregA = inst->VRegA_12x(inst_data);
2113 DoLongDivide(shadow_frame, vregA, shadow_frame.GetVRegLong(vregA),
2120 uint4_t vregA = inst->VRegA_12x(inst_data);
2121 DoLongRemainder(shadow_frame, vregA, shadow_frame.GetVRegLong(vregA),
2128 uint4_t vregA = inst->VRegA_12x(inst_data);
2129 shadow_frame.SetVRegLong(vregA,
2130 shadow_frame.GetVRegLong(vregA) &
2137 uint4_t vregA = inst->VRegA_12x(inst_data);
2138 shadow_frame.SetVRegLong(vregA,
2139 shadow_frame.GetVRegLong(vregA) |
2146 uint4_t vregA = inst->VRegA_12x(inst_data);
2147 shadow_frame.SetVRegLong(vregA,
2148 shadow_frame.GetVRegLong(vregA) ^
2155 uint4_t vregA = inst->VRegA_12x(inst_data);
2156 shadow_frame.SetVRegLong(vregA,
2157 shadow_frame.GetVRegLong(vregA) <<
2164 uint4_t vregA = inst->VRegA_12x(inst_data);
2165 shadow_frame.SetVRegLong(vregA,
2166 shadow_frame.GetVRegLong(vregA) >>
2173 uint4_t vregA = inst->VRegA_12x(inst_data);
2174 shadow_frame.SetVRegLong(vregA,
2175 static_cast<uint64_t>(shadow_frame.GetVRegLong(vregA)) >>
2182 uint4_t vregA = inst->VRegA_12x(inst_data);
2183 shadow_frame.SetVRegFloat(vregA,
2184 shadow_frame.GetVRegFloat(vregA) +
2191 uint4_t vregA = inst->VRegA_12x(inst_data);
2192 shadow_frame.SetVRegFloat(vregA,
2193 shadow_frame.GetVRegFloat(vregA) -
2200 uint4_t vregA = inst->VRegA_12x(inst_data);
2201 shadow_frame.SetVRegFloat(vregA,
2202 shadow_frame.GetVRegFloat(vregA) *
2209 uint4_t vregA = inst->VRegA_12x(inst_data);
2210 shadow_frame.SetVRegFloat(vregA,
2211 shadow_frame.GetVRegFloat(vregA) /
2218 uint4_t vregA = inst->VRegA_12x(inst_data);
2219 shadow_frame.SetVRegFloat(vregA,
2220 fmodf(shadow_frame.GetVRegFloat(vregA),
2227 uint4_t vregA = inst->VRegA_12x(inst_data);
2228 shadow_frame.SetVRegDouble(vregA,
2229 shadow_frame.GetVRegDouble(vregA) +
2236 uint4_t vregA = inst->VRegA_12x(inst_data);
2237 shadow_frame.SetVRegDouble(vregA,
2238 shadow_frame.GetVRegDouble(vregA) -
2245 uint4_t vregA = inst->VRegA_12x(inst_data);
2246 shadow_frame.SetVRegDouble(vregA,
2247 shadow_frame.GetVRegDouble(vregA) *
2254 uint4_t vregA = inst->VRegA_12x(inst_data);
2255 shadow_frame.SetVRegDouble(vregA,
2256 shadow_frame.GetVRegDouble(vregA) /
2263 uint4_t vregA = inst->VRegA_12x(inst_data);
2264 shadow_frame.SetVRegDouble(vregA,
2265 fmod(shadow_frame.GetVRegDouble(vregA),