Searched refs:CastOpc (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DInstructionSimplify.h229 Value *SimplifyCastInst(unsigned CastOpc, Value *Op, Type *Ty,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1615 CastInst::CastOps CastOpc = IsSext ? Instruction::SExt : Instruction::ZExt;
1618 cast<Operator>(Op1)->getOpcode() == CastOpc &&
1626 if (ConstantExpr::getCast(CastOpc, NarrowC, BO.getType()) != WideC)
1649 return CastInst::Create(CastOpc, NarrowBO, BO.getType());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp4329 static Value *SimplifyCastInst(unsigned CastOpc, Value *Op, argument
4332 return ConstantFoldCastOperand(CastOpc, C, Ty, Q.DL);
4341 auto SecondOp = static_cast<Instruction::CastOps>(CastOpc);
4356 if (CastOpc == Instruction::BitCast)
4363 Value *llvm::SimplifyCastInst(unsigned CastOpc, Value *Op, Type *Ty, argument
4365 return ::SimplifyCastInst(CastOpc, Op, Ty, Q, RecursionLimit);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp5463 unsigned CastOpc; local
5468 CastOpc = ISD::SIGN_EXTEND;
5472 CastOpc = ISD::ZERO_EXTEND;
5477 Op = DAG.getNode(CastOpc, dl, DestVecType, Op.getOperand(0));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp2640 unsigned CastOpc = local
2643 In = DAG.getNode(CastOpc, dl, CastVT, In);

Completed in 388 milliseconds