Lines Matching refs:LValue
40 LValue LVal;
43 AtomicInfo(CodeGenFunction &CGF, LValue &lvalue) in AtomicInfo()
96 LVal = LValue::MakeBitfield( in AtomicInfo()
139 const LValue &getAtomicLValue() const { return LVal; } in getAtomicLValue()
210 LValue projectValue() const { in projectValue()
216 return LValue::MakeAddr(addr, getValueType(), CGF.getContext(), in projectValue()
831 LValue lvalue = MakeAddrLValue(Ptr, AtomicTy); in EmitAtomicExpr()
1004 LValue AtomicVal = MakeAddrLValue(Ptr, AtomicTy); in EmitAtomicExpr()
1392 LValue::MakeBitfield(addr, LVal.getBitFieldInfo(), LVal.getType(), in convertAtomicTempToRValue()
1396 LValue::MakeVectorElt(addr, LVal.getVectorIdx(), LVal.getType(), in convertAtomicTempToRValue()
1399 return CGF.EmitLoadOfExtVectorElementLValue(LValue::MakeExtVectorElt( in convertAtomicTempToRValue()
1492 bool CodeGenFunction::LValueIsSuitableForInlineAtomic(LValue LV) { in LValueIsSuitableForInlineAtomic()
1505 RValue CodeGenFunction::EmitAtomicLoad(LValue LV, SourceLocation SL, in EmitAtomicLoad()
1551 RValue CodeGenFunction::EmitAtomicLoad(LValue src, SourceLocation loc, in EmitAtomicLoad()
1567 LValue Dest = CGF.MakeAddrLValue(getAtomicAddress(), getAtomicType()); in emitCopyIntoMemory()
1568 LValue Src = CGF.MakeAddrLValue(rvalue.getAggregateAddress(), in emitCopyIntoMemory()
1583 LValue TempLVal = projectValue(); in emitCopyIntoMemory()
1603 LValue TempLV = CGF.MakeAddrLValue(CreateTempAlloca(), getAtomicType()); in materializeRValue()
1714 LValue AtomicLVal = Atomics.getAtomicLValue(); in EmitAtomicUpdateValue()
1715 LValue DesiredLVal; in EmitAtomicUpdateValue()
1722 LValue UpdateLVal; in EmitAtomicUpdateValue()
1725 LValue::MakeBitfield(Ptr, AtomicLVal.getBitFieldInfo(), in EmitAtomicUpdateValue()
1730 LValue::MakeBitfield(DesiredAddr, AtomicLVal.getBitFieldInfo(), in EmitAtomicUpdateValue()
1734 UpdateLVal = LValue::MakeVectorElt(Ptr, AtomicLVal.getVectorIdx(), in EmitAtomicUpdateValue()
1738 DesiredLVal = LValue::MakeVectorElt( in EmitAtomicUpdateValue()
1743 UpdateLVal = LValue::MakeExtVectorElt(Ptr, AtomicLVal.getExtVectorElts(), in EmitAtomicUpdateValue()
1747 DesiredLVal = LValue::MakeExtVectorElt( in EmitAtomicUpdateValue()
1832 LValue AtomicLVal = Atomics.getAtomicLValue(); in EmitAtomicUpdateValue()
1833 LValue DesiredLVal; in EmitAtomicUpdateValue()
1837 LValue::MakeBitfield(DesiredAddr, AtomicLVal.getBitFieldInfo(), in EmitAtomicUpdateValue()
1842 LValue::MakeVectorElt(DesiredAddr, AtomicLVal.getVectorIdx(), in EmitAtomicUpdateValue()
1847 DesiredLVal = LValue::MakeExtVectorElt( in EmitAtomicUpdateValue()
1929 void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue lvalue, in EmitAtomicStore()
1947 void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue dest, in EmitAtomicStore()
1957 LValue LVal = atomics.getAtomicLValue(); in EmitAtomicStore()
2020 LValue Obj, RValue Expected, RValue Desired, SourceLocation Loc, in EmitAtomicCompareExchange()
2038 LValue LVal, llvm::AtomicOrdering AO, in EmitAtomicUpdate()
2044 void CodeGenFunction::EmitAtomicInit(Expr *init, LValue dest) { in EmitAtomicInit()