8076177: Remove usage of stack.inline.hpp functions from taskqueue.hpp

Reviewed-by: brutisso, goetz
This commit is contained in:
Stefan Karlsson 2015-04-27 09:51:06 +02:00
parent 6d5aa2af43
commit f7ea0b72eb
19 changed files with 331 additions and 271 deletions

View file

@ -179,17 +179,9 @@ private:
// Access function for compaction managers
static ParCompactionManager* gc_thread_compaction_manager(int index);
static bool steal(int queue_num, int* seed, oop& t) {
return stack_array()->steal(queue_num, seed, t);
}
static bool steal_objarray(int queue_num, int* seed, ObjArrayTask& t) {
return _objarray_queues->steal(queue_num, seed, t);
}
static bool steal(int queue_num, int* seed, size_t& region) {
return region_array()->steal(queue_num, seed, region);
}
static bool steal(int queue_num, int* seed, oop& t);
static bool steal_objarray(int queue_num, int* seed, ObjArrayTask& t);
static bool steal(int queue_num, int* seed, size_t& region);
// Process tasks remaining on any marking stack
void follow_marking_stacks();