/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 425 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()
|
D | InstCombineAddSub.cpp | 110 if (ZExtInst *ZI = dyn_cast<ZExtInst>(LHS)) in visitAdd() 582 if (ZExtInst *ZI = dyn_cast<ZExtInst>(Op1)) in visitSub()
|
D | InstCombineShifts.cpp | 683 return new ZExtInst(Cmp, II->getType()); in visitLShr() 725 if (ZExtInst *ZI = dyn_cast<ZExtInst>(X)) { in visitAShr()
|
D | InstCombineCasts.cpp | 339 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()
|
D | InstCombineSelect.cpp | 677 return new ZExtInst(CondVal, SI.getType()); in visitSelectInst() 686 return new ZExtInst(NotCond, SI.getType()); in visitSelectInst()
|
D | InstCombine.h | 159 Instruction *visitZExt(ZExtInst &CI);
|
D | InstCombineSimplifyDemanded.cpp | 474 CastInst *NewCast = new ZExtInst(I->getOperand(0), VTy, I->getName()); in SimplifyDemandedUseBits()
|
D | InstCombineCompares.cpp | 1100 if (ZExtInst *Cast = dyn_cast<ZExtInst>(LHSI->getOperand(0))) { in visitICmpInstWithInstAndIntCst()
|
/external/llvm/include/llvm/Support/ |
D | InstVisitor.h | 175 RetTy visitZExtInst(ZExtInst &I) { DELEGATE(CastInst); } in visitZExtInst()
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Interpreter.h | 151 void visitZExtInst(ZExtInst &I);
|
D | Execution.cpp | 1096 void Interpreter::visitZExtInst(ZExtInst &I) { in visitZExtInst()
|
/external/llvm/lib/VMCore/ |
D | Instructions.cpp | 1976 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()
|
D | Verifier.cpp | 247 void visitZExtInst(ZExtInst &I); 855 void Verifier::visitZExtInst(ZExtInst &I) { in visitZExtInst()
|
/external/llvm/lib/Transforms/Utils/ |
D | Local.cpp | 791 if (ZExtInst *ZExt = dyn_cast<ZExtInst>(SI->getOperand(0))) in ConvertDebugDeclareToDebugValue()
|
/external/llvm/include/llvm/ |
D | Instruction.def | 143 HANDLE_CAST_INST(31, ZExt , ZExtInst ) // Zero extend integers
|
D | Instructions.h | 2574 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/ |
D | CodeGenPrepare.cpp | 984 if (isa<ZExtInst>(I)) in MoveExtToFormExtLoad() 1103 if (isa<ZExtInst>(I) || isa<SExtInst>(I)) { in OptimizeInst()
|
D | ScalarReplAggregates.cpp | 1155 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/ |
D | ValueTracking.cpp | 734 if (ZExtInst *ZI = dyn_cast<ZExtInst>(V)) in isPowerOfTwo() 781 if (isa<SExtInst>(V) || isa<ZExtInst>(V)) in isKnownNonZero()
|
D | InstructionSimplify.cpp | 1618 if (isa<ZExtInst>(LHS)) { in SimplifyICmpInst() 1621 if (ZExtInst *RI = dyn_cast<ZExtInst>(RHS)) { in SimplifyICmpInst()
|
D | BasicAliasAnalysis.cpp | 223 (isa<ZExtInst>(V) && Extension != EK_SignExt)) { in GetLinearExpression()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.h | 76 class ZExtInst; variable
|
/external/clang/lib/CodeGen/ |
D | CodeGenFunction.cpp | 1003 if (!isa<llvm::ZExtInst>(value)) return PeepholeProtection(); in protectFromPeepholes()
|
D | CGExprScalar.cpp | 131 if (llvm::ZExtInst *ZI = dyn_cast<llvm::ZExtInst>(V)) { in EmitIntToBoolConversion()
|
/external/llvm/include/llvm-c/ |
D | Core.h | 488 macro(ZExtInst) \
|