Lines Matching refs:LVal
3970 LValue LVal = CGF.MakeAddrLValue(CGF.CreateMemTemp(Ty, Name), Ty); in createSectionLVal() local
3972 CGF.EmitStoreThroughLValue(RValue::get(Init), LVal, /*isInit*/ true); in createSectionLVal()
3973 return LVal; in createSectionLVal()
6001 LValue LVal, RValue RVal) { in emitSimpleAtomicStore() argument
6002 if (LVal.isGlobalReg()) in emitSimpleAtomicStore()
6003 CGF.EmitStoreThroughGlobalRegLValue(RVal, LVal); in emitSimpleAtomicStore()
6005 CGF.EmitAtomicStore(RVal, LVal, AO, LVal.isVolatile(), /*isInit=*/false); in emitSimpleAtomicStore()
6009 llvm::AtomicOrdering AO, LValue LVal, in emitSimpleAtomicLoad() argument
6011 if (LVal.isGlobalReg()) in emitSimpleAtomicLoad()
6012 return CGF.EmitLoadOfLValue(LVal, Loc); in emitSimpleAtomicLoad()
6014 LVal, Loc, llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO), in emitSimpleAtomicLoad()
6015 LVal.isVolatile()); in emitSimpleAtomicLoad()
6018 void CodeGenFunction::emitOMPSimpleStore(LValue LVal, RValue RVal, in emitOMPSimpleStore() argument
6020 switch (getEvaluationKind(LVal.getType())) { in emitOMPSimpleStore()
6023 *this, RVal, RValTy, LVal.getType(), Loc)), in emitOMPSimpleStore()
6024 LVal); in emitOMPSimpleStore()
6028 convertToComplexValue(*this, RVal, RValTy, LVal.getType(), Loc), LVal, in emitOMPSimpleStore()