OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NLZ
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp
478
unsigned
NLZ
= DemandedMask.countLeadingZeros();
489
// input. Otherwise, we demand all the input bits except
NLZ
top bits.
490
APInt InDemandedBits(APInt::getLowBitsSet(BitWidth, BitWidth -
NLZ
));
542
APInt DemandedFromOps(APInt::getLowBitsSet(BitWidth, BitWidth-
NLZ
));
558
uint32_t
NLZ
= DemandedMask.countLeadingZeros();
559
APInt DemandedFromOps(APInt::getLowBitsSet(BitWidth, BitWidth-
NLZ
));
[
all
...]
/external/llvm/lib/Analysis/
ValueTracking.cpp
57
unsigned
NLZ
= (CLHS->getValue()+1).countLeadingZeros();
58
//
NLZ
can't be BitWidth with no sign bit
59
APInt MaskV = APInt::getHighBitsSet(BitWidth,
NLZ
+1);
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp
[
all
...]
Completed in 1273 milliseconds