Searched defs:ProfilingInfo (Results 1 - 2 of 2) sorted by relevance

/art/runtime/jit/
H A Dprofiling_info.cc28 ProfilingInfo::ProfilingInfo(ArtMethod* method, const std::vector<uint32_t>& entries) function in class:art::ProfilingInfo
50 bool ProfilingInfo::Create(Thread* self, ArtMethod* method, bool retry_allocation) {
80 // We always create a `ProfilingInfo` object, even if there is no instruction we are
83 // Allocate the `ProfilingInfo` object int the JIT's data space.
88 InlineCache* ProfilingInfo::GetInlineCache(uint32_t dex_pc) {
100 void ProfilingInfo::AddInvokeInfo(uint32_t dex_pc, mirror::Class* cls) {
H A Dprofiling_info.h28 class ProfilingInfo;
82 friend class ProfilingInfo;
91 class ProfilingInfo { class in namespace:art
93 // Create a ProfilingInfo for 'method'. Return whether it succeeded, or if it is
100 // Method should not be interruptible, as it manipulates the ProfilingInfo
170 ProfilingInfo(ArtMethod* method, const std::vector<uint32_t>& entries);
187 // When the compiler inlines the method associated to this ProfilingInfo,
200 DISALLOW_COPY_AND_ASSIGN(ProfilingInfo);

Completed in 83 milliseconds