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()
5951 LValue LVal, RValue RVal) { in emitSimpleAtomicStore() argument
5952 if (LVal.isGlobalReg()) in emitSimpleAtomicStore()
5953 CGF.EmitStoreThroughGlobalRegLValue(RVal, LVal); in emitSimpleAtomicStore()
5955 CGF.EmitAtomicStore(RVal, LVal, AO, LVal.isVolatile(), /*isInit=*/false); in emitSimpleAtomicStore()
5959 llvm::AtomicOrdering AO, LValue LVal, in emitSimpleAtomicLoad() argument
5961 if (LVal.isGlobalReg()) in emitSimpleAtomicLoad()
5962 return CGF.EmitLoadOfLValue(LVal, Loc); in emitSimpleAtomicLoad()
5964 LVal, Loc, llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO), in emitSimpleAtomicLoad()
5965 LVal.isVolatile()); in emitSimpleAtomicLoad()
5968 void CodeGenFunction::emitOMPSimpleStore(LValue LVal, RValue RVal, in emitOMPSimpleStore() argument
5970 switch (getEvaluationKind(LVal.getType())) { in emitOMPSimpleStore()
5973 *this, RVal, RValTy, LVal.getType(), Loc)), in emitOMPSimpleStore()
5974 LVal); in emitOMPSimpleStore()
5978 convertToComplexValue(*this, RVal, RValTy, LVal.getType(), Loc), LVal, in emitOMPSimpleStore()