Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How does the ARC's zeroing weak pointer behavior implemented?

I'm studying ARC. And now about zeroing weak pointer. OK I understood all the features. The semantic of weak reference is just same with weak reference of GC system, but you know, Objective-C doesn't use GC (except special case) so I can't understand how this works.

I'm a little complicated guy, so I need to know underlying implementation principal to accept the feature to use. But the problem is it's very hard to find document which describes the principal of zeroing-weak pointer :(

IMO, the only way to make this work is tracking and keeping all pointers referencing itself at runtime, and setting them all nil when its referencing count becomes 0. But this looks too heavy and stupid. I believe a lot better solution used in actual ARC implementation.

Can you help me to find the documentation? Or direct description would be more great!

like image 969
eonil Avatar asked Jan 14 '12 02:01

eonil


2 Answers

It's explained here:

http://mikeash.com/pyblog/friday-qa-2010-07-16-zeroing-weak-references-in-objective-c.html

Spoiler:

It works pretty much how you'd think. Every class maintains a set of addresses of weak pointers that are pointing to it, and when its dealloc is called it sets them all to zero.

It may seem dumb, but it's fast because there's no "tracking" involved, ARC just inserts the code to add a pointer to that set every time the object is assigned to a new weak reference.

It's actually much more efficient than the trickery involved in Garbage collection, which basically involves wading through the heap on a background thread looking for pointers and keeping stock of what they're pointing to.

like image 143
Nick Lockwood Avatar answered Oct 23 '22 23:10

Nick Lockwood


Implemented by a global hash table in runtime. Apple source: https://opensource.apple.com/source/objc4/objc4-647/runtime/objc-weak.mm

like image 2
liruqi Avatar answered Oct 24 '22 01:10

liruqi