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 | |
| 17 | #include <sys/mman.h> |
| 18 | |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 19 | #include "UniquePtr.h" |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 20 | #include "class_linker.h" |
| 21 | #include "common_test.h" |
| 22 | #include "dex_file.h" |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 23 | #include "gtest/gtest.h" |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 24 | #include "runtime.h" |
| 25 | #include "thread.h" |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 26 | |
| 27 | namespace art { |
| 28 | |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 29 | class ExceptionTest : public CommonTest { |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 30 | protected: |
| 31 | virtual void SetUp() { |
| 32 | CommonTest::SetUp(); |
| 33 | |
Brian Carlstrom | 40381fb | 2011-10-19 14:13:40 -0700 | [diff] [blame] | 34 | SirtRef<ClassLoader> class_loader(LoadDex("ExceptionHandle")); |
| 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); |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 37 | |
| 38 | dex_ = &Runtime::Current()->GetClassLinker()->FindDexFile(my_klass_->GetDexCache()); |
| 39 | |
Brian Carlstrom | f8bbb84 | 2012-03-14 03:01:42 -0700 | [diff] [blame] | 40 | uint32_t code_size = 12; |
| 41 | fake_code_.push_back((code_size >> 24) & 0xFF); |
| 42 | fake_code_.push_back((code_size >> 16) & 0xFF); |
| 43 | fake_code_.push_back((code_size >> 8) & 0xFF); |
| 44 | fake_code_.push_back((code_size >> 0) & 0xFF); |
| 45 | for (size_t i = 0 ; i < code_size; i++) { |
| 46 | fake_code_.push_back(0x70 | i); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | fake_mapping_data_.push_back(2); // first element is count of remaining elements |
| 50 | fake_mapping_data_.push_back(3); // offset 3 |
| 51 | fake_mapping_data_.push_back(3); // maps to dex offset 3 |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 52 | |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 53 | method_f_ = my_klass_->FindVirtualMethod("f", "()I"); |
| 54 | ASSERT_TRUE(method_f_ != NULL); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 55 | method_f_->SetFrameSizeInBytes(kStackAlignment); |
Brian Carlstrom | f8bbb84 | 2012-03-14 03:01:42 -0700 | [diff] [blame] | 56 | method_f_->SetCode(CompiledMethod::CodePointer(&fake_code_[sizeof(code_size)], kThumb2)); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 57 | method_f_->SetMappingTable(&fake_mapping_data_[0]); |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 58 | |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 59 | method_g_ = my_klass_->FindVirtualMethod("g", "(I)V"); |
| 60 | ASSERT_TRUE(method_g_ != NULL); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 61 | method_g_->SetFrameSizeInBytes(kStackAlignment); |
Brian Carlstrom | f8bbb84 | 2012-03-14 03:01:42 -0700 | [diff] [blame] | 62 | method_g_->SetCode(CompiledMethod::CodePointer(&fake_code_[sizeof(code_size)], kThumb2)); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 63 | method_g_->SetMappingTable(&fake_mapping_data_[0]); |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 64 | } |
| 65 | |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 66 | const DexFile* dex_; |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 67 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 68 | std::vector<uint8_t> fake_code_; |
| 69 | std::vector<uint32_t> fake_mapping_data_; |
| 70 | |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 71 | Method* method_f_; |
| 72 | Method* method_g_; |
| 73 | |
| 74 | private: |
| 75 | Class* my_klass_; |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 76 | }; |
| 77 | |
Shih-wei Liao | 1a18c8c | 2011-08-14 17:47:36 -0700 | [diff] [blame] | 78 | TEST_F(ExceptionTest, FindCatchHandler) { |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 79 | const DexFile::CodeItem* code_item = dex_->GetCodeItem(method_f_->GetCodeItemOffset()); |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 80 | |
| 81 | ASSERT_TRUE(code_item != NULL); |
| 82 | |
| 83 | ASSERT_EQ(2u, code_item->tries_size_); |
Ian Rogers | d81871c | 2011-10-03 13:57:23 -0700 | [diff] [blame] | 84 | ASSERT_NE(0u, code_item->insns_size_in_code_units_); |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 85 | |
| 86 | const struct DexFile::TryItem *t0, *t1; |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 87 | t0 = dex_->GetTryItems(*code_item, 0); |
| 88 | t1 = dex_->GetTryItems(*code_item, 1); |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 89 | EXPECT_LE(t0->start_addr_, t1->start_addr_); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 90 | { |
| 91 | CatchHandlerIterator iter(*code_item, 4 /* Dex PC in the first try block */); |
| 92 | EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); |
| 93 | ASSERT_TRUE(iter.HasNext()); |
| 94 | iter.Next(); |
| 95 | EXPECT_STREQ("Ljava/lang/Exception;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); |
| 96 | ASSERT_TRUE(iter.HasNext()); |
| 97 | iter.Next(); |
| 98 | EXPECT_FALSE(iter.HasNext()); |
| 99 | } |
| 100 | { |
| 101 | CatchHandlerIterator iter(*code_item, 8 /* Dex PC in the second try block */); |
| 102 | EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex())); |
| 103 | ASSERT_TRUE(iter.HasNext()); |
| 104 | iter.Next(); |
| 105 | EXPECT_FALSE(iter.HasNext()); |
| 106 | } |
| 107 | { |
| 108 | CatchHandlerIterator iter(*code_item, 11 /* Dex PC not in any try block */); |
| 109 | EXPECT_FALSE(iter.HasNext()); |
| 110 | } |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 111 | } |
| 112 | |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 113 | TEST_F(ExceptionTest, StackTraceElement) { |
Brian Carlstrom | 25c3325 | 2011-09-18 15:58:35 -0700 | [diff] [blame] | 114 | runtime_->Start(); |
| 115 | |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 116 | std::vector<uintptr_t> fake_stack; |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 117 | ASSERT_EQ(kStackAlignment, 16); |
| 118 | ASSERT_EQ(sizeof(uintptr_t), sizeof(uint32_t)); |
| 119 | |
Shih-wei Liao | 02f01fe | 2012-03-26 12:58:11 -0700 | [diff] [blame] | 120 | #if !defined(ART_USE_LLVM_COMPILER) |
Ian Rogers | f57c47c | 2011-10-06 00:06:17 -0700 | [diff] [blame] | 121 | // Create two fake stack frames with mapping data created in SetUp. We map offset 3 in the code |
Ian Rogers | 1cb0a1d | 2011-10-06 15:24:35 -0700 | [diff] [blame] | 122 | // to dex pc 3, however, we set the return pc to 5 as the stack walker always subtracts two |
Ian Rogers | f57c47c | 2011-10-06 00:06:17 -0700 | [diff] [blame] | 123 | // from a return pc. |
Elliott Hughes | a43cb5e | 2011-10-07 11:37:59 -0700 | [diff] [blame] | 124 | const uintptr_t pc_offset = 3 + 2; |
Ian Rogers | f57c47c | 2011-10-06 00:06:17 -0700 | [diff] [blame] | 125 | |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 126 | // Create/push fake 16byte stack frame for method g |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 127 | fake_stack.push_back(reinterpret_cast<uintptr_t>(method_g_)); |
| 128 | fake_stack.push_back(0); |
| 129 | fake_stack.push_back(0); |
| 130 | fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_->GetCode()) + pc_offset); // return pc |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 131 | |
| 132 | // Create/push fake 16byte stack frame for method f |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 133 | fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_)); |
| 134 | fake_stack.push_back(0); |
| 135 | fake_stack.push_back(0); |
| 136 | fake_stack.push_back(0xEBAD6070); // return pc |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 137 | |
| 138 | // Pull Method* of NULL to terminate the trace |
Brian Carlstrom | 2e3d1b2 | 2012-01-09 18:01:56 -0800 | [diff] [blame] | 139 | fake_stack.push_back(0); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 140 | |
Ian Rogers | bdb0391 | 2011-09-14 00:55:44 -0700 | [diff] [blame] | 141 | // Set up thread to appear as if we called out of method_g_ at pc 3 |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 142 | Thread* thread = Thread::Current(); |
Elliott Hughes | 3b6baaa | 2011-10-14 19:13:56 -0700 | [diff] [blame] | 143 | thread->SetTopOfStack(&fake_stack[0], reinterpret_cast<uintptr_t>(method_g_->GetCode()) + pc_offset); // return pc |
Shih-wei Liao | 02f01fe | 2012-03-26 12:58:11 -0700 | [diff] [blame] | 144 | #else |
| 145 | // Create/push fake 20-byte shadow frame for method g |
| 146 | fake_stack.push_back(0); |
| 147 | fake_stack.push_back(0); |
| 148 | fake_stack.push_back(reinterpret_cast<uintptr_t>(method_g_)); |
| 149 | fake_stack.push_back(37); |
| 150 | fake_stack.push_back(0); |
| 151 | |
| 152 | // Create/push fake 20-byte shadow frame for method f |
| 153 | fake_stack.push_back(0); |
| 154 | fake_stack.push_back(0); |
| 155 | fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_)); |
| 156 | fake_stack.push_back(22); |
| 157 | fake_stack.push_back(0); |
| 158 | |
| 159 | Thread* thread = Thread::Current(); |
| 160 | thread->PushShadowFrame(reinterpret_cast<ShadowFrame*>(&fake_stack[5])); |
| 161 | thread->PushShadowFrame(reinterpret_cast<ShadowFrame*>(&fake_stack[0])); |
| 162 | #endif |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 163 | |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 164 | JNIEnv* env = thread->GetJniEnv(); |
| 165 | jobject internal = thread->CreateInternalStackTrace(env); |
Brian Carlstrom | 2673644 | 2012-02-16 18:24:26 -0800 | [diff] [blame] | 166 | ASSERT_TRUE(internal != NULL); |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 167 | jobjectArray ste_array = Thread::InternalStackTraceToStackTraceElementArray(env, internal); |
Brian Carlstrom | 2673644 | 2012-02-16 18:24:26 -0800 | [diff] [blame] | 168 | ASSERT_TRUE(ste_array != NULL); |
Ian Rogers | aaa2080 | 2011-09-11 21:47:37 -0700 | [diff] [blame] | 169 | ObjectArray<StackTraceElement>* trace_array = |
Elliott Hughes | 01158d7 | 2011-09-19 19:47:10 -0700 | [diff] [blame] | 170 | Decode<ObjectArray<StackTraceElement>*>(env, ste_array); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 171 | |
Brian Carlstrom | 2673644 | 2012-02-16 18:24:26 -0800 | [diff] [blame] | 172 | ASSERT_TRUE(trace_array != NULL); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 173 | ASSERT_TRUE(trace_array->Get(0) != NULL); |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 174 | EXPECT_STREQ("ExceptionHandle", |
Shih-wei Liao | 4417536 | 2011-08-28 16:59:17 -0700 | [diff] [blame] | 175 | trace_array->Get(0)->GetDeclaringClass()->ToModifiedUtf8().c_str()); |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 176 | 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] | 177 | EXPECT_STREQ("g", trace_array->Get(0)->GetMethodName()->ToModifiedUtf8().c_str()); |
Brian Carlstrom | 06ed739 | 2012-01-31 01:25:48 -0800 | [diff] [blame] | 178 | EXPECT_EQ(37, trace_array->Get(0)->GetLineNumber()); |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 179 | |
| 180 | ASSERT_TRUE(trace_array->Get(1) != NULL); |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 181 | EXPECT_STREQ("ExceptionHandle", |
Shih-wei Liao | 4417536 | 2011-08-28 16:59:17 -0700 | [diff] [blame] | 182 | trace_array->Get(1)->GetDeclaringClass()->ToModifiedUtf8().c_str()); |
Brian Carlstrom | 33f741e | 2011-10-03 11:24:05 -0700 | [diff] [blame] | 183 | 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] | 184 | EXPECT_STREQ("f", trace_array->Get(1)->GetMethodName()->ToModifiedUtf8().c_str()); |
Brian Carlstrom | 06ed739 | 2012-01-31 01:25:48 -0800 | [diff] [blame] | 185 | EXPECT_EQ(22, trace_array->Get(1)->GetLineNumber()); |
Elliott Hughes | a43e093 | 2012-03-27 18:35:33 -0700 | [diff] [blame] | 186 | |
| 187 | #if !defined(ART_USE_LLVM_COMPILER) |
| 188 | thread->SetTopOfStack(NULL, 0); // Disarm the assertion that no code is running when we detach. |
| 189 | #endif |
Shih-wei Liao | 55df06b | 2011-08-26 14:39:27 -0700 | [diff] [blame] | 190 | } |
| 191 | |
Shih-wei Liao | 2fb9753 | 2011-08-11 16:17:23 -0700 | [diff] [blame] | 192 | } // namespace art |