Home
last modified time | relevance | path

Searched refs:DestIsHigh (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZPostRewrite.cpp83 bool DestIsHigh = SystemZ::isHighReg(DestReg); in selectLOCRMux() local
86 if (!DestIsHigh && !SrcIsHigh) in selectLOCRMux()
88 else if (DestIsHigh && SrcIsHigh) in selectLOCRMux()
107 bool DestIsHigh = SystemZ::isHighReg(DestReg); in selectSELRMux() local
131 if (DestIsHigh != Src1IsHigh) { in selectSELRMux()
137 Src1IsHigh = DestIsHigh; in selectSELRMux()
138 } else if (DestIsHigh != Src2IsHigh) { in selectSELRMux()
144 Src2IsHigh = DestIsHigh; in selectSELRMux()
158 if (!DestIsHigh && !Src1IsHigh && !Src2IsHigh) in selectSELRMux()
160 else if (DestIsHigh && Src1IsHigh && Src2IsHigh) in selectSELRMux()
H A DSystemZInstrInfo.cpp176 bool DestIsHigh = SystemZ::isHighReg(DestReg); in expandRIEPseudo() local
178 if (!DestIsHigh && !SrcIsHigh) in expandRIEPseudo()
187 MI.setDesc(get(DestIsHigh ? HighOpcode : LowOpcode)); in expandRIEPseudo()
273 bool DestIsHigh = SystemZ::isHighReg(DestReg); in emitGRX32Move() local
275 if (DestIsHigh && SrcIsHigh) in emitGRX32Move()
277 else if (DestIsHigh && !SrcIsHigh) in emitGRX32Move()
279 else if (!DestIsHigh && SrcIsHigh) in emitGRX32Move()
285 unsigned Rotate = (DestIsHigh != SrcIsHigh ? 32 : 0); in emitGRX32Move()
1791 bool DestIsHigh = SystemZ::isHighReg(MI.getOperand(0).getReg()); in expandPostRAPseudo() local
1793 if (SrcIsHigh == DestIsHigh) in expandPostRAPseudo()
[all …]