As I'm a "TopLink" user since 2001, I might be a little biased (eclipseLink is based on an open-sourced version of TopLink). Back then, in the days before JPA, we used both Hibernate and TopLink in different projects, and already then, TopLink was by far the more feature-rich, better documented, better performing, more advanced, and cleaner ORM solution. They already had a criteria query API back then, and sophisticated caching and multi-tier options. Hibernate always had that feel of a minimal approach to it. We used it sometimes in small projects because it was simple, it was open source and available free of charge, which TopLink wasn't at that point.
While Hibernate has certainly advanced now that both are implementing the JPA standard, I think it still fair to say that eclipseLink is architecturally much cleaner, and more advanced in adherence to the JPA standard (which is fair enough because it is the reference implementation). In fact, many concepts in JPA seem to have been inspired by TopLink, and not the other way round, while Hibernate had to undergo massive changes in order to support JPA and almost got lost in the JDO/JPA confusion. This has led to stability issues and a certain impedance mismatch between the original "Hibernate Way" to do things and what is specified in JPA.
I don't see why bytecode processing is a con for eclipseLink, it actually works pretty well and allows developers to use eclipseLink in a really transparent fashion. And if you don't like it, you can just turn it off. EclipseLink also offers a load of additional options beyond the JPA specification, which may or may not become part of the spec in later versions. Think of declarative exposure of JPA entities as JAX-RS restful webservices etc.
The Hibernate community may still be larger than eclipseLink's, just because eclipseLink isn't in the open source for as long as Hibernate, but documentation and community support is pretty good for eclipseLink as well, and it is growing. And eclipseLink's predecessor has been proven over a decade in a wide range of enterprise-grade Java projects.