Lines Matching refs:LValue

40     LValue LVal;
43 AtomicInfo(CodeGenFunction &CGF, LValue &lvalue) in AtomicInfo()
97 LVal = LValue::MakeBitfield(Address(Addr, lvalue.getAlignment()), in AtomicInfo()
140 const LValue &getAtomicLValue() const { return LVal; } in getAtomicLValue()
200 LValue projectValue() const { in projectValue()
206 return LValue::MakeAddr(addr, getValueType(), CGF.getContext(), in projectValue()
799 LValue lvalue = MakeAddrLValue(Ptr, AtomicTy); in EmitAtomicExpr()
937 LValue AtomicVal = MakeAddrLValue(Ptr, AtomicTy); in EmitAtomicExpr()
1455 LValue::MakeBitfield(addr, LVal.getBitFieldInfo(), LVal.getType(), in convertAtomicTempToRValue()
1459 LValue::MakeVectorElt(addr, LVal.getVectorIdx(), LVal.getType(), in convertAtomicTempToRValue()
1462 return CGF.EmitLoadOfExtVectorElementLValue(LValue::MakeExtVectorElt( in convertAtomicTempToRValue()
1542 bool CodeGenFunction::LValueIsSuitableForInlineAtomic(LValue LV) { in LValueIsSuitableForInlineAtomic()
1555 RValue CodeGenFunction::EmitAtomicLoad(LValue LV, SourceLocation SL, in EmitAtomicLoad()
1601 RValue CodeGenFunction::EmitAtomicLoad(LValue src, SourceLocation loc, in EmitAtomicLoad()
1617 LValue Dest = CGF.MakeAddrLValue(getAtomicAddress(), getAtomicType()); in emitCopyIntoMemory()
1618 LValue Src = CGF.MakeAddrLValue(rvalue.getAggregateAddress(), in emitCopyIntoMemory()
1633 LValue TempLVal = projectValue(); in emitCopyIntoMemory()
1653 LValue TempLV = CGF.MakeAddrLValue(CreateTempAlloca(), getAtomicType()); in materializeRValue()
1769 LValue AtomicLVal = Atomics.getAtomicLValue(); in EmitAtomicUpdateValue()
1770 LValue DesiredLVal; in EmitAtomicUpdateValue()
1777 LValue UpdateLVal; in EmitAtomicUpdateValue()
1780 LValue::MakeBitfield(Ptr, AtomicLVal.getBitFieldInfo(), in EmitAtomicUpdateValue()
1785 LValue::MakeBitfield(DesiredAddr, AtomicLVal.getBitFieldInfo(), in EmitAtomicUpdateValue()
1789 UpdateLVal = LValue::MakeVectorElt(Ptr, AtomicLVal.getVectorIdx(), in EmitAtomicUpdateValue()
1793 DesiredLVal = LValue::MakeVectorElt( in EmitAtomicUpdateValue()
1798 UpdateLVal = LValue::MakeExtVectorElt(Ptr, AtomicLVal.getExtVectorElts(), in EmitAtomicUpdateValue()
1802 DesiredLVal = LValue::MakeExtVectorElt( in EmitAtomicUpdateValue()
1882 LValue AtomicLVal = Atomics.getAtomicLValue(); in EmitAtomicUpdateValue()
1883 LValue DesiredLVal; in EmitAtomicUpdateValue()
1887 LValue::MakeBitfield(DesiredAddr, AtomicLVal.getBitFieldInfo(), in EmitAtomicUpdateValue()
1892 LValue::MakeVectorElt(DesiredAddr, AtomicLVal.getVectorIdx(), in EmitAtomicUpdateValue()
1897 DesiredLVal = LValue::MakeExtVectorElt( in EmitAtomicUpdateValue()
1979 void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue lvalue, in EmitAtomicStore()
1997 void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue dest, in EmitAtomicStore()
2007 LValue LVal = atomics.getAtomicLValue(); in EmitAtomicStore()
2068 LValue Obj, RValue Expected, RValue Desired, SourceLocation Loc, in EmitAtomicCompareExchange()
2086 LValue LVal, llvm::AtomicOrdering AO, in EmitAtomicUpdate()
2092 void CodeGenFunction::EmitAtomicInit(Expr *init, LValue dest) { in EmitAtomicInit()