Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why don't they need them, and if someone decided to implement a VM that used them, what problems might they face?

share|improve this question
b/c ref count is slower than copy – bestsss Feb 3 '11 at 20:50

2 Answers

up vote 4 down vote accepted

  1. Counting references must be done outside the object.
  2. Counting references is slow. Even slower to deal w/ cyclic references but that's not impossible. Still slow.
  3. Counting references is actually very slow since it must use CAS + loop
  4. Not-Counting references is easier to implement and it's faster, esp. with some OS memory page tricks.
  5. Reference counting can be removed altogether by escape analysis, provided the object doesn't escape.

share|improve this answer
+1 for multiple reasons. – maerics Feb 5 '11 at 4:17

Reference counting is subject to memory leaks due to cyclical references. Imagine you have a simple "node" object which has a reference to another node, and suppose you set its reference to itself. The reference count for that object will always be 1 even if there is no handle to it from a global or stack variable so it will never be garbage collected and is leaked memory. This is a trivial example but any cyclical reference will have the same problem.

Of course, cyclical references can be detected but presumably the overhead of doing so adds enough complexity that other GC methods are more attractive.

share|improve this answer
1  
+1 great, I never found that out. – Daniel Feb 3 '11 at 20:15
4  
You can augment refcounting with a "real" GC, which naturally has to run less often because only some (often small) part of the garbage generated contains cycles. Another factor is speed - a clever, optimized GC can do much better than refcounting, in particular in the presence of threads (which make incrementing/decrementing the refcounts much more costy, due to locking) – delnan Feb 3 '11 at 20:21
1  
delnan, post your comment as an answer and i will select it as the answer – Dustin Getz Feb 3 '11 at 20:34
3  
@delnan Not just more costly, Java threads make refcounting practically impossible. Since every thread is free to keep copies of objects in its own memory area, and writing them back to the main area at their leisure, refcounts would quickly become inconsistent. – biziclop Feb 3 '11 at 20:35
actually the reason is not the cyclic ref... – bestsss Feb 3 '11 at 20:50
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.