blob: 70311bb8893a605f9a8c441ede0048e2731b4226 [file] [log] [blame]
Mathieu Chartierdaaf3262015-03-24 13:30:28 -07001/*
2 * Copyright (C) 2015 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 "field-inl.h"
18
19#include "dex_cache-inl.h"
20#include "object_array-inl.h"
21#include "object-inl.h"
22
23namespace art {
24namespace mirror {
25
26GcRoot<Class> Field::static_class_;
27GcRoot<Class> Field::array_class_;
28
29void Field::SetClass(Class* klass) {
30 CHECK(static_class_.IsNull()) << static_class_.Read() << " " << klass;
31 CHECK(klass != nullptr);
32 static_class_ = GcRoot<Class>(klass);
33}
34
35void Field::ResetClass() {
36 CHECK(!static_class_.IsNull());
37 static_class_ = GcRoot<Class>(nullptr);
38}
39
40void Field::SetArrayClass(Class* klass) {
41 CHECK(array_class_.IsNull()) << array_class_.Read() << " " << klass;
42 CHECK(klass != nullptr);
43 array_class_ = GcRoot<Class>(klass);
44}
45
46void Field::ResetArrayClass() {
47 CHECK(!array_class_.IsNull());
48 array_class_ = GcRoot<Class>(nullptr);
49}
50
Mathieu Chartierbb87e0f2015-04-03 11:21:55 -070051void Field::VisitRoots(RootVisitor* visitor) {
52 static_class_.VisitRootIfNonNull(visitor, RootInfo(kRootStickyClass));
53 array_class_.VisitRootIfNonNull(visitor, RootInfo(kRootStickyClass));
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070054}
55
56ArtField* Field::GetArtField() {
57 mirror::DexCache* const dex_cache = GetDeclaringClass()->GetDexCache();
Mathieu Chartierc7853442015-03-27 14:35:38 -070058 ArtField* const art_field = dex_cache->GetResolvedField(GetDexFieldIndex(), sizeof(void*));
Mathieu Chartierdaaf3262015-03-24 13:30:28 -070059 CHECK(art_field != nullptr);
60 return art_field;
61}
62
63} // namespace mirror
64} // namespace art