comparison src/share/vm/gc_implementation/parallelScavenge/pcTasks.hpp @ 989:148e5441d916

6863023: need non-perm oops in code cache for JSR 292 Summary: Make a special root-list for those few nmethods which might contain non-perm oops. Reviewed-by: twisti, kvn, never, jmasa, ysr
author jrose
date Tue, 15 Sep 2009 21:53:47 -0700
parents ad8c8ca4ab0f
children c18cbe5936b8
comparison
equal deleted inserted replaced
987:00977607da34 989:148e5441d916
90 flat_profiler = 5, 90 flat_profiler = 5,
91 management = 6, 91 management = 6,
92 jvmti = 7, 92 jvmti = 7,
93 system_dictionary = 8, 93 system_dictionary = 8,
94 vm_symbols = 9, 94 vm_symbols = 9,
95 reference_processing = 10 95 reference_processing = 10,
96 code_cache = 11
96 }; 97 };
97 private: 98 private:
98 RootType _root_type; 99 RootType _root_type;
99 public: 100 public:
100 MarkFromRootsTask(RootType value) : _root_type(value) {} 101 MarkFromRootsTask(RootType value) : _root_type(value) {}