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

1 2

  /external/llvm/lib/IR/
ConstantRange.cpp 154 return (Upper - Lower).zext(getBitWidth()+1);
432 LowerExt = Lower.zext(DstTySize);
436 return ConstantRange(Lower.zext(DstTySize), Upper.zext(DstTySize));
451 return ConstantRange(Lower.sext(DstTySize), Upper.zext(DstTySize));
472 APInt MaxValue = APInt::getMaxValue(DstTySize).zext(getBitWidth());
590 APInt this_min = getUnsignedMin().zext(getBitWidth() * 2);
591 APInt this_max = getUnsignedMax().zext(getBitWidth() * 2);
592 APInt Other_min = Other.getUnsignedMin().zext(getBitWidth() * 2);
593 APInt Other_max = Other.getUnsignedMax().zext(getBitWidth() * 2)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 399 DemandedMask = DemandedMask.zext(truncBf);
400 KnownZero = KnownZero.zext(truncBf);
401 KnownOne = KnownOne.zext(truncBf);
433 case Instruction::ZExt: {
443 DemandedMask = DemandedMask.zext(BitWidth);
444 KnownZero = KnownZero.zext(BitWidth);
445 KnownOne = KnownOne.zext(BitWidth);
470 InputDemandedBits = InputDemandedBits.zext(BitWidth);
471 KnownZero = KnownZero.zext(BitWidth);
472 KnownOne = KnownOne.zext(BitWidth)
    [all...]
InstCombineMulDivRem.cpp 86 LHSExt = LHSExt.zext(W * 2);
87 RHSExt = RHSExt.zext(W * 2);
784 /// dyn_castZExtVal - Checks if V is a zext or constant that can
927 // (zext A) udiv (zext B) --> zext (A udiv B)
    [all...]
InstCombineCompares.cpp     [all...]
  /external/llvm/unittests/IR/
ConstantRangeTest.cpp 182 TEST_F(ConstantRangeTest, ZExt) {
190 EXPECT_EQ(ZOne, ConstantRange(One.getLower().zext(20),
191 One.getUpper().zext(20)));
192 EXPECT_EQ(ZSome, ConstantRange(Some.getLower().zext(20),
193 Some.getUpper().zext(20)));
196 // zext([5, 0), 3->7) = [5, 8)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
double-int.h 159 double_int zext (unsigned prec) const;
  /external/llvm/utils/vim/
llvm.vim 36 syn keyword llvmStatement xchg xor zext
  /external/llvm/include/llvm/ADT/
APSInt.h 71 return APSInt(zext(width), IsUnsigned);
APInt.h 557 return I1 == I2.zext(I1.getBitWidth());
559 return I1.zext(I2.getBitWidth()) == I2;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 60 if (CallerAttrs.hasAttribute(AttributeSet::ReturnIndex, Attribute::ZExt) ||
73 isZExt = CS->paramHasAttr(AttrIdx, Attribute::ZExt);
    [all...]
SelectionDAG.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 164 FieldValue = FieldValue.zext(FieldSize);
201 Tmp = Tmp.zext(CharWidth);
277 FieldValue = FieldValue.zext(CharWidth) << (CharWidth - BitWidth);
279 FieldValue = FieldValue.zext(CharWidth);
    [all...]
  /external/llvm/lib/Support/
StringRef.cpp 438 Result = Result.zext(BitWidth);
APInt.cpp 984 APInt APInt::zext(unsigned width) const {
1005 return zext(width);
1021 return zext(width);
    [all...]
  /external/llvm/test/Bindings/Ocaml/
vmcore.ml 117 group "zext int64";
287 * CHECK: const_zext{{.*}}zext
297 * CHECK: const_intcast{{.*}}zext
913 * CHECK-DAG: %build_zext = zext i8 %build_trunc to i32
914 * CHECK-DAG: %build_zext2 = zext i8 %build_trunc to i32
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SeparateConstOffsetFromGEP.cpp 160 /// 1) iteratively distribute s/zext towards the leaves of the expression tree
172 /// offset, distribute s/zext to the operands of all operators in UserChain.
173 /// e.g., zext(sext(a + (b + 5)) (assuming no overflow) =>
174 /// zext(sext(a)) + (zext(sext(b)) + zext(sext(5))).
177 /// distributing s/zext. e.g., the old UserChain of the above example is
178 /// 5 -> b + 5 -> a + (b + 5) -> sext(...) -> zext(sext(...)),
180 /// zext(sext(5)) -> zext(sext(b)) + zext(sext(5)) -
    [all...]
IndVarSimplify.cpp 653 bool IsSigned; // Was an sext user seen before a zext?
666 if (!IsSigned && Cast->getOpcode() != Instruction::ZExt)
    [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 263 Scale = Scale.zext(OldWidth);
264 Offset = Offset.zext(OldWidth);
    [all...]
ValueTracking.cpp 420 // FALL THROUGH and handle them the same as zext/trunc.
421 case Instruction::ZExt:
464 KnownZero = KnownZero.zext(BitWidth);
465 KnownOne = KnownOne.zext(BitWidth);
    [all...]
ScalarEvolution.cpp 151 const SCEVZeroExtendExpr *ZExt = cast<SCEVZeroExtendExpr>(this);
152 const SCEV *Op = ZExt->getOperand();
153 OS << "(zext " << *Op->getType() << " " << *Op << " to "
154 << *ZExt->getType() << ")";
769 APInt MultiplyFactor = OddFactorial.zext(W+1);
849 // trunc(zext(x)) --> zext(x) if widening or trunc(x) if narrowing
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 711 INSTKEYWORD(zext, ZExt);
  /external/llvm/bindings/ocaml/llvm/
llvm.mli 128 | Zext
235 | ZExt
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 5146 unsigned zext = shift.getZExtValue(); local
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 643 case Instruction::ZExt: {
646 GV.IntVal = GV.IntVal.zext(BitWidth);
    [all...]

Completed in 663 milliseconds

1 2