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