Home
last modified time | relevance | path

Searched defs:ZExt (Results 1 – 17 of 17) sorted by relevance

/external/llvm/include/llvm/IR/
DAttributes.h115 ZExt, ///< Zero extended before/after call enumerator
/external/llvm/unittests/IR/
DConstantRangeTest.cpp182 TEST_F(ConstantRangeTest, ZExt) { in TEST_F() argument
/external/llvm/include/llvm/Target/
DTargetCallingConv.h28 static const uint64_t ZExt = 1ULL<<0; ///< Zero extended member
/external/llvm/include/llvm/CodeGen/
DCallingConvLower.h36 ZExt, // The value is zero extended in the location. enumerator
/external/llvm/lib/Transforms/Utils/
DLocal.cpp1012 if (ZExtInst *ZExt = dyn_cast<ZExtInst>(SI->getOperand(0))) in ConvertDebugDeclareToDebugValue() local
/external/llvm/bindings/ocaml/llvm/
Dllvm.ml186 | ZExt Constructor
Dllvm.mli244 | ZExt Constructor
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp1066 Value *ZExt = Builder->CreateZExt(Src, DestTy); in visitSExt() local
DInstCombineCompares.cpp2102 Value *ZExt = Builder->CreateZExt(Add, OrigAdd->getType()); in ProcessUGT_ADDCST_ADD() local
/external/llvm/lib/Target/AArch64/
DAArch64FastISel.cpp4507 if (const auto *ZExt = dyn_cast<ZExtInst>(Src0)) { in selectMul() local
4574 if (const auto *ZExt = dyn_cast<ZExtInst>(Op0)) { in selectShift() local
/external/llvm/lib/Transforms/Scalar/
DScalarReplAggregates.cpp1109 if (ZExtInst *ZExt = dyn_cast<ZExtInst>(SI->getOperand(0))) in updateDebugInfo() local
DSROA.cpp1158 if (ZExtInst *ZExt = dyn_cast<ZExtInst>(SI->getOperand(0))) in updateDebugInfo() local
/external/llvm/lib/Analysis/
DScalarEvolution.cpp155 const SCEVZeroExtendExpr *ZExt = cast<SCEVZeroExtendExpr>(this); in print() local
1798 const SCEV *ZExt = getZeroExtendExpr(Op, Ty); in getAnyExtendExpr() local
3915 if (const SCEVZeroExtendExpr *ZExt = dyn_cast<SCEVZeroExtendExpr>(S)) { in getRange() local
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp7722 if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(DL, MVT::v4i32, V1, V2, in lowerV4I32VectorShuffle() local
8344 if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend( in lowerV8I16VectorShuffle() local
8537 if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend( in lowerV16I8VectorShuffle() local
9608 if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(DL, MVT::v8i32, V1, V2, in lowerV8I32VectorShuffle() local
9692 if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(DL, MVT::v16i16, V1, V2, in lowerV16I16VectorShuffle() local
9793 if (SDValue ZExt = lowerVectorShuffleAsZeroOrAnyExtend(DL, MVT::v32i8, V1, V2, in lowerV32I8VectorShuffle() local
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp1730 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)); in visitADD() local
1739 SDValue ZExt = DAG.getNode(ISD::AND, DL, VT, N1.getOperand(0), in visitADD() local
1915 SDValue ZExt = DAG.getNode(ISD::AND, DL, VT, N1.getOperand(0), in visitSUB() local
/external/llvm/lib/CodeGen/
DCodeGenPrepare.cpp2436 Value *ZExt = in promoteOperandForTruncAndAnyExt() local
/external/llvm/bindings/go/llvm/
Dir.go207 ZExt Opcode = C.LLVMZExt const