blob: 9bf3ea258de7fc23e9df9f299a74063150f6ba8f [file] [log] [blame]
Mathieu Chartierc56057e2014-05-04 13:18:58 -07001/*
2 * Copyright (C) 2014 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#ifndef ART_RUNTIME_INDIRECT_REFERENCE_TABLE_INL_H_
18#define ART_RUNTIME_INDIRECT_REFERENCE_TABLE_INL_H_
19
20#include "indirect_reference_table.h"
21
Ian Rogersc0542af2014-09-03 16:16:56 -070022#include "runtime-inl.h"
Mathieu Chartierc56057e2014-05-04 13:18:58 -070023#include "verify_object-inl.h"
24
25namespace art {
26namespace mirror {
27class Object;
28} // namespace mirror
29
Ian Rogersc0542af2014-09-03 16:16:56 -070030inline void IrtIterator::SkipNullsAndTombstones() {
31 // We skip NULLs and tombstones. Clients don't want to see implementation details.
32 while (i_ < capacity_ &&
33 (table_[i_].IsNull() ||
34 Runtime::Current()->IsClearedJniWeakGlobal(table_[i_].Read<kWithoutReadBarrier>()))) {
35 ++i_;
36 }
37}
38
Mathieu Chartierc56057e2014-05-04 13:18:58 -070039// Verifies that the indirect table lookup is valid.
40// Returns "false" if something looks bad.
41inline bool IndirectReferenceTable::GetChecked(IndirectRef iref) const {
42 if (UNLIKELY(iref == nullptr)) {
43 LOG(WARNING) << "Attempt to look up NULL " << kind_;
44 return false;
45 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070046 if (UNLIKELY(GetIndirectRefKind(iref) == kHandleScopeOrInvalid)) {
Mathieu Chartierc56057e2014-05-04 13:18:58 -070047 LOG(ERROR) << "JNI ERROR (app bug): invalid " << kind_ << " " << iref;
48 AbortIfNoCheckJNI();
49 return false;
50 }
51 const int topIndex = segment_state_.parts.topIndex;
52 int idx = ExtractIndex(iref);
53 if (UNLIKELY(idx >= topIndex)) {
54 LOG(ERROR) << "JNI ERROR (app bug): accessed stale " << kind_ << " "
55 << iref << " (index " << idx << " in a table of size " << topIndex << ")";
56 AbortIfNoCheckJNI();
57 return false;
58 }
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070059 if (UNLIKELY(table_[idx].IsNull())) {
Mathieu Chartierc56057e2014-05-04 13:18:58 -070060 LOG(ERROR) << "JNI ERROR (app bug): accessed deleted " << kind_ << " " << iref;
61 AbortIfNoCheckJNI();
62 return false;
63 }
64 if (UNLIKELY(!CheckEntry("use", iref, idx))) {
65 return false;
66 }
67 return true;
68}
69
70// Make sure that the entry at "idx" is correctly paired with "iref".
71inline bool IndirectReferenceTable::CheckEntry(const char* what, IndirectRef iref, int idx) const {
Hiroshi Yamauchiea2e1bd2014-06-18 13:47:35 -070072 IndirectRef checkRef = ToIndirectRef(idx);
Mathieu Chartierc56057e2014-05-04 13:18:58 -070073 if (UNLIKELY(checkRef != iref)) {
74 LOG(ERROR) << "JNI ERROR (app bug): attempt to " << what
75 << " stale " << kind_ << " " << iref
76 << " (should be " << checkRef << ")";
77 AbortIfNoCheckJNI();
78 return false;
79 }
80 return true;
81}
82
Hiroshi Yamauchi196851b2014-05-29 12:16:04 -070083template<ReadBarrierOption kReadBarrierOption>
Mathieu Chartierc56057e2014-05-04 13:18:58 -070084inline mirror::Object* IndirectReferenceTable::Get(IndirectRef iref) const {
85 if (!GetChecked(iref)) {
Ian Rogersc0542af2014-09-03 16:16:56 -070086 return nullptr;
Mathieu Chartierc56057e2014-05-04 13:18:58 -070087 }
Hiroshi Yamauchi94f7b492014-07-22 18:08:23 -070088 uint32_t idx = ExtractIndex(iref);
Ian Rogersc0542af2014-09-03 16:16:56 -070089 mirror::Object* obj = table_[idx].Read<kReadBarrierOption>();
90 VerifyObject(obj);
Mathieu Chartierc56057e2014-05-04 13:18:58 -070091 return obj;
92}
93
94} // namespace art
95
96#endif // ART_RUNTIME_INDIRECT_REFERENCE_TABLE_INL_H_