blob: 5a07deee51ace69018a3884fc54495611f9e72b4 [file] [log] [blame]
Mathieu Chartierfc58af42015-04-16 18:00:39 -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 "abstract_method.h"
18
Mathieu Chartiere401d142015-04-22 13:56:20 -070019#include "art_method-inl.h"
Mathieu Chartierfc58af42015-04-16 18:00:39 -070020
21namespace art {
22namespace mirror {
23
Andreas Gampe0866f4e2016-02-22 10:03:12 -080024template <bool kTransactionActive>
Mathieu Chartiere401d142015-04-22 13:56:20 -070025bool AbstractMethod::CreateFromArtMethod(ArtMethod* method) {
Andreas Gampe0866f4e2016-02-22 10:03:12 -080026 auto* interface_method = method->GetInterfaceMethodIfProxy(
27 kTransactionActive
28 ? Runtime::Current()->GetClassLinker()->GetImagePointerSize()
29 : sizeof(void*));
30 SetArtMethod<kTransactionActive>(method);
31 SetFieldObject<kTransactionActive>(DeclaringClassOffset(), method->GetDeclaringClass());
32 SetFieldObject<kTransactionActive>(
Mathieu Chartierfc58af42015-04-16 18:00:39 -070033 DeclaringClassOfOverriddenMethodOffset(), interface_method->GetDeclaringClass());
Andreas Gampe0866f4e2016-02-22 10:03:12 -080034 SetField32<kTransactionActive>(AccessFlagsOffset(), method->GetAccessFlags());
35 SetField32<kTransactionActive>(DexMethodIndexOffset(), method->GetDexMethodIndex());
Mathieu Chartierfc58af42015-04-16 18:00:39 -070036 return true;
37}
38
Andreas Gampe0866f4e2016-02-22 10:03:12 -080039template bool AbstractMethod::CreateFromArtMethod<false>(ArtMethod* method);
40template bool AbstractMethod::CreateFromArtMethod<true>(ArtMethod* method);
41
Mathieu Chartiere401d142015-04-22 13:56:20 -070042ArtMethod* AbstractMethod::GetArtMethod() {
43 return reinterpret_cast<ArtMethod*>(GetField64(ArtMethodOffset()));
44}
45
Andreas Gampe0866f4e2016-02-22 10:03:12 -080046template <bool kTransactionActive>
Mathieu Chartiere401d142015-04-22 13:56:20 -070047void AbstractMethod::SetArtMethod(ArtMethod* method) {
Andreas Gampe0866f4e2016-02-22 10:03:12 -080048 SetField64<kTransactionActive>(ArtMethodOffset(), reinterpret_cast<uint64_t>(method));
Mathieu Chartierfc58af42015-04-16 18:00:39 -070049}
50
Andreas Gampe0866f4e2016-02-22 10:03:12 -080051template void AbstractMethod::SetArtMethod<false>(ArtMethod* method);
52template void AbstractMethod::SetArtMethod<true>(ArtMethod* method);
53
Mathieu Chartierfc58af42015-04-16 18:00:39 -070054mirror::Class* AbstractMethod::GetDeclaringClass() {
55 return GetFieldObject<mirror::Class>(DeclaringClassOffset());
56}
57
58} // namespace mirror
59} // namespace art