Lines Matching refs:LVal
3912 LValue LVal = CGF.MakeAddrLValue(CGF.CreateMemTemp(Ty, Name), Ty); in createSectionLVal() local
3914 CGF.EmitStoreThroughLValue(RValue::get(Init), LVal, /*isInit*/ true); in createSectionLVal()
3915 return LVal; in createSectionLVal()
5887 LValue LVal, RValue RVal) { in emitSimpleAtomicStore() argument
5888 if (LVal.isGlobalReg()) in emitSimpleAtomicStore()
5889 CGF.EmitStoreThroughGlobalRegLValue(RVal, LVal); in emitSimpleAtomicStore()
5891 CGF.EmitAtomicStore(RVal, LVal, AO, LVal.isVolatile(), /*isInit=*/false); in emitSimpleAtomicStore()
5895 llvm::AtomicOrdering AO, LValue LVal, in emitSimpleAtomicLoad() argument
5897 if (LVal.isGlobalReg()) in emitSimpleAtomicLoad()
5898 return CGF.EmitLoadOfLValue(LVal, Loc); in emitSimpleAtomicLoad()
5900 LVal, Loc, llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO), in emitSimpleAtomicLoad()
5901 LVal.isVolatile()); in emitSimpleAtomicLoad()
5904 void CodeGenFunction::emitOMPSimpleStore(LValue LVal, RValue RVal, in emitOMPSimpleStore() argument
5906 switch (getEvaluationKind(LVal.getType())) { in emitOMPSimpleStore()
5909 *this, RVal, RValTy, LVal.getType(), Loc)), in emitOMPSimpleStore()
5910 LVal); in emitOMPSimpleStore()
5914 convertToComplexValue(*this, RVal, RValTy, LVal.getType(), Loc), LVal, in emitOMPSimpleStore()