2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2018-02-22 10:39:42 +01:00
|
|
|
* Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
* accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License version
|
|
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
2010-05-27 19:08:38 -07:00
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-11-23 13:22:55 -08:00
|
|
|
#include "precompiled.hpp"
|
|
|
|
#include "classfile/javaClasses.hpp"
|
|
|
|
#include "classfile/symbolTable.hpp"
|
|
|
|
#include "classfile/systemDictionary.hpp"
|
|
|
|
#include "classfile/vmSymbols.hpp"
|
2015-05-13 15:16:06 +02:00
|
|
|
#include "gc/shared/collectedHeap.inline.hpp"
|
2010-11-23 13:22:55 -08:00
|
|
|
#include "memory/oopFactory.hpp"
|
|
|
|
#include "memory/resourceArea.hpp"
|
2018-03-07 21:57:36 +01:00
|
|
|
#include "memory/universe.hpp"
|
2010-11-23 13:22:55 -08:00
|
|
|
#include "oops/instanceKlass.hpp"
|
|
|
|
#include "oops/instanceOop.hpp"
|
|
|
|
#include "oops/objArrayOop.hpp"
|
|
|
|
#include "oops/oop.inline.hpp"
|
2018-02-22 10:39:42 +01:00
|
|
|
#include "oops/typeArrayOop.inline.hpp"
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
typeArrayOop oopFactory::new_charArray(const char* utf8_str, TRAPS) {
|
|
|
|
int length = utf8_str == NULL ? 0 : UTF8::unicode_length(utf8_str);
|
|
|
|
typeArrayOop result = new_charArray(length, CHECK_NULL);
|
|
|
|
if (length > 0) {
|
|
|
|
UTF8::convert_to_unicode(utf8_str, result->char_at_addr(0), length);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
typeArrayOop oopFactory::new_tenured_charArray(int length, TRAPS) {
|
2012-09-29 06:40:00 -04:00
|
|
|
return TypeArrayKlass::cast(Universe::charArrayKlassObj())->allocate(length, THREAD);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
typeArrayOop oopFactory::new_typeArray(BasicType type, int length, TRAPS) {
|
|
|
|
Klass* type_asKlassOop = Universe::typeArrayKlassObj(type);
|
2012-09-29 06:40:00 -04:00
|
|
|
TypeArrayKlass* type_asArrayKlass = TypeArrayKlass::cast(type_asKlassOop);
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
typeArrayOop result = type_asArrayKlass->allocate(length, THREAD);
|
|
|
|
return result;
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2017-02-01 17:56:22 -05:00
|
|
|
// Create a Java array that points to Symbol.
|
|
|
|
// As far as Java code is concerned, a Symbol array is either an array of
|
|
|
|
// int or long depending on pointer size. Only stack trace elements in Throwable use
|
|
|
|
// this. They cast Symbol* into this type.
|
|
|
|
typeArrayOop oopFactory::new_symbolArray(int length, TRAPS) {
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
BasicType type = LP64_ONLY(T_LONG) NOT_LP64(T_INT);
|
|
|
|
Klass* type_asKlassOop = Universe::typeArrayKlassObj(type);
|
2012-09-29 06:40:00 -04:00
|
|
|
TypeArrayKlass* type_asArrayKlass = TypeArrayKlass::cast(type_asKlassOop);
|
2017-02-01 17:56:22 -05:00
|
|
|
typeArrayOop result = type_asArrayKlass->allocate(length, THREAD);
|
2011-09-26 10:24:05 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
typeArrayOop oopFactory::new_typeArray_nozero(BasicType type, int length, TRAPS) {
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
Klass* type_asKlassOop = Universe::typeArrayKlassObj(type);
|
2012-09-29 06:40:00 -04:00
|
|
|
TypeArrayKlass* type_asArrayKlass = TypeArrayKlass::cast(type_asKlassOop);
|
2011-09-26 10:24:05 -07:00
|
|
|
typeArrayOop result = type_asArrayKlass->allocate_common(length, false, THREAD);
|
2007-12-01 00:00:00 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
6964458: Reimplement class meta-data storage to use native memory
Remove PermGen, allocate meta-data in metaspace linked to class loaders, rewrite GC walking, rewrite and rename metadata to be C++ classes
Co-authored-by: Stefan Karlsson <stefan.karlsson@oracle.com>
Co-authored-by: Mikael Gerdin <mikael.gerdin@oracle.com>
Co-authored-by: Tom Rodriguez <tom.rodriguez@oracle.com>
Reviewed-by: jmasa, stefank, never, coleenp, kvn, brutisso, mgerdin, dholmes, jrose, twisti, roland
2012-09-01 13:25:18 -04:00
|
|
|
objArrayOop oopFactory::new_objArray(Klass* klass, int length, TRAPS) {
|
2007-12-01 00:00:00 +00:00
|
|
|
assert(klass->is_klass(), "must be instance class");
|
2015-10-28 09:47:23 -04:00
|
|
|
if (klass->is_array_klass()) {
|
2015-10-26 13:11:36 -04:00
|
|
|
return ArrayKlass::cast(klass)->allocate_arrayArray(1, length, THREAD);
|
2007-12-01 00:00:00 +00:00
|
|
|
} else {
|
2015-10-26 13:11:36 -04:00
|
|
|
return InstanceKlass::cast(klass)->allocate_objArray(1, length, THREAD);
|
2007-12-01 00:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
2017-02-15 22:59:57 -05:00
|
|
|
|
|
|
|
objArrayHandle oopFactory::new_objArray_handle(Klass* klass, int length, TRAPS) {
|
|
|
|
objArrayOop obj = new_objArray(klass, length, CHECK_(objArrayHandle()));
|
|
|
|
return objArrayHandle(THREAD, obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
typeArrayHandle oopFactory::new_byteArray_handle(int length, TRAPS) {
|
|
|
|
typeArrayOop obj = new_byteArray(length, CHECK_(typeArrayHandle()));
|
|
|
|
return typeArrayHandle(THREAD, obj);
|
|
|
|
}
|