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

  /external/llvm/lib/Transforms/InstCombine/
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...]
InstCombineSimplifyDemanded.cpp 527 const APInt &RHSVal = RHS->getValue();
528 APInt CarryBits((~LHSKnownZero + RHSVal) ^ (~LHSKnownZero ^ RHSVal));
534 KnownOne = ((LHSKnownZero & RHSVal) |
535 (LHSKnownOne & ~RHSVal)) & ~CarryBits;
539 KnownZero = LHSKnownZero & ~RHSVal & ~CarryBits;
    [all...]
InstCombineAddSub.cpp 117 const APInt &RHSVal = CI->getValue();
121 if (XorRHS->getValue() == -RHSVal) {
122 if (RHSVal.isPowerOf2())
123 ExtendAmt = TySizeBits - RHSVal.logBase2() - 1;
  /external/clang/lib/StaticAnalyzer/Checkers/
IdempotentOperationChecker.cpp 147 SVal RHSVal = state->getSVal(RHS);
150 if (LHSVal.isUnknownOrUndef() || RHSVal.isUnknownOrUndef()) {
219 if (LHSVal != RHSVal || LHSContainsFalsePositive
238 if (!RHSVal.isConstant(1) || RHSContainsFalsePositive)
282 if (!RHSVal.isConstant(0) || RHSContainsFalsePositive)
  /external/clang/lib/Sema/
SemaStmt.cpp 264 SourceLocation DotDotDotLoc, Expr *RHSVal,
276 if (RHSVal && !RHSVal->isTypeDependent() && !RHSVal->isValueDependent() &&
277 VerifyIntegerConstantExpression(RHSVal)) {
278 RHSVal = 0; // Recover by just forgetting about it.
286 CaseStmt *CS = new (Context) CaseStmt(LHSVal, RHSVal, CaseLoc, DotDotDotLoc,
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/llvm/lib/TableGen/
Record.cpp 198 int64_t RHSVal = RHSi->getValue();
200 if (canFitInBitfield(MHSVal, Size) && canFitInBitfield(RHSVal, Size)) {
207 IntInit::get((RHSVal & (1LL << i)) ? 1 : 0),
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 552 milliseconds