Searched refs:RVal (Results 1 – 7 of 7) sorted by relevance
/external/llvm/lib/Target/Mips/ |
D | Mips16HardFloat.cpp | 395 Value *RVal = RI->getReturnValue(); in fixupFPReturnAndCall() local 396 if (!RVal) continue; in fixupFPReturnAndCall() 404 Type *T = RVal->getType(); in fixupFPReturnAndCall() 413 Value *Params[] = {RVal}; in fixupFPReturnAndCall()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | BugReporterVisitors.cpp | 1032 SVal RVal; in trackNullOrUndefValue() local 1034 RVal = state->getRawSVal(L.getValue(), E->getType()); in trackNullOrUndefValue() 1036 RVal = state->getSVal(L->getRegion()); in trackNullOrUndefValue() 1038 const MemRegion *RegionRVal = RVal.getAsRegion(); in trackNullOrUndefValue()
|
/external/clang/lib/CodeGen/ |
D | CGAtomic.cpp | 190 llvm::Value *convertRValueToInt(RValue RVal) const; 1406 llvm::Value *AtomicInfo::convertRValueToInt(RValue RVal) const { in convertRValueToInt() 1409 if (RVal.isScalar() && (!hasPadding() || !LVal.isSimple())) { in convertRValueToInt() 1410 llvm::Value *Value = RVal.getScalarVal(); in convertRValueToInt() 1425 Address Addr = materializeRValue(RVal); in convertRValueToInt()
|
D | CGStmtOpenMP.cpp | 2131 LValue LVal, RValue RVal) { in emitSimpleAtomicStore() argument 2133 CGF.EmitStoreThroughGlobalRegLValue(RVal, LVal); in emitSimpleAtomicStore() 2135 CGF.EmitAtomicStore(RVal, LVal, IsSeqCst ? llvm::SequentiallyConsistent in emitSimpleAtomicStore() 2141 static void emitSimpleStore(CodeGenFunction &CGF, LValue LVal, RValue RVal, in emitSimpleStore() argument 2146 CGF, RVal, RValTy, LVal.getType(), Loc)), in emitSimpleStore() 2151 convertToComplexValue(CGF, RVal, RValTy, LVal.getType(), Loc), LVal, in emitSimpleStore()
|
/external/clang/lib/AST/ |
D | ExprConstant.cpp | 2796 const LValue &LVal, APValue &RVal) { in handleLValueToRValueConversion() argument 2816 return extractSubobject(Info, Conv, LitObj, LVal.Designator, RVal); in handleLValueToRValueConversion() 2823 return extractSubobject(Info, Conv, StrObj, LVal.Designator, RVal); in handleLValueToRValueConversion() 2828 return Obj && extractSubobject(Info, Conv, Obj, LVal.Designator, RVal); in handleLValueToRValueConversion() 2954 BinaryOperatorKind Opcode, const APValue &RVal) { in handleCompoundAssignment() argument 2965 RVal }; in handleCompoundAssignment() 4351 APValue RVal; in VisitCastExpr() local 4354 LVal, RVal)) in VisitCastExpr() 4356 return DerivedSuccess(RVal, E); in VisitCastExpr() 4376 APValue RVal; in VisitUnaryPostIncDec() local [all …]
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeDAG.cpp | 908 SDValue RVal = SDValue(Node, 0); in LegalizeLoadOps() local 921 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain); in LegalizeLoadOps() 925 SDValue Res = TLI.LowerOperation(RVal, DAG); in LegalizeLoadOps() 927 RVal = Res; in LegalizeLoadOps() 938 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res); in LegalizeLoadOps() 944 assert(RVal.getNode() != Node && "Load must be completely replaced"); in LegalizeLoadOps() 945 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal); in LegalizeLoadOps() 948 UpdatedNodes->insert(RVal.getNode()); in LegalizeLoadOps()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopStrengthReduce.cpp | 2453 static bool isCompatibleIVType(Value *LVal, Value *RVal) { in isCompatibleIVType() argument 2455 Type *RType = RVal->getType(); in isCompatibleIVType()
|