Home
last modified time | relevance | path

Searched refs:emitLValue (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenExpr.cpp614 return emitLValue(e->getSubExpr()); in emitUnaryOpLValue()
640 LValue lv = emitLValue(e->getSubExpr()); in emitUnaryOpLValue()
666 LValue lv = emitLValue(e->getSubExpr()); in emitUnaryOpLValue()
819 const LValue lhs = emitLValue(e->getBase()); in emitArraySubscriptExpr()
830 arrayLV = emitLValue(array); in emitArraySubscriptExpr()
969 LValue lv = emitLValue(e->getSubExpr()); in emitCastLValue()
992 LValue lv = emitLValue(e->getSubExpr()); in emitCastLValue()
1032 baseLV = emitLValue(baseExpr); in emitMemberExpr()
1075 return emitLValue(e->getRHS()); in emitBinaryOperatorLValue()
1098 LValue lv = emitLValue(e->getLHS()); in emitBinaryOperatorLValue()
[all …]
H A DCIRGenExprScalar.cpp140 LValue lv = cgf.emitLValue(e); in emitLoadOfLValue()
385 LValue lv = cgf.emitLValue(e->getSubExpr()); in VisitUnaryPostDec()
389 LValue lv = cgf.emitLValue(e->getSubExpr()); in VisitUnaryPostInc()
393 LValue lv = cgf.emitLValue(e->getSubExpr()); in VisitUnaryPreDec()
397 LValue lv = cgf.emitLValue(e->getSubExpr()); in VisitUnaryPreInc()
560 return cgf.emitLValue(e->getSubExpr()).getPointer(); in VisitUnaryAddrOf()
951 lhs = cgf.emitLValue(e->getLHS()); in VISITCOMP()
1093 LValue lhsLV = cgf.emitLValue(e->getLHS()); in emitCompoundAssignLValue()
H A DCIRGenExprComplex.cpp33 return emitLoadOfLValue(cgf.emitLValue(e), e->getExprLoc()); in emitLoadOfLValue()
131 LValue lhs = cgf.emitLValue(e->getLHS()); in emitBinAssignLValue()
H A DCIRGenFunction.cpp685 LValue CIRGenFunction::emitLValue(const Expr *e) { in emitLValue() function in clang::CIRGen::CIRGenFunction
722 return emitLValue(cast<ParenExpr>(e)->getSubExpr()); in emitLValue()
H A DCIRGenExprAggregate.cpp108 LValue lv = cgf.emitLValue(e); in emitAggLoadOfLValue()
H A DCIRGenCXXExpr.cpp116 thisPtr = emitLValue(base); in emitCXXMemberOrOperatorMemberCallExpr()
H A DCIRGenFunction.h170 return bind(cgf, ov, cgf.emitLValue(e)); in bind()
1002 LValue emitLValue(const clang::Expr *e);
H A DCIRGenCall.cpp670 LValue lv = emitLValue(cast<CastExpr>(e)->getSubExpr()); in emitCallArg()