Searched refs:BOp (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DPHITransAddr.cpp273 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(LHS))
274 if (BOp->getOpcode() == Instruction::Add)
275 if (ConstantInt *CI = dyn_cast<ConstantInt>(BOp->getOperand(1))) {
276 LHS = BOp->getOperand(0);
281 if (std::count(InstInputs.begin(), InstInputs.end(), BOp)) {
282 RemoveInstInputs(BOp, InstInputs);
H A DBasicAliasAnalysis.cpp193 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(V)) {
194 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(BOp->getOperand(1))) {
195 switch (BOp->getOpcode()) {
200 if (!MaskedValueIsZero(BOp->getOperand(0), RHSC->getValue(), &TD))
204 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
209 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
215 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp1459 BinaryOperator *BOp = isReassociableOp(Ops[i].Op, Instruction::Mul);
1460 if (!BOp)
1465 FindSingleUseMultiplyFactors(BOp, Factors, Ops);
1505 BinaryOperator *BOp = isReassociableOp(Ops[i].Op, Instruction::Mul);
1506 if (!BOp)
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1384 if (const CmpInst *BOp = dyn_cast<CmpInst>(Cond)) {
1389 (isExportableFromCurrentBlock(BOp->getOperand(0), BB) &&
1390 isExportableFromCurrentBlock(BOp->getOperand(1), BB))) {
1403 CaseBlock CB(Condition, BOp->getOperand(0),
1404 BOp->getOperand(1), NULL, TBB, FBB, CurBB);
1424 const Instruction *BOp = dyn_cast<Instruction>(Cond); local
1425 if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) ||
1426 (unsigned)BOp
[all...]

Completed in 60 milliseconds