SUPPORT_INDEXED_ISA
在objc源码里面,有这样一组宏定义,用的地方也不少,但一直不知道宏定义是啥意思,这里连猜带懵的说一下, 有不对的请正
// field as an index into a class table.
// Note, keep this in sync with any .s files which also define it.
// Be sure to edit objc-abi.h as well.
#if __ARM_ARCH_7K__ >= 2 || (__arm64__ && !__LP64__)
# define SUPPORT_INDEXED_ISA 1
#else
# define SUPPORT_INDEXED_ISA 0
#endif
__ARM_ARCH_7K__
网上有同学说是,手表cpu,顺着个个查了一下,苹果 S 系列处理器 参数大全
从这里,大家可以看到,的确⌚️的CPU构架中存在 ARMv7k, 与__ARM_ARCH_7K__
吻合,那后面的>=2 就得看图上的两款了,S1 是一个核心,S1P以后的都是两个核心,因此,__ARM_ARCH_7k__ >= 2
排除的是手表的单核CPU架构的,
__arm64__
这个不用说,是arm系列64位的架构
__LP64__
这个是macOS系列的64位架构,因此!__LP64__
就是把macOS上面的64位系统给排除在外了
(__arm64__ && !__LP64__)
这里有个疑点,64位的arm肯定就不是LP64了,为啥要这么写?
SUPPORT_INDEXED_ISA
所以就这是Watch独有的一种类结构,没错了。一下子就不想深究了,再见了
注释说:将类存储在 isa 字段中作为类表的索引。(store the class in the isa field as an index into a class table.)
貌似,watch上由系统维护了一个类的表,cls都指向表里的偏移位置
#if SUPPORT_INDEXED_ISA
# if __ARM_ARCH_7K__ >= 2 || (__arm64__ && !__LP64__)
// armv7k or arm64_32
// 这里定义了indexed_isa 下的一些宏定义,可以发现连 ISA_BITFIELD 的结构变了,class的部分只占了15位,__arm64__下占33,__x86_64__下占了44
# define ISA_INDEX_IS_NPI_BIT 0
# define ISA_INDEX_IS_NPI_MASK 0x00000001
# 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
# define ISA_BITFIELD \
uintptr_t nonpointer : 1; \
uintptr_t has_assoc : 1; \
uintptr_t indexcls : 15; \ //这里占了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