Lines Matching refs:OperandIndices

1060     std::array<unsigned, 5> &OperandIndices) const {  in getReassociateOperandIndices()
1063 OperandIndices = {1, 1, 1, 2, 2}; in getReassociateOperandIndices()
1066 OperandIndices = {2, 1, 2, 2, 1}; in getReassociateOperandIndices()
1069 OperandIndices = {1, 2, 1, 1, 2}; in getReassociateOperandIndices()
1072 OperandIndices = {2, 2, 2, 1, 1}; in getReassociateOperandIndices()
1085 ArrayRef<unsigned> OperandIndices, in reassociateOps() argument
1093 MachineOperand &OpA = Prev.getOperand(OperandIndices[1]); in reassociateOps()
1094 MachineOperand &OpB = Root.getOperand(OperandIndices[2]); in reassociateOps()
1095 MachineOperand &OpX = Prev.getOperand(OperandIndices[3]); in reassociateOps()
1096 MachineOperand &OpY = Root.getOperand(OperandIndices[4]); in reassociateOps()
1139 PrevFirstOpIdx = OperandIndices[1]; in reassociateOps()
1140 PrevSecondOpIdx = OperandIndices[3]; in reassociateOps()
1141 RootFirstOpIdx = OperandIndices[2]; in reassociateOps()
1142 RootSecondOpIdx = OperandIndices[4]; in reassociateOps()
1145 PrevFirstOpIdx = OperandIndices[1]; in reassociateOps()
1146 PrevSecondOpIdx = OperandIndices[3]; in reassociateOps()
1147 RootFirstOpIdx = OperandIndices[4]; in reassociateOps()
1148 RootSecondOpIdx = OperandIndices[2]; in reassociateOps()
1151 PrevFirstOpIdx = OperandIndices[3]; in reassociateOps()
1152 PrevSecondOpIdx = OperandIndices[1]; in reassociateOps()
1153 RootFirstOpIdx = OperandIndices[2]; in reassociateOps()
1154 RootSecondOpIdx = OperandIndices[4]; in reassociateOps()
1157 PrevFirstOpIdx = OperandIndices[3]; in reassociateOps()
1158 PrevSecondOpIdx = OperandIndices[1]; in reassociateOps()
1159 RootFirstOpIdx = OperandIndices[4]; in reassociateOps()
1160 RootSecondOpIdx = OperandIndices[2]; in reassociateOps()
1255 std::array<unsigned, 5> OperandIndices; in genAlternativeCodeSequence() local
1256 getReassociateOperandIndices(Root, Pattern, OperandIndices); in genAlternativeCodeSequence()
1258 MRI.getUniqueVRegDef(Root.getOperand(OperandIndices[0]).getReg()); in genAlternativeCodeSequence()
1264 reassociateOps(Root, *Prev, Pattern, InsInstrs, DelInstrs, OperandIndices, in genAlternativeCodeSequence()