Home | History | Annotate | Download | only in Mips

Lines Matching refs:StoreVal

1146   unsigned StoreVal = RegInfo.createVirtualRegister(RC);
1172 // <binop> storeval, oldval, incr
1173 // sc success, storeval, 0(ptr)
1179 // nor storeval, $0, andres
1181 BuildMI(BB, DL, TII->get(NOR), StoreVal).addReg(ZERO).addReg(AndRes);
1183 // <binop> storeval, oldval, incr
1184 BuildMI(BB, DL, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr);
1186 StoreVal = Incr;
1188 BuildMI(BB, DL, TII->get(SC), Success).addReg(StoreVal).addReg(Ptr).addImm(0);
1258 unsigned StoreVal = RegInfo.createVirtualRegister(RC);
1332 // or storeval,maskedoldval0,newval
1333 // sc success,storeval,0(alignedaddr)
1341 // or storeval,maskedoldval0,newval
1342 // sc success,storeval,0(alignedaddr)
1367 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal)
1370 .addReg(StoreVal).addReg(AlignedAddr).addImm(0);
1514 unsigned StoreVal = RegInfo.createVirtualRegister(RC);
1609 // or storeval,maskedoldval1,shiftednewval
1610 // sc success,storeval,0(alignedaddr)
1615 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal)
1618 .addReg(StoreVal).addReg(AlignedAddr).addImm(0);