Home
last modified time | relevance | path

Searched refs:RVal (Results 1 – 10 of 10) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIteratorModeling.cpp103 SVal LVal, SVal RVal, OverloadedOperatorKind Op) const;
269 const SVal RVal = State->getSVal(RHS, C.getLocationContext()); in checkPostStmt() local
273 handleComparison(C, BO, Result, LVal, RVal, in checkPostStmt()
285 SVal AmountVal = IsIterOnLHS ? RVal : LVal; in checkPostStmt()
446 SVal RetVal, SVal LVal, SVal RVal, in handleComparison() argument
454 const auto *RPos = getIteratorPosition(State, RVal); in handleComparison()
479 State = setIteratorPosition(State, RVal, in handleComparison()
481 RPos = getIteratorPosition(State, RVal); in handleComparison()
H A DMismatchedIteratorChecker.cpp191 SVal RVal = State->getSVal(BO->getRHS(), C.getLocationContext()); in checkPreStmt() local
192 verifyMatch(C, LVal, RVal); in checkPreStmt()
H A DIteratorRangeChecker.cpp165 SVal RVal = State->getSVal(BO->getRHS(), C.getLocationContext()); in checkPreStmt() local
169 RVal); in checkPreStmt()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips16HardFloat.cpp386 Value *RVal = RI->getReturnValue(); in fixupFPReturnAndCall() local
387 if (!RVal) continue; in fixupFPReturnAndCall()
395 Type *T = RVal->getType(); in fixupFPReturnAndCall()
404 Value *Params[] = {RVal}; in fixupFPReturnAndCall()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGAtomic.cpp198 llvm::Value *convertRValueToInt(RValue RVal) const;
1818 llvm::Value *AtomicInfo::convertRValueToInt(RValue RVal) const { in convertRValueToInt()
1821 if (RVal.isScalar() && (!hasPadding() || !LVal.isSimple())) { in convertRValueToInt()
1822 llvm::Value *Value = RVal.getScalarVal(); in convertRValueToInt()
1837 Address Addr = materializeRValue(RVal); in convertRValueToInt()
H A DCGStmtOpenMP.cpp6001 LValue LVal, RValue RVal) { in emitSimpleAtomicStore() argument
6003 CGF.EmitStoreThroughGlobalRegLValue(RVal, LVal); in emitSimpleAtomicStore()
6005 CGF.EmitAtomicStore(RVal, LVal, AO, LVal.isVolatile(), /*isInit=*/false); in emitSimpleAtomicStore()
6018 void CodeGenFunction::emitOMPSimpleStore(LValue LVal, RValue RVal, in emitOMPSimpleStore() argument
6023 *this, RVal, RValTy, LVal.getType(), Loc)), in emitOMPSimpleStore()
6028 convertToComplexValue(*this, RVal, RValTy, LVal.getType(), Loc), LVal, in emitOMPSimpleStore()
H A DCodeGenFunction.h3435 void emitOMPSimpleStore(LValue LVal, RValue RVal, QualType RValTy,
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp2532 SVal RVal; in handle() local
2534 RVal = LVState->getRawSVal(*L, Inner->getType()); in handle()
2536 RVal = LVState->getSVal(L->getRegion()); in handle()
2542 if (auto KV = RVal.getAs<KnownSVal>()) in handle()
2547 const MemRegion *RegionRVal = RVal.getAsRegion(); in handle()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp8174 APValue RVal; in VisitCastExpr() local
8179 return DerivedSuccess(RVal, E); in VisitCastExpr()
8214 APValue RVal; in VisitUnaryPostIncDec() local
8218 return DerivedSuccess(RVal, UO); in VisitUnaryPostIncDec()
8547 APValue RVal; in VisitVarDecl() local
8551 Result.setFrom(Info.Ctx, RVal); in VisitVarDecl()
9063 APValue RVal; in VisitCXXThisExpr() local
9295 APValue RVal; in VisitCastExpr() local
9301 return Success(RVal, E); in VisitCastExpr()
12090 APValue RVal; in tryEvaluateBuiltinObjectSize() local
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp687 SDValue RVal = SDValue(Node, 0); in LegalizeLoadOps() local
699 std::tie(RVal, RChain) = TLI.expandUnalignedLoad(LD, DAG); in LegalizeLoadOps()
704 if (SDValue Res = TLI.LowerOperation(RVal, DAG)) { in LegalizeLoadOps()
705 RVal = Res; in LegalizeLoadOps()
716 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res); in LegalizeLoadOps()
722 assert(RVal.getNode() != Node && "Load must be completely replaced"); in LegalizeLoadOps()
723 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal); in LegalizeLoadOps()
726 UpdatedNodes->insert(RVal.getNode()); in LegalizeLoadOps()