diff options
author | 2014-12-11 14:34:28 -0800 | |
---|---|---|
committer | 2014-12-12 09:33:34 -0800 | |
commit | 956af0f0cb05422e38c1d22cbef309d16b8a1a12 (patch) | |
tree | b558c804d206dad8da648b815750f1b3c97610ae /runtime/thread.cc | |
parent | 407d77f344cfbdbbfb50531c5f0766bc0892e2fe (diff) |
Remove portable.
Change-Id: I3bf3250fa866fd2265f1b115d52fa5dedc48a7fc
Diffstat (limited to 'runtime/thread.cc')
-rw-r--r-- | runtime/thread.cc | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/runtime/thread.cc b/runtime/thread.cc index f7c710695a..2308cc9f11 100644 --- a/runtime/thread.cc +++ b/runtime/thread.cc @@ -91,7 +91,7 @@ static void UnimplementedEntryPoint() { } void InitEntryPoints(InterpreterEntryPoints* ipoints, JniEntryPoints* jpoints, - PortableEntryPoints* ppoints, QuickEntryPoints* qpoints); + QuickEntryPoints* qpoints); void Thread::InitTlsEntryPoints() { // Insert a placeholder so we can easily tell if we call an unimplemented entry point. @@ -102,7 +102,7 @@ void Thread::InitTlsEntryPoints() { *it = reinterpret_cast<uintptr_t>(UnimplementedEntryPoint); } InitEntryPoints(&tlsPtr_.interpreter_entrypoints, &tlsPtr_.jni_entrypoints, - &tlsPtr_.portable_entrypoints, &tlsPtr_.quick_entrypoints); + &tlsPtr_.quick_entrypoints); } void Thread::ResetQuickAllocEntryPointsForThread() { @@ -1865,16 +1865,6 @@ void Thread::DumpThreadOffset(std::ostream& os, uint32_t offset) { JNI_ENTRY_POINT_INFO(pDlsymLookup) #undef JNI_ENTRY_POINT_INFO -#define PORTABLE_ENTRY_POINT_INFO(x) \ - if (PORTABLE_ENTRYPOINT_OFFSET(ptr_size, x).Uint32Value() == offset) { \ - os << #x; \ - return; \ - } - PORTABLE_ENTRY_POINT_INFO(pPortableImtConflictTrampoline) - PORTABLE_ENTRY_POINT_INFO(pPortableResolutionTrampoline) - PORTABLE_ENTRY_POINT_INFO(pPortableToInterpreterBridge) -#undef PORTABLE_ENTRY_POINT_INFO - #define QUICK_ENTRY_POINT_INFO(x) \ if (QUICK_ENTRYPOINT_OFFSET(ptr_size, x).Uint32Value() == offset) { \ os << #x; \ |