blob: a5f999784d3b0c02e498e55ec29e240bca640fec [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"
Ian Rogers1809a722013-08-09 22:05:32 -070021#include "leb128_encoder.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070022#include "mirror/class-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080023#include "mirror/object_array-inl.h"
Ian Rogers04d7aa92013-03-16 14:29:17 -070024#include "mirror/object-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025#include "mirror/stack_trace_element.h"
Shih-wei Liao2fb97532011-08-11 16:17:23 -070026#include "runtime.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070027#include "scoped_thread_state_change.h"
Ian Rogers1f539342012-10-03 21:09:42 -070028#include "sirt_ref.h"
Shih-wei Liao2fb97532011-08-11 16:17:23 -070029#include "thread.h"
Elliott Hughesa168c832012-06-12 15:34:20 -070030#include "UniquePtr.h"
Shih-wei Liao2fb97532011-08-11 16:17:23 -070031
32namespace art {
33
Brian Carlstromf734cf52011-08-17 16:28:14 -070034class ExceptionTest : public CommonTest {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070035 protected:
36 virtual void SetUp() {
37 CommonTest::SetUp();
38
Ian Rogers00f7d0e2012-07-19 15:28:27 -070039 ScopedObjectAccess soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080040 SirtRef<mirror::ClassLoader> class_loader(soa.Self(),
41 soa.Decode<mirror::ClassLoader*>(LoadDex("ExceptionHandle")));
Brian Carlstrom40381fb2011-10-19 14:13:40 -070042 my_klass_ = class_linker_->FindClass("LExceptionHandle;", class_loader.get());
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070043 ASSERT_TRUE(my_klass_ != NULL);
Ian Rogers8f3c9ae2013-08-20 17:26:41 -070044 class_linker_->EnsureInitialized(my_klass_, true, true);
Brian Carlstrom33f741e2011-10-03 11:24:05 -070045
Ian Rogers4445a7e2012-10-05 17:19:13 -070046 dex_ = my_klass_->GetDexCache()->GetDexFile();
Brian Carlstrom33f741e2011-10-03 11:24:05 -070047
Brian Carlstromf8bbb842012-03-14 03:01:42 -070048 uint32_t code_size = 12;
49 fake_code_.push_back((code_size >> 24) & 0xFF);
50 fake_code_.push_back((code_size >> 16) & 0xFF);
51 fake_code_.push_back((code_size >> 8) & 0xFF);
52 fake_code_.push_back((code_size >> 0) & 0xFF);
53 for (size_t i = 0 ; i < code_size; i++) {
54 fake_code_.push_back(0x70 | i);
Brian Carlstrom3320cf42011-10-04 14:58:28 -070055 }
56
Ian Rogers1809a722013-08-09 22:05:32 -070057 fake_mapping_data_.PushBack(4); // first element is count
58 fake_mapping_data_.PushBack(4); // total (non-length) elements
59 fake_mapping_data_.PushBack(2); // count of pc to dex elements
Bill Buzbeea5b30242012-09-28 07:19:44 -070060 // --- pc to dex table
Ian Rogers1809a722013-08-09 22:05:32 -070061 fake_mapping_data_.PushBack(3); // offset 3
62 fake_mapping_data_.PushBack(3); // maps to dex offset 3
Bill Buzbeea5b30242012-09-28 07:19:44 -070063 // --- dex to pc table
Ian Rogers1809a722013-08-09 22:05:32 -070064 fake_mapping_data_.PushBack(3); // offset 3
65 fake_mapping_data_.PushBack(3); // maps to dex offset 3
Brian Carlstrom33f741e2011-10-03 11:24:05 -070066
Ian Rogers1809a722013-08-09 22:05:32 -070067 fake_vmap_table_data_.PushBack(0);
Mathieu Chartier342a2622012-06-28 12:04:52 -070068
Ian Rogers5a6220c2012-09-24 10:52:10 -070069 fake_gc_map_.push_back(0); // 0 bytes to encode references and native pc offsets.
70 fake_gc_map_.push_back(0);
71 fake_gc_map_.push_back(0); // 0 entries.
72 fake_gc_map_.push_back(0);
73
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070074 method_f_ = my_klass_->FindVirtualMethod("f", "()I");
75 ASSERT_TRUE(method_f_ != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070076 method_f_->SetFrameSizeInBytes(kStackAlignment);
Jeff Haoaa4a7932013-05-13 11:28:27 -070077 method_f_->SetEntryPointFromCompiledCode(CompiledMethod::CodePointer(&fake_code_[sizeof(code_size)], kThumb2));
Ian Rogers1809a722013-08-09 22:05:32 -070078 method_f_->SetMappingTable(&fake_mapping_data_.GetData()[0]);
79 method_f_->SetVmapTable(&fake_vmap_table_data_.GetData()[0]);
Ian Rogers5a6220c2012-09-24 10:52:10 -070080 method_f_->SetNativeGcMap(&fake_gc_map_[0]);
Brian Carlstrom33f741e2011-10-03 11:24:05 -070081
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070082 method_g_ = my_klass_->FindVirtualMethod("g", "(I)V");
83 ASSERT_TRUE(method_g_ != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070084 method_g_->SetFrameSizeInBytes(kStackAlignment);
Jeff Haoaa4a7932013-05-13 11:28:27 -070085 method_g_->SetEntryPointFromCompiledCode(CompiledMethod::CodePointer(&fake_code_[sizeof(code_size)], kThumb2));
Ian Rogers1809a722013-08-09 22:05:32 -070086 method_g_->SetMappingTable(&fake_mapping_data_.GetData()[0]);
87 method_g_->SetVmapTable(&fake_vmap_table_data_.GetData()[0]);
Ian Rogers5a6220c2012-09-24 10:52:10 -070088 method_g_->SetNativeGcMap(&fake_gc_map_[0]);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070089 }
90
Brian Carlstrom33f741e2011-10-03 11:24:05 -070091 const DexFile* dex_;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070092
Brian Carlstrom3320cf42011-10-04 14:58:28 -070093 std::vector<uint8_t> fake_code_;
Ian Rogers1809a722013-08-09 22:05:32 -070094 UnsignedLeb128EncodingVector fake_mapping_data_;
95 UnsignedLeb128EncodingVector fake_vmap_table_data_;
Ian Rogers5a6220c2012-09-24 10:52:10 -070096 std::vector<uint8_t> fake_gc_map_;
Brian Carlstrom3320cf42011-10-04 14:58:28 -070097
Brian Carlstromea46f952013-07-30 01:26:50 -070098 mirror::ArtMethod* method_f_;
99 mirror::ArtMethod* method_g_;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700100
101 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800102 mirror::Class* my_klass_;
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700103};
104
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -0700105TEST_F(ExceptionTest, FindCatchHandler) {
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700106 const DexFile::CodeItem* code_item = dex_->GetCodeItem(method_f_->GetCodeItemOffset());
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700107
108 ASSERT_TRUE(code_item != NULL);
109
110 ASSERT_EQ(2u, code_item->tries_size_);
Ian Rogersd81871c2011-10-03 13:57:23 -0700111 ASSERT_NE(0u, code_item->insns_size_in_code_units_);
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700112
Elliott Hughes7b9d9962012-04-20 18:48:18 -0700113 const DexFile::TryItem *t0, *t1;
Ian Rogers0571d352011-11-03 19:51:38 -0700114 t0 = dex_->GetTryItems(*code_item, 0);
115 t1 = dex_->GetTryItems(*code_item, 1);
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700116 EXPECT_LE(t0->start_addr_, t1->start_addr_);
Ian Rogers0571d352011-11-03 19:51:38 -0700117 {
118 CatchHandlerIterator iter(*code_item, 4 /* Dex PC in the first try block */);
119 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex()));
120 ASSERT_TRUE(iter.HasNext());
121 iter.Next();
122 EXPECT_STREQ("Ljava/lang/Exception;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex()));
123 ASSERT_TRUE(iter.HasNext());
124 iter.Next();
125 EXPECT_FALSE(iter.HasNext());
126 }
127 {
128 CatchHandlerIterator iter(*code_item, 8 /* Dex PC in the second try block */);
129 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex()));
130 ASSERT_TRUE(iter.HasNext());
131 iter.Next();
132 EXPECT_FALSE(iter.HasNext());
133 }
134 {
135 CatchHandlerIterator iter(*code_item, 11 /* Dex PC not in any try block */);
136 EXPECT_FALSE(iter.HasNext());
137 }
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700138}
139
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700140TEST_F(ExceptionTest, StackTraceElement) {
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700141 Thread* thread = Thread::Current();
Ian Rogers0fb6bb52012-08-14 15:10:19 -0700142 thread->TransitionFromSuspendedToRunnable();
Brian Carlstrombd86bcc2013-03-10 20:26:16 -0700143 bool started = runtime_->Start();
144 CHECK(started);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700145 JNIEnv* env = thread->GetJniEnv();
146 ScopedObjectAccess soa(env);
Brian Carlstrom25c33252011-09-18 15:58:35 -0700147
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700148 std::vector<uintptr_t> fake_stack;
Brian Carlstromba150c32013-08-27 17:31:03 -0700149 ASSERT_EQ(kStackAlignment, 16U);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700150 ASSERT_EQ(sizeof(uintptr_t), sizeof(uint32_t));
151
Ian Rogersc928de92013-02-27 14:30:44 -0800152#if !defined(ART_USE_PORTABLE_COMPILER)
Ian Rogersf57c47c2011-10-06 00:06:17 -0700153 // 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 -0700154 // to dex pc 3.
155 const uint32_t dex_pc = 3;
Ian Rogersf57c47c2011-10-06 00:06:17 -0700156
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700157 // Create/push fake 16byte stack frame for method g
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700158 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_g_));
159 fake_stack.push_back(0);
160 fake_stack.push_back(0);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700161 fake_stack.push_back(method_f_->ToNativePc(dex_pc)); // return pc
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700162
163 // Create/push fake 16byte stack frame for method f
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700164 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_));
165 fake_stack.push_back(0);
166 fake_stack.push_back(0);
167 fake_stack.push_back(0xEBAD6070); // return pc
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700168
169 // Pull Method* of NULL to terminate the trace
Brian Carlstrom2e3d1b22012-01-09 18:01:56 -0800170 fake_stack.push_back(0);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700171
Mathieu Chartier342a2622012-06-28 12:04:52 -0700172 // Push null values which will become null incoming arguments.
173 fake_stack.push_back(0);
174 fake_stack.push_back(0);
175 fake_stack.push_back(0);
176
177 // Set up thread to appear as if we called out of method_g_ at pc dex 3
Ian Rogers0c7abda2012-09-19 13:33:42 -0700178 thread->SetTopOfStack(&fake_stack[0], method_g_->ToNativePc(dex_pc)); // return pc
Shih-wei Liao02f01fe2012-03-26 12:58:11 -0700179#else
180 // Create/push fake 20-byte shadow frame for method g
181 fake_stack.push_back(0);
182 fake_stack.push_back(0);
183 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_g_));
TDYa127c8dc1012012-04-19 07:03:33 -0700184 fake_stack.push_back(3);
Shih-wei Liao02f01fe2012-03-26 12:58:11 -0700185 fake_stack.push_back(0);
186
187 // Create/push fake 20-byte shadow frame for method f
188 fake_stack.push_back(0);
189 fake_stack.push_back(0);
190 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_));
TDYa127c8dc1012012-04-19 07:03:33 -0700191 fake_stack.push_back(3);
Shih-wei Liao02f01fe2012-03-26 12:58:11 -0700192 fake_stack.push_back(0);
193
Shih-wei Liao02f01fe2012-03-26 12:58:11 -0700194 thread->PushShadowFrame(reinterpret_cast<ShadowFrame*>(&fake_stack[5]));
195 thread->PushShadowFrame(reinterpret_cast<ShadowFrame*>(&fake_stack[0]));
196#endif
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700197
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700198 jobject internal = thread->CreateInternalStackTrace(soa);
Brian Carlstrom26736442012-02-16 18:24:26 -0800199 ASSERT_TRUE(internal != NULL);
Elliott Hughes01158d72011-09-19 19:47:10 -0700200 jobjectArray ste_array = Thread::InternalStackTraceToStackTraceElementArray(env, internal);
Brian Carlstrom26736442012-02-16 18:24:26 -0800201 ASSERT_TRUE(ste_array != NULL);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800202 mirror::ObjectArray<mirror::StackTraceElement>* trace_array =
203 soa.Decode<mirror::ObjectArray<mirror::StackTraceElement>*>(ste_array);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700204
Brian Carlstrom26736442012-02-16 18:24:26 -0800205 ASSERT_TRUE(trace_array != NULL);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700206 ASSERT_TRUE(trace_array->Get(0) != NULL);
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700207 EXPECT_STREQ("ExceptionHandle",
Shih-wei Liao44175362011-08-28 16:59:17 -0700208 trace_array->Get(0)->GetDeclaringClass()->ToModifiedUtf8().c_str());
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700209 EXPECT_STREQ("ExceptionHandle.java", trace_array->Get(0)->GetFileName()->ToModifiedUtf8().c_str());
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700210 EXPECT_STREQ("g", trace_array->Get(0)->GetMethodName()->ToModifiedUtf8().c_str());
Brian Carlstrom06ed7392012-01-31 01:25:48 -0800211 EXPECT_EQ(37, trace_array->Get(0)->GetLineNumber());
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700212
213 ASSERT_TRUE(trace_array->Get(1) != NULL);
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700214 EXPECT_STREQ("ExceptionHandle",
Shih-wei Liao44175362011-08-28 16:59:17 -0700215 trace_array->Get(1)->GetDeclaringClass()->ToModifiedUtf8().c_str());
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700216 EXPECT_STREQ("ExceptionHandle.java", trace_array->Get(1)->GetFileName()->ToModifiedUtf8().c_str());
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700217 EXPECT_STREQ("f", trace_array->Get(1)->GetMethodName()->ToModifiedUtf8().c_str());
Brian Carlstrom06ed7392012-01-31 01:25:48 -0800218 EXPECT_EQ(22, trace_array->Get(1)->GetLineNumber());
Elliott Hughesa43e0932012-03-27 18:35:33 -0700219
Ian Rogersc928de92013-02-27 14:30:44 -0800220#if !defined(ART_USE_PORTABLE_COMPILER)
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700221 thread->SetTopOfStack(NULL, 0); // Disarm the assertion that no code is running when we detach.
Ian Rogers0399dde2012-06-06 17:09:28 -0700222#else
223 thread->PopShadowFrame();
224 thread->PopShadowFrame();
Elliott Hughesa43e0932012-03-27 18:35:33 -0700225#endif
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700226}
227
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700228} // namespace art