comparison src/share/vm/runtime/vm_operations.hpp @ 14318:1020b892787b

Merge
author hseigel
date Sun, 02 Feb 2014 15:31:40 -0500
parents 63a4eb8bcd23
children d8041d695d19 0d8d78c0329a
comparison
equal deleted inserted replaced
14317:b59507f713e0 14318:1020b892787b
152 VM_Operation *next() const { return _next; } 152 VM_Operation *next() const { return _next; }
153 VM_Operation *prev() const { return _prev; } 153 VM_Operation *prev() const { return _prev; }
154 void set_next(VM_Operation *next) { _next = next; } 154 void set_next(VM_Operation *next) { _next = next; }
155 void set_prev(VM_Operation *prev) { _prev = prev; } 155 void set_prev(VM_Operation *prev) { _prev = prev; }
156 156
157 // Configuration. Override these appropriatly in subclasses. 157 // Configuration. Override these appropriately in subclasses.
158 virtual VMOp_Type type() const = 0; 158 virtual VMOp_Type type() const = 0;
159 virtual Mode evaluation_mode() const { return _safepoint; } 159 virtual Mode evaluation_mode() const { return _safepoint; }
160 virtual bool allow_nested_vm_operations() const { return false; } 160 virtual bool allow_nested_vm_operations() const { return false; }
161 virtual bool is_cheap_allocated() const { return false; } 161 virtual bool is_cheap_allocated() const { return false; }
162 virtual void oops_do(OopClosure* f) { /* do nothing */ }; 162 virtual void oops_do(OopClosure* f) { /* do nothing */ };