Lines Matching refs:rvalue

205     void emitCopyIntoMemory(RValue rvalue) const;
252 Address materializeRValue(RValue rvalue) const;
1665 void AtomicInfo::emitCopyIntoMemory(RValue rvalue) const { in emitCopyIntoMemory()
1670 if (rvalue.isAggregate()) { in emitCopyIntoMemory()
1672 LValue Src = CGF.MakeAddrLValue(rvalue.getAggregateAddress(), in emitCopyIntoMemory()
1674 bool IsVolatile = rvalue.isVolatileQualified() || in emitCopyIntoMemory()
1690 if (rvalue.isScalar()) { in emitCopyIntoMemory()
1691 CGF.EmitStoreOfScalar(rvalue.getScalarVal(), TempLVal, /*init*/ true); in emitCopyIntoMemory()
1693 CGF.EmitStoreOfComplex(rvalue.getComplexVal(), TempLVal, /*init*/ true); in emitCopyIntoMemory()
1700 Address AtomicInfo::materializeRValue(RValue rvalue) const { in materializeRValue()
1703 if (rvalue.isAggregate()) in materializeRValue()
1704 return rvalue.getAggregateAddress(); in materializeRValue()
1709 Atomics.emitCopyIntoMemory(rvalue); in materializeRValue()
2028 void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue lvalue, in EmitAtomicStore() argument
2038 return EmitAtomicStore(rvalue, lvalue, AO, IsVolatile, isInit); in EmitAtomicStore()
2046 void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue dest, in EmitAtomicStore() argument
2051 assert(!rvalue.isAggregate() || in EmitAtomicStore()
2052 rvalue.getAggregateAddress().getElementType() == in EmitAtomicStore()
2061 atomics.emitCopyIntoMemory(rvalue); in EmitAtomicStore()
2068 Address srcAddr = atomics.materializeRValue(rvalue); in EmitAtomicStore()
2086 llvm::Value *intValue = atomics.convertRValueToInt(rvalue); in EmitAtomicStore()
2111 atomics.EmitAtomicUpdate(AO, rvalue, IsVolatile); in EmitAtomicStore()