Home
last modified time | relevance | path

Searched refs:Zext (Results 1 – 25 of 97) sorted by relevance

1234

/external/swiftshader/third_party/subzero/src/
DWasmTranslator.cpp549 InstCast::create(Func, InstCast::Zext, Dest, TmpDest)); in Binop()
559 InstCast::create(Func, InstCast::Zext, Dest, TmpDest)); in Binop()
569 InstCast::create(Func, InstCast::Zext, Dest, TmpDest)); in Binop()
579 InstCast::create(Func, InstCast::Zext, Dest, TmpDest)); in Binop()
589 InstCast::create(Func, InstCast::Zext, Dest, TmpDest)); in Binop()
599 InstCast::create(Func, InstCast::Zext, Dest, TmpDest)); in Binop()
609 InstCast::create(Func, InstCast::Zext, Dest, TmpDest)); in Binop()
619 InstCast::create(Func, InstCast::Zext, Dest, TmpDest)); in Binop()
629 InstCast::create(Func, InstCast::Zext, Dest, TmpDest)); in Binop()
639 InstCast::create(Func, InstCast::Zext, Dest, TmpDest)); in Binop()
[all …]
DIceInst.def59 X(Zext, "zext") \
/external/llvm/lib/Transforms/InstCombine/
DInstCombinePHI.cpp410 if (auto *Zext = dyn_cast<ZExtInst>(V)) { in FoldPHIArgZextsIntoPHI() local
411 NarrowType = Zext->getSrcTy(); in FoldPHIArgZextsIntoPHI()
424 if (auto *Zext = dyn_cast<ZExtInst>(V)) { in FoldPHIArgZextsIntoPHI() local
426 if (Zext->getSrcTy() != NarrowType || !Zext->hasOneUse()) in FoldPHIArgZextsIntoPHI()
428 NewIncoming.push_back(Zext->getOperand(0)); in FoldPHIArgZextsIntoPHI()
/external/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp932 Instruction *InstCombinerImpl::transformZExtICmp(ICmpInst *Cmp, ZExtInst &Zext, in transformZExtICmp() argument
950 if (In->getType() != Zext.getType()) in transformZExtICmp()
951 In = Builder.CreateIntCast(In, Zext.getType(), false /*ZExt*/); in transformZExtICmp()
958 return replaceInstUsesWith(Zext, In); in transformZExtICmp()
973 KnownBits Known = computeKnownBits(Cmp->getOperand(0), 0, &Zext); in transformZExtICmp()
983 Constant *Res = ConstantInt::get(Zext.getType(), isNE); in transformZExtICmp()
984 return replaceInstUsesWith(Zext, Res); in transformZExtICmp()
1001 if (Zext.getType() == In->getType()) in transformZExtICmp()
1002 return replaceInstUsesWith(Zext, In); in transformZExtICmp()
1004 Value *IntCast = Builder.CreateIntCast(In, Zext.getType(), false); in transformZExtICmp()
[all …]
DInstCombinePHI.cpp760 if (auto *Zext = dyn_cast<ZExtInst>(V)) { in foldPHIArgZextsIntoPHI() local
761 NarrowType = Zext->getSrcTy(); in foldPHIArgZextsIntoPHI()
774 if (auto *Zext = dyn_cast<ZExtInst>(V)) { in foldPHIArgZextsIntoPHI() local
776 if (Zext->getSrcTy() != NarrowType || !Zext->hasOneUser()) in foldPHIArgZextsIntoPHI()
778 NewIncoming.push_back(Zext->getOperand(0)); in foldPHIArgZextsIntoPHI()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp847 Instruction *InstCombiner::transformZExtICmp(ICmpInst *Cmp, ZExtInst &Zext, in transformZExtICmp() argument
865 if (In->getType() != Zext.getType()) in transformZExtICmp()
866 In = Builder.CreateIntCast(In, Zext.getType(), false /*ZExt*/); in transformZExtICmp()
873 return replaceInstUsesWith(Zext, In); in transformZExtICmp()
888 KnownBits Known = computeKnownBits(Cmp->getOperand(0), 0, &Zext); in transformZExtICmp()
898 Constant *Res = ConstantInt::get(Zext.getType(), isNE); in transformZExtICmp()
899 return replaceInstUsesWith(Zext, Res); in transformZExtICmp()
916 if (Zext.getType() == In->getType()) in transformZExtICmp()
917 return replaceInstUsesWith(Zext, In); in transformZExtICmp()
919 Value *IntCast = Builder.CreateIntCast(In, Zext.getType(), false); in transformZExtICmp()
[all …]
DInstCombinePHI.cpp679 if (auto *Zext = dyn_cast<ZExtInst>(V)) { in FoldPHIArgZextsIntoPHI() local
680 NarrowType = Zext->getSrcTy(); in FoldPHIArgZextsIntoPHI()
693 if (auto *Zext = dyn_cast<ZExtInst>(V)) { in FoldPHIArgZextsIntoPHI() local
695 if (Zext->getSrcTy() != NarrowType || !Zext->hasOneUse()) in FoldPHIArgZextsIntoPHI()
697 NewIncoming.push_back(Zext->getOperand(0)); in FoldPHIArgZextsIntoPHI()
/external/OpenCL-CTS/test_conformance/spirv_new/spirv_asm/
Dop_spec_constant_false_simple.spvasm6421 OpDecorate %test_value FuncParamAttr Zext
Dop_spec_constant_true_simple.spvasm3221 OpDecorate %test_value FuncParamAttr Zext
Dop_spec_constant_true_simple.spvasm6421 OpDecorate %test_value FuncParamAttr Zext
Dop_spec_constant_false_simple.spvasm3221 OpDecorate %test_value FuncParamAttr Zext
/external/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/
DAggressiveInstCombine.cpp263 Value *Zext = Builder.CreateZExt(Cmp, I.getType()); in foldAnyOrAllBitsSet() local
264 I.replaceAllUsesWith(Zext); in foldAnyOrAllBitsSet()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/AggressiveInstCombine/
DAggressiveInstCombine.cpp249 Value *Zext = Builder.CreateZExt(Cmp, I.getType()); in foldAnyOrAllBitsSet() local
250 I.replaceAllUsesWith(Zext); in foldAnyOrAllBitsSet()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DCorrelatedValuePropagation.cpp650 auto *Zext = B.CreateZExt(BO, Instr->getType(), Instr->getName() + ".zext"); in processUDivOrURem() local
655 Instr->replaceAllUsesWith(Zext); in processUDivOrURem()
/external/angle/third_party/vulkan-deps/spirv-headers/src/include/spirv/1.0/
Dspirv.lua300 Zext = 0,
/external/angle/third_party/vulkan-deps/spirv-headers/src/include/spirv/1.1/
Dspirv.lua304 Zext = 0,
/external/deqp-deps/SPIRV-Headers/include/spirv/1.0/
Dspirv.cs325 Zext = 0, enumerator
Dspirv.lua300 Zext = 0,
/external/shaderc/spirv-headers/include/spirv/1.1/
Dspirv.lua304 Zext = 0,
/external/deqp-deps/SPIRV-Headers/include/spirv/1.2/
Dspirv.lua307 Zext = 0,
/external/angle/third_party/vulkan-deps/spirv-headers/src/include/spirv/1.2/
Dspirv.lua307 Zext = 0,
/external/deqp-deps/SPIRV-Headers/include/spirv/1.1/
Dspirv.lua304 Zext = 0,
/external/shaderc/spirv-headers/include/spirv/1.0/
Dspirv.lua300 Zext = 0,
/external/shaderc/spirv-headers/include/spirv/1.2/
Dspirv.lua307 Zext = 0,
/external/swiftshader/third_party/SPIRV-Headers/include/spirv/1.1/
Dspirv.cs329 Zext = 0, enumerator

1234