HomeSort by relevance Sort by last modified time
    Searched defs:KnownZero (Results 1 - 25 of 28) sorted by null

1 2

  /external/llvm/lib/Analysis/
DemandedBits.cpp 75 const APInt &AOut, APInt &AB, APInt &KnownZero, APInt &KnownOne,
88 KnownZero = APInt(BitWidth, 0);
90 computeKnownBits(const_cast<Value *>(V1), KnownZero, KnownOne, DL, 0,
204 AB &= ~(KnownZero & ~KnownZero2);
320 APInt KnownZero, KnownOne, KnownZero2, KnownOne2;
337 KnownZero, KnownOne,
ConstantFolding.cpp 661 APInt KnownZero = KnownZero0 | KnownZero1;
663 if ((KnownZero | KnownOne).isAllOnesValue()) {
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
FunctionLoweringInfo.h 108 APInt KnownOne, KnownZero;
110 KnownZero(1, 0) {}
173 const APInt &KnownZero, const APInt &KnownOne) {
175 if (NumSignBits == 1 && KnownZero == 0 && KnownOne == 0)
182 LOI.KnownZero = KnownZero;
  /external/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 175 APInt KnownOne, KnownZero;
177 KnownZero(1, 0) {}
251 const APInt &KnownZero, const APInt &KnownOne) {
253 if (NumSignBits == 1 && KnownZero == 0 && KnownOne == 0)
260 LOI.KnownZero = KnownZero;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 174 APInt KnownOne, KnownZero;
176 KnownZero(1, 0) {}
250 const APInt &KnownZero, const APInt &KnownOne) {
252 if (NumSignBits == 1 && KnownZero == 0 && KnownOne == 0)
259 LOI.KnownZero = KnownZero;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 174 APInt KnownOne, KnownZero;
176 KnownZero(1, 0) {}
250 const APInt &KnownZero, const APInt &KnownOne) {
252 if (NumSignBits == 1 && KnownZero == 0 && KnownOne == 0)
259 LOI.KnownZero = KnownZero;
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 714 APInt KnownZero, KnownOne;
715 CurDAG->computeKnownBits(Op.getOperand(0), KnownZero, KnownOne);
716 if (Used != (AndMask | InsertMask | KnownZero.getZExtValue()))
773 APInt KnownZero, KnownOne;
774 CurDAG->computeKnownBits(Input, KnownZero, KnownOne);
775 Mask |= KnownZero.getZExtValue();
797 APInt KnownZero, KnownOne;
798 CurDAG->computeKnownBits(Input, KnownZero, KnownOne);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 688 APInt KnownZero;
718 CurDAG->computeKnownBits(Src, KnownZero, KnownOne);
719 FuncInfo->AddLiveOutRegInfo(DestReg, NumSignBits, KnownZero, KnownOne);
    [all...]
LegalizeIntegerTypes.cpp     [all...]
SelectionDAG.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelDAGToDAG.cpp     [all...]
AArch64ISelLowering.cpp 736 /// KnownZero/KnownOne bitsets.
738 const SDValue Op, APInt &KnownZero, APInt &KnownOne,
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 413 APInt KnownZero, KnownOne;
414 DAG.computeKnownBits(Value, KnownZero, KnownOne);
415 return KnownZero.countTrailingOnes() >= 2;
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 625 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
626 computeKnownBits(ICI->getOperand(0), KnownZero, KnownOne, 0, &CI);
628 APInt KnownZeroMask(~KnownZero);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 431 APInt KnownZero;
462 CurDAG->ComputeMaskedBits(Src, Mask, KnownZero, KnownOne);
463 FuncInfo->AddLiveOutRegInfo(DestReg, NumSignBits, KnownZero, KnownOne);
    [all...]
TargetLowering.cpp     [all...]
LegalizeIntegerTypes.cpp     [all...]
SelectionDAG.cpp     [all...]
DAGCombiner.cpp 645 APInt KnownZero, KnownOne;
646 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreISelLowering.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp     [all...]
AMDGPUISelLowering.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 1113 milliseconds

1 2