Lines Matching refs:rvalue

205     void emitCopyIntoMemory(RValue rvalue) const;
252 Address materializeRValue(RValue rvalue) const;
1770 void AtomicInfo::emitCopyIntoMemory(RValue rvalue) const { in emitCopyIntoMemory()
1775 if (rvalue.isAggregate()) { in emitCopyIntoMemory()
1777 LValue Src = CGF.MakeAddrLValue(rvalue.getAggregateAddress(), in emitCopyIntoMemory()
1779 bool IsVolatile = rvalue.isVolatileQualified() || in emitCopyIntoMemory()
1795 if (rvalue.isScalar()) { in emitCopyIntoMemory()
1796 CGF.EmitStoreOfScalar(rvalue.getScalarVal(), TempLVal, /*init*/ true); in emitCopyIntoMemory()
1798 CGF.EmitStoreOfComplex(rvalue.getComplexVal(), TempLVal, /*init*/ true); in emitCopyIntoMemory()
1805 Address AtomicInfo::materializeRValue(RValue rvalue) const { in materializeRValue()
1808 if (rvalue.isAggregate()) in materializeRValue()
1809 return rvalue.getAggregateAddress(); in materializeRValue()
1814 Atomics.emitCopyIntoMemory(rvalue); in materializeRValue()
2129 void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue lvalue, in EmitAtomicStore() argument
2139 return EmitAtomicStore(rvalue, lvalue, AO, IsVolatile, isInit); in EmitAtomicStore()
2147 void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue dest, in EmitAtomicStore() argument
2152 assert(!rvalue.isAggregate() || in EmitAtomicStore()
2153 rvalue.getAggregateAddress().getElementType() == in EmitAtomicStore()
2162 atomics.emitCopyIntoMemory(rvalue); in EmitAtomicStore()
2169 Address srcAddr = atomics.materializeRValue(rvalue); in EmitAtomicStore()
2185 llvm::Value *intValue = atomics.convertRValueToInt(rvalue); in EmitAtomicStore()
2209 atomics.EmitAtomicUpdate(AO, rvalue, IsVolatile); in EmitAtomicStore()