I encountered these statistics in Julia's JIT code: RemovedWriteBarriers and HoistedWriteBarrier. It appears that they are doing some sort of write barrier elision. We need to understand about the JIT's behavior on this, and disable the optimization if necessary.
I encountered these statistics in Julia's JIT code:
RemovedWriteBarriers
andHoistedWriteBarrier
. It appears that they are doing some sort of write barrier elision. We need to understand about the JIT's behavior on this, and disable the optimization if necessary.