• Home
  • Raw
  • Download

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()
681 LValue lvalue = MakeAddrLValue(Ptr, AtomicTy); in EmitAtomicExpr()
769 LValue AtomicVal = MakeAddrLValue(Ptr, AtomicTy); in EmitAtomicExpr()
1183 LValue::MakeBitfield(addr, LVal.getBitFieldInfo(), LVal.getType(), in convertAtomicTempToRValue()
1187 LValue::MakeVectorElt(addr, LVal.getVectorIdx(), LVal.getType(), in convertAtomicTempToRValue()
1190 return CGF.EmitLoadOfExtVectorElementLValue(LValue::MakeExtVectorElt( in convertAtomicTempToRValue()
1271 bool CodeGenFunction::LValueIsSuitableForInlineAtomic(LValue LV) { in LValueIsSuitableForInlineAtomic()
1284 RValue CodeGenFunction::EmitAtomicLoad(LValue LV, SourceLocation SL, in EmitAtomicLoad()
1330 RValue CodeGenFunction::EmitAtomicLoad(LValue src, SourceLocation loc, in EmitAtomicLoad()
1360 LValue TempLVal = projectValue(); in emitCopyIntoMemory()
1380 LValue TempLV = CGF.MakeAddrLValue(CreateTempAlloca(), getAtomicType()); in materializeRValue()
1496 LValue AtomicLVal = Atomics.getAtomicLValue(); in EmitAtomicUpdateValue()
1497 LValue DesiredLVal; in EmitAtomicUpdateValue()
1504 LValue UpdateLVal; in EmitAtomicUpdateValue()
1507 LValue::MakeBitfield(Ptr, AtomicLVal.getBitFieldInfo(), in EmitAtomicUpdateValue()
1511 LValue::MakeBitfield(DesiredAddr, AtomicLVal.getBitFieldInfo(), in EmitAtomicUpdateValue()
1515 UpdateLVal = LValue::MakeVectorElt(Ptr, AtomicLVal.getVectorIdx(), in EmitAtomicUpdateValue()
1518 DesiredLVal = LValue::MakeVectorElt( in EmitAtomicUpdateValue()
1523 UpdateLVal = LValue::MakeExtVectorElt(Ptr, AtomicLVal.getExtVectorElts(), in EmitAtomicUpdateValue()
1526 DesiredLVal = LValue::MakeExtVectorElt( in EmitAtomicUpdateValue()
1608 LValue AtomicLVal = Atomics.getAtomicLValue(); in EmitAtomicUpdateValue()
1609 LValue DesiredLVal; in EmitAtomicUpdateValue()
1613 LValue::MakeBitfield(DesiredAddr, AtomicLVal.getBitFieldInfo(), in EmitAtomicUpdateValue()
1618 LValue::MakeVectorElt(DesiredAddr, AtomicLVal.getVectorIdx(), in EmitAtomicUpdateValue()
1623 DesiredLVal = LValue::MakeExtVectorElt( in EmitAtomicUpdateValue()
1706 void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue lvalue, in EmitAtomicStore()
1724 void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue dest, in EmitAtomicStore()
1734 LValue LVal = atomics.getAtomicLValue(); in EmitAtomicStore()
1792 LValue Obj, RValue Expected, RValue Desired, SourceLocation Loc, in EmitAtomicCompareExchange()
1810 LValue LVal, llvm::AtomicOrdering AO, in EmitAtomicUpdate()
1816 void CodeGenFunction::EmitAtomicInit(Expr *init, LValue dest) { in EmitAtomicInit()