--- old/src/share/vm/gc_implementation/g1/g1ParScanThreadState.hpp 2015-04-15 20:20:04.452276386 +0300 +++ new/src/share/vm/gc_implementation/g1/g1ParScanThreadState.hpp 2015-04-15 20:20:04.372275155 +0300 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2015, 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 @@ -54,9 +54,6 @@ uint _tenuring_threshold; G1ParScanClosure _scanner; - size_t _alloc_buffer_waste; - size_t _undo_waste; - OopsInHeapRegionClosure* _evac_failure_cl; int _hash_seed; @@ -78,9 +75,6 @@ #define PADDING_ELEM_NUM (DEFAULT_CACHE_LINE_SIZE / sizeof(size_t)) - void add_to_alloc_buffer_waste(size_t waste) { _alloc_buffer_waste += waste; } - void add_to_undo_waste(size_t waste) { _undo_waste += waste; } - DirtyCardQueue& dirty_card_queue() { return _dcq; } G1SATBCardTableModRefBS* ctbs() { return _ct_bs; }