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 272 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(LHS))
273 if (BOp->getOpcode() == Instruction::Add)
274 if (ConstantInt *CI = dyn_cast<ConstantInt>(BOp->getOperand(1))) {
275 LHS = BOp->getOperand(0);
280 if (std::count(InstInputs.begin(), InstInputs.end(), BOp)) {
281 RemoveInstInputs(BOp, InstInputs);
BasicAliasAnalysis.cpp 189 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(V)) {
190 if (ConstantInt *RHSC = dyn_cast<ConstantInt>(BOp->getOperand(1))) {
191 switch (BOp->getOpcode()) {
196 if (!MaskedValueIsZero(BOp->getOperand(0), RHSC->getValue(), &TD))
200 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
205 V = GetLinearExpression(BOp->getOperand(0), Scale, Offset, Extension,
211 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 156 milliseconds