Searched refs:EmitLoadOfLValue (Results 1 - 8 of 8) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGExprComplex.cpp59 /// EmitLoadOfLValue - Given an expression with complex type that represents a
62 ComplexPairTy EmitLoadOfLValue(const Expr *E) { function in class:__anon45::ComplexExprEmitter
63 return EmitLoadOfLValue(CGF.EmitLValue(E));
66 ComplexPairTy EmitLoadOfLValue(LValue LV) { function in class:__anon45::ComplexExprEmitter
117 return EmitLoadOfLValue(result.getReferenceLValue(CGF, E));
123 return EmitLoadOfLValue(E);
126 return EmitLoadOfLValue(E);
131 ComplexPairTy VisitArraySubscriptExpr(Expr *E) { return EmitLoadOfLValue(E); }
132 ComplexPairTy VisitMemberExpr(const Expr *E) { return EmitLoadOfLValue(E); }
135 return EmitLoadOfLValue(CG
[all...]
H A DCGExprScalar.cpp87 Value *EmitLoadOfLValue(LValue LV) { function in class:__anon48::ScalarExprEmitter
88 return CGF.EmitLoadOfLValue(LV).getScalarVal();
91 /// EmitLoadOfLValue - Given an expression with complex type that represents a
94 Value *EmitLoadOfLValue(const Expr *E) { function in class:__anon48::ScalarExprEmitter
95 return EmitLoadOfLValue(EmitCheckedLValue(E, CodeGenFunction::TCK_Load));
211 return EmitLoadOfLValue(CGF.getOpaqueLValueMapping(E));
221 return EmitLoadOfLValue(result.getReferenceLValue(CGF, E));
224 return EmitLoadOfLValue(E);
234 return EmitLoadOfLValue(E);
239 return EmitLoadOfLValue(
[all...]
H A DCGExpr.cpp281 RV = CGF.EmitLoadOfLValue(LV);
444 CGF.EmitStoreThroughLValue(CGF.EmitLoadOfLValue(LV), TempLV);
1121 /// EmitLoadOfLValue - Given an expression that represents a value lvalue, this
1124 RValue CodeGenFunction::EmitLoadOfLValue(LValue LV) { function in class:CodeGenFunction
2556 return EmitLoadOfLValue(FieldLV);
H A DCGCall.cpp1746 RValue srcRV = CGF.EmitLoadOfLValue(srcLV);
1862 EltRV = EmitLoadOfLValue(LV);
H A DCodeGenFunction.cpp441 CXXThisValue = EmitLoadOfLValue(ThisLValue).getScalarVal();
H A DCGObjC.cpp915 value = EmitLoadOfLValue(LV).getScalarVal();
2283 return TryEmitResult(CGF.EmitLoadOfLValue(lvalue).getScalarVal(),
2309 llvm::Value *result = CGF.EmitLoadOfLValue(lv).getScalarVal();
H A DCGStmt.cpp1333 Arg = EmitLoadOfLValue(InputValue).getScalarVal();
H A DCodeGenFunction.h2096 /// EmitLoadOfLValue - Given an expression that represents a value lvalue,
2099 RValue EmitLoadOfLValue(LValue V);

Completed in 696 milliseconds