blob: 2e52b1b4dc3d337c2f797b0e45125c37f5e05877 [file] [log] [blame]
Nicolas Geoffray5550ca82015-08-21 18:38:30 +01001/*
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 "profiling_info.h"
18
19#include "art_method-inl.h"
20#include "dex_instruction.h"
21#include "jit/jit.h"
22#include "jit/jit_code_cache.h"
23#include "scoped_thread_state_change.h"
24#include "thread.h"
25
26namespace art {
27
Nicolas Geoffray26705e22015-10-28 12:50:11 +000028bool ProfilingInfo::Create(Thread* self, ArtMethod* method, bool retry_allocation) {
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010029 // Walk over the dex instructions of the method and keep track of
30 // instructions we are interested in profiling.
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +010031 DCHECK(!method->IsNative());
32 const DexFile::CodeItem& code_item = *method->GetCodeItem();
33 const uint16_t* code_ptr = code_item.insns_;
34 const uint16_t* code_end = code_item.insns_ + code_item.insns_size_in_code_units_;
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010035
36 uint32_t dex_pc = 0;
37 std::vector<uint32_t> entries;
38 while (code_ptr < code_end) {
39 const Instruction& instruction = *Instruction::At(code_ptr);
40 switch (instruction.Opcode()) {
41 case Instruction::INVOKE_VIRTUAL:
42 case Instruction::INVOKE_VIRTUAL_RANGE:
43 case Instruction::INVOKE_VIRTUAL_QUICK:
44 case Instruction::INVOKE_VIRTUAL_RANGE_QUICK:
45 case Instruction::INVOKE_INTERFACE:
46 case Instruction::INVOKE_INTERFACE_RANGE:
47 entries.push_back(dex_pc);
48 break;
49
50 default:
51 break;
52 }
53 dex_pc += instruction.SizeInCodeUnits();
54 code_ptr += instruction.SizeInCodeUnits();
55 }
56
57 // If there is no instruction we are interested in, no need to create a `ProfilingInfo`
58 // object, it will never be filled.
59 if (entries.empty()) {
Nicolas Geoffray26705e22015-10-28 12:50:11 +000060 return true;
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010061 }
62
63 // Allocate the `ProfilingInfo` object int the JIT's data space.
64 jit::JitCodeCache* code_cache = Runtime::Current()->GetJit()->GetCodeCache();
Nicolas Geoffray26705e22015-10-28 12:50:11 +000065 return code_cache->AddProfilingInfo(self, method, entries, retry_allocation) != nullptr;
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010066}
67
Nicolas Geoffray26705e22015-10-28 12:50:11 +000068void ProfilingInfo::AddInvokeInfo(uint32_t dex_pc, mirror::Class* cls) {
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010069 InlineCache* cache = nullptr;
70 // TODO: binary search if array is too long.
71 for (size_t i = 0; i < number_of_inline_caches_; ++i) {
72 if (cache_[i].dex_pc == dex_pc) {
73 cache = &cache_[i];
74 break;
75 }
76 }
77 DCHECK(cache != nullptr);
78
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010079 for (size_t i = 0; i < InlineCache::kIndividualCacheSize; ++i) {
Nicolas Geoffray1dad3f62015-10-23 14:59:54 +010080 mirror::Class* existing = cache->classes_[i].Read();
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010081 if (existing == cls) {
82 // Receiver type is already in the cache, nothing else to do.
83 return;
84 } else if (existing == nullptr) {
85 // Cache entry is empty, try to put `cls` in it.
86 GcRoot<mirror::Class> expected_root(nullptr);
87 GcRoot<mirror::Class> desired_root(cls);
88 if (!reinterpret_cast<Atomic<GcRoot<mirror::Class>>*>(&cache->classes_[i])->
89 CompareExchangeStrongSequentiallyConsistent(expected_root, desired_root)) {
90 // Some other thread put a class in the cache, continue iteration starting at this
91 // entry in case the entry contains `cls`.
92 --i;
93 } else {
94 // We successfully set `cls`, just return.
95 return;
96 }
97 }
98 }
99 // Unsuccessfull - cache is full, making it megamorphic.
100 DCHECK(cache->IsMegamorphic());
101}
102
103} // namespace art