Lines Matching defs:LVal
4078 LValue LVal = CGF.MakeAddrLValue(CGF.CreateMemTemp(Ty, Name), Ty);
4080 CGF.EmitStoreThroughLValue(RValue::get(Init), LVal, /*isInit*/ true);
4081 return LVal;
6183 LValue LVal, RValue RVal) {
6184 if (LVal.isGlobalReg())
6185 CGF.EmitStoreThroughGlobalRegLValue(RVal, LVal);
6187 CGF.EmitAtomicStore(RVal, LVal, AO, LVal.isVolatile(), /*isInit=*/false);
6191 llvm::AtomicOrdering AO, LValue LVal,
6193 if (LVal.isGlobalReg())
6194 return CGF.EmitLoadOfLValue(LVal, Loc);
6196 LVal, Loc, llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO),
6197 LVal.isVolatile());
6200 void CodeGenFunction::emitOMPSimpleStore(LValue LVal, RValue RVal,
6202 switch (getEvaluationKind(LVal.getType())) {
6205 *this, RVal, RValTy, LVal.getType(), Loc)),
6206 LVal);
6210 convertToComplexValue(*this, RVal, RValTy, LVal.getType(), Loc), LVal,