Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:LVal

1625   auto LVal = CGF.MakeAddrLValue(CGF.CreateMemTemp(Ty, Name), Ty);
1627 CGF.EmitScalarInit(Init, LVal);
1628 return LVal;
2131 LValue LVal, RValue RVal) {
2132 if (LVal.isGlobalReg()) {
2133 CGF.EmitStoreThroughGlobalRegLValue(RVal, LVal);
2135 CGF.EmitAtomicStore(RVal, LVal, IsSeqCst ? llvm::SequentiallyConsistent
2137 LVal.isVolatile(), /*IsInit=*/false);
2141 static void emitSimpleStore(CodeGenFunction &CGF, LValue LVal, RValue RVal,
2143 switch (CGF.getEvaluationKind(LVal.getType())) {
2146 CGF, RVal, RValTy, LVal.getType(), Loc)),
2147 LVal);
2151 convertToComplexValue(CGF, RVal, RValTy, LVal.getType(), Loc), LVal,