当您在
Java中执行新的Object()时,jvm是否使用无锁定算法分配内存或需要锁定?
在这种情况下,我指的JVM是Hotspot VM.从我知道的一点,它只需要增加一个指针来分配内存超快.但是在多线程的情况下,增量是否需要锁定或CAS?
解决方法
如上所述,默认是使用tlab.行为描述在
this glossary中如下
TLAB Thread-local allocation buffer. Used to allocate heap space quickly without synchronization. Compiled code has a "fast path" of a few instructions which tries to bump a high-water mark in the current thread's TLAB,successfully allocating an object if the bumped mark falls before a TLAB-specific limit address.
关于this blog& this blog你可能想要的所有细节.
总之,它是线程本地的,除非TLAB已满,在这种情况下,您需要打到共享池,这是一个CAS操作.
另一个复杂因素可能是this bug,它描述了卡片标记中的错误共享,这不是锁定,但会伤害性能(如果这是您询问锁定的原因).看起来这在java7中是固定的.