Searched defs:Zext (Results 1 - 8 of 8) sorted by relevance

/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml86 | Zext Constructor in type:Attribute/t
771 Attribute.Zext -> Int32.shift_left 1l 0
807 checkattr Attribute.Zext;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp2132 bool Zext = (II->getIntrinsicID() == Intrinsic::arm_neon_vmullu || local
2137 CV0 = ConstantExpr::getIntegerCast(CV0, NewVT, /*isSigned=*/!Zext);
2138 CV1 = ConstantExpr::getIntegerCast(CV1, NewVT, /*isSigned=*/!Zext);
2153 /*isSigned=*/!Zext);
H A DInstCombineCompares.cpp2753 if (ZExtInst *Zext = dyn_cast<ZExtInst>(OtherVal))
2754 if (Zext->hasOneUse()) {
2755 Value *ZextArg = Zext->getOperand(0);
2861 Instruction *Zext = local
2863 IC.Worklist.Add(Zext);
2864 IC.replaceInstUsesWith(*BO, Zext);
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
H A Dllvm.ml74 | Zext Constructor in type:Attribute/t
656 Attribute.Zext -> Int32.shift_left 1l 0
692 checkattr Attribute.Zext;
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp2302 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), local
2306 CombineTo(N, Zext);
2311 CombineTo(N0.getNode(), Zext);
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
H A DPPCISelLowering.cpp1240 SDValue Zext = Op.getOperand(0); local
1243 Zext = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op.getOperand(0));
1246 SDValue Clz = DAG.getNode(ISD::CTLZ, dl, VT, Zext);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp2369 SDValue Zext = Op.getOperand(0); local
2372 Zext = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Op.getOperand(0));
2375 SDValue Clz = DAG.getNode(ISD::CTLZ, dl, VT, Zext);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp3110 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), local
3114 CombineTo(N, Zext);
3119 CombineTo(N0.getNode(), Zext);

Completed in 792 milliseconds