diff options
| author | 2014-10-17 03:13:06 +0000 | |
|---|---|---|
| committer | 2014-10-17 03:13:06 +0000 | |
| commit | dddb8d891adad3f55308a725658134b6c9f5559b (patch) | |
| tree | b1747dff4f90b9454b48dd6143ccf1ff84c6b4c7 /compiler/driver/compiler_driver.h | |
| parent | b3f18cf7466f85e15c6b7f005f544867a4d6847a (diff) | |
| parent | d6dee676acdd1ab0aa4e5ba6834ee7c40a6dd8ab (diff) | |
Merge "dex2oat: Add a --compile-pic option"
Diffstat (limited to 'compiler/driver/compiler_driver.h')
| -rw-r--r-- | compiler/driver/compiler_driver.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index 0425d272dd..d55f4cc9d3 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -400,11 +400,12 @@ class CompilerDriver { public: // TODO make private or eliminate. // Compute constant code and method pointers when possible. - void GetCodeAndMethodForDirectCall(InvokeType* type, InvokeType sharp_type, + void GetCodeAndMethodForDirectCall(/*out*/InvokeType* type, + InvokeType sharp_type, bool no_guarantee_of_dex_cache_entry, - mirror::Class* referrer_class, + const mirror::Class* referrer_class, mirror::ArtMethod* method, - int* stats_flags, + /*out*/int* stats_flags, MethodReference* target_method, uintptr_t* direct_code, uintptr_t* direct_method) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); |