Lines Matching defs:ivarList
3778 auto ivarList = builder.beginStruct();
3779 auto countSlot = ivarList.addPlaceholder();
3780 auto ivars = ivarList.beginArray(ObjCTypes.IvarTy);
3799 ivarList.abandon();
3803 ivars.finishAndAddTo(ivarList);
3804 ivarList.fillPlaceholderWithInt(countSlot, ObjCTypes.IntTy, count);
3807 GV = CreateMetadataVar("OBJC_INSTANCE_VARIABLES_" + ID->getName(), ivarList,
6912 auto ivarList = builder.beginStruct();
6913 ivarList.addInt(ObjCTypes.IntTy,
6915 auto ivarCountSlot = ivarList.addPlaceholder();
6916 auto ivars = ivarList.beginArray(ObjCTypes.IvarnfABITy);
6952 ivarList.abandon();
6957 ivars.finishAndAddTo(ivarList);
6958 ivarList.fillPlaceholderWithInt(ivarCountSlot, ObjCTypes.IntTy, ivarCount);
6962 ivarList, Prefix + OID->getObjCRuntimeNameAsString(), CGM);