hotspot/src/share/vm/memory/oopFactory.hpp
changeset 46257 3e95288ce4ca
parent 27680 8ecc0871c18e
child 46271 979ebd346ecf
equal deleted inserted replaced
43605:07baf498d588 46257:3e95288ce4ca
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2017, 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.
    60   static typeArrayOop    new_charArray           (const char* utf8_str,  TRAPS);
    60   static typeArrayOop    new_charArray           (const char* utf8_str,  TRAPS);
    61   static typeArrayOop    new_tenured_charArray(int length, TRAPS);
    61   static typeArrayOop    new_tenured_charArray(int length, TRAPS);
    62 
    62 
    63   static typeArrayOop    new_typeArray(BasicType type, int length, TRAPS);
    63   static typeArrayOop    new_typeArray(BasicType type, int length, TRAPS);
    64   static typeArrayOop    new_typeArray_nozero(BasicType type, int length, TRAPS);
    64   static typeArrayOop    new_typeArray_nozero(BasicType type, int length, TRAPS);
    65   static typeArrayOop    new_metaDataArray(int length, TRAPS);
    65   static typeArrayOop    new_symbolArray(int length, TRAPS);
    66 
    66 
    67   // Regular object arrays
    67   // Regular object arrays
    68   static objArrayOop     new_objArray(Klass* klass, int length, TRAPS);
    68   static objArrayOop     new_objArray(Klass* klass, int length, TRAPS);
    69 };
    69 };
    70 
    70