comparison src/share/vm/utilities/hashtable.cpp @ 12316:190899198332

7195622: CheckUnhandledOops has limited usefulness now Summary: Enable CHECK_UNHANDLED_OOPS in fastdebug builds across all supported platforms. Reviewed-by: coleenp, hseigel, dholmes, stefank, twisti, ihse, rdurbin Contributed-by: lois.foltan@oracle.com
author hseigel
date Thu, 26 Sep 2013 10:25:02 -0400
parents a5d6f0c3585f
children cd6b3f1a94ff
comparison
equal deleted inserted replaced
12315:c1fbf21c7397 12316:190899198332
1 /* 1 /*
2 * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2003, 2013, 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.
354 // Explicitly instantiate these types 354 // Explicitly instantiate these types
355 template class Hashtable<ConstantPool*, mtClass>; 355 template class Hashtable<ConstantPool*, mtClass>;
356 template class Hashtable<Symbol*, mtSymbol>; 356 template class Hashtable<Symbol*, mtSymbol>;
357 template class Hashtable<Klass*, mtClass>; 357 template class Hashtable<Klass*, mtClass>;
358 template class Hashtable<oop, mtClass>; 358 template class Hashtable<oop, mtClass>;
359 #ifdef SOLARIS 359 #if defined(SOLARIS) || defined(CHECK_UNHANDLED_OOPS)
360 template class Hashtable<oop, mtSymbol>; 360 template class Hashtable<oop, mtSymbol>;
361 #endif 361 #endif // SOLARIS || CHECK_UNHANDLED_OOPS
362 template class Hashtable<oopDesc*, mtSymbol>; 362 template class Hashtable<oopDesc*, mtSymbol>;
363 template class Hashtable<Symbol*, mtClass>; 363 template class Hashtable<Symbol*, mtClass>;
364 template class HashtableEntry<Symbol*, mtSymbol>; 364 template class HashtableEntry<Symbol*, mtSymbol>;
365 template class HashtableEntry<Symbol*, mtClass>; 365 template class HashtableEntry<Symbol*, mtClass>;
366 template class HashtableEntry<oop, mtSymbol>; 366 template class HashtableEntry<oop, mtSymbol>;