comparison src/share/vm/c1/c1_LIRAssembler.hpp @ 342:37f87013dfd8

6711316: Open source the Garbage-First garbage collector Summary: First mercurial integration of the code for the Garbage-First garbage collector. Reviewed-by: apetrusenko, iveresov, jmasa, sgoldman, tonyp, ysr
author ysr
date Thu, 05 Jun 2008 15:57:56 -0700
parents a61af66fc99e
children f8199438385b
comparison
equal deleted inserted replaced
189:0b27f3512f9e 342:37f87013dfd8
22 * 22 *
23 */ 23 */
24 24
25 class Compilation; 25 class Compilation;
26 class ScopeValue; 26 class ScopeValue;
27 class BarrierSet;
27 28
28 class LIR_Assembler: public CompilationResourceObj { 29 class LIR_Assembler: public CompilationResourceObj {
29 private: 30 private:
30 C1_MacroAssembler* _masm; 31 C1_MacroAssembler* _masm;
31 CodeStubList* _slow_case_stubs; 32 CodeStubList* _slow_case_stubs;
33 BarrierSet* _bs;
32 34
33 Compilation* _compilation; 35 Compilation* _compilation;
34 FrameMap* _frame_map; 36 FrameMap* _frame_map;
35 BlockBegin* _current_block; 37 BlockBegin* _current_block;
36 38