comparison src/share/vm/gc_implementation/g1/satbQueue.hpp @ 23027:2e5e058881f4

8075466: SATB queue pre-filter verify found reclaimed humongous object Summary: Removed pre-filter verify, and made filtering more careful. Reviewed-by: brutisso, tschatzl
author kbarrett
date Wed, 15 Apr 2015 16:37:57 -0400
parents c2844108a708
children b5d14ef905b5
comparison
equal deleted inserted replaced
23026:b7c8142a9e0b 23027:2e5e058881f4
1 /* 1 /*
2 * Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
70 #ifndef PRODUCT 70 #ifndef PRODUCT
71 // Helpful for debugging 71 // Helpful for debugging
72 void print(const char* name); 72 void print(const char* name);
73 static void print(const char* name, void** buf, size_t index, size_t sz); 73 static void print(const char* name, void** buf, size_t index, size_t sz);
74 #endif // PRODUCT 74 #endif // PRODUCT
75
76 void verify_oops_in_buffer() NOT_DEBUG_RETURN;
77 }; 75 };
78 76
79 class SATBMarkQueueSet: public PtrQueueSet { 77 class SATBMarkQueueSet: public PtrQueueSet {
80 ObjectClosure* _closure; 78 ObjectClosure* _closure;
81 ObjectClosure** _par_closures; // One per ParGCThread. 79 ObjectClosure** _par_closures; // One per ParGCThread.