diff options
| author | 2018-08-01 15:50:47 +0000 | |
|---|---|---|
| committer | 2018-08-01 15:50:47 +0000 | |
| commit | ee30c5997a41176494750b05d4fb563e730f38c6 (patch) | |
| tree | fb1158993bab2e027984cedab59b402c051a45a7 /runtime/jit/jit_code_cache.h | |
| parent | 91f0fdb4372d3f2bcfcd9db67afcbe7ee1901048 (diff) | |
| parent | 8cd54547cec8a4537db5682c2da8be22843b1310 (diff) | |
Merge "Move MethodInfo to CodeInfo."
Diffstat (limited to 'runtime/jit/jit_code_cache.h')
| -rw-r--r-- | runtime/jit/jit_code_cache.h | 4 |
1 files changed, 0 insertions, 4 deletions
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, |