消息流程2. lookUpImpOrForward

objc_msgSend是使用汇编编写的,首先 在缓存中查找方法的imp,如果没有查找到方法,则会调用lookUpImpOrForward开启慢速查找。

lookUpImpOrForward

IMP lookUpImpOrForward(id inst, SEL sel, Class cls, int behavior)
{
  //1._objc_msgForward_impcache 复制一个默认的imp
    const IMP forward_imp = (IMP)_objc_msgForward_impcache;
    IMP imp = nil;
    Class curClass;

    runtimeLock.assertUnlocked();

    if (slowpath(!cls->isInitialized())) {
        
        behavior |= LOOKUP_NOCACHE;
    }
    runtimeLock.lock();

  
    checkIsKnownClass(cls);
    //如果这个类没有实现则实现,OC中实现了load的方法的类会在启动时优先实现,启动时未实现的类会在这里实现
    cls = realizeAndInitializeIfNeeded_locked(inst, cls, behavior & LOOKUP_INITIALIZE);
  //2. curClass赋值
    curClass = cls;
    //3. 循环遍历从当前类再到父类缓存查找
    for (unsigned attempts = unreasonableClassCount();;) {
        if (curClass->cache.isConstantOptimizedCache(/* strict */true)) {
#if CONFIG_USE_PREOPT_CACHES
            imp = cache_getImp(curClass, sel);
            if (imp) goto done_unlock;
            curClass = curClass->cache.preoptFallbackClass();
#endif
        } else {
            // curClass method list.
            //3.1二分法从methodlist查找imp
            Method meth = getMethodNoSuper_nolock(curClass, sel);
          //3.2 有就到done
            if (meth) {
                imp = meth->imp(false);
                goto done;
            }
            //3.3 当前类中没有,curClass设置其父类,如果父类为nil,imp设置forward_imp,跳出循环
            if (slowpath((curClass = curClass->getSuperclass()) == nil)) {
                // No implementation found, and method resolver didn't help.
                // Use forwarding.
                imp = forward_imp;
                break;
            }
        }

        // Halt if there is a cycle in the superclass chain.
        if (slowpath(--attempts == 0)) {
            _objc_fatal("Memory corruption in class list.");
        }

        // Superclass cache.
        //3.4 父类的缓存查找
        imp = cache_getImp(curClass, sel);
        //如果imp等于forward_imp,表示父类中也没有
        if (slowpath(imp == forward_imp)) {
            // Found a forward:: entry in a superclass.
            // Stop searching, but don't cache yet; call method
            // resolver for this class first.
            break;
        }
        if (fastpath(imp)) {
            // Found the method in a superclass. Cache it in this class.
            goto done;
        }
    }

    // No implementation found. Try method resolver once.
    //4.如果没有执行,去resolveMethod_locked去查找
    if (slowpath(behavior & LOOKUP_RESOLVER)) {
        behavior ^= LOOKUP_RESOLVER;
        return resolveMethod_locked(inst, sel, cls, behavior);
    }

 done:
    if (fastpath((behavior & LOOKUP_NOCACHE) == 0)) {
#if CONFIG_USE_PREOPT_CACHES
        while (cls->cache.isConstantOptimizedCache(/* strict */true)) {
            cls = cls->cache.preoptFallbackClass();
        }
#endif
        //5.将方法插入缓存
        log_and_fill_cache(cls, imp, sel, inst, curClass);
    }
 done_unlock:
    runtimeLock.unlock();
    if (slowpath((behavior & LOOKUP_NIL) && imp == forward_imp)) {
        return nil;
    }
    return imp;
}

  1. 获取一个默认的imp,_objc_msgForward_impcache
  2. 做前期的容错检查
  3. 循环遍历从当前类methodList再到父类缓存查找
    3.1 二分法从methodlist查找imp
    3.2 有就到6
    3.3 当前类中没有,curClass设置为class的父类,如果父类为nil,imp设置forward_imp,跳出循环
    3.4 父类的缓存cache_getImp查找,找到了就到6
  4. 如果父类缓存也没有,继续for循环调转到3,从父类的methodlist中查找,还没有再去父类的父类cache_getImp查找,递归循环查找,直到没有父类为止。
  5. 如果父类中也没有执行resolveMethod_locked去查找
  6. 将方法插入缓存

_objc_msgForward_impcache 的源码如下

__attribute__((noreturn, cold)) void
objc_defaultForwardHandler(id self, SEL sel)
{
    _objc_fatal("%c[%s %s]: unrecognized selector sent to instance %p "
                "(no message forward handler is installed)", 
                class_isMetaClass(object_getClass(self)) ? '+' : '-', 
                object_getClassName(self), sel_getName(sel), self);
}

getMethodNoSuper_nolock

getMethodNoSuper_nolock二分法查找imp
getMethodNoSuper_nolock->search_method_list_inline->findMethodInSortedMethodList
其中findMethodInSortedMethodList会判断当前的method是否为small或者big

template<class getNameFunc>
ALWAYS_INLINE static method_t *
findMethodInSortedMethodList(SEL key, const method_list_t *list, const getNameFunc &getName)
{
    ASSERT(list);
    //1.获取获取list的第一个值
    auto first = list->begin();
    auto base = first;
    //基准位置
    decltype(first) probe;

    uintptr_t keyValue = (uintptr_t)key;
    uint32_t count;
    
    for (count = list->count; count != 0; count >>= 1) {
      //cout右移1位,即probe移动到中间位置
        probe = base + (count >> 1);
        //获取中间位置的值
        uintptr_t probeValue = (uintptr_t)getName(probe);
         //如果中间位置与sel相等
        if (keyValue == probeValue) {
            // `probe` is a match.
            // Rewind looking for the *first* occurrence of this value.
            // This is required for correct category overrides.
            //排除分类重名方法,加载的时候先存储类方法,再存储分类---按照栈格式存储,分类方法最先出,要取的是类方法,先排除分类方法,如果是两个分类,就看谁先进行加载
            while (probe > first && keyValue == (uintptr_t)getName((probe - 1))) {
                probe--;
            }
            return &*probe;
        }
        
        //如果没有找到,开始从右侧查找继续循环
        if (keyValue > probeValue) {
            base = probe + 1;
            count--;
        }
    }
    
    return nil;
}

1.在methodlist中,存储类的方法存储在前面,分类的方法存储在后后面,

cache_getImp

其中cache_getImp也是一段汇编代码,调用CacheLookup,调用了CacheLookup第三个参数为LGetImpMissDynamic会返回NULL,不会像objc_msgSend样在缓存中没有查找,而执行lookUpImpOrForward

   STATIC_ENTRY _cache_getImp
       //获取父类的isa指针
   GetClassFromIsa_p16 p0, 0
     //缓存查找,第三个参数是缓存miss后执行的函数
   CacheLookup GETIMP, _cache_getImp, LGetImpMissDynamic, LGetImpMissConstant

//缓存没有找到返回NULL
LGetImpMissDynamic:
   mov p0, #0
   ret

LGetImpMissConstant:
   mov p0, p2
   ret

   END_ENTRY _cache_getImp
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,240评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,328评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,182评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,121评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,135评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,093评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,013评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,854评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,295评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,513评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,678评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,398评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,989评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,636评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,801评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,657评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,558评论 2 352

推荐阅读更多精彩内容