HomeSort by relevance Sort by last modified time
    Searched defs:KnownOne (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,
89 KnownOne = APInt(BitWidth, 0);
90 computeKnownBits(const_cast<Value *>(V1), KnownZero, KnownOne, DL, 0,
120 std::min(BitWidth, KnownOne.countLeadingZeros()+1));
130 std::min(BitWidth, KnownOne.countTrailingZeros()+1));
220 AB &= ~(KnownOne & ~KnownOne2);
320 APInt KnownZero, KnownOne, KnownZero2, KnownOne2;
337 KnownZero, KnownOne,
ConstantFolding.cpp 662 APInt KnownOne = KnownOne0 & KnownOne1;
663 if ((KnownZero | KnownOne).isAllOnesValue()) {
664 return ConstantInt::get(Op0->getType(), KnownOne);
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
FunctionLoweringInfo.h 108 APInt KnownOne, KnownZero;
109 LiveOutInfo() : NumSignBits(0), IsValid(true), KnownOne(1, 0),
173 const APInt &KnownZero, const APInt &KnownOne) {
175 if (NumSignBits == 1 && KnownZero == 0 && KnownOne == 0)
181 LOI.KnownOne = KnownOne;
  /external/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 175 APInt KnownOne, KnownZero;
176 LiveOutInfo() : NumSignBits(0), IsValid(true), KnownOne(1, 0),
251 const APInt &KnownZero, const APInt &KnownOne) {
253 if (NumSignBits == 1 && KnownZero == 0 && KnownOne == 0)
259 LOI.KnownOne = KnownOne;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 174 APInt KnownOne, KnownZero;
175 LiveOutInfo() : NumSignBits(0), IsValid(true), KnownOne(1, 0),
250 const APInt &KnownZero, const APInt &KnownOne) {
252 if (NumSignBits == 1 && KnownZero == 0 && KnownOne == 0)
258 LOI.KnownOne = KnownOne;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 174 APInt KnownOne, KnownZero;
175 LiveOutInfo() : NumSignBits(0), IsValid(true), KnownOne(1, 0),
250 const APInt &KnownZero, const APInt &KnownOne) {
252 if (NumSignBits == 1 && KnownZero == 0 && KnownOne == 0)
258 LOI.KnownOne = KnownOne;
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 714 APInt KnownZero, KnownOne;
715 CurDAG->computeKnownBits(Op.getOperand(0), KnownZero, KnownOne);
773 APInt KnownZero, KnownOne;
774 CurDAG->computeKnownBits(Input, KnownZero, KnownOne);
797 APInt KnownZero, KnownOne;
798 CurDAG->computeKnownBits(Input, KnownZero, KnownOne);
799 Mask &= ~KnownOne.getZExtValue();
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 689 APInt KnownOne;
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);
    [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);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 432 APInt KnownOne;
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 1056 milliseconds

1 2