Lines Matching refs:LVal
1625 auto LVal = CGF.MakeAddrLValue(CGF.CreateMemTemp(Ty, Name), Ty); in createSectionLVal() local
1627 CGF.EmitScalarInit(Init, LVal); in createSectionLVal()
1628 return LVal; in createSectionLVal()
2131 LValue LVal, RValue RVal) { in emitSimpleAtomicStore() argument
2132 if (LVal.isGlobalReg()) { in emitSimpleAtomicStore()
2133 CGF.EmitStoreThroughGlobalRegLValue(RVal, LVal); in emitSimpleAtomicStore()
2135 CGF.EmitAtomicStore(RVal, LVal, IsSeqCst ? llvm::SequentiallyConsistent in emitSimpleAtomicStore()
2137 LVal.isVolatile(), /*IsInit=*/false); in emitSimpleAtomicStore()
2141 static void emitSimpleStore(CodeGenFunction &CGF, LValue LVal, RValue RVal, in emitSimpleStore() argument
2143 switch (CGF.getEvaluationKind(LVal.getType())) { in emitSimpleStore()
2146 CGF, RVal, RValTy, LVal.getType(), Loc)), in emitSimpleStore()
2147 LVal); in emitSimpleStore()
2151 convertToComplexValue(CGF, RVal, RValTy, LVal.getType(), Loc), LVal, in emitSimpleStore()