Skip to content

Commit

Permalink
8232689: Remove ParCompactionManager::Action enum
Browse files Browse the repository at this point in the history
Reviewed-by: lkorinth, kbarrett, tschatzl
  • Loading branch information
walulyai authored and lkorinth committed Jan 29, 2020
1 parent 0b22124 commit 41f962d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 33 deletions.
20 changes: 3 additions & 17 deletions src/hotspot/share/gc/parallel/psCompactionManager.cpp
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -52,8 +52,7 @@ RegionTaskQueueSet* ParCompactionManager::_region_array = NULL;
GrowableArray<size_t >* ParCompactionManager::_shadow_region_array = NULL;
Monitor* ParCompactionManager::_shadow_region_monitor = NULL;

ParCompactionManager::ParCompactionManager() :
_action(CopyAndUpdate) {
ParCompactionManager::ParCompactionManager() {

ParallelScavengeHeap* heap = ParallelScavengeHeap::heap();

Expand Down Expand Up @@ -115,19 +114,6 @@ void ParCompactionManager::reset_all_bitmap_query_caches() {
}
}

bool ParCompactionManager::should_update() {
assert(action() != NotValid, "Action is not set");
return (action() == ParCompactionManager::Update) ||
(action() == ParCompactionManager::CopyAndUpdate) ||
(action() == ParCompactionManager::UpdateAndCopy);
}

bool ParCompactionManager::should_copy() {
assert(action() != NotValid, "Action is not set");
return (action() == ParCompactionManager::Copy) ||
(action() == ParCompactionManager::CopyAndUpdate) ||
(action() == ParCompactionManager::UpdateAndCopy);
}

ParCompactionManager*
ParCompactionManager::gc_thread_compaction_manager(uint index) {
Expand Down Expand Up @@ -199,4 +185,4 @@ void ParCompactionManager::push_shadow_region(size_t shadow_region) {

void ParCompactionManager::remove_all_shadow_regions() {
_shadow_region_array->clear();
}
}
17 changes: 1 addition & 16 deletions src/hotspot/share/gc/parallel/psCompactionManager.hpp
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -50,16 +50,6 @@ class ParCompactionManager : public CHeapObj<mtGC> {

public:

// ------------------------ Don't putback if not needed
// Actions that the compaction manager should take.
enum Action {
Update,
Copy,
UpdateAndCopy,
CopyAndUpdate,
NotValid
};
// ------------------------ End don't putback if not needed

private:
// 32-bit: 4K * 8 = 32KiB; 64-bit: 8K * 16 = 128KiB
Expand Down Expand Up @@ -95,8 +85,6 @@ class ParCompactionManager : public CHeapObj<mtGC> {
// See pop/push_shadow_region_mt_safe() below
static Monitor* _shadow_region_monitor;

Action _action;

HeapWord* _last_query_beg;
oop _last_query_obj;
size_t _last_query_ret;
Expand Down Expand Up @@ -138,9 +126,6 @@ class ParCompactionManager : public CHeapObj<mtGC> {
_last_query_ret = 0;
}

Action action() { return _action; }
void set_action(Action v) { _action = v; }

// Bitmap query support, cache last query and result
HeapWord* last_query_begin() { return _last_query_beg; }
oop last_query_object() { return _last_query_obj; }
Expand Down

0 comments on commit 41f962d

Please sign in to comment.