Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/lib/Transforms/Scalar/
HDReassociate.cpp1508 Value *TheOp = Ops[i].Op; in OptimizeAdd() local
1512 if (i+1 != Ops.size() && Ops[i+1].Op == TheOp) { in OptimizeAdd()
1518 } while (i != Ops.size() && Ops[i].Op == TheOp); in OptimizeAdd()
1520 DEBUG(dbgs() << "\nFACTORING [" << NumFound << "]: " << *TheOp << '\n'); in OptimizeAdd()
1524 Type *Ty = TheOp->getType(); in OptimizeAdd()
1527 Instruction *Mul = CreateMul(TheOp, C, "factor", I, I); in OptimizeAdd()
1549 if (!BinaryOperator::isNeg(TheOp) && !BinaryOperator::isFNeg(TheOp) && in OptimizeAdd()
1550 !BinaryOperator::isNot(TheOp)) in OptimizeAdd()
1554 if (BinaryOperator::isNeg(TheOp) || BinaryOperator::isFNeg(TheOp)) in OptimizeAdd()
1555 X = BinaryOperator::getNegArgument(TheOp); in OptimizeAdd()
[all …]
/NextBSD/contrib/llvm/utils/TableGen/
HDAsmWriterEmitter.cpp69 AsmWriterOperand TheOp = OpsToPrint.back().second; in PrintCases() local
75 if (OpsToPrint[i-1].second == TheOp) { in PrintCases()
81 O << TheOp.getCode(); in PrintCases()