HomeSort by relevance Sort by last modified time
    Searched refs:NLZ (Results 1 - 8 of 8) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 482 unsigned NLZ = DemandedMask.countLeadingZeros();
493 // input. Otherwise, we demand all the input bits except NLZ top bits.
494 APInt InDemandedBits(APInt::getLowBitsSet(BitWidth, BitWidth - NLZ));
546 APInt DemandedFromOps(APInt::getLowBitsSet(BitWidth, BitWidth-NLZ));
562 uint32_t NLZ = DemandedMask.countLeadingZeros();
563 APInt DemandedFromOps(APInt::getLowBitsSet(BitWidth, BitWidth-NLZ));
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 528 unsigned NLZ = DemandedMask.countLeadingZeros();
529 if (NLZ > 0) {
532 APInt DemandedFromOps(APInt::getLowBitsSet(BitWidth, BitWidth-NLZ));
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 409 unsigned NLZ = DemandedMask.countLeadingZeros();
412 APInt DemandedFromOps(APInt::getLowBitsSet(BitWidth, BitWidth-NLZ));
417 if (NLZ > 0) {
642 unsigned NLZ = DemandedMask.countLeadingZeros();
646 // we need all the bits down to bit 8. Likewise, round NLZ. If we
648 NLZ &= ~7;
651 if (BitWidth-NLZ-NTZ == 8) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ValueTracking.cpp 386 unsigned NLZ = (CLHS->getValue()+1).countLeadingZeros();
387 // NLZ can't be BitWidth with no sign bit
388 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
    [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 246 unsigned NLZ = (CLHS->getValue()+1).countLeadingZeros();
247 // NLZ can't be BitWidth with no sign bit
248 APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 266 milliseconds