blob: 3603f9c0ba6007d6d18e9ae9c8e561cf79f57463 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package java.lang;
import com.android.dex.Dex;
import java.lang.reflect.ArtField;
import java.lang.reflect.ArtMethod;
/**
* A dex cache holds resolved copies of strings, fields, methods, and classes from the dexfile.
*/
final class DexCache {
/** Lazily initialized dex file wrapper. Volatile to avoid double-check locking issues. */
private volatile Dex dex;
/** Indexed by the type index array of locations of initialized static storage. */
Object[] initializedStaticStorage;
/** The location of the associated dex file. */
String location;
/**
* References to fields as they become resolved following interpreter semantics. May refer to
* fields defined in other dex files.
*/
ArtField[] resolvedFields;
/**
* References to methods as they become resolved following interpreter semantics. May refer to
* methods defined in other dex files.
*/
ArtMethod[] resolvedMethods;
/**
* References to types as they become resolved following interpreter semantics. May refer to
* types defined in other dex files.
*/
Class[] resolvedTypes;
/**
* References to strings as they become resolved following interpreter semantics. All strings
* are interned.
*/
String[] strings;
/** Holds C pointer to dexFile. */
private int dexFile;
// Only created by the VM.
private DexCache() {}
Dex getDex() {
Dex result = dex;
if (result == null) {
synchronized (this) {
result = dex;
if (result == null) {
dex = result = getDexNative();
}
}
}
return result;
}
private native Dex getDexNative();
}
|