/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 667 if (ZExtInst *Z = dyn_cast<ZExtInst>(V)) { in dyn_castZExtVal() 728 if (ZExtInst *Z = dyn_cast<ZExtInst>(Op1)) in visitUDiv() 754 if (ZExtInst *ZOp0 = dyn_cast<ZExtInst>(Op0)) in visitUDiv() 756 return new ZExtInst(Builder->CreateUDiv(ZOp0->getOperand(0), ZOp1, "div", in visitUDiv() 1027 if (ZExtInst *ZOp0 = dyn_cast<ZExtInst>(Op0)) in visitURem() 1029 return new ZExtInst(Builder->CreateURem(ZOp0->getOperand(0), ZOp1), in visitURem()
|
D | InstCombineShifts.cpp | 740 return new ZExtInst(Cmp, II->getType()); in visitLShr() 782 if (ZExtInst *ZI = dyn_cast<ZExtInst>(X)) { in visitAShr()
|
D | InstCombineCasts.cpp | 347 if ((isa<ZExtInst>(I) || isa<SExtInst>(I)) && in CanEvaluateTruncated() 747 Instruction *InstCombiner::visitZExt(ZExtInst &CI) { in visitZExt() 816 return new ZExtInst(And, CI.getType()); in visitZExt() 1729 if (isa<TruncInst>(Src) || isa<ZExtInst>(Src)) { in visitBitCast()
|
D | InstCombineSelect.cpp | 708 return new ZExtInst(CondVal, SI.getType()); in visitSelectInst() 717 return new ZExtInst(NotCond, SI.getType()); in visitSelectInst()
|
D | InstCombine.h | 170 Instruction *visitZExt(ZExtInst &CI);
|
D | InstCombineAddSub.cpp | 901 if (ZExtInst *ZI = dyn_cast<ZExtInst>(LHS)) in visitAdd()
|
D | InstCombineSimplifyDemanded.cpp | 481 CastInst *NewCast = new ZExtInst(I->getOperand(0), VTy, I->getName()); in SimplifyDemandedUseBits()
|
D | InstCombineCompares.cpp | 1128 if (ZExtInst *Cast = dyn_cast<ZExtInst>(LHSI->getOperand(0))) { in visitICmpInstWithInstAndIntCst()
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Interpreter.h | 157 void visitZExtInst(ZExtInst &I);
|
/external/llvm/include/llvm/ |
D | InstVisitor.h | 183 RetTy visitZExtInst(ZExtInst &I) { DELEGATE(CastInst);} in visitZExtInst()
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 2294 case ZExt: return new ZExtInst (S, Ty, Name, InsertBefore); in Create() 2315 case ZExt: return new ZExtInst (S, Ty, Name, InsertAtEnd); in Create() 2720 ZExtInst::ZExtInst( in ZExtInst() function in ZExtInst 2726 ZExtInst::ZExtInst( in ZExtInst() function in ZExtInst 3449 ZExtInst *ZExtInst::clone_impl() const { in clone_impl() 3450 return new ZExtInst(getOperand(0), getType()); in clone_impl()
|
D | Verifier.cpp | 255 void visitZExtInst(ZExtInst &I); 1075 void Verifier::visitZExtInst(ZExtInst &I) { in visitZExtInst()
|
/external/llvm/include/llvm/IR/ |
D | Instruction.def | 146 HANDLE_CAST_INST(34, ZExt , ZExtInst ) // Zero extend integers
|
D | Instructions.h | 3307 class ZExtInst : public CastInst { 3310 virtual ZExtInst *clone_impl() const; 3314 ZExtInst( 3322 ZExtInst(
|
/external/llvm/lib/Transforms/Utils/ |
D | Local.cpp | 847 if (ZExtInst *ZExt = dyn_cast<ZExtInst>(SI->getOperand(0))) in ConvertDebugDeclareToDebugValue()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.h | 76 class ZExtInst; variable
|
/external/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 840 if (ZExtInst *ZI = dyn_cast<ZExtInst>(V)) in isKnownToBeAPowerOfTwo() 971 if (isa<SExtInst>(V) || isa<ZExtInst>(V)) in isKnownNonZero()
|
D | BasicAliasAnalysis.cpp | 199 (isa<ZExtInst>(V) && Extension != EK_SignExt)) { in GetLinearExpression()
|
D | InstructionSimplify.cpp | 2045 if (isa<ZExtInst>(LHS)) { in SimplifyICmpInst() 2048 if (ZExtInst *RI = dyn_cast<ZExtInst>(RHS)) { in SimplifyICmpInst()
|
/external/llvm/lib/Transforms/Scalar/ |
D | ScalarReplAggregates.cpp | 1104 if (ZExtInst *ZExt = dyn_cast<ZExtInst>(SI->getOperand(0))) in updateDebugInfo() 2504 SrcField = new ZExtInst(SrcField, ResultVal->getType(), "", LI); in RewriteLoadUserOfWholeAlloca()
|
D | CodeGenPrepare.cpp | 1715 if (isa<ZExtInst>(I)) in MoveExtToFormExtLoad() 1921 if (isa<ZExtInst>(I) || isa<SExtInst>(I)) { in OptimizeInst()
|
D | IndVarSimplify.cpp | 864 if (IsSigned ? isa<SExtInst>(DU.NarrowUse) : isa<ZExtInst>(DU.NarrowUse)) { in WidenIVUse()
|
/external/llvm/tools/llvm-stress/ |
D | llvm-stress.cpp | 517 new ZExtInst(V, DestTy, "ZE", BB->getTerminator())); in Act()
|
/external/clang/lib/CodeGen/ |
D | CodeGenFunction.cpp | 1266 if (!isa<llvm::ZExtInst>(value)) return PeepholeProtection(); in protectFromPeepholes()
|
/external/llvm/include/llvm-c/ |
D | Core.h | 1074 macro(ZExtInst) \
|