OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Demanded
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Target/R600/
AMDGPUISelDAGToDAG.cpp
764
APInt
Demanded
= APInt(32, 0x00FFFFFF);
768
if (TLI->SimplifyDemandedBits(Op,
Demanded
, KnownZero, KnownOne, TLO)) {
/external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp
139
APInt
Demanded
= APInt::getAllOnesValue(BitWidth);
140
return SimplifyDemandedBits(Op,
Demanded
);
143
bool SimplifyDemandedBits(SDValue Op, const APInt &
Demanded
);
696
bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &
Demanded
) {
699
if (!TLI.SimplifyDemandedBits(Op,
Demanded
, KnownZero, KnownOne, TLO))
[
all
...]
Completed in 31 milliseconds