Lines Matching refs:RCSize
5967 unsigned RCSize = TRI.getRegSizeInBits(*RC) / 8; in foldMemoryOperandCustom() local
5968 if ((Size == 0 || Size >= 16) && RCSize >= 16 && Alignment >= Align(4)) { in foldMemoryOperandCustom()
5991 unsigned RCSize = TRI.getRegSizeInBits(*RC) / 8; in foldMemoryOperandCustom() local
5992 if ((Size == 0 || Size >= 16) && RCSize >= 16 && Alignment >= Align(8)) { in foldMemoryOperandCustom()
6010 unsigned RCSize = TRI.getRegSizeInBits(*RC) / 8; in foldMemoryOperandCustom() local
6011 if ((Size == 0 || Size >= 16) && RCSize >= 16 && Alignment < Align(16)) { in foldMemoryOperandCustom()
6126 unsigned RCSize = TRI.getRegSizeInBits(*RC) / 8; in foldMemoryOperandImpl() local
6130 if (FoldedLoad && Size < RCSize) { in foldMemoryOperandImpl()
6134 if (Opcode != X86::MOV64rm || RCSize != 8 || Size != 4) in foldMemoryOperandImpl()
6144 if (FoldedStore && Size != RCSize) in foldMemoryOperandImpl()
6262 unsigned RCSize = 0; in foldMemoryOperandImpl() local
6265 case X86::TEST8rr: NewOpc = X86::CMP8ri; RCSize = 1; break; in foldMemoryOperandImpl()
6266 case X86::TEST16rr: NewOpc = X86::CMP16ri8; RCSize = 2; break; in foldMemoryOperandImpl()
6267 case X86::TEST32rr: NewOpc = X86::CMP32ri8; RCSize = 4; break; in foldMemoryOperandImpl()
6268 case X86::TEST64rr: NewOpc = X86::CMP64ri8; RCSize = 8; break; in foldMemoryOperandImpl()
6272 if (Size < RCSize) in foldMemoryOperandImpl()