Lines Matching refs:lvalue

1598 llvm::Value *CodeGenFunction::EmitLoadOfScalar(LValue lvalue,  in EmitLoadOfScalar()  argument
1600 return EmitLoadOfScalar(lvalue.getAddress(*this), lvalue.isVolatile(), in EmitLoadOfScalar()
1601 lvalue.getType(), Loc, lvalue.getBaseInfo(), in EmitLoadOfScalar()
1602 lvalue.getTBAAInfo(), lvalue.isNontemporal()); in EmitLoadOfScalar()
1817 static void EmitStoreOfMatrixScalar(llvm::Value *value, LValue lvalue, in EmitStoreOfMatrixScalar() argument
1819 Address Addr = MaybeConvertMatrixAddress(lvalue.getAddress(CGF), CGF, in EmitStoreOfMatrixScalar()
1821 CGF.EmitStoreOfScalar(value, Addr, lvalue.isVolatile(), lvalue.getType(), in EmitStoreOfMatrixScalar()
1822 lvalue.getBaseInfo(), lvalue.getTBAAInfo(), isInit, in EmitStoreOfMatrixScalar()
1823 lvalue.isNontemporal()); in EmitStoreOfMatrixScalar()
1870 void CodeGenFunction::EmitStoreOfScalar(llvm::Value *value, LValue lvalue, in EmitStoreOfScalar() argument
1872 if (lvalue.getType()->isConstantMatrixType()) { in EmitStoreOfScalar()
1873 EmitStoreOfMatrixScalar(value, lvalue, isInit, *this); in EmitStoreOfScalar()
1877 EmitStoreOfScalar(value, lvalue.getAddress(*this), lvalue.isVolatile(), in EmitStoreOfScalar()
1878 lvalue.getType(), lvalue.getBaseInfo(), in EmitStoreOfScalar()
1879 lvalue.getTBAAInfo(), isInit, lvalue.isNontemporal()); in EmitStoreOfScalar()
5343 LValue lvalue = MakeAddrLValue(addr, type, AlignmentSource::Decl); in convertTempToRValue() local
5346 return RValue::getComplex(EmitLoadOfComplex(lvalue, loc)); in convertTempToRValue()
5348 return lvalue.asAggregateRValue(*this); in convertTempToRValue()
5350 return RValue::get(EmitLoadOfScalar(lvalue, loc)); in convertTempToRValue()