Re: RFR: 8344247: Move objectWaiter field to VirtualThread instance

2024-11-18 Thread Patricio Chilano Mateo
On Thu, 14 Nov 2024 22:34:24 GMT, Patricio Chilano Mateo wrote: > Small follow-up change after JDK-8338383. This moves the `objectWaiter` field > from the stackChunk to the VirtualThread instance. Only the top stackChunk > uses this field so we could save some memory by just saving it in the v

Re: RFR: 8344247: Move objectWaiter field to VirtualThread instance

2024-11-18 Thread Coleen Phillimore
On Thu, 14 Nov 2024 22:34:24 GMT, Patricio Chilano Mateo wrote: > Small follow-up change after JDK-8338383. This moves the `objectWaiter` field > from the stackChunk to the VirtualThread instance. Only the top stackChunk > uses this field so we could save some memory by just saving it in the v

Re: RFR: 8344247: Move objectWaiter field to VirtualThread instance

2024-11-17 Thread David Holmes
On Thu, 14 Nov 2024 22:34:24 GMT, Patricio Chilano Mateo wrote: > Small follow-up change after JDK-8338383. This moves the `objectWaiter` field > from the stackChunk to the VirtualThread instance. Only the top stackChunk > uses this field so we could save some memory by just saving it in the v

RFR: 8344247: Move objectWaiter field to VirtualThread instance

2024-11-14 Thread Patricio Chilano Mateo
Small follow-up change after JDK-8338383. This moves the `objectWaiter` field from the stackChunk to the VirtualThread instance. Only the top stackChunk uses this field so we could save some memory by just saving it in the virtual thread instance instead. Also, related methods `stackChunkOopDes