Lines Matching refs:lvalue
1847 llvm::Value *CodeGenFunction::EmitLoadOfScalar(LValue lvalue, in EmitLoadOfScalar() argument
1849 return EmitLoadOfScalar(lvalue.getAddress(*this), lvalue.isVolatile(), in EmitLoadOfScalar()
1850 lvalue.getType(), Loc, lvalue.getBaseInfo(), in EmitLoadOfScalar()
1851 lvalue.getTBAAInfo(), lvalue.isNontemporal()); in EmitLoadOfScalar()
2083 static void EmitStoreOfMatrixScalar(llvm::Value *value, LValue lvalue, in EmitStoreOfMatrixScalar() argument
2085 Address Addr = MaybeConvertMatrixAddress(lvalue.getAddress(CGF), CGF, in EmitStoreOfMatrixScalar()
2087 CGF.EmitStoreOfScalar(value, Addr, lvalue.isVolatile(), lvalue.getType(), in EmitStoreOfMatrixScalar()
2088 lvalue.getBaseInfo(), lvalue.getTBAAInfo(), isInit, in EmitStoreOfMatrixScalar()
2089 lvalue.isNontemporal()); in EmitStoreOfMatrixScalar()
2148 void CodeGenFunction::EmitStoreOfScalar(llvm::Value *value, LValue lvalue, in EmitStoreOfScalar() argument
2150 if (lvalue.getType()->isConstantMatrixType()) { in EmitStoreOfScalar()
2151 EmitStoreOfMatrixScalar(value, lvalue, isInit, *this); in EmitStoreOfScalar()
2155 EmitStoreOfScalar(value, lvalue.getAddress(*this), lvalue.isVolatile(), in EmitStoreOfScalar()
2156 lvalue.getType(), lvalue.getBaseInfo(), in EmitStoreOfScalar()
2157 lvalue.getTBAAInfo(), isInit, lvalue.isNontemporal()); in EmitStoreOfScalar()
5973 LValue lvalue = MakeAddrLValue(addr, type, AlignmentSource::Decl); in convertTempToRValue() local
5976 return RValue::getComplex(EmitLoadOfComplex(lvalue, loc)); in convertTempToRValue()
5978 return lvalue.asAggregateRValue(*this); in convertTempToRValue()
5980 return RValue::get(EmitLoadOfScalar(lvalue, loc)); in convertTempToRValue()