Lines Matching defs:LVal
4015 LValue LVal = CGF.MakeAddrLValue(CGF.CreateMemTemp(Ty, Name), Ty);
4017 CGF.EmitStoreThroughLValue(RValue::get(Init), LVal, /*isInit*/ true);
4018 return LVal;
6055 LValue LVal, RValue RVal) {
6056 if (LVal.isGlobalReg())
6057 CGF.EmitStoreThroughGlobalRegLValue(RVal, LVal);
6059 CGF.EmitAtomicStore(RVal, LVal, AO, LVal.isVolatile(), /*isInit=*/false);
6063 llvm::AtomicOrdering AO, LValue LVal,
6065 if (LVal.isGlobalReg())
6066 return CGF.EmitLoadOfLValue(LVal, Loc);
6068 LVal, Loc, llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO),
6069 LVal.isVolatile());
6072 void CodeGenFunction::emitOMPSimpleStore(LValue LVal, RValue RVal,
6074 switch (getEvaluationKind(LVal.getType())) {
6077 *this, RVal, RValTy, LVal.getType(), Loc)),
6078 LVal);
6082 convertToComplexValue(*this, RVal, RValTy, LVal.getType(), Loc), LVal,