HomeSort by relevance Sort by last modified time
    Searched refs:BOp (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/Analysis/
PHITransAddr.cpp 271 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(LHS))
272 if (BOp->getOpcode() == Instruction::Add)
273 if (ConstantInt *CI = dyn_cast<ConstantInt>(BOp->getOperand(1))) {
274 LHS = BOp->getOperand(0);
279 if (std::count(InstInputs.begin(), InstInputs.end(), BOp)) {
280 RemoveInstInputs(BOp, InstInputs);
BasicAliasAnalysis.cpp 190 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(V)) {
191 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(BOp->getOperand(1))) {
192 switch (BOp->getOpcode()) {
197 if (!MaskedValueIsZero(BOp->getOperand(0), RHSC->getValue(), &TD))
201 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
206 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
212 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 793 BinaryOperator *BOp = dyn_cast<BinaryOperator>(Ops[i].Op);
794 if (BOp == 0 || BOp->getOpcode() != Instruction::Mul || !BOp->use_empty())
799 FindSingleUseMultiplyFactors(BOp, Factors, Ops, true);
839 BinaryOperator *BOp = dyn_cast<BinaryOperator>(Ops[i].Op);
840 if (BOp == 0 || BOp->getOpcode() != Instruction::Mul || !BOp->use_empty())
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 138 milliseconds