blob: ef73e4df47a70bd1243199d320f71b0cbde1c087 [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
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_MIRROR_ARRAY_INL_H_
18#define ART_RUNTIME_MIRROR_ARRAY_INL_H_
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080019
20#include "array.h"
21
22#include "class.h"
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070023#include "gc/heap-inl.h"
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -070024#include "thread.h"
25#include "utils.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026
27namespace art {
28namespace mirror {
29
30inline size_t Array::SizeOf() const {
31 // This is safe from overflow because the array was already allocated, so we know it's sane.
32 size_t component_size = GetClass()->GetComponentSize();
33 int32_t component_count = GetLength();
34 size_t header_size = sizeof(Object) + (component_size == sizeof(int64_t) ? 8 : 4);
35 size_t data_size = component_count * component_size;
36 return header_size + data_size;
37}
38
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070039static inline size_t ComputeArraySize(Thread* self, Class* array_class, int32_t component_count,
40 size_t component_size)
41 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -070042 DCHECK(array_class != NULL);
43 DCHECK_GE(component_count, 0);
44 DCHECK(array_class->IsArrayClass());
45
46 size_t header_size = sizeof(Object) + (component_size == sizeof(int64_t) ? 8 : 4);
47 size_t data_size = component_count * component_size;
48 size_t size = header_size + data_size;
49
50 // Check for overflow and throw OutOfMemoryError if this was an unreasonable request.
51 size_t component_shift = sizeof(size_t) * 8 - 1 - CLZ(component_size);
52 if (UNLIKELY(data_size >> component_shift != size_t(component_count) || size < data_size)) {
53 self->ThrowOutOfMemoryError(StringPrintf("%s of length %d would overflow",
54 PrettyDescriptor(array_class).c_str(),
55 component_count).c_str());
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070056 return 0; // failure
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -070057 }
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070058 return size;
59}
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -070060
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070061static inline Array* SetArrayLength(Array* array, size_t length) {
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -070062 if (LIKELY(array != NULL)) {
63 DCHECK(array->IsArrayInstance());
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070064 array->SetLength(length);
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -070065 }
66 return array;
67}
68
Mathieu Chartier590fee92013-09-13 13:46:47 -070069template <bool kIsMovable, bool kIsInstrumented>
70inline Array* Array::Alloc(Thread* self, Class* array_class, int32_t component_count,
71 size_t component_size) {
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070072 size_t size = ComputeArraySize(self, array_class, component_count, component_size);
73 if (UNLIKELY(size == 0)) {
74 return NULL;
75 }
76 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier590fee92013-09-13 13:46:47 -070077 Array* array = nullptr;
78 if (kIsMovable) {
79 if (kIsInstrumented) {
80 array = down_cast<Array*>(heap->AllocMovableObjectInstrumented(self, array_class, size));
81 } else {
82 array = down_cast<Array*>(heap->AllocMovableObjectUninstrumented(self, array_class, size));
83 }
84 } else {
85 if (kIsInstrumented) {
86 array = down_cast<Array*>(heap->AllocNonMovableObjectInstrumented(self, array_class, size));
87 } else {
88 array = down_cast<Array*>(heap->AllocNonMovableObjectUninstrumented(self, array_class, size));
89 }
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070090 }
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070091 return SetArrayLength(array, component_count);
92}
93
Mathieu Chartier590fee92013-09-13 13:46:47 -070094template <bool kIsMovable, bool kIsInstrumented>
95inline Array* Array::Alloc(Thread* self, Class* array_class, int32_t component_count) {
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -070096 DCHECK(array_class->IsArrayClass());
Mathieu Chartier590fee92013-09-13 13:46:47 -070097 return Alloc<kIsMovable, kIsInstrumented>(self, array_class, component_count,
98 array_class->GetComponentSize());
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -070099}
100
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800101} // namespace mirror
102} // namespace art
103
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700104#endif // ART_RUNTIME_MIRROR_ARRAY_INL_H_