One of the reasons why Lisp is fading into irrelevance is that GC is obsolete tech. You should be using RAII, smart pointers, or ARC for all dynamic-lifetime resource management depending on language and toolset for completely deterministic object lifetimes. This is also a factor in why Android phones are orders of magnitude slower than equivalently-specced iPhones, even with the new ART.
RAII, smart pointers and ARC aren't free lunches, which is why people had moved from them to GC in the first place.
Of the top 10 languages on github [1] that require memory management, 7 of them use GC [2].
> This is also a factor in why Android phones are orders of magnitude slower than equivalently-specced iPhones
That's a pretty nutty assertion to make without data.
1: http://adambard.com/blog/top-github-languages-2014/
2: Discluding CSS and shell since they don't require memory management. Python's default implementation actually has both RC and GC.