OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RHSKnownOne
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp
143
APInt RHSKnownZero(BitWidth, 0),
RHSKnownOne
(BitWidth, 0);
161
computeKnownBits(I->getOperand(1), RHSKnownZero,
RHSKnownOne
, Depth + 1,
169
if ((DemandedMask & ~LHSKnownZero &
RHSKnownOne
) ==
185
computeKnownBits(I->getOperand(1), RHSKnownZero,
RHSKnownOne
, Depth + 1,
196
if ((DemandedMask & ~
RHSKnownOne
& LHSKnownZero) ==
197
(DemandedMask & ~
RHSKnownOne
))
205
if ((DemandedMask & (~LHSKnownZero) &
RHSKnownOne
) ==
212
computeKnownBits(I->getOperand(1), RHSKnownZero,
RHSKnownOne
, Depth + 1,
244
RHSKnownOne
, Depth + 1) ||
248
assert(!(RHSKnownZero &
RHSKnownOne
) && "Bits known to be one AND zero?")
[
all
...]
InstCombineAddSub.cpp
922
APInt
RHSKnownOne
(BitWidth, 0);
923
computeKnownBits(RHS, RHSKnownZero,
RHSKnownOne
, 0, &CxtI);
928
(LHSKnownZero[BitWidth - 1] &&
RHSKnownOne
[BitWidth - 1]))
959
APInt
RHSKnownOne
(BitWidth, 0);
960
computeKnownBits(RHS, RHSKnownZero,
RHSKnownOne
, 0, &CxtI);
964
if ((LHSKnownOne[BitWidth - 1] &&
RHSKnownOne
[BitWidth - 1]) ||
[
all
...]
/external/llvm/lib/Analysis/
ValueTracking.cpp
151
APInt RHSKnownZero(IT->getBitWidth(), 0),
RHSKnownOne
(IT->getBitWidth(), 0);
153
computeKnownBits(RHS, RHSKnownZero,
RHSKnownOne
, DL, 0, AC, CxtI, DT);
776
APInt RHSKnownZero(BitWidth, 0),
RHSKnownOne
(BitWidth, 0);
777
computeKnownBits(A, RHSKnownZero,
RHSKnownOne
, DL, Depth+1, Query(Q, I));
779
KnownOne |=
RHSKnownOne
;
784
APInt RHSKnownZero(BitWidth, 0),
RHSKnownOne
(BitWidth, 0);
785
computeKnownBits(A, RHSKnownZero,
RHSKnownOne
, DL, Depth+1, Query(Q, I));
[
all
...]
/external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp
[
all
...]
Completed in 216 milliseconds