Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:LV

126       LValue LV = LValue::MakeAddr(Builder.CreateStructGEP(Objects, i),
132 EmitStoreThroughLValue(RValue::get(value), LV, true);
848 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), ivar, 0);
858 llvm::Value *ivarAddr = LV.getAddress();
931 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), ivar, 0);
936 ComplexPairTy pair = EmitLoadOfComplex(LV, SourceLocation());
946 EmitAggregateCopy(ReturnValue, LV.getAddress(), ivarType);
951 value = LV.getAddress();
954 if (LV.getQuals().getObjCLifetime() == Qualifiers::OCL_Weak) {
955 value = emitARCRetainLoadOfScalar(*this, LV, ivarType);
960 value = EmitLoadOfLValue(LV, SourceLocation()).getScalarVal();
1369 LValue LV = EmitLValueForIvar(TypeOfSelfObject(),
1372 AggValueSlot::forLValue(LV, AggValueSlot::IsDestructed,
2395 LValue lv = CGF.EmitLValue(e);
2398 llvm::Value *result = CGF.EmitLoadOfLValue(lv,
2402 CGF.EmitStoreOfScalar(getNullForVariable(lv.getAddress()), lv);