HomeSort by: relevance | last modified time | path
    Searched refs:EmitLoadOfLValue (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprComplex.cpp 71 /// EmitLoadOfLValue - Given an expression with complex type that represents a
74 ComplexPairTy EmitLoadOfLValue(const Expr *E) {
75 return EmitLoadOfLValue(CGF.EmitLValue(E), E->getExprLoc());
78 ComplexPairTy EmitLoadOfLValue(LValue LV, SourceLocation Loc);
134 return EmitLoadOfLValue(Constant.getReferenceLValue(CGF, E),
146 return EmitLoadOfLValue(E);
149 return EmitLoadOfLValue(E);
154 ComplexPairTy VisitArraySubscriptExpr(Expr *E) { return EmitLoadOfLValue(E); }
161 return EmitLoadOfLValue(ME);
165 return EmitLoadOfLValue(CGF.getOrCreateOpaqueLValueMapping(E)
    [all...]
CGExprScalar.cpp 251 Value *EmitLoadOfLValue(LValue LV, SourceLocation Loc) {
252 return CGF.EmitLoadOfLValue(LV, Loc).getScalarVal();
290 /// EmitLoadOfLValue - Given an expression with complex type that represents a
293 Value *EmitLoadOfLValue(const Expr *E) {
294 Value *V = EmitLoadOfLValue(EmitCheckedLValue(E, CodeGenFunction::TCK_Load),
491 return EmitLoadOfLValue(CGF.getOrCreateOpaqueLValueMapping(E),
502 return EmitLoadOfLValue(E);
512 return EmitLoadOfLValue(E);
517 return EmitLoadOfLValue(E);
523 Value *V = CGF.EmitLoadOfLValue(LV, E->getExprLoc()).getScalarVal()
    [all...]
CGNonTrivialStruct.cpp 577 RValue SrcVal = this->CGF->EmitLoadOfLValue(SrcLV, SourceLocation());
723 CGF->EmitLoadOfLValue(SrcLV, SourceLocation()).getScalarVal();
786 CGF->EmitLoadOfLValue(SrcLV, SourceLocation()).getScalarVal();
790 CGF->EmitLoadOfLValue(DstLV, SourceLocation()).getScalarVal();
CGStmt.cpp 2058 Arg = EmitLoadOfLValue(InputValue, Loc).getScalarVal();
2737 EmitLoadOfLValue(EmitLValueForField(Base, FD), S.getBeginLoc())
2748 CXXThisValue = EmitLoadOfLValue(ThisLValue, Loc).getScalarVal();
CGAtomic.cpp 1458 return CGF.EmitLoadOfLValue(
1806 UpRVal = CGF.EmitLoadOfLValue(UpdateLVal, SourceLocation());
CodeGenFunction.cpp 1122 EmitLoadOfLValue(ThisFieldLValue, SourceLocation()).getScalarVal();
1127 auto *ExprArg = EmitLoadOfLValue(EmitLValueForLambdaField(FD),
CGObjC.cpp 1268 value = EmitLoadOfLValue(LV, SourceLocation()).getScalarVal();
2874 result = CGF.EmitLoadOfLValue(lvalue, SourceLocation()).getScalarVal();
2897 llvm::Value *result = CGF.EmitLoadOfLValue(lv,
CGExpr.cpp 1592 return EmitLoadOfLValue(Constant.getReferenceLValue(*this, E),
1892 /// EmitLoadOfLValue - Given an expression that represents a value lvalue, this
1895 RValue CodeGenFunction::EmitLoadOfLValue(LValue LV, SourceLocation Loc) {
4830 return EmitLoadOfLValue(FieldLV, Loc);
CGException.cpp 1971 CXXThisValue = EmitLoadOfLValue(ThisFieldLValue, SourceLocation())
CGStmtOpenMP.cpp 5366 return CGF.EmitLoadOfLValue(LVal, Loc);
5557 EmitStoreThroughLValue(CommonGen(EmitLoadOfLValue(X, Loc)), X);
CodeGenFunction.h 3803 /// EmitLoadOfLValue - Given an expression that represents a value lvalue,
3806 RValue EmitLoadOfLValue(LValue V, SourceLocation Loc);
CGCall.cpp 3912 RValue srcRV = CGF.EmitLoadOfLValue(srcLV, SourceLocation());
CGOpenMPRuntime.cpp 653 InitRVal = CGF.EmitLoadOfLValue(LV, DRD->getLocation());
8834 RValue VarRVal = CGF.EmitLoadOfLValue(VarLVal, RD->getLocation());

Completed in 96 milliseconds