blob: 5c7e1a635cef4e0563ffc4d68dbd29af2bc471f9 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
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 Liao2fb97532011-08-11 16:17:23 -070016
Shih-wei Liao2fb97532011-08-11 16:17:23 -070017#include "class_linker.h"
18#include "common_test.h"
19#include "dex_file.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070020#include "gtest/gtest.h"
Shih-wei Liao2fb97532011-08-11 16:17:23 -070021#include "runtime.h"
Ian Rogers365c1022012-06-22 15:05:28 -070022#include "scoped_jni_thread_state.h"
Shih-wei Liao2fb97532011-08-11 16:17:23 -070023#include "thread.h"
Elliott Hughesa168c832012-06-12 15:34:20 -070024#include "UniquePtr.h"
Shih-wei Liao2fb97532011-08-11 16:17:23 -070025
26namespace art {
27
Brian Carlstromf734cf52011-08-17 16:28:14 -070028class ExceptionTest : public CommonTest {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070029 protected:
30 virtual void SetUp() {
31 CommonTest::SetUp();
32
Brian Carlstrom40381fb2011-10-19 14:13:40 -070033 SirtRef<ClassLoader> class_loader(LoadDex("ExceptionHandle"));
34 my_klass_ = class_linker_->FindClass("LExceptionHandle;", class_loader.get());
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070035 ASSERT_TRUE(my_klass_ != NULL);
Mathieu Chartier342a2622012-06-28 12:04:52 -070036 class_linker_->EnsureInitialized(my_klass_, false, true);
Brian Carlstrom33f741e2011-10-03 11:24:05 -070037
38 dex_ = &Runtime::Current()->GetClassLinker()->FindDexFile(my_klass_->GetDexCache());
39
Brian Carlstromf8bbb842012-03-14 03:01:42 -070040 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 Carlstrom3320cf42011-10-04 14:58:28 -070047 }
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 Carlstrom33f741e2011-10-03 11:24:05 -070052
Mathieu Chartier342a2622012-06-28 12:04:52 -070053 fake_vmap_table_data_.push_back(0);
54
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070055 method_f_ = my_klass_->FindVirtualMethod("f", "()I");
56 ASSERT_TRUE(method_f_ != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070057 method_f_->SetFrameSizeInBytes(kStackAlignment);
Brian Carlstromf8bbb842012-03-14 03:01:42 -070058 method_f_->SetCode(CompiledMethod::CodePointer(&fake_code_[sizeof(code_size)], kThumb2));
Brian Carlstrom3320cf42011-10-04 14:58:28 -070059 method_f_->SetMappingTable(&fake_mapping_data_[0]);
Mathieu Chartier342a2622012-06-28 12:04:52 -070060 method_f_->SetVmapTable(&fake_vmap_table_data_[0]);
Brian Carlstrom33f741e2011-10-03 11:24:05 -070061
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070062 method_g_ = my_klass_->FindVirtualMethod("g", "(I)V");
63 ASSERT_TRUE(method_g_ != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070064 method_g_->SetFrameSizeInBytes(kStackAlignment);
Brian Carlstromf8bbb842012-03-14 03:01:42 -070065 method_g_->SetCode(CompiledMethod::CodePointer(&fake_code_[sizeof(code_size)], kThumb2));
Brian Carlstrom3320cf42011-10-04 14:58:28 -070066 method_g_->SetMappingTable(&fake_mapping_data_[0]);
Mathieu Chartier342a2622012-06-28 12:04:52 -070067 method_g_->SetVmapTable(&fake_vmap_table_data_[0]);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070068 }
69
Brian Carlstrom33f741e2011-10-03 11:24:05 -070070 const DexFile* dex_;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070071
Brian Carlstrom3320cf42011-10-04 14:58:28 -070072 std::vector<uint8_t> fake_code_;
73 std::vector<uint32_t> fake_mapping_data_;
Mathieu Chartier342a2622012-06-28 12:04:52 -070074 std::vector<uint16_t> fake_vmap_table_data_;
Brian Carlstrom3320cf42011-10-04 14:58:28 -070075
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070076 Method* method_f_;
77 Method* method_g_;
78
79 private:
80 Class* my_klass_;
Shih-wei Liao2fb97532011-08-11 16:17:23 -070081};
82
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070083TEST_F(ExceptionTest, FindCatchHandler) {
Brian Carlstrom33f741e2011-10-03 11:24:05 -070084 const DexFile::CodeItem* code_item = dex_->GetCodeItem(method_f_->GetCodeItemOffset());
Shih-wei Liao2fb97532011-08-11 16:17:23 -070085
86 ASSERT_TRUE(code_item != NULL);
87
88 ASSERT_EQ(2u, code_item->tries_size_);
Ian Rogersd81871c2011-10-03 13:57:23 -070089 ASSERT_NE(0u, code_item->insns_size_in_code_units_);
Shih-wei Liao2fb97532011-08-11 16:17:23 -070090
Elliott Hughes7b9d9962012-04-20 18:48:18 -070091 const DexFile::TryItem *t0, *t1;
Ian Rogers0571d352011-11-03 19:51:38 -070092 t0 = dex_->GetTryItems(*code_item, 0);
93 t1 = dex_->GetTryItems(*code_item, 1);
Shih-wei Liao2fb97532011-08-11 16:17:23 -070094 EXPECT_LE(t0->start_addr_, t1->start_addr_);
Ian Rogers0571d352011-11-03 19:51:38 -070095 {
96 CatchHandlerIterator iter(*code_item, 4 /* Dex PC in the first try block */);
97 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex()));
98 ASSERT_TRUE(iter.HasNext());
99 iter.Next();
100 EXPECT_STREQ("Ljava/lang/Exception;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex()));
101 ASSERT_TRUE(iter.HasNext());
102 iter.Next();
103 EXPECT_FALSE(iter.HasNext());
104 }
105 {
106 CatchHandlerIterator iter(*code_item, 8 /* Dex PC in the second try block */);
107 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex()));
108 ASSERT_TRUE(iter.HasNext());
109 iter.Next();
110 EXPECT_FALSE(iter.HasNext());
111 }
112 {
113 CatchHandlerIterator iter(*code_item, 11 /* Dex PC not in any try block */);
114 EXPECT_FALSE(iter.HasNext());
115 }
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700116}
117
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700118TEST_F(ExceptionTest, StackTraceElement) {
Brian Carlstrom25c33252011-09-18 15:58:35 -0700119 runtime_->Start();
120
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700121 std::vector<uintptr_t> fake_stack;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700122 ASSERT_EQ(kStackAlignment, 16);
123 ASSERT_EQ(sizeof(uintptr_t), sizeof(uint32_t));
124
Shih-wei Liao02f01fe2012-03-26 12:58:11 -0700125#if !defined(ART_USE_LLVM_COMPILER)
Ian Rogersf57c47c2011-10-06 00:06:17 -0700126 // Create two fake stack frames with mapping data created in SetUp. We map offset 3 in the code
Mathieu Chartier342a2622012-06-28 12:04:52 -0700127 // to dex pc 3.
128 const uint32_t dex_pc = 3;
Ian Rogersf57c47c2011-10-06 00:06:17 -0700129
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700130 // Create/push fake 16byte stack frame for method g
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700131 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_g_));
132 fake_stack.push_back(0);
133 fake_stack.push_back(0);
Mathieu Chartier342a2622012-06-28 12:04:52 -0700134 // We add 2 to the native pc since the stack walker always subtracts two from a return pc.
135 fake_stack.push_back(method_f_->ToNativePC(dex_pc) + 2); // return pc
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700136
137 // Create/push fake 16byte stack frame for method f
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700138 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_));
139 fake_stack.push_back(0);
140 fake_stack.push_back(0);
141 fake_stack.push_back(0xEBAD6070); // return pc
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700142
143 // Pull Method* of NULL to terminate the trace
Brian Carlstrom2e3d1b22012-01-09 18:01:56 -0800144 fake_stack.push_back(0);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700145
Mathieu Chartier342a2622012-06-28 12:04:52 -0700146 // Push null values which will become null incoming arguments.
147 fake_stack.push_back(0);
148 fake_stack.push_back(0);
149 fake_stack.push_back(0);
150
151 // Set up thread to appear as if we called out of method_g_ at pc dex 3
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700152 Thread* thread = Thread::Current();
Mathieu Chartier342a2622012-06-28 12:04:52 -0700153 thread->SetTopOfStack(&fake_stack[0], method_g_->ToNativePC(dex_pc) + 2); // return pc
Shih-wei Liao02f01fe2012-03-26 12:58:11 -0700154#else
155 // Create/push fake 20-byte shadow frame for method g
156 fake_stack.push_back(0);
157 fake_stack.push_back(0);
158 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_g_));
TDYa127c8dc1012012-04-19 07:03:33 -0700159 fake_stack.push_back(3);
Shih-wei Liao02f01fe2012-03-26 12:58:11 -0700160 fake_stack.push_back(0);
161
162 // Create/push fake 20-byte shadow frame for method f
163 fake_stack.push_back(0);
164 fake_stack.push_back(0);
165 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_));
TDYa127c8dc1012012-04-19 07:03:33 -0700166 fake_stack.push_back(3);
Shih-wei Liao02f01fe2012-03-26 12:58:11 -0700167 fake_stack.push_back(0);
168
169 Thread* thread = Thread::Current();
170 thread->PushShadowFrame(reinterpret_cast<ShadowFrame*>(&fake_stack[5]));
171 thread->PushShadowFrame(reinterpret_cast<ShadowFrame*>(&fake_stack[0]));
172#endif
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700173
Elliott Hughes01158d72011-09-19 19:47:10 -0700174 JNIEnv* env = thread->GetJniEnv();
Ian Rogers365c1022012-06-22 15:05:28 -0700175 ScopedJniThreadState ts(env);
176 jobject internal = thread->CreateInternalStackTrace(ts);
Brian Carlstrom26736442012-02-16 18:24:26 -0800177 ASSERT_TRUE(internal != NULL);
Elliott Hughes01158d72011-09-19 19:47:10 -0700178 jobjectArray ste_array = Thread::InternalStackTraceToStackTraceElementArray(env, internal);
Brian Carlstrom26736442012-02-16 18:24:26 -0800179 ASSERT_TRUE(ste_array != NULL);
Ian Rogersaaa20802011-09-11 21:47:37 -0700180 ObjectArray<StackTraceElement>* trace_array =
Ian Rogers365c1022012-06-22 15:05:28 -0700181 ts.Decode<ObjectArray<StackTraceElement>*>(ste_array);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700182
Brian Carlstrom26736442012-02-16 18:24:26 -0800183 ASSERT_TRUE(trace_array != NULL);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700184 ASSERT_TRUE(trace_array->Get(0) != NULL);
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700185 EXPECT_STREQ("ExceptionHandle",
Shih-wei Liao44175362011-08-28 16:59:17 -0700186 trace_array->Get(0)->GetDeclaringClass()->ToModifiedUtf8().c_str());
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700187 EXPECT_STREQ("ExceptionHandle.java", trace_array->Get(0)->GetFileName()->ToModifiedUtf8().c_str());
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700188 EXPECT_STREQ("g", trace_array->Get(0)->GetMethodName()->ToModifiedUtf8().c_str());
Brian Carlstrom06ed7392012-01-31 01:25:48 -0800189 EXPECT_EQ(37, trace_array->Get(0)->GetLineNumber());
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700190
191 ASSERT_TRUE(trace_array->Get(1) != NULL);
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700192 EXPECT_STREQ("ExceptionHandle",
Shih-wei Liao44175362011-08-28 16:59:17 -0700193 trace_array->Get(1)->GetDeclaringClass()->ToModifiedUtf8().c_str());
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700194 EXPECT_STREQ("ExceptionHandle.java", trace_array->Get(1)->GetFileName()->ToModifiedUtf8().c_str());
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700195 EXPECT_STREQ("f", trace_array->Get(1)->GetMethodName()->ToModifiedUtf8().c_str());
Brian Carlstrom06ed7392012-01-31 01:25:48 -0800196 EXPECT_EQ(22, trace_array->Get(1)->GetLineNumber());
Elliott Hughesa43e0932012-03-27 18:35:33 -0700197
198#if !defined(ART_USE_LLVM_COMPILER)
199 thread->SetTopOfStack(NULL, 0); // Disarm the assertion that no code is running when we detach.
Ian Rogers0399dde2012-06-06 17:09:28 -0700200#else
201 thread->PopShadowFrame();
202 thread->PopShadowFrame();
Elliott Hughesa43e0932012-03-27 18:35:33 -0700203#endif
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700204}
205
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700206} // namespace art