Searched refs:OpA (Results 1 – 5 of 5) sorted by relevance
54 const MachineOperand &OpA = A->getOperand(1), &OpB = B->getOperand(1); in isSameScalarConst() local55 if ((OpA.isImm() && OpB.isImm() && OpA.getImm() == OpB.getImm()) || in isSameScalarConst()56 (OpA.isFPImm() && OpB.isFPImm() && OpA.getFPImm() == OpB.getFPImm()) || in isSameScalarConst()57 (OpA.isGlobal() && OpB.isGlobal() && OpA.getGlobal() == OpB.getGlobal())) in isSameScalarConst()
108 const auto &OpA = Operations[{A.getFrom(), A.getTo()}];110 return ReverseResultOrder ? OpA < OpB : OpA > OpB;
1189 Instruction *OpA = dyn_cast<Instruction>(GTIA.getOperand()); in getConstantOffsetComplexAddrs() local1191 if (!OpA || !OpB || OpA->getOpcode() != OpB->getOpcode() || in getConstantOffsetComplexAddrs()1192 OpA->getType() != OpB->getType()) in getConstantOffsetComplexAddrs()1198 if (!isa<SExtInst>(OpA) && !isa<ZExtInst>(OpA)) in getConstantOffsetComplexAddrs()1201 bool Signed = isa<SExtInst>(OpA); in getConstantOffsetComplexAddrs()1204 Value *ValA = OpA->getOperand(0); in getConstantOffsetComplexAddrs()1236 OpA = dyn_cast<Instruction>(ValA); in getConstantOffsetComplexAddrs()1237 if (!Safe && OpA && OpA->getOpcode() == Instruction::Add && in getConstantOffsetComplexAddrs()1238 OpB->getOpcode() == Instruction::Add && checkNoWrapFlags(OpA, Signed) && in getConstantOffsetComplexAddrs()1246 Safe = checkIfSafeAddSequence(IdxDiff, OpA, MatchingOpIdxA, OpB, in getConstantOffsetComplexAddrs()
1093 MachineOperand &OpA = Prev.getOperand(OperandIndices[1]); in reassociateOps() local1099 Register RegA = OpA.getReg(); in reassociateOps()1123 bool KillA = OpA.isKill(); in reassociateOps()
800 } else if (auto *OpA = dyn_cast<Argument>(Op)) { in deduceOperandElementType() local801 B.SetInsertPointPastAllocas(OpA->getParent()); in deduceOperandElementType()