HomeSort by relevance Sort by last modified time
    Searched refs:ZExtInst (Results 1 - 25 of 119) sorted by null

1 2 3 4 5

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
ARMCodeGenPrepare.cpp 140 if (auto *ZExt = dyn_cast<ZExtInst>(V))
167 else if (auto *ZExt = dyn_cast<ZExtInst>(V))
177 if (Load->hasOneUse() && isa<ZExtInst>(*Load->use_begin()))
236 if (auto *ZExt = dyn_cast<ZExtInst>(I))
356 if (auto *ZExt = dyn_cast<ZExtInst>(V))
404 if (auto *ZExt = dyn_cast<ZExtInst>(V)) {
517 if (isa<ZExtInst>(Cast))
547 } else if (auto *ZExt = dyn_cast<ZExtInst>(V)) {
716 if (isa<ZExtInst>(I))
  /external/spirv-llvm/lib/SPIRV/
SPIRVLowerBool.cpp 85 virtual void visitZExtInst(ZExtInst &I) {
SPIRVToOCL20.cpp 511 if(!isa<ZExtInst>(Cast) && !isa<SExtInst>(Cast) &&
537 if(isa<ZExtInst>(Cast) || isa<UIToFPInst>(Cast))
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 425 if (ZExtInst *Z = dyn_cast<ZExtInst>(V)) {
494 if (ZExtInst *ZOp0 = dyn_cast<ZExtInst>(Op0))
496 return new ZExtInst(Builder->CreateUDiv(ZOp0->getOperand(0), ZOp1, "div",
648 if (ZExtInst *ZOp0 = dyn_cast<ZExtInst>(Op0))
650 return new ZExtInst(Builder->CreateURem(ZOp0->getOperand(0), ZOp1),
InstCombineAddSub.cpp 110 if (ZExtInst *ZI = dyn_cast<ZExtInst>(LHS))
582 if (ZExtInst *ZI = dyn_cast<ZExtInst>(Op1))
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 911 return new ZExtInst(Builder->CreateICmpEQ(Op1, One), I.getType());
935 if (ZExtInst *Z = dyn_cast<ZExtInst>(V)) {
    [all...]
InstCombineShifts.cpp 766 return new ZExtInst(Cmp, II->getType());
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
AMDGPULowerKernelAttributes.cpp 177 auto *ZextGroupSize = dyn_cast<ZExtInst>(U);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
LowerExpectIntrinsic.cpp 114 if (ZExtInst *ZExt = dyn_cast<ZExtInst>(V)) {
NaryReassociate.cpp 337 } else if (ZExtInst *ZExt = dyn_cast<ZExtInst>(IndexToSplit)) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 616 return new ZExtInst(Builder.CreateShl(X, ShAmt), Ty);
723 return new ZExtInst(Cmp, Ty);
768 return new ZExtInst(NewLShr, Ty);
778 return new ZExtInst(X, Ty);
783 return new ZExtInst(NewLShr, Ty);
792 return new ZExtInst(AShr, Ty);
    [all...]
InstCombineMulDivRem.cpp 364 if (auto *Op0Conv = dyn_cast<ZExtInst>(Op0)) {
375 return new ZExtInst(NewMul, I.getType());
381 if (auto *Op1Conv = dyn_cast<ZExtInst>(Op1)) {
393 return new ZExtInst(NewMul, I.getType());
753 return new ZExtInst(Builder.CreateICmpEQ(Op1, Op0), Ty);
    [all...]
InstCombineAddSub.cpp 973 return new ZExtInst(Builder.CreateNUWAdd(X, NewC), Ty);
984 return new ZExtInst(Builder.CreateNot(X), Ty);
    [all...]
  /external/llvm/lib/Analysis/
VectorUtils.cpp 330 if (TTI && (isa<ZExtInst>(&I) || isa<SExtInst>(&I)) &&
376 if (isa<SExtInst>(I) || isa<ZExtInst>(I) || isa<LoadInst>(I) ||
  /external/llvm/lib/Transforms/Scalar/
NaryReassociate.cpp 340 } else if (ZExtInst *ZExt = dyn_cast<ZExtInst>(IndexToSplit)) {
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 158 void visitZExtInst(ZExtInst &I);
  /external/llvm/lib/Target/PowerPC/
PPCBoolRetToInt.cpp 99 return new ZExtInst(V, Int32Ty, "", InstPt);
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
InstVisitor.h 179 RetTy visitZExtInst(ZExtInst &I) { DELEGATE(CastInst); }
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
Interpreter.h 151 void visitZExtInst(ZExtInst &I);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 139 void visitZExtInst(ZExtInst &I);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
PPCBoolRetToInt.cpp 116 return new ZExtInst(V, IntTy, "", InstPt);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
VectorUtils.cpp 332 if (TTI && (isa<ZExtInst>(&I) || isa<SExtInst>(&I)) &&
378 if (isa<SExtInst>(I) || isa<ZExtInst>(I) || isa<LoadInst>(I) ||
  /external/llvm/include/llvm/IR/
InstVisitor.h 186 RetTy visitZExtInst(ZExtInst &I) { DELEGATE(CastInst);}
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
InstVisitor.h 189 RetTy visitZExtInst(ZExtInst &I) { DELEGATE(CastInst);}
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/AggressiveInstCombine/
TruncInstCombine.cpp 15 // 2. Supported leaves: ZExtInst, SExtInst, TruncInst and Constant value.
242 bool IsExtInst = (isa<ZExtInst>(I) || isa<SExtInst>(I));

Completed in 1819 milliseconds

1 2 3 4 5