/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGExprComplex.cpp | 79 ComplexPairTy EmitLoadOfLValue(const Expr *E) { in EmitLoadOfLValue() function in __anon18403adf0111::ComplexExprEmitter 80 return EmitLoadOfLValue(CGF.EmitLValue(E), E->getExprLoc()); in EmitLoadOfLValue() 83 ComplexPairTy EmitLoadOfLValue(LValue LV, SourceLocation Loc); 139 return EmitLoadOfLValue(Constant.getReferenceLValue(CGF, E), in emitConstant() 151 return EmitLoadOfLValue(E); in VisitDeclRefExpr() 154 return EmitLoadOfLValue(E); in VisitObjCIvarRefExpr() 159 ComplexPairTy VisitArraySubscriptExpr(Expr *E) { return EmitLoadOfLValue(E); } in VisitArraySubscriptExpr() 166 return EmitLoadOfLValue(ME); in VisitMemberExpr() 170 return EmitLoadOfLValue(CGF.getOrCreateOpaqueLValueMapping(E), in VisitOpaqueValueExpr() 186 return EmitLoadOfLValue(E); in VisitImplicitCastExpr() [all …]
|
H A D | CGExprScalar.cpp | 261 Value *EmitLoadOfLValue(LValue LV, SourceLocation Loc) { in EmitLoadOfLValue() function in __anone7cacfbd0111::ScalarExprEmitter 262 return CGF.EmitLoadOfLValue(LV, Loc).getScalarVal(); in EmitLoadOfLValue() 302 Value *EmitLoadOfLValue(const Expr *E) { in EmitLoadOfLValue() function in __anone7cacfbd0111::ScalarExprEmitter 303 Value *V = EmitLoadOfLValue(EmitCheckedLValue(E, CodeGenFunction::TCK_Load), in EmitLoadOfLValue() 514 return EmitLoadOfLValue(CGF.getOrCreateOpaqueLValueMapping(E), in VisitOpaqueValueExpr() 525 return EmitLoadOfLValue(E); in VisitDeclRefExpr() 535 return EmitLoadOfLValue(E); in VisitObjCIvarRefExpr() 540 return EmitLoadOfLValue(E); in VisitObjCMessageExpr() 546 Value *V = CGF.EmitLoadOfLValue(LV, E->getExprLoc()).getScalarVal(); in VisitObjCIsaExpr() 566 Value *VisitExtVectorElementExpr(Expr *E) { return EmitLoadOfLValue(E); } in VisitExtVectorElementExpr() [all …]
|
H A D | CGNonTrivialStruct.cpp | 567 RValue SrcVal = this->CGF->EmitLoadOfLValue(SrcLV, SourceLocation()); in visitVolatileTrivial() 713 CGF->EmitLoadOfLValue(SrcLV, SourceLocation()).getScalarVal(); in visitARCStrong() 776 CGF->EmitLoadOfLValue(SrcLV, SourceLocation()).getScalarVal(); in visitARCStrong() 780 CGF->EmitLoadOfLValue(DstLV, SourceLocation()).getScalarVal(); in visitARCStrong()
|
H A D | CGStmt.cpp | 2383 return {EmitLoadOfLValue(InputValue, Loc).getScalarVal(), nullptr}; in EmitAsmInputLValue() 3185 EmitLoadOfLValue(EmitLValueForField(Base, FD), S.getBeginLoc()) in GenerateCapturedStmtFunction() 3196 CXXThisValue = EmitLoadOfLValue(ThisLValue, Loc).getScalarVal(); in GenerateCapturedStmtFunction()
|
H A D | CGAtomic.cpp | 1395 return CGF.EmitLoadOfLValue( in convertAtomicTempToRValue() 1751 UpRVal = CGF.EmitLoadOfLValue(UpdateLVal, SourceLocation()); in EmitAtomicUpdateValue()
|
H A D | CGObjC.cpp | 1303 value = EmitLoadOfLValue(LV, SourceLocation()).getScalarVal(); in generateObjCGetterBody() 2898 result = CGF.EmitLoadOfLValue(lvalue, SourceLocation()).getScalarVal(); in tryEmitARCRetainLoadOfScalar() 2921 llvm::Value *result = CGF.EmitLoadOfLValue(lv, in tryEmitARCRetainLoadOfScalar()
|
H A D | CodeGenFunction.cpp | 1262 EmitLoadOfLValue(ThisFieldLValue, SourceLocation()).getScalarVal(); in StartFunction() 1267 auto *ExprArg = EmitLoadOfLValue(EmitLValueForLambdaField(FD), in StartFunction()
|
H A D | CGExpr.cpp | 1835 return EmitLoadOfLValue(Constant.getReferenceLValue(*this, E), in emitScalarConstant() 2177 return EmitLoadOfLValue(LV, Loc); in EmitLoadOfAnyValue() 2190 RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, SourceLocation Loc) { in EmitLoadOfLValue() function in CodeGenFunction 5433 return EmitLoadOfLValue(FieldLV, Loc); in EmitRValueForField()
|
H A D | CGException.cpp | 1994 CXXThisValue = EmitLoadOfLValue(ThisFieldLValue, SourceLocation()) in EmitCapturedLocals()
|
H A D | CGStmtOpenMP.cpp | 6066 return CGF.EmitLoadOfLValue(LVal, Loc); in emitSimpleAtomicLoad() 6281 EmitStoreThroughLValue(CommonGen(EmitLoadOfLValue(X, Loc)), X); in EmitOMPAtomicSimpleUpdateExpr()
|
H A D | CodeGenFunction.h | 4230 RValue EmitLoadOfLValue(LValue V, SourceLocation Loc);
|
H A D | CGCall.cpp | 4297 RValue srcRV = CGF.EmitLoadOfLValue(srcLV, SourceLocation()); in emitWritebackArg()
|
H A D | CGOpenMPRuntime.cpp | 631 InitRVal = CGF.EmitLoadOfLValue(LV, DRD->getLocation()); in emitInitWithReductionInitializer() 8425 RValue VarRVal = CGF.EmitLoadOfLValue(VarLVal, RD->getLocation()); in generateInfoForLambdaCaptures()
|