< prev index next >

src/share/vm/gc_implementation/g1/g1ParScanThreadState.hpp

Print this page




 195   }
 196 
 197   inline void do_oop_partial_array(oop* p);
 198 
 199   // This method is applied to the fields of the objects that have just been copied.
 200   template <class T> inline void do_oop_evac(T* p, HeapRegion* from);
 201 
 202   template <class T> inline void deal_with_reference(T* ref_to_scan);
 203 
 204   inline void dispatch_reference(StarTask ref);
 205 
 206   // Tries to allocate word_sz in the PLAB of the next "generation" after trying to
 207   // allocate into dest. State is the original (source) cset state for the object
 208   // that is allocated for.
 209   // Returns a non-NULL pointer if successful, and updates dest if required.
 210   HeapWord* allocate_in_next_plab(InCSetState const state,
 211                                   InCSetState* dest,
 212                                   size_t word_sz,
 213                                   AllocationContext_t const context);
 214 




 215   inline InCSetState next_state(InCSetState const state, markOop const m, uint& age);
 216  public:
 217 
 218   oop copy_to_survivor_space(InCSetState const state, oop const obj, markOop const old_mark);
 219 
 220   void trim_queue();
 221 
 222   inline void steal_and_trim_queue(RefToScanQueueSet *task_queues);
 223 };
 224 
 225 #endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1PARSCANTHREADSTATE_HPP


 195   }
 196 
 197   inline void do_oop_partial_array(oop* p);
 198 
 199   // This method is applied to the fields of the objects that have just been copied.
 200   template <class T> inline void do_oop_evac(T* p, HeapRegion* from);
 201 
 202   template <class T> inline void deal_with_reference(T* ref_to_scan);
 203 
 204   inline void dispatch_reference(StarTask ref);
 205 
 206   // Tries to allocate word_sz in the PLAB of the next "generation" after trying to
 207   // allocate into dest. State is the original (source) cset state for the object
 208   // that is allocated for.
 209   // Returns a non-NULL pointer if successful, and updates dest if required.
 210   HeapWord* allocate_in_next_plab(InCSetState const state,
 211                                   InCSetState* dest,
 212                                   size_t word_sz,
 213                                   AllocationContext_t const context);
 214 
 215   void report_promotion_event(InCSetState const dest_state,
 216                               oop const old, size_t word_sz, uint age,
 217                               HeapWord * const obj_ptr, AllocationContext_t context) const;
 218 
 219   inline InCSetState next_state(InCSetState const state, markOop const m, uint& age);
 220  public:
 221 
 222   oop copy_to_survivor_space(InCSetState const state, oop const obj, markOop const old_mark);
 223 
 224   void trim_queue();
 225 
 226   inline void steal_and_trim_queue(RefToScanQueueSet *task_queues);
 227 };
 228 
 229 #endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1PARSCANTHREADSTATE_HPP
< prev index next >