Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 16 | |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 17 | #include "class_linker.h" |
| 18 | #include "common_test.h" |
| 19 | #include "dex_file.h" |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 20 | #include "gtest/gtest.h" |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 21 | #include "runtime.h" |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 22 | #include "scoped_thread_state_change.h" |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 23 | #include "thread.h" |
Elliott Hughes | a168c83 | 2012-06-12 15:34:20 -0700 | [diff] [blame] | 24 | #include "UniquePtr.h" |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 25 | |
| 26 | namespace art { |
| 27 | |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 28 | class ExceptionTest : public CommonTest { |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 29 | protected: |
| 30 | virtual void SetUp() { |
| 31 | CommonTest::SetUp(); |
| 32 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 33 | ScopedObjectAccess soa(Thread::Current()); |
| 34 | SirtRef<ClassLoader> class_loader(soa.Decode<ClassLoader*>(LoadDex("ExceptionHandle"))); |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 35 | my_klass_ = class_linker_->FindClass("LExceptionHandle;", class_loader.get()); |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 36 | ASSERT_TRUE(my_klass_ != NULL); |
Mathieu Chartier | 342a262 | 2012-06-28 12:04:52 -0700 | [diff] [blame] | 37 | class_linker_->EnsureInitialized(my_klass_, false, true); |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 38 | |
| 39 | dex_ = &Runtime::Current()->GetClassLinker()->FindDexFile(my_klass_->GetDexCache()); |
| 40 | |
Brian Carlstrom | f8bbb84 | 2012-03-14 03:01:42 -0700 | [diff] [blame] | 41 | uint32_t code_size = 12; |
| 42 | fake_code_.push_back((code_size >> 24) & 0xFF); |
| 43 | fake_code_.push_back((code_size >> 16) & 0xFF); |
| 44 | fake_code_.push_back((code_size >> 8) & 0xFF); |
| 45 | fake_code_.push_back((code_size >> 0) & 0xFF); |
| 46 | for (size_t i = 0 ; i < code_size; i++) { |
| 47 | fake_code_.push_back(0x70 | i); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | fake_mapping_data_.push_back(2); // first element is count of remaining elements |
| 51 | fake_mapping_data_.push_back(3); // offset 3 |
| 52 | fake_mapping_data_.push_back(3); // maps to dex offset 3 |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 53 | |
Mathieu Chartier | 342a262 | 2012-06-28 12:04:52 -0700 | [diff] [blame] | 54 | fake_vmap_table_data_.push_back(0); |
| 55 | |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 56 | method_f_ = my_klass_->FindVirtualMethod("f", "()I"); |
| 57 | ASSERT_TRUE(method_f_ != NULL); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 58 | method_f_->SetFrameSizeInBytes(kStackAlignment); |
Brian Carlstrom | f8bbb84 | 2012-03-14 03:01:42 -0700 | [diff] [blame] | 59 | method_f_->SetCode(CompiledMethod::CodePointer(&fake_code_[sizeof(code_size)], kThumb2)); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 60 | method_f_->SetMappingTable(&fake_mapping_data_[0]); |
Mathieu Chartier | 342a262 | 2012-06-28 12:04:52 -0700 | [diff] [blame] | 61 | method_f_->SetVmapTable(&fake_vmap_table_data_[0]); |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 62 | |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 63 | method_g_ = my_klass_->FindVirtualMethod("g", "(I)V"); |
| 64 | ASSERT_TRUE(method_g_ != NULL); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 65 | method_g_->SetFrameSizeInBytes(kStackAlignment); |
Brian Carlstrom | f8bbb84 | 2012-03-14 03:01:42 -0700 | [diff] [blame] | 66 | method_g_->SetCode(CompiledMethod::CodePointer(&fake_code_[sizeof(code_size)], kThumb2)); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 67 | method_g_->SetMappingTable(&fake_mapping_data_[0]); |
Mathieu Chartier | 342a262 | 2012-06-28 12:04:52 -0700 | [diff] [blame] | 68 | method_g_->SetVmapTable(&fake_vmap_table_data_[0]); |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 69 | } |
| 70 | |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 71 | const DexFile* dex_; |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 72 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 73 | std::vector<uint8_t> fake_code_; |
| 74 | std::vector<uint32_t> fake_mapping_data_; |
Mathieu Chartier | 342a262 | 2012-06-28 12:04:52 -0700 | [diff] [blame] | 75 | std::vector<uint16_t> fake_vmap_table_data_; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 76 | |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 77 | Method* method_f_; |
| 78 | Method* method_g_; |
| 79 | |
| 80 | private: |
| 81 | Class* my_klass_; |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 82 | }; |
| 83 | |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 84 | TEST_F(ExceptionTest, FindCatchHandler) { |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 85 | const DexFile::CodeItem* code_item = dex_->GetCodeItem(method_f_->GetCodeItemOffset()); |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 86 | |
| 87 | ASSERT_TRUE(code_item != NULL); |
| 88 | |
| 89 | ASSERT_EQ(2u, code_item->tries_size_); |
Ian Rogers | d81871c | 2011-10-03 13:57:23 -0700 | [diff] [blame] | 90 | ASSERT_NE(0u, code_item->insns_size_in_code_units_); |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 91 | |
Elliott Hughes | 7b9d996 | 2012-04-20 18:48:18 -0700 | [diff] [blame] | 92 | const DexFile::TryItem *t0, *t1; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 93 | t0 = dex_->GetTryItems(*code_item, 0); |
| 94 | t1 = dex_->GetTryItems(*code_item, 1); |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 95 | EXPECT_LE(t0->start_addr_, t1->start_addr_); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 96 | { |
| 97 | CatchHandlerIterator iter(*code_item, 4 /* Dex PC in the first try block */); |
| 98 | EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); |
| 99 | ASSERT_TRUE(iter.HasNext()); |
| 100 | iter.Next(); |
| 101 | EXPECT_STREQ("Ljava/lang/Exception;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); |
| 102 | ASSERT_TRUE(iter.HasNext()); |
| 103 | iter.Next(); |
| 104 | EXPECT_FALSE(iter.HasNext()); |
| 105 | } |
| 106 | { |
| 107 | CatchHandlerIterator iter(*code_item, 8 /* Dex PC in the second try block */); |
| 108 | EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); |
| 109 | ASSERT_TRUE(iter.HasNext()); |
| 110 | iter.Next(); |
| 111 | EXPECT_FALSE(iter.HasNext()); |
| 112 | } |
| 113 | { |
| 114 | CatchHandlerIterator iter(*code_item, 11 /* Dex PC not in any try block */); |
| 115 | EXPECT_FALSE(iter.HasNext()); |
| 116 | } |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 117 | } |
| 118 | |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 119 | TEST_F(ExceptionTest, StackTraceElement) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 120 | Thread* thread = Thread::Current(); |
Ian Rogers | 0fb6bb5 | 2012-08-14 15:10:19 -0700 | [diff] [blame^] | 121 | thread->TransitionFromSuspendedToRunnable(); |
| 122 | runtime_->Start(); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 123 | JNIEnv* env = thread->GetJniEnv(); |
| 124 | ScopedObjectAccess soa(env); |
Brian Carlstrom | 25c3325 | 2011-09-18 15:58:35 -0700 | [diff] [blame] | 125 | |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 126 | std::vector<uintptr_t> fake_stack; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 127 | ASSERT_EQ(kStackAlignment, 16); |
| 128 | ASSERT_EQ(sizeof(uintptr_t), sizeof(uint32_t)); |
| 129 | |
Shih-wei Liao | 02f01fe | 2012-03-26 12:58:11 -0700 | [diff] [blame] | 130 | #if !defined(ART_USE_LLVM_COMPILER) |
Ian Rogers | f57c47c | 2011-10-06 00:06:17 -0700 | [diff] [blame] | 131 | // Create two fake stack frames with mapping data created in SetUp. We map offset 3 in the code |
Mathieu Chartier | 342a262 | 2012-06-28 12:04:52 -0700 | [diff] [blame] | 132 | // to dex pc 3. |
| 133 | const uint32_t dex_pc = 3; |
Ian Rogers | f57c47c | 2011-10-06 00:06:17 -0700 | [diff] [blame] | 134 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 135 | // Create/push fake 16byte stack frame for method g |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 136 | fake_stack.push_back(reinterpret_cast<uintptr_t>(method_g_)); |
| 137 | fake_stack.push_back(0); |
| 138 | fake_stack.push_back(0); |
Mathieu Chartier | 342a262 | 2012-06-28 12:04:52 -0700 | [diff] [blame] | 139 | // We add 2 to the native pc since the stack walker always subtracts two from a return pc. |
| 140 | fake_stack.push_back(method_f_->ToNativePC(dex_pc) + 2); // return pc |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 141 | |
| 142 | // Create/push fake 16byte stack frame for method f |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 143 | fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_)); |
| 144 | fake_stack.push_back(0); |
| 145 | fake_stack.push_back(0); |
| 146 | fake_stack.push_back(0xEBAD6070); // return pc |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 147 | |
| 148 | // Pull Method* of NULL to terminate the trace |
Brian Carlstrom | 2e3d1b2 | 2012-01-09 18:01:56 -0800 | [diff] [blame] | 149 | fake_stack.push_back(0); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 150 | |
Mathieu Chartier | 342a262 | 2012-06-28 12:04:52 -0700 | [diff] [blame] | 151 | // Push null values which will become null incoming arguments. |
| 152 | fake_stack.push_back(0); |
| 153 | fake_stack.push_back(0); |
| 154 | fake_stack.push_back(0); |
| 155 | |
| 156 | // Set up thread to appear as if we called out of method_g_ at pc dex 3 |
Mathieu Chartier | 342a262 | 2012-06-28 12:04:52 -0700 | [diff] [blame] | 157 | thread->SetTopOfStack(&fake_stack[0], method_g_->ToNativePC(dex_pc) + 2); // return pc |
Shih-wei Liao | 02f01fe | 2012-03-26 12:58:11 -0700 | [diff] [blame] | 158 | #else |
| 159 | // Create/push fake 20-byte shadow frame for method g |
| 160 | fake_stack.push_back(0); |
| 161 | fake_stack.push_back(0); |
| 162 | fake_stack.push_back(reinterpret_cast<uintptr_t>(method_g_)); |
TDYa127 | c8dc101 | 2012-04-19 07:03:33 -0700 | [diff] [blame] | 163 | fake_stack.push_back(3); |
Shih-wei Liao | 02f01fe | 2012-03-26 12:58:11 -0700 | [diff] [blame] | 164 | fake_stack.push_back(0); |
| 165 | |
| 166 | // Create/push fake 20-byte shadow frame for method f |
| 167 | fake_stack.push_back(0); |
| 168 | fake_stack.push_back(0); |
| 169 | fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_)); |
TDYa127 | c8dc101 | 2012-04-19 07:03:33 -0700 | [diff] [blame] | 170 | fake_stack.push_back(3); |
Shih-wei Liao | 02f01fe | 2012-03-26 12:58:11 -0700 | [diff] [blame] | 171 | fake_stack.push_back(0); |
| 172 | |
Shih-wei Liao | 02f01fe | 2012-03-26 12:58:11 -0700 | [diff] [blame] | 173 | thread->PushShadowFrame(reinterpret_cast<ShadowFrame*>(&fake_stack[5])); |
| 174 | thread->PushShadowFrame(reinterpret_cast<ShadowFrame*>(&fake_stack[0])); |
| 175 | #endif |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 176 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 177 | jobject internal = thread->CreateInternalStackTrace(soa); |
Brian Carlstrom | 2673644 | 2012-02-16 18:24:26 -0800 | [diff] [blame] | 178 | ASSERT_TRUE(internal != NULL); |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 179 | jobjectArray ste_array = Thread::InternalStackTraceToStackTraceElementArray(env, internal); |
Brian Carlstrom | 2673644 | 2012-02-16 18:24:26 -0800 | [diff] [blame] | 180 | ASSERT_TRUE(ste_array != NULL); |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 181 | ObjectArray<StackTraceElement>* trace_array = |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 182 | soa.Decode<ObjectArray<StackTraceElement>*>(ste_array); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 183 | |
Brian Carlstrom | 2673644 | 2012-02-16 18:24:26 -0800 | [diff] [blame] | 184 | ASSERT_TRUE(trace_array != NULL); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 185 | ASSERT_TRUE(trace_array->Get(0) != NULL); |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 186 | EXPECT_STREQ("ExceptionHandle", |
Shih-wei Liao | 4417536 | 2011-08-28 16:59:17 -0700 | [diff] [blame] | 187 | trace_array->Get(0)->GetDeclaringClass()->ToModifiedUtf8().c_str()); |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 188 | EXPECT_STREQ("ExceptionHandle.java", trace_array->Get(0)->GetFileName()->ToModifiedUtf8().c_str()); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 189 | EXPECT_STREQ("g", trace_array->Get(0)->GetMethodName()->ToModifiedUtf8().c_str()); |
Brian Carlstrom | 06ed739 | 2012-01-31 01:25:48 -0800 | [diff] [blame] | 190 | EXPECT_EQ(37, trace_array->Get(0)->GetLineNumber()); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 191 | |
| 192 | ASSERT_TRUE(trace_array->Get(1) != NULL); |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 193 | EXPECT_STREQ("ExceptionHandle", |
Shih-wei Liao | 4417536 | 2011-08-28 16:59:17 -0700 | [diff] [blame] | 194 | trace_array->Get(1)->GetDeclaringClass()->ToModifiedUtf8().c_str()); |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 195 | EXPECT_STREQ("ExceptionHandle.java", trace_array->Get(1)->GetFileName()->ToModifiedUtf8().c_str()); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 196 | EXPECT_STREQ("f", trace_array->Get(1)->GetMethodName()->ToModifiedUtf8().c_str()); |
Brian Carlstrom | 06ed739 | 2012-01-31 01:25:48 -0800 | [diff] [blame] | 197 | EXPECT_EQ(22, trace_array->Get(1)->GetLineNumber()); |
Elliott Hughes | a43e093 | 2012-03-27 18:35:33 -0700 | [diff] [blame] | 198 | |
| 199 | #if !defined(ART_USE_LLVM_COMPILER) |
| 200 | thread->SetTopOfStack(NULL, 0); // Disarm the assertion that no code is running when we detach. |
Ian Rogers | 0399dde | 2012-06-06 17:09:28 -0700 | [diff] [blame] | 201 | #else |
| 202 | thread->PopShadowFrame(); |
| 203 | thread->PopShadowFrame(); |
Elliott Hughes | a43e093 | 2012-03-27 18:35:33 -0700 | [diff] [blame] | 204 | #endif |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 205 | } |
| 206 | |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 207 | } // namespace art |