diff options
Diffstat (limited to 'runtime/jit/profiling_info.h')
-rw-r--r-- | runtime/jit/profiling_info.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/runtime/jit/profiling_info.h b/runtime/jit/profiling_info.h index 4ce20ff66a..62b431d7a2 100644 --- a/runtime/jit/profiling_info.h +++ b/runtime/jit/profiling_info.h @@ -28,7 +28,6 @@ namespace art { class ArtMethod; -class CompilerOptions; class ProfilingInfo; namespace jit { @@ -51,18 +50,6 @@ class InlineCache { return MemberOffset(OFFSETOF_MEMBER(InlineCache, classes_)); } - // Encode the list of `dex_pcs` to fit into an uint32_t. - static uint32_t EncodeDexPc(ArtMethod* method, - const std::vector<uint32_t>& dex_pcs, - uint32_t inline_max_code_units) - REQUIRES_SHARED(Locks::mutator_lock_); - - // Return the maximum inlining depth that we support to encode a list of dex - // pcs. - static uint32_t MaxDexPcEncodingDepth(ArtMethod* method, - uint32_t inline_max_code_units) - REQUIRES_SHARED(Locks::mutator_lock_); - private: uint32_t dex_pc_; GcRoot<mirror::Class> classes_[kIndividualCacheSize]; |