Home
last modified time | relevance | path

Searched refs:ZExtInst (Results 1 – 25 of 29) sorted by relevance

12

/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp425 if (ZExtInst *Z = dyn_cast<ZExtInst>(V)) { in dyn_castZExtVal()
495 if (ZExtInst *ZOp0 = dyn_cast<ZExtInst>(Op0)) in visitUDiv()
497 return new ZExtInst(Builder->CreateUDiv(ZOp0->getOperand(0), ZOp1, "div", in visitUDiv()
649 if (ZExtInst *ZOp0 = dyn_cast<ZExtInst>(Op0)) in visitURem()
651 return new ZExtInst(Builder->CreateURem(ZOp0->getOperand(0), ZOp1), in visitURem()
DInstCombineAddSub.cpp110 if (ZExtInst *ZI = dyn_cast<ZExtInst>(LHS)) in visitAdd()
582 if (ZExtInst *ZI = dyn_cast<ZExtInst>(Op1)) in visitSub()
DInstCombineShifts.cpp683 return new ZExtInst(Cmp, II->getType()); in visitLShr()
725 if (ZExtInst *ZI = dyn_cast<ZExtInst>(X)) { in visitAShr()
DInstCombineCasts.cpp339 if ((isa<ZExtInst>(I) || isa<SExtInst>(I)) && in CanEvaluateTruncated()
745 Instruction *InstCombiner::visitZExt(ZExtInst &CI) { in visitZExt()
814 return new ZExtInst(And, CI.getType()); in visitZExt()
1393 return new ZExtInst(P, CI.getType()); in visitPtrToInt()
1717 if (isa<TruncInst>(Src) || isa<ZExtInst>(Src)) { in visitBitCast()
DInstCombineSelect.cpp677 return new ZExtInst(CondVal, SI.getType()); in visitSelectInst()
686 return new ZExtInst(NotCond, SI.getType()); in visitSelectInst()
DInstCombine.h159 Instruction *visitZExt(ZExtInst &CI);
DInstCombineSimplifyDemanded.cpp474 CastInst *NewCast = new ZExtInst(I->getOperand(0), VTy, I->getName()); in SimplifyDemandedUseBits()
DInstCombineCompares.cpp1100 if (ZExtInst *Cast = dyn_cast<ZExtInst>(LHSI->getOperand(0))) { in visitICmpInstWithInstAndIntCst()
/external/llvm/include/llvm/Support/
DInstVisitor.h175 RetTy visitZExtInst(ZExtInst &I) { DELEGATE(CastInst); } in visitZExtInst()
/external/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.h151 void visitZExtInst(ZExtInst &I);
DExecution.cpp1096 void Interpreter::visitZExtInst(ZExtInst &I) { in visitZExtInst()
/external/llvm/lib/VMCore/
DInstructions.cpp1976 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore); in Create()
1999 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd); in Create()
2398 ZExtInst::ZExtInst( in ZExtInst() function in ZExtInst
2404 ZExtInst::ZExtInst( in ZExtInst() function in ZExtInst
3082 ZExtInst *ZExtInst::clone_impl() const { in clone_impl()
3083 return new ZExtInst(getOperand(0), getType()); in clone_impl()
DVerifier.cpp247 void visitZExtInst(ZExtInst &I);
855 void Verifier::visitZExtInst(ZExtInst &I) { in visitZExtInst()
/external/llvm/lib/Transforms/Utils/
DLocal.cpp791 if (ZExtInst *ZExt = dyn_cast<ZExtInst>(SI->getOperand(0))) in ConvertDebugDeclareToDebugValue()
/external/llvm/include/llvm/
DInstruction.def143 HANDLE_CAST_INST(31, ZExt , ZExtInst ) // Zero extend integers
DInstructions.h2574 class ZExtInst : public CastInst {
2577 virtual ZExtInst *clone_impl() const;
2581 ZExtInst(
2589 ZExtInst(
2597 static inline bool classof(const ZExtInst *) { return true; }
/external/llvm/lib/Transforms/Scalar/
DCodeGenPrepare.cpp984 if (isa<ZExtInst>(I)) in MoveExtToFormExtLoad()
1103 if (isa<ZExtInst>(I) || isa<SExtInst>(I)) { in OptimizeInst()
DScalarReplAggregates.cpp1155 if (ZExtInst *ZExt = dyn_cast<ZExtInst>(SI->getOperand(0))) in updateDebugInfo()
2433 SrcField = new ZExtInst(SrcField, ResultVal->getType(), "", LI); in RewriteLoadUserOfWholeAlloca()
/external/llvm/lib/Analysis/
DValueTracking.cpp734 if (ZExtInst *ZI = dyn_cast<ZExtInst>(V)) in isPowerOfTwo()
781 if (isa<SExtInst>(V) || isa<ZExtInst>(V)) in isKnownNonZero()
DInstructionSimplify.cpp1618 if (isa<ZExtInst>(LHS)) { in SimplifyICmpInst()
1621 if (ZExtInst *RI = dyn_cast<ZExtInst>(RHS)) { in SimplifyICmpInst()
DBasicAliasAnalysis.cpp223 (isa<ZExtInst>(V) && Extension != EK_SignExt)) { in GetLinearExpression()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h76 class ZExtInst; variable
/external/clang/lib/CodeGen/
DCodeGenFunction.cpp1003 if (!isa<llvm::ZExtInst>(value)) return PeepholeProtection(); in protectFromPeepholes()
DCGExprScalar.cpp131 if (llvm::ZExtInst *ZI = dyn_cast<llvm::ZExtInst>(V)) { in EmitIntToBoolConversion()
/external/llvm/include/llvm-c/
DCore.h488 macro(ZExtInst) \

12