Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp1122 Instruction *OtherInstrA = dyn_cast<Instruction>(OtherOperandA); in checkIfSafeAddSequence() local
1135 if (OtherInstrA && OtherInstrA->getOpcode() == Instruction::Add && in checkIfSafeAddSequence()
1136 checkNoWrapFlags(OtherInstrA, Signed) && in checkIfSafeAddSequence()
1137 isa<ConstantInt>(OtherInstrA->getOperand(1))) { in checkIfSafeAddSequence()
1139 cast<ConstantInt>(OtherInstrA->getOperand(1))->getSExtValue(); in checkIfSafeAddSequence()
1140 if (OtherInstrA->getOperand(0) == OtherOperandB && in checkIfSafeAddSequence()
1146 if (OtherInstrA && OtherInstrB && in checkIfSafeAddSequence()
1147 OtherInstrA->getOpcode() == Instruction::Add && in checkIfSafeAddSequence()
1149 checkNoWrapFlags(OtherInstrA, Signed) && in checkIfSafeAddSequence()
1151 isa<ConstantInt>(OtherInstrA->getOperand(1)) && in checkIfSafeAddSequence()
[all …]