blob: 6fdef6585d910b3349023cd6fb1d7a7304412a90 [file] [log] [blame]
Mathieu Chartiere5f13e52015-02-24 09:37:21 -08001/*
2 * Copyright 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_JIT_JIT_INSTRUMENTATION_H_
18#define ART_RUNTIME_JIT_JIT_INSTRUMENTATION_H_
19
20#include <unordered_map>
21
22#include "instrumentation.h"
23
24#include "atomic.h"
25#include "base/macros.h"
26#include "base/mutex.h"
27#include "gc_root.h"
28#include "jni.h"
29#include "object_callbacks.h"
30#include "thread_pool.h"
31
32namespace art {
33namespace mirror {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080034 class Class;
35 class Object;
36 class Throwable;
37} // namespace mirror
Mathieu Chartierc7853442015-03-27 14:35:38 -070038class ArtField;
Mathieu Chartiere401d142015-04-22 13:56:20 -070039class ArtMethod;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080040union JValue;
41class Thread;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080042
43namespace jit {
44
45// Keeps track of which methods are hot.
46class JitInstrumentationCache {
47 public:
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010048 JitInstrumentationCache(size_t hot_method_threshold, size_t warm_method_threshold);
Mathieu Chartiere401d142015-04-22 13:56:20 -070049 void AddSamples(Thread* self, ArtMethod* method, size_t samples)
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010050 SHARED_REQUIRES(Locks::mutator_lock_);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080051 void CreateThreadPool();
52 void DeleteThreadPool();
53
54 private:
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080055 size_t hot_method_threshold_;
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010056 size_t warm_method_threshold_;
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080057 std::unique_ptr<ThreadPool> thread_pool_;
Mathieu Chartier3130cdf2015-05-03 15:20:23 -070058
59 DISALLOW_IMPLICIT_CONSTRUCTORS(JitInstrumentationCache);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080060};
61
62class JitInstrumentationListener : public instrumentation::InstrumentationListener {
63 public:
64 explicit JitInstrumentationListener(JitInstrumentationCache* cache);
65
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010066 void MethodEntered(Thread* thread, mirror::Object* /*this_object*/,
67 ArtMethod* method, uint32_t /*dex_pc*/)
Mathieu Chartier90443472015-07-16 20:32:27 -070068 OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080069 instrumentation_cache_->AddSamples(thread, method, 1);
70 }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010071 void MethodExited(Thread* /*thread*/, mirror::Object* /*this_object*/,
72 ArtMethod* /*method*/, uint32_t /*dex_pc*/,
73 const JValue& /*return_value*/)
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080074 OVERRIDE { }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010075 void MethodUnwind(Thread* /*thread*/, mirror::Object* /*this_object*/,
76 ArtMethod* /*method*/, uint32_t /*dex_pc*/) OVERRIDE { }
77 void FieldRead(Thread* /*thread*/, mirror::Object* /*this_object*/,
78 ArtMethod* /*method*/, uint32_t /*dex_pc*/,
79 ArtField* /*field*/) OVERRIDE { }
80 void FieldWritten(Thread* /*thread*/, mirror::Object* /*this_object*/,
81 ArtMethod* /*method*/, uint32_t /*dex_pc*/,
82 ArtField* /*field*/, const JValue& /*field_value*/)
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080083 OVERRIDE { }
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010084 void ExceptionCaught(Thread* /*thread*/,
85 mirror::Throwable* /*exception_object*/) OVERRIDE { }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080086
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010087 void DexPcMoved(Thread* /*self*/, mirror::Object* /*this_object*/,
88 ArtMethod* /*method*/, uint32_t /*new_dex_pc*/) OVERRIDE { }
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080089
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010090 void BackwardBranch(Thread* thread, ArtMethod* method, int32_t dex_pc_offset)
Mathieu Chartier90443472015-07-16 20:32:27 -070091 OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080092 CHECK_LE(dex_pc_offset, 0);
93 instrumentation_cache_->AddSamples(thread, method, 1);
94 }
95
Nicolas Geoffray5550ca82015-08-21 18:38:30 +010096 void InvokeVirtualOrInterface(Thread* thread,
97 mirror::Object* this_object,
98 ArtMethod* caller,
99 uint32_t dex_pc,
100 ArtMethod* callee)
101 OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_);
102
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800103 private:
104 JitInstrumentationCache* const instrumentation_cache_;
Mathieu Chartier3130cdf2015-05-03 15:20:23 -0700105
106 DISALLOW_IMPLICIT_CONSTRUCTORS(JitInstrumentationListener);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800107};
108
109} // namespace jit
110} // namespace art
111
112#endif // ART_RUNTIME_JIT_JIT_INSTRUMENTATION_H_