Lines Matching defs:Lo32
1026 unsigned Lo32 = Lo_32(Imm);
1122 // If Hi32 is zero and the Lo16(in Lo32) can be presented as a positive 16 bit
1124 // Hi16(in Lo32).
1125 if (LZ == 32 && ((Lo32 & 0x8000) == 0)) {
1127 getI32Imm(Lo32 & 0xffff));
1129 getI32Imm(Lo32 >> 16));
1158 // This may require 2 to 3 instructions, depending on whether Lo32 can be
1160 if (Hi32 == Lo32) {
1162 uint64_t ImmHi16 = (Lo32 >> 16) & 0xffff;
1163 uint64_t ImmLo16 = Lo32 & 0xffff;
1164 if (isInt<16>(Lo32))
1267 unsigned Lo32 = Lo_32(Imm);
1361 if (Hi32 == Lo32) {
1374 CurDAG->getMachineNode(PPC::PLI8, dl, MVT::i64, getI64Imm(Lo32));