OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RHSVal
(Results
1 - 6
of
6
) sorted by null
/external/clang/lib/StaticAnalyzer/Checkers/
IdempotentOperationChecker.cpp
149
SVal
RHSVal
= state->getSVal(RHS);
152
if (LHSVal.isUnknownOrUndef() ||
RHSVal
.isUnknownOrUndef()) {
221
if (LHSVal !=
RHSVal
|| LHSContainsFalsePositive
240
if (!
RHSVal
.isConstant(1) || RHSContainsFalsePositive)
284
if (!
RHSVal
.isConstant(0) || RHSContainsFalsePositive)
/external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp
117
const APInt &
RHSVal
= CI->getValue();
121
if (XorRHS->getValue() == -
RHSVal
) {
122
if (
RHSVal
.isPowerOf2())
123
ExtendAmt = TySizeBits -
RHSVal
.logBase2() - 1;
InstCombineSimplifyDemanded.cpp
530
const APInt &
RHSVal
= RHS->getValue();
531
APInt CarryBits((~LHSKnownZero +
RHSVal
) ^ (~LHSKnownZero ^
RHSVal
));
537
KnownOne = ((LHSKnownZero &
RHSVal
) |
538
(LHSKnownOne & ~
RHSVal
)) & ~CarryBits;
542
KnownZero = LHSKnownZero & ~
RHSVal
& ~CarryBits;
[
all
...]
InstCombinePHI.cpp
29
Value *
RHSVal
= FirstInst->getOperand(1);
32
Type *RHSType =
RHSVal
->getType();
67
if (I->getOperand(1) !=
RHSVal
)
RHSVal
= 0;
74
if (!LHSVal && !
RHSVal
)
90
if (
RHSVal
== 0) {
95
RHSVal
= NewRHS;
115
LHSVal,
RHSVal
);
122
BinaryOperator::Create(BinOp->getOpcode(), LHSVal,
RHSVal
);
[
all
...]
/external/llvm/utils/TableGen/
Record.cpp
148
int64_t
RHSVal
= RHSi->getValue();
150
if (canFitInBitfield(MHSVal, Size) && canFitInBitfield(
RHSVal
, Size)) {
156
new IntInit((
RHSVal
& (1LL << i)) ? 1 : 0),
[
all
...]
/external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp
[
all
...]
Completed in 767 milliseconds