Lines Matching defs:ivarList
3774 auto ivarList = builder.beginStruct();
3775 auto countSlot = ivarList.addPlaceholder();
3776 auto ivars = ivarList.beginArray(ObjCTypes.IvarTy);
3795 ivarList.abandon();
3799 ivars.finishAndAddTo(ivarList);
3800 ivarList.fillPlaceholderWithInt(countSlot, ObjCTypes.IntTy, count);
3803 GV = CreateMetadataVar("OBJC_INSTANCE_VARIABLES_" + ID->getName(), ivarList,
6902 auto ivarList = builder.beginStruct();
6903 ivarList.addInt(ObjCTypes.IntTy,
6905 auto ivarCountSlot = ivarList.addPlaceholder();
6906 auto ivars = ivarList.beginArray(ObjCTypes.IvarnfABITy);
6942 ivarList.abandon();
6947 ivars.finishAndAddTo(ivarList);
6948 ivarList.fillPlaceholderWithInt(ivarCountSlot, ObjCTypes.IntTy, ivarCount);
6952 ivarList, Prefix + OID->getObjCRuntimeNameAsString(), CGM);