src/share/vm/utilities/hashtable.cpp

changeset 5784
190899198332
parent 5144
a5d6f0c3585f
child 6351
f9e35a9dc8c7
equal deleted inserted replaced
5783:c1fbf21c7397 5784: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>;

mercurial