Home | History | Annotate | Download | only in optimizing

Lines Matching refs:high

592     // then swap the high 32 bits of the same FPR. mtc1 makes the high 32 bits of an FPR
1275 uint32_t high = High32Bits(value);
1284 if (IsUint<16>(high)) {
1285 if (dst_high != lhs_high || high != 0) {
1286 __ Ori(dst_high, lhs_high, high);
1289 if (high != low) {
1290 __ LoadConst32(TMP, high);
1296 uint32_t high = High32Bits(value);
1305 if (IsUint<16>(high)) {
1306 if (dst_high != lhs_high || high != 0) {
1307 __ Xori(dst_high, lhs_high, high);
1310 if (high != low) {
1311 __ LoadConst32(TMP, high);
1317 uint32_t high = High32Bits(value);
1326 if (IsUint<16>(high)) {
1327 __ Andi(dst_high, lhs_high, high);
1328 } else if (high != 0xFFFFFFFF) {
1329 if (high != low) {
1330 __ LoadConst32(TMP, high);
1343 int32_t high = High32Bits(value);
1356 if (IsInt<16>(high)) {
1357 if (dst_high != lhs_high || high != 0) {
1358 __ Addiu(dst_high, lhs_high, high);
1361 if (high != low) {
1362 __ LoadConst32(TMP, high);