blob: 715f072c4a3b2376b25e3724e07a273e4fa43a52 [file] [log] [blame]
Ian Rogers2dd0e2c2013-01-24 12:42:14 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "array.h"
18
19#include "class.h"
20#include "class-inl.h"
Ian Rogers98379392014-02-24 16:53:16 -080021#include "class_linker-inl.h"
Ian Rogers62d6c772013-02-27 08:32:07 -080022#include "common_throws.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070023#include "dex_file-inl.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070024#include "gc/accounting/card_table-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025#include "object-inl.h"
26#include "object_array.h"
27#include "object_array-inl.h"
28#include "object_utils.h"
29#include "sirt_ref.h"
30#include "thread.h"
31#include "utils.h"
32
33namespace art {
34namespace mirror {
35
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036// Create a multi-dimensional array of Objects or primitive types.
37//
38// We have to generate the names for X[], X[][], X[][][], and so on. The
39// easiest way to deal with that is to create the full name once and then
40// subtract pieces off. Besides, we want to start with the outermost
41// piece and work our way in.
42// Recursively create an array with multiple dimensions. Elements may be
43// Objects or primitive types.
Mathieu Chartier5bb99032014-02-08 16:20:58 -080044static Array* RecursiveCreateMultiArray(Thread* self,
45 const SirtRef<Class>& array_class, int current_dimension,
46 const SirtRef<mirror::IntArray>& dimensions)
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080047 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
48 int32_t array_length = dimensions->Get(current_dimension);
Mathieu Chartier5bb99032014-02-08 16:20:58 -080049 SirtRef<Array> new_array(self, Array::Alloc<true>(self, array_class.get(), array_length));
50 if (UNLIKELY(new_array.get() == nullptr)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080051 CHECK(self->IsExceptionPending());
Mathieu Chartier5bb99032014-02-08 16:20:58 -080052 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080053 }
Mathieu Chartier590fee92013-09-13 13:46:47 -070054 if (current_dimension + 1 < dimensions->GetLength()) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080055 // Create a new sub-array in every element of the array.
56 for (int32_t i = 0; i < array_length; i++) {
Mathieu Chartier5bb99032014-02-08 16:20:58 -080057 SirtRef<mirror::Class> sirt_component_type(self, array_class->GetComponentType());
58 Array* sub_array = RecursiveCreateMultiArray(self, sirt_component_type,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080059 current_dimension + 1, dimensions);
Mathieu Chartier5bb99032014-02-08 16:20:58 -080060 if (UNLIKELY(sub_array == nullptr)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080061 CHECK(self->IsExceptionPending());
Mathieu Chartier5bb99032014-02-08 16:20:58 -080062 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080063 }
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +010064 // Use non-transactional mode without check.
65 new_array->AsObjectArray<Array>()->Set<false, false>(i, sub_array);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080066 }
67 }
68 return new_array.get();
69}
70
Mathieu Chartier5bb99032014-02-08 16:20:58 -080071Array* Array::CreateMultiArray(Thread* self, const SirtRef<Class>& element_class,
72 const SirtRef<IntArray>& dimensions) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080073 // Verify dimensions.
74 //
75 // The caller is responsible for verifying that "dimArray" is non-null
76 // and has a length > 0 and <= 255.
77 int num_dimensions = dimensions->GetLength();
78 DCHECK_GT(num_dimensions, 0);
79 DCHECK_LE(num_dimensions, 255);
80
81 for (int i = 0; i < num_dimensions; i++) {
82 int dimension = dimensions->Get(i);
83 if (UNLIKELY(dimension < 0)) {
Ian Rogers62d6c772013-02-27 08:32:07 -080084 ThrowNegativeArraySizeException(StringPrintf("Dimension %d: %d", i, dimension).c_str());
Mathieu Chartier5bb99032014-02-08 16:20:58 -080085 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080086 }
87 }
88
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080089 // Find/generate the array class.
90 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Mathieu Chartier5bb99032014-02-08 16:20:58 -080091 SirtRef<mirror::Class> array_class(self,
Ian Rogers98379392014-02-24 16:53:16 -080092 class_linker->FindArrayClass(self, element_class.get()));
Mathieu Chartier5bb99032014-02-08 16:20:58 -080093 if (UNLIKELY(array_class.get() == nullptr)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080094 CHECK(self->IsExceptionPending());
Mathieu Chartier5bb99032014-02-08 16:20:58 -080095 return nullptr;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080096 }
Ian Rogers98379392014-02-24 16:53:16 -080097 for (int32_t i = 1; i < dimensions->GetLength(); ++i) {
98 array_class.reset(class_linker->FindArrayClass(self, array_class.get()));
99 if (UNLIKELY(array_class.get() == nullptr)) {
100 CHECK(self->IsExceptionPending());
101 return nullptr;
102 }
103 }
104 // Create the array.
Mathieu Chartier5bb99032014-02-08 16:20:58 -0800105 Array* new_array = RecursiveCreateMultiArray(self, array_class, 0, dimensions);
106 if (UNLIKELY(new_array == nullptr)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800107 CHECK(self->IsExceptionPending());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800108 }
109 return new_array;
110}
111
Ian Rogersef7d42f2014-01-06 12:55:46 -0800112void Array::ThrowArrayIndexOutOfBoundsException(int32_t index) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800113 art::ThrowArrayIndexOutOfBoundsException(index, GetLength());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800114}
115
Ian Rogersef7d42f2014-01-06 12:55:46 -0800116void Array::ThrowArrayStoreException(Object* object) {
Ian Rogers62d6c772013-02-27 08:32:07 -0800117 art::ThrowArrayStoreException(object->GetClass(), this->GetClass());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800118}
119
120template<typename T>
121PrimitiveArray<T>* PrimitiveArray<T>::Alloc(Thread* self, size_t length) {
122 DCHECK(array_class_ != NULL);
Mathieu Chartiercbb2d202013-11-14 17:45:16 -0800123 Array* raw_array = Array::Alloc<true>(self, array_class_, length, sizeof(T));
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800124 return down_cast<PrimitiveArray<T>*>(raw_array);
125}
126
127template <typename T> Class* PrimitiveArray<T>::array_class_ = NULL;
128
129// Explicitly instantiate all the primitive array types.
130template class PrimitiveArray<uint8_t>; // BooleanArray
131template class PrimitiveArray<int8_t>; // ByteArray
132template class PrimitiveArray<uint16_t>; // CharArray
133template class PrimitiveArray<double>; // DoubleArray
134template class PrimitiveArray<float>; // FloatArray
135template class PrimitiveArray<int32_t>; // IntArray
136template class PrimitiveArray<int64_t>; // LongArray
137template class PrimitiveArray<int16_t>; // ShortArray
138
139} // namespace mirror
140} // namespace art