Searched refs:CastOpcode (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1560 auto CastOpcode = Cast0->getOpcode();
1561 if (CastOpcode != Cast1->getOpcode() || SrcTy != Cast1->getSrcTy())
1571 return CastInst::Create(CastOpcode, NewOp, DestTy);
1586 return CastInst::Create(CastOpcode, Res, DestTy);
1596 return CastInst::Create(CastOpcode, R, DestTy);
H A DInstructionCombining.cpp276 auto CastOpcode = Cast->getOpcode();
277 if (CastOpcode != Instruction::ZExt)
301 Constant *CastC2 = ConstantExpr::getCast(CastOpcode, C2, DestTy);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp9432 unsigned CastOpcode = Cast->getOpcode(); local
9433 assert((CastOpcode == ISD::SIGN_EXTEND || CastOpcode == ISD::ZERO_EXTEND ||
9434 CastOpcode == ISD::TRUNCATE || CastOpcode == ISD::FP_EXTEND ||
9435 CastOpcode == ISD::FP_ROUND) &&
9461 if (CastOpcode == ISD::FP_ROUND) {
9463 CastA = DAG.getNode(CastOpcode, DL, VT, A, Cast->getOperand(1));
9464 CastB = DAG.getNode(CastOpcode, DL, VT, B, Cast->getOperand(1));
9466 CastA = DAG.getNode(CastOpcode, D
[all...]

Completed in 196 milliseconds