* jgit, MutableInteger vs AtomicInteger
@ 2008-11-25 13:54 Vasyl Vavrychuk
2008-11-25 19:19 ` Shawn O. Pearce
0 siblings, 1 reply; 2+ messages in thread
From: Vasyl Vavrychuk @ 2008-11-25 13:54 UTC (permalink / raw)
To: git
Hi,
I've just started browsing jgit sources and an obvious question arise.
I didn't found such question in mail list and decided to ask the community.
I don't see reason behind creating own mutable integer container because we
have java.util.concurrent.atomic.AtomicInteger with methods
public final int get()
public final void set(int i)
And that is what we want.
Regards,
V. V.
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: jgit, MutableInteger vs AtomicInteger
2008-11-25 13:54 jgit, MutableInteger vs AtomicInteger Vasyl Vavrychuk
@ 2008-11-25 19:19 ` Shawn O. Pearce
0 siblings, 0 replies; 2+ messages in thread
From: Shawn O. Pearce @ 2008-11-25 19:19 UTC (permalink / raw)
To: Vasyl Vavrychuk; +Cc: git
Vasyl Vavrychuk <vvavrychuk@gmail.com> wrote:
> I've just started browsing jgit sources and an obvious question arise.
> I didn't found such question in mail list and decided to ask the community.
>
> I don't see reason behind creating own mutable integer container because we
> have java.util.concurrent.atomic.AtomicInteger with methods
> public final int get()
> public final void set(int i)
>
> And that is what we want.
Eh, its sort-of what we want.
The MutableInteger used in jgit is used instead of this C construct:
int x;
call_something(&x);
call_something_else(&x);
... now use x ...
In other words it is stack allocated, passed into methods for them
to read and/or update, and then later used in the caller.
AtomicInteger does in fact have get and set methods, providing what
would seem to be the same operation. But if you read the source
code you'll see that the get and set methods operate against a
volatile int. IIRC the volatile tag requires that the JRE must
not cache the value in a register.
If you look again at how MutableInteger is used, we never touch the
value outside of a single thread. The volatile tag on the field
isn't necessary. It may actually make it harder for the JIT to
produce tight machine code. Where we use MutableInteger is the
depths of revision traversal and commit parsing, it *must* be fast.
Also, there's the simple fact that I forgot about AtomicInteger,
and it took me less time to code MutableInteger than it did to look
to see if the JRE had something already. ;-)
--
Shawn.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-11-25 19:21 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-25 13:54 jgit, MutableInteger vs AtomicInteger Vasyl Vavrychuk
2008-11-25 19:19 ` Shawn O. Pearce
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).