From 956af0f0cb05422e38c1d22cbef309d16b8a1a12 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Thu, 11 Dec 2014 14:34:28 -0800 Subject: Remove portable. Change-Id: I3bf3250fa866fd2265f1b115d52fa5dedc48a7fc --- compiler/driver/compiler_driver.h | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'compiler/driver/compiler_driver.h') 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* CreateInterpreterToInterpreterBridge() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); @@ -153,12 +149,6 @@ class CompilerDriver { SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); const std::vector* CreateJniDlsymLookup() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); - const std::vector* CreatePortableImtConflictTrampoline() const - SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); - const std::vector* CreatePortableResolutionTrampoline() const - SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); - const std::vector* CreatePortableToInterpreterBridge() const - SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); const std::vector* CreateQuickGenericJniTrampoline() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); const std::vector* 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_; -- cgit v1.2.3-59-g8ed1b