Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:EmitLoadOfLValue

59   /// EmitLoadOfLValue - Given an expression with complex type that represents a
62 ComplexPairTy EmitLoadOfLValue(const Expr *E) {
63 return EmitLoadOfLValue(CGF.EmitLValue(E));
66 ComplexPairTy EmitLoadOfLValue(LValue LV) {
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(CGF.getOpaqueLValueMapping(E));
175 ComplexPairTy VisitUnaryDeref(const Expr *E) { return EmitLoadOfLValue(E); }
274 return EmitLoadOfLValue(E);
343 return EmitLoadOfLValue(E);
618 ComplexPairTy LHSComplexPair = EmitLoadOfLValue(LHS);