HomeSort by: relevance | last modified time | path
    Searched refs:NewBO (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SeparateConstOffsetFromGEP.cpp 705 BinaryOperator *NewBO = nullptr;
707 NewBO = BinaryOperator::Create(BO->getOpcode(), NextInChain, TheOther,
710 NewBO = BinaryOperator::Create(BO->getOpcode(), TheOther, NextInChain,
713 return UserChain[ChainIndex] = NewBO;
758 BinaryOperator *NewBO;
760 NewBO = BinaryOperator::Create(NewOp, NextInChain, TheOther, "", IP);
762 NewBO = BinaryOperator::Create(NewOp, TheOther, NextInChain, "", IP);
764 NewBO->takeName(BO);
765 return NewBO;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 1832 Instruction *NewBO = BinaryOperator::Create(BOpcode, X, NewC);
1833 NewBO->copyIRFlags(BO);
1839 NewBO->dropPoisonGeneratingFlags();
1840 return NewBO;
1990 Instruction *NewBO = ConstantsAreOp1 ? BinaryOperator::Create(BOpc, V, NewC) :
1998 NewBO->copyIRFlags(B0);
1999 NewBO->andIRFlags(B1);
2001 NewBO->setHasNoSignedWrap(false);
2003 NewBO->dropPoisonGeneratingFlags();
2004 return NewBO;
    [all...]
InstructionCombining.cpp 497 BinaryOperator *NewBO = (IsNUW && Opcode == Instruction::Add) ?
501 if (isa<FPMathOperator>(NewBO)) {
505 NewBO->setFastMathFlags(Flags);
507 InsertNewInstWith(NewBO, I);
508 NewBO->takeName(Op1);
509 replaceOperand(I, 0, NewBO);
1619 Instruction *NewBO = BinaryOperator::Create(Opcode, V1, V2);
1620 NewBO->copyIRFlags(&Inst);
1621 return NewBO;
1741 Value *NewBO = Builder.CreateBinOp(Opcode, X, Y)
    [all...]
InstCombineSelect.cpp 406 BinaryOperator *NewBO = BinaryOperator::Create(BO->getOpcode(), Op0, Op1);
407 NewBO->copyIRFlags(TI);
408 NewBO->andIRFlags(FI);
409 return NewBO;
InstCombineAndOrXor.cpp 1776 Value *NewBO = Opc == Instruction::Sub ? Builder.CreateBinOp(Opc, NewC, X)
1778 return new ZExtInst(Builder.CreateAnd(NewBO, X), Ty);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ScalarEvolution.cpp 6554 auto NewBO = MatchBinaryOp(BO->LHS, DT);
6555 if (!NewBO || (NewBO->Opcode != Instruction::Add &&
6556 NewBO->Opcode != Instruction::Sub)) {
6560 BO = NewBO;
6584 auto NewBO = MatchBinaryOp(BO->LHS, DT);
6585 if (!NewBO || NewBO->Opcode != Instruction::Mul) {
6589 BO = NewBO;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 20956 SDValue NewBO = DAG.getNode(N0.getOpcode(), DL, EltVT, ExtL, ExtR,
20958 SDValue Insert = DAG.getNode(ISD::SCALAR_TO_VECTOR, DL, VT, NewBO);

Completed in 47 milliseconds