OC底層06:Cache_t分析

之前分析了objc_class中的class_data_bits_tisa,還剩下cache_t,今天來進(jìn)行分析一下

結(jié)構(gòu)


總結(jié)下來主要有4個(gè)參數(shù):

bucket_t * _buckets; //緩存方法的散列表 explicit_atomic是原子性
mask_t _mask; //散列表的長度
uint16_t _flags;//標(biāo)志位
uint16_t _occupied;//占用的空間

驗(yàn)證

1.

//創(chuàng)建Person類
@interface Person : NSObject
- (void)method1;
- (void)method2;
- (void)method3;
- (void)method4;
@end

//調(diào)用
Person *p = [Person alloc];
Class pClass = [Person class];        
[p method1];
[p method2];
[p method3];
[p method4];

2. 先將斷點(diǎn)斷在[p method1];處,lldb調(diào)試


ps:如果不使用pClass,使用p.class,會調(diào)用class方法,并將class寫入cache中,這樣查看的mask與occupied不為0

3.點(diǎn)擊step over執(zhí)行一步,調(diào)試


此時(shí),散列表長度變成了3,占用為1,查看緩存可以看到:

這里可以看到method1已經(jīng)在緩存中了祖灰。

注意點(diǎn)

1.cache_t結(jié)構(gòu)體中,buckets的定義為explicit_atomic<struct bucket_t *> _buckets,你如果通過.buckets->buckets 會發(fā)現(xiàn)根本無法獲取到buckets,仔細(xì)閱讀源碼會發(fā)現(xiàn)cache_t中提供了struct bucket_t *buckets()用于獲取buckets翁授。所以如圖,通過.buckets()獲取,sel同理撮抓。
2.buckets是存在散列表中,如果有多個(gè)buckets可以通過指針偏移獲取,再執(zhí)行[p method2]:

3.繼續(xù)執(zhí)行[p method3],會發(fā)現(xiàn)mask變成了7,occupied變成了1


需要了解為什么會這樣變化,我們需要從cache_t的插入源碼入手膘婶。

ALWAYS_INLINE
void cache_t::insert(Class cls, SEL sel, IMP imp, id receiver)
{
#if CONFIG_USE_CACHE_LOCK
    cacheUpdateLock.assertLocked();
#else
    runtimeLock.assertLocked();
#endif

    ASSERT(sel != 0 && cls->isInitialized());

    // Use the cache as-is if it is less than 3/4 full
    mask_t newOccupied = occupied() + 1;
    unsigned oldCapacity = capacity(), capacity = oldCapacity;
    if (slowpath(isConstantEmptyCache())) {
        // Cache is read-only. Replace it.
        if (!capacity) capacity = INIT_CACHE_SIZE;
        reallocate(oldCapacity, capacity, /* freeOld */false);
    }
    else if (fastpath(newOccupied + CACHE_END_MARKER <= capacity / 4 * 3)) { // 4  3 + 1 bucket cache_t
        // Cache is less than 3/4 full. Use it as-is.
    }
    else {
        capacity = capacity ? capacity * 2 : INIT_CACHE_SIZE;  // 擴(kuò)容兩倍 4
        if (capacity > MAX_CACHE_SIZE) {
            capacity = MAX_CACHE_SIZE;
        }
        reallocate(oldCapacity, capacity, true);  // 內(nèi)存 庫容完畢
    }

    bucket_t *b = buckets();
    mask_t m = capacity - 1;
    mask_t begin = cache_hash(sel, m);
    mask_t i = begin;

    // Scan for the first unused slot and insert there.
    // There is guaranteed to be an empty slot because the
    // minimum size is 4 and we resized at 3/4 full.
    do {
        if (fastpath(b[i].sel() == 0)) {
            incrementOccupied();
            b[i].set<Atomic, Encoded>(sel, imp, cls);
            return;
        }
        if (b[i].sel() == sel) {
            // The entry was added to the cache by some other thread
            // before we grabbed the cacheUpdateLock.
            return;
        }
    } while (fastpath((i = cache_next(i, m)) != begin));

    cache_t::bad_cache(receiver, (SEL)sel, cls);
}
  1. 當(dāng)緩存為空時(shí),會初始化緩存
if (slowpath(isConstantEmptyCache())) {
        // Cache is read-only. Replace it.
        if (!capacity) capacity = INIT_CACHE_SIZE;
        reallocate(oldCapacity, capacity, /* freeOld */false);
    }

