src/share/vm/memory/oopFactory.cpp

Wed, 02 Jul 2008 12:55:16 -0700

author
xdono
date
Wed, 02 Jul 2008 12:55:16 -0700
changeset 631
d1605aabd0a1
parent 435
a61af66fc99e
child 953
0af8b0718fc9
permissions
-rw-r--r--

6719955: Update copyright year
Summary: Update copyright year for files that have been modified in 2008
Reviewed-by: ohair, tbell

duke@435 1 /*
duke@435 2 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
duke@435 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 * have any questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 # include "incls/_precompiled.incl"
duke@435 26 # include "incls/_oopFactory.cpp.incl"
duke@435 27
duke@435 28
duke@435 29 typeArrayOop oopFactory::new_charArray(const char* utf8_str, TRAPS) {
duke@435 30 int length = utf8_str == NULL ? 0 : UTF8::unicode_length(utf8_str);
duke@435 31 typeArrayOop result = new_charArray(length, CHECK_NULL);
duke@435 32 if (length > 0) {
duke@435 33 UTF8::convert_to_unicode(utf8_str, result->char_at_addr(0), length);
duke@435 34 }
duke@435 35 return result;
duke@435 36 }
duke@435 37
duke@435 38 typeArrayOop oopFactory::new_permanent_charArray(int length, TRAPS) {
duke@435 39 return typeArrayKlass::cast(Universe::charArrayKlassObj())->allocate_permanent(length, THREAD);
duke@435 40 }
duke@435 41
duke@435 42 typeArrayOop oopFactory::new_permanent_byteArray(int length, TRAPS) {
duke@435 43 return typeArrayKlass::cast(Universe::byteArrayKlassObj())->allocate_permanent(length, THREAD);
duke@435 44 }
duke@435 45
duke@435 46
duke@435 47 typeArrayOop oopFactory::new_permanent_shortArray(int length, TRAPS) {
duke@435 48 return typeArrayKlass::cast(Universe::shortArrayKlassObj())->allocate_permanent(length, THREAD);
duke@435 49 }
duke@435 50
duke@435 51
duke@435 52 typeArrayOop oopFactory::new_permanent_intArray(int length, TRAPS) {
duke@435 53 return typeArrayKlass::cast(Universe::intArrayKlassObj())->allocate_permanent(length, THREAD);
duke@435 54 }
duke@435 55
duke@435 56
duke@435 57 typeArrayOop oopFactory::new_typeArray(BasicType type, int length, TRAPS) {
duke@435 58 klassOop type_asKlassOop = Universe::typeArrayKlassObj(type);
duke@435 59 typeArrayKlass* type_asArrayKlass = typeArrayKlass::cast(type_asKlassOop);
duke@435 60 typeArrayOop result = type_asArrayKlass->allocate(length, THREAD);
duke@435 61 return result;
duke@435 62 }
duke@435 63
duke@435 64
duke@435 65 objArrayOop oopFactory::new_objArray(klassOop klass, int length, TRAPS) {
duke@435 66 assert(klass->is_klass(), "must be instance class");
duke@435 67 if (klass->klass_part()->oop_is_array()) {
duke@435 68 return ((arrayKlass*)klass->klass_part())->allocate_arrayArray(1, length, THREAD);
duke@435 69 } else {
duke@435 70 assert (klass->klass_part()->oop_is_instance(), "new object array with klass not an instanceKlass");
duke@435 71 return ((instanceKlass*)klass->klass_part())->allocate_objArray(1, length, THREAD);
duke@435 72 }
duke@435 73 }
duke@435 74
duke@435 75 objArrayOop oopFactory::new_system_objArray(int length, TRAPS) {
duke@435 76 int size = objArrayOopDesc::object_size(length);
duke@435 77 KlassHandle klass (THREAD, Universe::systemObjArrayKlassObj());
duke@435 78 objArrayOop o = (objArrayOop)
duke@435 79 Universe::heap()->permanent_array_allocate(klass, size, length, CHECK_NULL);
duke@435 80 // initialization not needed, allocated cleared
duke@435 81 return o;
duke@435 82 }
duke@435 83
duke@435 84
duke@435 85 constantPoolOop oopFactory::new_constantPool(int length, TRAPS) {
duke@435 86 constantPoolKlass* ck = constantPoolKlass::cast(Universe::constantPoolKlassObj());
duke@435 87 return ck->allocate(length, CHECK_NULL);
duke@435 88 }
duke@435 89
duke@435 90
duke@435 91 constantPoolCacheOop oopFactory::new_constantPoolCache(int length, TRAPS) {
duke@435 92 constantPoolCacheKlass* ck = constantPoolCacheKlass::cast(Universe::constantPoolCacheKlassObj());
duke@435 93 return ck->allocate(length, CHECK_NULL);
duke@435 94 }
duke@435 95
duke@435 96
duke@435 97 klassOop oopFactory::new_instanceKlass(int vtable_len, int itable_len, int static_field_size,
duke@435 98 int nonstatic_oop_map_size, ReferenceType rt, TRAPS) {
duke@435 99 instanceKlassKlass* ikk = instanceKlassKlass::cast(Universe::instanceKlassKlassObj());
duke@435 100 return ikk->allocate_instance_klass(vtable_len, itable_len, static_field_size, nonstatic_oop_map_size, rt, CHECK_NULL);
duke@435 101 }
duke@435 102
duke@435 103
duke@435 104 constMethodOop oopFactory::new_constMethod(int byte_code_size,
duke@435 105 int compressed_line_number_size,
duke@435 106 int localvariable_table_length,
duke@435 107 int checked_exceptions_length,
duke@435 108 TRAPS) {
duke@435 109 klassOop cmkObj = Universe::constMethodKlassObj();
duke@435 110 constMethodKlass* cmk = constMethodKlass::cast(cmkObj);
duke@435 111 return cmk->allocate(byte_code_size, compressed_line_number_size,
duke@435 112 localvariable_table_length, checked_exceptions_length,
duke@435 113 CHECK_NULL);
duke@435 114 }
duke@435 115
duke@435 116
duke@435 117 methodOop oopFactory::new_method(int byte_code_size, AccessFlags access_flags,
duke@435 118 int compressed_line_number_size,
duke@435 119 int localvariable_table_length,
duke@435 120 int checked_exceptions_length, TRAPS) {
duke@435 121 methodKlass* mk = methodKlass::cast(Universe::methodKlassObj());
duke@435 122 assert(!access_flags.is_native() || byte_code_size == 0,
duke@435 123 "native methods should not contain byte codes");
duke@435 124 constMethodOop cm = new_constMethod(byte_code_size,
duke@435 125 compressed_line_number_size,
duke@435 126 localvariable_table_length,
duke@435 127 checked_exceptions_length, CHECK_NULL);
duke@435 128 constMethodHandle rw(THREAD, cm);
duke@435 129 return mk->allocate(rw, access_flags, CHECK_NULL);
duke@435 130 }
duke@435 131
duke@435 132
duke@435 133 methodDataOop oopFactory::new_methodData(methodHandle method, TRAPS) {
duke@435 134 methodDataKlass* mdk = methodDataKlass::cast(Universe::methodDataKlassObj());
duke@435 135 return mdk->allocate(method, CHECK_NULL);
duke@435 136 }
duke@435 137
duke@435 138
duke@435 139 compiledICHolderOop oopFactory::new_compiledICHolder(methodHandle method, KlassHandle klass, TRAPS) {
duke@435 140 compiledICHolderKlass* ck = (compiledICHolderKlass*) Universe::compiledICHolderKlassObj()->klass_part();
duke@435 141 compiledICHolderOop c = ck->allocate(CHECK_NULL);
duke@435 142 c->set_holder_method(method());
duke@435 143 c->set_holder_klass(klass());
duke@435 144 return c;
duke@435 145 }

mercurial