comparison src/share/vm/runtime/compilationPolicy.hpp @ 14309:63a4eb8bcd23

8025856: Fix typos in the GC code Summary: Fix about 440 typos in comments in the VM code Reviewed-by: mgerdin, tschatzl, coleenp, kmo, jcoomes
author jwilhelm
date Thu, 23 Jan 2014 14:47:23 +0100
parents de6a9e811145
children d8041d695d19
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
70 // safepoint() is called at the end of the safepoint 70 // safepoint() is called at the end of the safepoint
71 virtual void do_safepoint_work() = 0; 71 virtual void do_safepoint_work() = 0;
72 // reprofile request 72 // reprofile request
73 virtual void reprofile(ScopeDesc* trap_scope, bool is_osr) = 0; 73 virtual void reprofile(ScopeDesc* trap_scope, bool is_osr) = 0;
74 // delay_compilation(method) can be called by any component of the runtime to notify the policy 74 // delay_compilation(method) can be called by any component of the runtime to notify the policy
75 // that it's recommended to delay the complation of this method. 75 // that it's recommended to delay the compilation of this method.
76 virtual void delay_compilation(Method* method) = 0; 76 virtual void delay_compilation(Method* method) = 0;
77 // disable_compilation() is called whenever the runtime decides to disable compilation of the 77 // disable_compilation() is called whenever the runtime decides to disable compilation of the
78 // specified method. 78 // specified method.
79 virtual void disable_compilation(Method* method) = 0; 79 virtual void disable_compilation(Method* method) = 0;
80 // Select task is called by CompileBroker. The queue is guaranteed to have at least one 80 // Select task is called by CompileBroker. The queue is guaranteed to have at least one