blob: c60e714d4427268f879ca87a05024c848fc4327d [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
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070069inline Array* Array::AllocInstrumented(Thread* self, Class* array_class, int32_t component_count,
70 size_t component_size) {
71 size_t size = ComputeArraySize(self, array_class, component_count, component_size);
72 if (UNLIKELY(size == 0)) {
73 return NULL;
74 }
75 gc::Heap* heap = Runtime::Current()->GetHeap();
76 Array* array = down_cast<Array*>(heap->AllocObjectInstrumented(self, array_class, size));
77 return SetArrayLength(array, component_count);
78}
79
80inline Array* Array::AllocUninstrumented(Thread* self, Class* array_class, int32_t component_count,
81 size_t component_size) {
82 size_t size = ComputeArraySize(self, array_class, component_count, component_size);
83 if (UNLIKELY(size == 0)) {
84 return NULL;
85 }
86 gc::Heap* heap = Runtime::Current()->GetHeap();
87 Array* array = down_cast<Array*>(heap->AllocObjectUninstrumented(self, array_class, size));
88 return SetArrayLength(array, component_count);
89}
90
91inline Array* Array::AllocInstrumented(Thread* self, Class* array_class, int32_t component_count) {
Hiroshi Yamauchi967a0ad2013-09-10 16:24:21 -070092 DCHECK(array_class->IsArrayClass());
Hiroshi Yamauchi3b4c1892013-09-12 21:33:12 -070093 return AllocInstrumented(self, array_class, component_count, array_class->GetComponentSize());
94}
95
96inline Array* Array::AllocUninstrumented(Thread* self, Class* array_class, int32_t component_count) {
97 DCHECK(array_class->IsArrayClass());
98 return AllocUninstrumented(self, array_class, component_count, 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_