Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIteratorModeling.cpp103 SVal LVal, SVal RVal, OverloadedOperatorKind Op) const;
270 const SVal RVal = State->getSVal(RHS, C.getLocationContext()); in checkPostStmt() local
274 handleComparison(C, BO, Result, LVal, RVal, in checkPostStmt()
286 SVal AmountVal = IsIterOnLHS ? RVal : LVal; in checkPostStmt()
447 SVal RetVal, SVal LVal, SVal RVal, in handleComparison() argument
455 const auto *RPos = getIteratorPosition(State, RVal); in handleComparison()
480 State = setIteratorPosition(State, RVal, in handleComparison()
482 RPos = getIteratorPosition(State, RVal); in handleComparison()
H A DIteratorRangeChecker.cpp170 SVal RVal = State->getSVal(BO->getRHS(), C.getLocationContext()); in checkPreStmt() local
174 RVal); in checkPreStmt()
/freebsd/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/contrib/llvm-project/clang/lib/CodeGen/
H A DCGAtomic.cpp197 llvm::Value *getScalarRValValueOrNull(RValue RVal) const;
200 llvm::Value *convertRValueToInt(RValue RVal, bool CmpXchg = false) const;
1609 llvm::Value *AtomicInfo::getScalarRValValueOrNull(RValue RVal) const { in getScalarRValValueOrNull()
1610 if (RVal.isScalar() && (!hasPadding() || !LVal.isSimple())) in getScalarRValValueOrNull()
1611 return RVal.getScalarVal(); in getScalarRValValueOrNull()
1615 llvm::Value *AtomicInfo::convertRValueToInt(RValue RVal, bool CmpXchg) const { in convertRValueToInt() argument
1618 if (llvm::Value *Value = getScalarRValValueOrNull(RVal)) { in convertRValueToInt()
1631 Address Addr = materializeRValue(RVal); in convertRValueToInt()
H A DCGStmtOpenMP.cpp6055 LValue LVal, RValue RVal) { in emitSimpleAtomicStore() argument
6057 CGF.EmitStoreThroughGlobalRegLValue(RVal, LVal); in emitSimpleAtomicStore()
6059 CGF.EmitAtomicStore(RVal, LVal, AO, LVal.isVolatile(), /*isInit=*/false); in emitSimpleAtomicStore()
6072 void CodeGenFunction::emitOMPSimpleStore(LValue LVal, RValue RVal, in emitOMPSimpleStore() argument
6077 *this, RVal, RValTy, LVal.getType(), Loc)), in emitOMPSimpleStore()
6082 convertToComplexValue(*this, RVal, RValTy, LVal.getType(), Loc), LVal, in emitOMPSimpleStore()
H A DCodeGenFunction.h3661 void emitOMPSimpleStore(LValue LVal, RValue RVal, QualType RValTy,
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp2536 SVal RVal; in handle() local
2538 RVal = LVState->getRawSVal(*L, Inner->getType()); in handle()
2540 RVal = LVState->getSVal(L->getRegion()); in handle()
2546 if (!RVal.isUnknown()) in handle()
2548 getParentTracker().track(RVal, L->getRegion(), Opts, SFC)); in handle()
2551 const MemRegion *RegionRVal = RVal.getAsRegion(); in handle()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp4337 const LValue &LVal, APValue &RVal, in handleLValueToRValueConversion() argument
4385 return extractSubobject(Info, Conv, LitObj, LVal.Designator, RVal, AK); in handleLValueToRValueConversion()
4406 RVal = APValue(extractStringLiteralCharacter(Info, Base, CharIndex)); in handleLValueToRValueConversion()
4412 return Obj && extractSubobject(Info, Conv, Obj, LVal.Designator, RVal, AK); in handleLValueToRValueConversion()
4565 const APValue &RVal) { in handleCompoundAssignment() argument
4576 RVal }; in handleCompoundAssignment()
8238 APValue RVal; in VisitCastExpr() local
8241 LVal, RVal)) in VisitCastExpr()
8243 return DerivedSuccess(RVal, E); in VisitCastExpr()
8278 APValue RVal; in VisitUnaryPostIncDec() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp666 SDValue RVal = SDValue(Node, 0); in LegalizeLoadOps() local
678 std::tie(RVal, RChain) = TLI.expandUnalignedLoad(LD, DAG); in LegalizeLoadOps()
683 if (SDValue Res = TLI.LowerOperation(RVal, DAG)) { in LegalizeLoadOps()
684 RVal = Res; in LegalizeLoadOps()
695 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res); in LegalizeLoadOps()
701 assert(RVal.getNode() != Node && "Load must be completely replaced"); in LegalizeLoadOps()
702 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal); in LegalizeLoadOps()
705 UpdatedNodes->insert(RVal.getNode()); in LegalizeLoadOps()