From 8cd54547cec8a4537db5682c2da8be22843b1310 Mon Sep 17 00:00:00 2001 From: David Srbecky Date: Sun, 15 Jul 2018 23:58:44 +0100 Subject: Move MethodInfo to CodeInfo. There is no need to treat it specially any more, because of the de-duplication at BitTable level. This saves 0.6% of oat file size. Test: test-art-host-gtest Change-Id: Ife7927d736243879a41d6f325d49ebf6930a63f6 --- runtime/jit/jit_code_cache.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'runtime/jit/jit_code_cache.h') diff --git a/runtime/jit/jit_code_cache.h b/runtime/jit/jit_code_cache.h index d17fb261b6..29f9c9cf43 100644 --- a/runtime/jit/jit_code_cache.h +++ b/runtime/jit/jit_code_cache.h @@ -136,7 +136,6 @@ class JitCodeCache { uint8_t* CommitCode(Thread* self, ArtMethod* method, uint8_t* stack_map, - uint8_t* method_info, uint8_t* roots_data, const uint8_t* code, size_t code_size, @@ -166,11 +165,9 @@ class JitCodeCache { // Return the number of bytes allocated. size_t ReserveData(Thread* self, size_t stack_map_size, - size_t method_info_size, size_t number_of_roots, ArtMethod* method, uint8_t** stack_map_data, - uint8_t** method_info_data, uint8_t** roots_data) REQUIRES_SHARED(Locks::mutator_lock_) REQUIRES(!lock_); @@ -295,7 +292,6 @@ class JitCodeCache { uint8_t* CommitCodeInternal(Thread* self, ArtMethod* method, uint8_t* stack_map, - uint8_t* method_info, uint8_t* roots_data, const uint8_t* code, size_t code_size, -- cgit v1.2.3-59-g8ed1b