Lines Matching refs:LVal
3643 LValue LVal = CGF.MakeAddrLValue(CGF.CreateMemTemp(Ty, Name), Ty); in createSectionLVal() local
3645 CGF.EmitStoreThroughLValue(RValue::get(Init), LVal, /*isInit*/ true); in createSectionLVal()
3646 return LVal; in createSectionLVal()
5355 LValue LVal, RValue RVal) { in emitSimpleAtomicStore() argument
5356 if (LVal.isGlobalReg()) in emitSimpleAtomicStore()
5357 CGF.EmitStoreThroughGlobalRegLValue(RVal, LVal); in emitSimpleAtomicStore()
5359 CGF.EmitAtomicStore(RVal, LVal, AO, LVal.isVolatile(), /*isInit=*/false); in emitSimpleAtomicStore()
5363 llvm::AtomicOrdering AO, LValue LVal, in emitSimpleAtomicLoad() argument
5365 if (LVal.isGlobalReg()) in emitSimpleAtomicLoad()
5366 return CGF.EmitLoadOfLValue(LVal, Loc); in emitSimpleAtomicLoad()
5368 LVal, Loc, llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO), in emitSimpleAtomicLoad()
5369 LVal.isVolatile()); in emitSimpleAtomicLoad()
5372 void CodeGenFunction::emitOMPSimpleStore(LValue LVal, RValue RVal, in emitOMPSimpleStore() argument
5374 switch (getEvaluationKind(LVal.getType())) { in emitOMPSimpleStore()
5377 *this, RVal, RValTy, LVal.getType(), Loc)), in emitOMPSimpleStore()
5378 LVal); in emitOMPSimpleStore()
5382 convertToComplexValue(*this, RVal, RValTy, LVal.getType(), Loc), LVal, in emitOMPSimpleStore()