Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 1 | /* |
| 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 | #ifndef ART_RUNTIME_JIT_PROFILING_INFO_H_ |
| 18 | #define ART_RUNTIME_JIT_PROFILING_INFO_H_ |
| 19 | |
| 20 | #include <vector> |
| 21 | |
| 22 | #include "base/macros.h" |
| 23 | #include "gc_root.h" |
| 24 | |
| 25 | namespace art { |
| 26 | |
| 27 | class ArtMethod; |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 28 | class ProfilingInfo; |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 29 | |
Nicolas Geoffray | 26705e2 | 2015-10-28 12:50:11 +0000 | [diff] [blame] | 30 | namespace jit { |
| 31 | class JitCodeCache; |
| 32 | } |
| 33 | |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 34 | namespace mirror { |
| 35 | class Class; |
| 36 | } |
| 37 | |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 38 | // Structure to store the classes seen at runtime for a specific instruction. |
| 39 | // Once the classes_ array is full, we consider the INVOKE to be megamorphic. |
| 40 | class InlineCache { |
| 41 | public: |
Calin Juravle | 940eb0c | 2017-01-30 19:30:44 -0800 | [diff] [blame^] | 42 | static constexpr uint8_t kIndividualCacheSize = 5; |
Nicolas Geoffray | a42363f | 2015-12-17 14:57:09 +0000 | [diff] [blame] | 43 | |
| 44 | private: |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 45 | uint32_t dex_pc_; |
| 46 | GcRoot<mirror::Class> classes_[kIndividualCacheSize]; |
| 47 | |
Nicolas Geoffray | e51ca8b | 2016-11-22 14:49:31 +0000 | [diff] [blame] | 48 | friend class jit::JitCodeCache; |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 49 | friend class ProfilingInfo; |
| 50 | |
| 51 | DISALLOW_COPY_AND_ASSIGN(InlineCache); |
| 52 | }; |
| 53 | |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 54 | /** |
| 55 | * Profiling info for a method, created and filled by the interpreter once the |
| 56 | * method is warm, and used by the compiler to drive optimizations. |
| 57 | */ |
| 58 | class ProfilingInfo { |
| 59 | public: |
Nicolas Geoffray | 26705e2 | 2015-10-28 12:50:11 +0000 | [diff] [blame] | 60 | // Create a ProfilingInfo for 'method'. Return whether it succeeded, or if it is |
| 61 | // not needed in case the method does not have virtual/interface invocations. |
| 62 | static bool Create(Thread* self, ArtMethod* method, bool retry_allocation) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 63 | REQUIRES_SHARED(Locks::mutator_lock_); |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 64 | |
| 65 | // Add information from an executed INVOKE instruction to the profile. |
Nicolas Geoffray | 26705e2 | 2015-10-28 12:50:11 +0000 | [diff] [blame] | 66 | void AddInvokeInfo(uint32_t dex_pc, mirror::Class* cls) |
| 67 | // Method should not be interruptible, as it manipulates the ProfilingInfo |
| 68 | // which can be concurrently collected. |
| 69 | REQUIRES(Roles::uninterruptible_) |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 70 | REQUIRES_SHARED(Locks::mutator_lock_); |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 71 | |
Nicolas Geoffray | 26705e2 | 2015-10-28 12:50:11 +0000 | [diff] [blame] | 72 | ArtMethod* GetMethod() const { |
| 73 | return method_; |
| 74 | } |
| 75 | |
Nicolas Geoffray | fdb7d63 | 2017-02-08 15:07:18 +0000 | [diff] [blame] | 76 | // Mutator lock only required for debugging output. |
| 77 | InlineCache* GetInlineCache(uint32_t dex_pc) |
| 78 | REQUIRES_SHARED(Locks::mutator_lock_); |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 79 | |
buzbee | 454b3b6 | 2016-04-07 14:42:47 -0700 | [diff] [blame] | 80 | bool IsMethodBeingCompiled(bool osr) const { |
| 81 | return osr |
| 82 | ? is_osr_method_being_compiled_ |
| 83 | : is_method_being_compiled_; |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 84 | } |
| 85 | |
buzbee | 454b3b6 | 2016-04-07 14:42:47 -0700 | [diff] [blame] | 86 | void SetIsMethodBeingCompiled(bool value, bool osr) { |
| 87 | if (osr) { |
| 88 | is_osr_method_being_compiled_ = value; |
| 89 | } else { |
| 90 | is_method_being_compiled_ = value; |
| 91 | } |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 92 | } |
| 93 | |
Nicolas Geoffray | 3512244 | 2016-03-02 12:05:30 +0000 | [diff] [blame] | 94 | void SetSavedEntryPoint(const void* entry_point) { |
| 95 | saved_entry_point_ = entry_point; |
| 96 | } |
| 97 | |
| 98 | const void* GetSavedEntryPoint() const { |
| 99 | return saved_entry_point_; |
| 100 | } |
| 101 | |
Nicolas Geoffray | b6e20ae | 2016-03-07 14:29:04 +0000 | [diff] [blame] | 102 | void ClearGcRootsInInlineCaches() { |
| 103 | for (size_t i = 0; i < number_of_inline_caches_; ++i) { |
| 104 | InlineCache* cache = &cache_[i]; |
| 105 | memset(&cache->classes_[0], |
| 106 | 0, |
| 107 | InlineCache::kIndividualCacheSize * sizeof(GcRoot<mirror::Class>)); |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | void IncrementInlineUse() { |
| 112 | DCHECK_NE(current_inline_uses_, std::numeric_limits<uint16_t>::max()); |
| 113 | current_inline_uses_++; |
| 114 | } |
| 115 | |
| 116 | void DecrementInlineUse() { |
| 117 | DCHECK_GT(current_inline_uses_, 0); |
| 118 | current_inline_uses_--; |
| 119 | } |
| 120 | |
| 121 | bool IsInUseByCompiler() const { |
buzbee | 454b3b6 | 2016-04-07 14:42:47 -0700 | [diff] [blame] | 122 | return IsMethodBeingCompiled(/*osr*/ true) || IsMethodBeingCompiled(/*osr*/ false) || |
| 123 | (current_inline_uses_ > 0); |
Nicolas Geoffray | 511e41b | 2016-03-02 17:09:35 +0000 | [diff] [blame] | 124 | } |
| 125 | |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 126 | private: |
Mathieu Chartier | 6597577 | 2016-08-05 10:46:36 -0700 | [diff] [blame] | 127 | ProfilingInfo(ArtMethod* method, const std::vector<uint32_t>& entries); |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 128 | |
| 129 | // Number of instructions we are profiling in the ArtMethod. |
| 130 | const uint32_t number_of_inline_caches_; |
| 131 | |
Nicolas Geoffray | 26705e2 | 2015-10-28 12:50:11 +0000 | [diff] [blame] | 132 | // Method this profiling info is for. |
Alex Light | dba6148 | 2016-12-21 08:20:29 -0800 | [diff] [blame] | 133 | // Not 'const' as JVMTI introduces obsolete methods that we implement by creating new ArtMethods. |
| 134 | // See JitCodeCache::MoveObsoleteMethod. |
| 135 | ArtMethod* method_; |
Nicolas Geoffray | 26705e2 | 2015-10-28 12:50:11 +0000 | [diff] [blame] | 136 | |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 137 | // Whether the ArtMethod is currently being compiled. This flag |
| 138 | // is implicitly guarded by the JIT code cache lock. |
| 139 | // TODO: Make the JIT code cache lock global. |
| 140 | bool is_method_being_compiled_; |
buzbee | 454b3b6 | 2016-04-07 14:42:47 -0700 | [diff] [blame] | 141 | bool is_osr_method_being_compiled_; |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 142 | |
Nicolas Geoffray | b6e20ae | 2016-03-07 14:29:04 +0000 | [diff] [blame] | 143 | // When the compiler inlines the method associated to this ProfilingInfo, |
| 144 | // it updates this counter so that the GC does not try to clear the inline caches. |
| 145 | uint16_t current_inline_uses_; |
| 146 | |
Nicolas Geoffray | 3512244 | 2016-03-02 12:05:30 +0000 | [diff] [blame] | 147 | // Entry point of the corresponding ArtMethod, while the JIT code cache |
| 148 | // is poking for the liveness of compiled code. |
| 149 | const void* saved_entry_point_; |
| 150 | |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 151 | // Dynamically allocated array of size `number_of_inline_caches_`. |
| 152 | InlineCache cache_[0]; |
| 153 | |
Nicolas Geoffray | 26705e2 | 2015-10-28 12:50:11 +0000 | [diff] [blame] | 154 | friend class jit::JitCodeCache; |
| 155 | |
Nicolas Geoffray | 5550ca8 | 2015-08-21 18:38:30 +0100 | [diff] [blame] | 156 | DISALLOW_COPY_AND_ASSIGN(ProfilingInfo); |
| 157 | }; |
| 158 | |
| 159 | } // namespace art |
| 160 | |
| 161 | #endif // ART_RUNTIME_JIT_PROFILING_INFO_H_ |