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

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 1632 auto CastOpcode = Cast0->getOpcode();
1633 if (CastOpcode != Cast1->getOpcode() || SrcTy != Cast1->getSrcTy())
1643 return CastInst::Create(CastOpcode, NewOp, DestTy);
1658 return CastInst::Create(CastOpcode, Res, DestTy);
1668 return CastInst::Create(CastOpcode, R, DestTy);
InstructionCombining.cpp 317 auto CastOpcode = Cast->getOpcode();
318 if (CastOpcode != Instruction::ZExt)
342 Constant *CastC2 = ConstantExpr::getCast(CastOpcode, C2, DestTy);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 10597 unsigned CastOpcode = Cast->getOpcode();
10598 assert((CastOpcode == ISD::SIGN_EXTEND || CastOpcode == ISD::ZERO_EXTEND ||
10599 CastOpcode == ISD::TRUNCATE || CastOpcode == ISD::FP_EXTEND ||
10600 CastOpcode == ISD::FP_ROUND) &&
10626 if (CastOpcode == ISD::FP_ROUND) {
10628 CastA = DAG.getNode(CastOpcode, DL, VT, A, Cast->getOperand(1));
10629 CastB = DAG.getNode(CastOpcode, DL, VT, B, Cast->getOperand(1));
10631 CastA = DAG.getNode(CastOpcode, DL, VT, A)
    [all...]

Completed in 30 milliseconds