2.當(dāng)緩存不為空,且不大于總大小的3/4減1時(shí),不進(jìn)行任何操作(#define CACHE_END_MARKER 1)

    else if (fastpath(newOccupied + CACHE_END_MARKER <= capacity / 4 * 3)) { // 4  3 + 1 bucket cache_t
        // Cache is less than 3/4 full. Use it as-is.
    }

3.當(dāng)總大小不夠時(shí),會進(jìn)行擴(kuò)容

    else {
        capacity = capacity ? capacity * 2 : INIT_CACHE_SIZE;  // 擴(kuò)容兩倍 4
        if (capacity > MAX_CACHE_SIZE) {
            capacity = MAX_CACHE_SIZE;
        }
        reallocate(oldCapacity, capacity, true);  // 內(nèi)存 庫容完畢
    }

如此可以找到原因:第一次申請空間為4,maskcapacity-1=3,method1method2插入時(shí),滿足newOccupied + CACHE_END_MARKER <= capacity / 4 * 3,而當(dāng)method3插入時(shí),newOccupied變?yōu)?code>3,3+1>4/4*3所以要進(jìn)行擴(kuò)容,原有緩存被舍去,只插入了method3,故occupied變成了1,mask變成了7

其他

cache的插入時(shí)亂序的伪货。

    bucket_t *b = buckets();
    mask_t m = capacity - 1;
    mask_t begin = cache_hash(sel, m);
    mask_t i = begin;

    // Scan for the first unused slot and insert there.
    // There is guaranteed to be an empty slot because the
    // minimum size is 4 and we resized at 3/4 full.
    do {
        if (fastpath(b[i].sel() == 0)) {
            incrementOccupied();
            b[i].set<Atomic, Encoded>(sel, imp, cls);
            return;
        }
        if (b[i].sel() == sel) {
            // The entry was added to the cache by some other thread
            // before we grabbed the cacheUpdateLock.
            return;
        }
    } while (fastpath((i = cache_next(i, m)) != begin));
  1. cache的插入不是順序插入,是先做一次哈希計(jì)算,由這個(gè)值開始mask_t begin = cache_hash(sel, m)

2.cache當(dāng)哈希計(jì)算出的位置中值為空時(shí),插入威鹿。

 if (fastpath(b[i].sel() == 0)) {
            incrementOccupied();
            b[i].set<Atomic, Encoded>(sel, imp, cls);
            return;
        }

3.哈希計(jì)算的位置值相同時(shí)跳過,不再插入。

        if (b[i].sel() == sel) {
            // The entry was added to the cache by some other thread
            // before we grabbed the cacheUpdateLock.
            return;
        }

4.繼續(xù)哈希,直到找到合適的位置插入while (fastpath((i = cache_next(i, m)) != begin))

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末瞬逊,一起剝皮案震驚了整個(gè)濱河市显歧,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌确镊,老刑警劉巖士骤,帶你破解...
    沈念sama閱讀 211,348評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異蕾域,居然都是意外死亡拷肌,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,122評論 2 385
  • 文/潘曉璐 我一進(jìn)店門旨巷,熙熙樓的掌柜王于貴愁眉苦臉地迎上來巨缘,“玉大人,你說我怎么就攤上這事采呐∪羲” “怎么了?”我有些...
    開封第一講書人閱讀 156,936評論 0 347
  • 文/不壞的土叔 我叫張陵斧吐,是天一觀的道長又固。 經(jīng)常有香客問我,道長煤率,這世上最難降的妖魔是什么口予? 我笑而不...
    開封第一講書人閱讀 56,427評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮涕侈,結(jié)果婚禮上沪停,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好木张,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,467評論 6 385
  • 文/花漫 我一把揭開白布众辨。 她就那樣靜靜地躺著,像睡著了一般舷礼。 火紅的嫁衣襯著肌膚如雪鹃彻。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,785評論 1 290
  • 那天妻献,我揣著相機(jī)與錄音蛛株,去河邊找鬼。 笑死育拨,一個(gè)胖子當(dāng)著我的面吹牛谨履,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播熬丧,決...
    沈念sama閱讀 38,931評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼笋粟,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了析蝴?” 一聲冷哼從身側(cè)響起害捕,我...
    開封第一講書人閱讀 37,696評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎闷畸,沒想到半個(gè)月后尝盼,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,141評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡佑菩,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,483評論 2 327
  • 正文 我和宋清朗相戀三年东涡,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片倘待。...
    茶點(diǎn)故事閱讀 38,625評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖组贺,靈堂內(nèi)的尸體忽然破棺而出凸舵,到底是詐尸還是另有隱情,我是刑警寧澤失尖,帶...
    沈念sama閱讀 34,291評論 4 329
  • 正文 年R本政府宣布啊奄,位于F島的核電站,受9級特大地震影響掀潮,放射性物質(zhì)發(fā)生泄漏菇夸。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,892評論 3 312
  • 文/蒙蒙 一仪吧、第九天 我趴在偏房一處隱蔽的房頂上張望庄新。 院中可真熱鬧,春花似錦、人聲如沸择诈。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽羞芍。三九已至哗戈,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間荷科,已是汗流浹背唯咬。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留畏浆,地道東北人胆胰。 一個(gè)月前我還...
    沈念sama閱讀 46,324評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像全度,于是被迫代替她去往敵國和親煮剧。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,492評論 2 348