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

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 1942 BinaryOperator::BinaryOps BOpc = Opc0;
1953 (Instruction::isIntDivRem(BOpc) || Instruction::isShift(BOpc));
1955 NewC = InstCombiner::getSafeVectorConstantForBinop(BOpc, NewC,
1990 Instruction *NewBO = ConstantsAreOp1 ? BinaryOperator::Create(BOpc, V, NewC) :
1991 BinaryOperator::Create(BOpc, NewC, V);
InstCombineCompares.cpp 1928 auto BOpc = Pred == CmpInst::ICMP_EQ ? Instruction::And : Instruction::Or;
1929 return BinaryOperator::Create(BOpc, CmpP, CmpQ);
1941 auto BOpc = Pred == CmpInst::ICMP_EQ ? Instruction::And : Instruction::Or;
1942 return BinaryOperator::Create(BOpc, Cmp12, Cmp34);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
IRTranslator.cpp 425 Instruction::BinaryOps BOpc = (Instruction::BinaryOps)0;
427 BOpc = match(BOp, m_LogicalAnd(m_Value(BOpOp0), m_Value(BOpOp1)))
433 if (BOpc == Instruction::And)
434 BOpc = Instruction::Or;
435 else if (BOpc == Instruction::Or)
436 BOpc = Instruction::And;
442 bool BOpIsInOrAndTree = BOpc && BOpc == Opc && BOp->hasOneUse();
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp 486 int BOpc = !AFI->isThumbFunction()
502 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB).add(predOps(ARMCC::AL));
504 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB);
519 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB).add(predOps(ARMCC::AL));
521 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonInstrInfo.cpp 590 unsigned BOpc = Hexagon::J2_jump;
618 BuildMI(&MBB, DL, get(BOpc)).addMBB(TBB);
678 BuildMI(&MBB, DL, get(BOpc)).addMBB(FBB);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 2206 Instruction::BinaryOps BOpc = (Instruction::BinaryOps)0;
2208 BOpc = match(BOp, m_LogicalAnd(m_Value(BOpOp0), m_Value(BOpOp1)))
2214 if (BOpc == Instruction::And)
2215 BOpc = Instruction::Or;
2216 else if (BOpc == Instruction::Or)
2217 BOpc = Instruction::And;
2223 bool BOpIsInOrAndTree = BOpc && BOpc == Opc && BOp->hasOneUse();

Completed in 151 milliseconds