diff options
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r-- | compiler/driver/compiler_driver.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index 615e0d0db4..edc6468a85 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -66,8 +66,6 @@ enum EntryPointCallingConvention { kInterpreterAbi, // ABI of calls to a method's native code, only used for native methods. kJniAbi, - // ABI of calls to a method's portable code entry point. - kPortableAbi, // ABI of calls to a method's quick code entry point. kQuickAbi }; @@ -144,8 +142,6 @@ class CompilerDriver { return image_classes_.get(); } - CompilerTls* GetTls(); - // Generate the trampolines that are invoked by unresolved direct methods. const std::vector<uint8_t>* CreateInterpreterToInterpreterBridge() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); @@ -153,12 +149,6 @@ class CompilerDriver { SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); const std::vector<uint8_t>* CreateJniDlsymLookup() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); - const std::vector<uint8_t>* CreatePortableImtConflictTrampoline() const - SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); - const std::vector<uint8_t>* CreatePortableResolutionTrampoline() const - SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); - const std::vector<uint8_t>* CreatePortableToInterpreterBridge() const - SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); const std::vector<uint8_t>* CreateQuickGenericJniTrampoline() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); const std::vector<uint8_t>* CreateQuickImtConflictTrampoline() const @@ -555,8 +545,6 @@ class CompilerDriver { void* compiler_context_; - pthread_key_t tls_key_; - // Arena pool used by the compiler. ArenaPool arena_pool_; |