美文网首页
内存管理-引用计数的存储

内存管理-引用计数的存储

作者: 紫荆秋雪_文 | 来源:发表于2018-07-28 00:54 被阅读100次

    在iOS中,内存管理是通过引用计数来管理的,那么对象的引用计数值存储在哪里?在Runtime(一)中介绍了isa指针,在ARM64架构之前,isa就是一个普通的指针,存储这个class对象、meta-class对象的地址;而在ARM64架构下,对isa进行了优化,变成了一个共用体结构,存储着更多的信息

    isa指针

    isa指针是NSObject对象特有的属性

    • ARM64架构下的isa指针类型
    isa_t isa;
    
    • isa_t共用体结构
    union isa_t 
    {
        isa_t() { }
        isa_t(uintptr_t value) : bits(value) { }
    
        Class cls;
        uintptr_t bits;
    
    #if SUPPORT_PACKED_ISA
    
        // extra_rc must be the MSB-most field (so it matches carry/overflow flags)
        // nonpointer must be the LSB (fixme or get rid of it)
        // shiftcls must occupy the same bits that a real class pointer would
        // bits + RC_ONE is equivalent to extra_rc + 1
        // RC_HALF is the high bit of extra_rc (i.e. half of its range)
    
        // future expansion:
        // uintptr_t fast_rr : 1;     // no r/r overrides
        // uintptr_t lock : 2;        // lock for atomic property, @synch
        // uintptr_t extraBytes : 1;  // allocated with extra bytes
    
    # if __arm64__
    #   define ISA_MASK        0x0000000ffffffff8ULL
    #   define ISA_MAGIC_MASK  0x000003f000000001ULL
    #   define ISA_MAGIC_VALUE 0x000001a000000001ULL
        struct {
            uintptr_t nonpointer        : 1;
            uintptr_t has_assoc         : 1;
            uintptr_t has_cxx_dtor      : 1;
            uintptr_t shiftcls          : 33; // MACH_VM_MAX_ADDRESS 0x1000000000
            uintptr_t magic             : 6;
            uintptr_t weakly_referenced : 1;
            uintptr_t deallocating      : 1;
            uintptr_t has_sidetable_rc  : 1;
            uintptr_t extra_rc          : 19;
    #       define RC_ONE   (1ULL<<45)
    #       define RC_HALF  (1ULL<<18)
        };
    
    # elif __x86_64__
    #   define ISA_MASK        0x00007ffffffffff8ULL
    #   define ISA_MAGIC_MASK  0x001f800000000001ULL
    #   define ISA_MAGIC_VALUE 0x001d800000000001ULL
        struct {
            uintptr_t nonpointer        : 1;
            uintptr_t has_assoc         : 1;
            uintptr_t has_cxx_dtor      : 1;
            uintptr_t shiftcls          : 44; // MACH_VM_MAX_ADDRESS 0x7fffffe00000
            uintptr_t magic             : 6;
            uintptr_t weakly_referenced : 1;
            uintptr_t deallocating      : 1;
            uintptr_t has_sidetable_rc  : 1;
            uintptr_t extra_rc          : 8;
    #       define RC_ONE   (1ULL<<56)
    #       define RC_HALF  (1ULL<<7)
        };
    
    # else
    #   error unknown architecture for packed isa
    # endif
    
    // SUPPORT_PACKED_ISA
    #endif
    
    
    #if SUPPORT_INDEXED_ISA
    
    # if  __ARM_ARCH_7K__ >= 2
    
    #   define ISA_INDEX_IS_NPI      1
    #   define ISA_INDEX_MASK        0x0001FFFC
    #   define ISA_INDEX_SHIFT       2
    #   define ISA_INDEX_BITS        15
    #   define ISA_INDEX_COUNT       (1 << ISA_INDEX_BITS)
    #   define ISA_INDEX_MAGIC_MASK  0x001E0001
    #   define ISA_INDEX_MAGIC_VALUE 0x001C0001
        struct {
            uintptr_t nonpointer        : 1;
            uintptr_t has_assoc         : 1;
            uintptr_t indexcls          : 15;
            uintptr_t magic             : 4;
            uintptr_t has_cxx_dtor      : 1;
            uintptr_t weakly_referenced : 1;
            uintptr_t deallocating      : 1;
            uintptr_t has_sidetable_rc  : 1;
            uintptr_t extra_rc          : 7;
    #       define RC_ONE   (1ULL<<25)
    #       define RC_HALF  (1ULL<<6)
        };
    
    # else
    #   error unknown architecture for indexed isa
    # endif
    
    // SUPPORT_INDEXED_ISA
    #endif
    
    }
    
    • ARM64架构下的isa指针属性
            uintptr_t nonpointer        : 1;
            uintptr_t has_assoc         : 1;
            uintptr_t has_cxx_dtor      : 1;
            uintptr_t shiftcls          : 33; // MACH_VM_MAX_ADDRESS 0x1000000000
            uintptr_t magic             : 6;
            uintptr_t weakly_referenced : 1;
            uintptr_t deallocating      : 1;
            uintptr_t has_sidetable_rc  : 1;
            uintptr_t extra_rc          : 19;
    
    • isa指针中各个属性的作用
    - nonpointer
    0:是代表普通的指针,存储着class、meta-class对象的内存地址
    1:代表优化过,使用位域存储更多的信息
    
    - has_assoc
    是否有设置过关联对象,如果没有,释放时会更快
    
    - has_cxx_dtor
    是否有C++的析构函数(.cxx_destruct),如果没有,释放的更快
    
    - shiftcls
    存储着Class、Meta-Class对象的内存地址信息
    
    - magic
    用于在调试时分辨对象是否未完成初始化
    
    - weakly_referenced
    是否有被弱引用指向过,如果没有,释放时会更快
    
    - deallocating
    对象是否正在释放
    
    - has_sidetable_rc
    引用计数器是否过大无法存储在isa中,如果为1,那么引用计数会存储在一个叫SideTable的类的属性中
    
    - extra_rc
    里面存储的值是引用计数器减1
    
    • 小结
      • 所以对象的引用计数存储在对象的isa指针的extra_rc属性中,但是由于isa指针只给extra_rc属性分配了19位存储空间大小,如果extra_rc存储不下对象的引用计数,那么这时会把isa指针中has_sidetable_rc属性赋值为1,并且对象的引用计数存储在一个叫SideTable的类的属性中

    retain引用计数+1

    当引用计数+1时会调用retain方法,在retain方法中会调用_objc_rootRetain函数并且把对象自己传入,在_objc_rootRetain方法中会调用对象自己的rootRetain函数,在rootRetain函数中会调用rootRetain函数,在rootRetain函数中首先会判断传入的对象是否是TaggedPointer,如果是直接返回对象本身;如果不是会让isa指针中的extra_rc++,当extra_rc已经存储不下对象的引用计算时,has_sidetable_rc被赋值true,transcribeToSideTable也被赋值true,会把half拷贝到side table,最后引用计数存储在SideTable的refcnts中

    • 1、retain方法的实现
    -(id) retain
    {
        return _objc_rootRetain(self);
    }
    
    • 2、_objc_rootRetain函数实现
    id _objc_rootRetain(id obj)
    {
        assert(obj);
    
        return obj->rootRetain();
    }
    
    • 3、对象调用自己的rootRetain函数
    objc_object::rootRetain()
    {
        return rootRetain(false, false);
    }
    
    • 4、rootRetain实现引用计数+1
    objc_object::rootRetain(bool tryRetain, bool handleOverflow)
    {
        //判断是否是TaggePointer对象,如果是直接返回自己
        if (isTaggedPointer()) return (id)this;
    
        bool sideTableLocked = false;
        bool transcribeToSideTable = false;
    
        isa_t oldisa;
        isa_t newisa;
    
        do {
            transcribeToSideTable = false;
            oldisa = LoadExclusive(&isa.bits);
            //把旧的isa值赋值给新的isa
            newisa = oldisa;
            
            //没有优化的isa指针
            if (slowpath(!newisa.nonpointer)) {
                ClearExclusive(&isa.bits);
                if (!tryRetain && sideTableLocked) sidetable_unlock();
                if (tryRetain) return sidetable_tryRetain() ? (id)this : nil;
                else return sidetable_retain();
            }
            // don't check newisa.fast_rr; we already called any RR overrides
            //判断这个对象是否正在释放
            if (slowpath(tryRetain && newisa.deallocating)) {
                ClearExclusive(&isa.bits);
                if (!tryRetain && sideTableLocked) sidetable_unlock();
                return nil;
            }
            uintptr_t carry;
            newisa.bits = addc(newisa.bits, RC_ONE, 0, &carry);  // extra_rc++
    
            if (slowpath(carry)) {
                // newisa.extra_rc++ overflowed
                // 引用计数++
                if (!handleOverflow) {
                    ClearExclusive(&isa.bits);
                    return rootRetain_overflow(tryRetain);
                }
                //extra_rc字段已经存储不下引用计数
                // Leave half of the retain counts inline and 
                // prepare to copy the other half to the side table.
                if (!tryRetain && !sideTableLocked) sidetable_lock();
                sideTableLocked = true;
                transcribeToSideTable = true;
                newisa.extra_rc = RC_HALF;
                newisa.has_sidetable_rc = true;
            }
        } while (slowpath(!StoreExclusive(&isa.bits, oldisa.bits, newisa.bits)));
    
        if (slowpath(transcribeToSideTable)) {
            // Copy the other half of the retain counts to the side table.
            sidetable_addExtraRC_nolock(RC_HALF);
        }
    
        if (slowpath(!tryRetain && sideTableLocked)) sidetable_unlock();
        return (id)this;
    }
    
    • 5、struct SideTable结构体
    struct SideTable {
        spinlock_t slock;
        RefcountMap refcnts;
        weak_table_t weak_table;
    
        SideTable() {
            memset(&weak_table, 0, sizeof(weak_table));
        }
    
        ~SideTable() {
            _objc_fatal("Do not delete SideTable.");
        }
    
        void lock() { slock.lock(); }
        void unlock() { slock.unlock(); }
        void forceReset() { slock.forceReset(); }
    
        // Address-ordered lock discipline for a pair of side tables.
    
        template<HaveOld, HaveNew>
        static void lockTwo(SideTable *lock1, SideTable *lock2);
        template<HaveOld, HaveNew>
        static void unlockTwo(SideTable *lock1, SideTable *lock2);
    }
    
    • 6、给SideTable中refcots赋值
    bool objc_object::sidetable_addExtraRC_nolock(size_t delta_rc)
    {
        assert(isa.nonpointer);
        SideTable& table = SideTables()[this];
    
        size_t& refcntStorage = table.refcnts[this];
        size_t oldRefcnt = refcntStorage;
        // isa-side bits should not be set here
        assert((oldRefcnt & SIDE_TABLE_DEALLOCATING) == 0);
        assert((oldRefcnt & SIDE_TABLE_WEAKLY_REFERENCED) == 0);
    
        if (oldRefcnt & SIDE_TABLE_RC_PINNED) return true;
    
        uintptr_t carry;
        size_t newRefcnt = 
            addc(oldRefcnt, delta_rc << SIDE_TABLE_RC_SHIFT, 0, &carry);
        if (carry) {
            refcntStorage =
                SIDE_TABLE_RC_PINNED | (oldRefcnt & SIDE_TABLE_FLAG_MASK);
            return true;
        }
        else {
            refcntStorage = newRefcnt;
            return false;
        }
    }
    

    release引用计数-1

    当调用release时,会调用release方法中的_objc_rootRelease函数并且把自己传入,在_objc_rootRelease函数中又会调用自己的rootRelease函数,在rootRelease函数中调用rootRelease函数,在rootRelease函数中实现引用计数-1

    • 1、release实现
    -(void) release
    {
        _objc_rootRelease(self);
    }
    
    • 2、_objc_rootRelease函数实现
    void _objc_rootRelease(id obj)
    {
        assert(obj);
    
        obj->rootRelease();
    }
    
    • 3、rootRelease函数
    ALWAYS_INLINE bool objc_object::rootRelease()
    {
        return rootRelease(true, false);
    }
    
    • 4、rootRelease函数
    ALWAYS_INLINE bool 
    objc_object::rootRelease(bool performDealloc, bool handleUnderflow)
    {
        //判断是否是TaggedPointer
        if (isTaggedPointer()) return false;
    
        bool sideTableLocked = false;
    
        isa_t oldisa;
        isa_t newisa;
    
     retry:
        do {
            oldisa = LoadExclusive(&isa.bits);
            newisa = oldisa;
            //是否是优化过的isa指针
            if (slowpath(!newisa.nonpointer)) {
                ClearExclusive(&isa.bits);
                if (sideTableLocked) sidetable_unlock();
                return sidetable_release(performDealloc);
            }
            
            // don't check newisa.fast_rr; we already called any RR overrides
            uintptr_t carry;
            newisa.bits = subc(newisa.bits, RC_ONE, 0, &carry);  // extra_rc--
            if (slowpath(carry)) {
                // don't ClearExclusive()
                goto underflow;
            }
        } while (slowpath(!StoreReleaseExclusive(&isa.bits, 
                                                 oldisa.bits, newisa.bits)));
    
        if (slowpath(sideTableLocked)) sidetable_unlock();
        return false;
    
     underflow:
        // newisa.extra_rc-- underflowed: borrow from side table or deallocate
    
        // abandon newisa to undo the decrement
        newisa = oldisa;
        //是否has_sidetable_rc为true,引用计数是否存在sideTable中
        if (slowpath(newisa.has_sidetable_rc)) {
            if (!handleUnderflow) {
                ClearExclusive(&isa.bits);
                return rootRelease_underflow(performDealloc);
            }
    
            // Transfer retain count from side table to inline storage.
    
            if (!sideTableLocked) {
                ClearExclusive(&isa.bits);
                sidetable_lock();
                sideTableLocked = true;
                // Need to start over to avoid a race against 
                // the nonpointer -> raw pointer transition.
                goto retry;
            }
    
            // Try to remove some retain counts from the side table.        
            size_t borrowed = sidetable_subExtraRC_nolock(RC_HALF);
    
            // To avoid races, has_sidetable_rc must remain set 
            // even if the side table count is now zero.
    
            if (borrowed > 0) {
                // Side table retain count decreased.
                // Try to add them to the inline count.
                // 引用计数-1
                newisa.extra_rc = borrowed - 1;  // redo the original decrement too
                bool stored = StoreReleaseExclusive(&isa.bits, 
                                                    oldisa.bits, newisa.bits);
                if (!stored) {
                    // Inline update failed. 
                    // Try it again right now. This prevents livelock on LL/SC 
                    // architectures where the side table access itself may have 
                    // dropped the reservation.
                    isa_t oldisa2 = LoadExclusive(&isa.bits);
                    isa_t newisa2 = oldisa2;
                    if (newisa2.nonpointer) {
                        uintptr_t overflow;
                        newisa2.bits = 
                            addc(newisa2.bits, RC_ONE * (borrowed-1), 0, &overflow);
                        if (!overflow) {
                            stored = StoreReleaseExclusive(&isa.bits, oldisa2.bits, 
                                                           newisa2.bits);
                        }
                    }
                }
    
                if (!stored) {
                    // Inline update failed.
                    // Put the retains back in the side table.
                    sidetable_addExtraRC_nolock(borrowed);
                    goto retry;
                }
    
                // Decrement successful after borrowing from side table.
                // This decrement cannot be the deallocating decrement - the side 
                // table lock and has_sidetable_rc bit ensure that if everyone 
                // else tried to -release while we worked, the last one would block.
                sidetable_unlock();
                return false;
            }
            else {
                // Side table is empty after all. Fall-through to the dealloc path.
            }
        }
    
        // Really deallocate.
    
        if (slowpath(newisa.deallocating)) {
            ClearExclusive(&isa.bits);
            if (sideTableLocked) sidetable_unlock();
            return overrelease_error();
            // does not actually return
        }
        newisa.deallocating = true;
        if (!StoreExclusive(&isa.bits, oldisa.bits, newisa.bits)) goto retry;
    
        if (slowpath(sideTableLocked)) sidetable_unlock();
    
        __sync_synchronize();
        if (performDealloc) {
            ((void(*)(objc_object *, SEL))objc_msgSend)(this, SEL_dealloc);
        }
        return true;
    }
    

    小结

    • 应用计数存储在isa指针的extra_rc属性中
    • 当extra_rc属性存储不下引用计数时,has_sidetable_rc会被赋值true,引用计数会存储到SideTable中的refcnts中
    • refcnts是一个存放着对象引用计数的散列表

    相关文章

      网友评论

          本文标题:内存管理-引用计数的存储

          本文链接:https://www.haomeiwen.com/subject/fmjnmftx.html