Searched refs:CastOpc (Results 1 – 6 of 6) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | LegalizationArtifactCombiner.h | 359 const unsigned CastOpc = CastMI.getOpcode(); in tryFoldUnmergeCast() local 361 if (!isArtifactCast(CastOpc)) in tryFoldUnmergeCast() 374 if (CastOpc == TargetOpcode::G_TRUNC) { in tryFoldUnmergeCast()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| H A D | InstructionSimplify.h | 255 Value *SimplifyCastInst(unsigned CastOpc, Value *Op, Type *Ty,
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstructionCombining.cpp | 1779 CastInst::CastOps CastOpc = IsSext ? Instruction::SExt : Instruction::ZExt; in narrowMathIfNoOverflow() local 1782 cast<Operator>(Op1)->getOpcode() == CastOpc && in narrowMathIfNoOverflow() 1790 if (ConstantExpr::getCast(CastOpc, NarrowC, BO.getType()) != WideC) in narrowMathIfNoOverflow() 1813 return CastInst::Create(CastOpc, NarrowBO, BO.getType()); in narrowMathIfNoOverflow()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | InstructionSimplify.cpp | 4549 static Value *SimplifyCastInst(unsigned CastOpc, Value *Op, in SimplifyCastInst() argument 4552 return ConstantFoldCastOperand(CastOpc, C, Ty, Q.DL); in SimplifyCastInst() 4561 auto SecondOp = static_cast<Instruction::CastOps>(CastOpc); in SimplifyCastInst() 4576 if (CastOpc == Instruction::BitCast) in SimplifyCastInst() 4583 Value *llvm::SimplifyCastInst(unsigned CastOpc, Value *Op, Type *Ty, in SimplifyCastInst() argument 4585 return ::SimplifyCastInst(CastOpc, Op, Ty, Q, RecursionLimit); in SimplifyCastInst()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 3365 unsigned CastOpc = IsSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; in LowerVectorINT_TO_FP() local 3367 In = DAG.getNode(CastOpc, dl, CastVT, In); in LowerVectorINT_TO_FP() 3387 unsigned CastOpc = IsSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; in LowerVectorINT_TO_FP() local 3389 In = DAG.getNode(CastOpc, dl, CastVT, In); in LowerVectorINT_TO_FP()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 5689 unsigned CastOpc; in LowerVectorINT_TO_FP() local 5694 CastOpc = ISD::SIGN_EXTEND; in LowerVectorINT_TO_FP() 5698 CastOpc = ISD::ZERO_EXTEND; in LowerVectorINT_TO_FP() 5703 Op = DAG.getNode(CastOpc, dl, DestVecType, Op.getOperand(0)); in LowerVectorINT_TO_FP()
|