blob: 90bcb7c6b7bfd817b4d348797f9a2cf4f0326b71 [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"
22#include "thread.h"
Elliott Hughesa168c832012-06-12 15:34:20 -070023#include "UniquePtr.h"
Shih-wei Liao2fb97532011-08-11 16:17:23 -070024
25namespace art {
26
Brian Carlstromf734cf52011-08-17 16:28:14 -070027class ExceptionTest : public CommonTest {
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070028 protected:
29 virtual void SetUp() {
30 CommonTest::SetUp();
31
Brian Carlstrom40381fb2011-10-19 14:13:40 -070032 SirtRef<ClassLoader> class_loader(LoadDex("ExceptionHandle"));
33 my_klass_ = class_linker_->FindClass("LExceptionHandle;", class_loader.get());
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070034 ASSERT_TRUE(my_klass_ != NULL);
Brian Carlstrom33f741e2011-10-03 11:24:05 -070035
36 dex_ = &Runtime::Current()->GetClassLinker()->FindDexFile(my_klass_->GetDexCache());
37
Brian Carlstromf8bbb842012-03-14 03:01:42 -070038 uint32_t code_size = 12;
39 fake_code_.push_back((code_size >> 24) & 0xFF);
40 fake_code_.push_back((code_size >> 16) & 0xFF);
41 fake_code_.push_back((code_size >> 8) & 0xFF);
42 fake_code_.push_back((code_size >> 0) & 0xFF);
43 for (size_t i = 0 ; i < code_size; i++) {
44 fake_code_.push_back(0x70 | i);
Brian Carlstrom3320cf42011-10-04 14:58:28 -070045 }
46
47 fake_mapping_data_.push_back(2); // first element is count of remaining elements
48 fake_mapping_data_.push_back(3); // offset 3
49 fake_mapping_data_.push_back(3); // maps to dex offset 3
Brian Carlstrom33f741e2011-10-03 11:24:05 -070050
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070051 method_f_ = my_klass_->FindVirtualMethod("f", "()I");
52 ASSERT_TRUE(method_f_ != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070053 method_f_->SetFrameSizeInBytes(kStackAlignment);
Brian Carlstromf8bbb842012-03-14 03:01:42 -070054 method_f_->SetCode(CompiledMethod::CodePointer(&fake_code_[sizeof(code_size)], kThumb2));
Brian Carlstrom3320cf42011-10-04 14:58:28 -070055 method_f_->SetMappingTable(&fake_mapping_data_[0]);
Brian Carlstrom33f741e2011-10-03 11:24:05 -070056
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070057 method_g_ = my_klass_->FindVirtualMethod("g", "(I)V");
58 ASSERT_TRUE(method_g_ != NULL);
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070059 method_g_->SetFrameSizeInBytes(kStackAlignment);
Brian Carlstromf8bbb842012-03-14 03:01:42 -070060 method_g_->SetCode(CompiledMethod::CodePointer(&fake_code_[sizeof(code_size)], kThumb2));
Brian Carlstrom3320cf42011-10-04 14:58:28 -070061 method_g_->SetMappingTable(&fake_mapping_data_[0]);
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070062 }
63
Brian Carlstrom33f741e2011-10-03 11:24:05 -070064 const DexFile* dex_;
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070065
Brian Carlstrom3320cf42011-10-04 14:58:28 -070066 std::vector<uint8_t> fake_code_;
67 std::vector<uint32_t> fake_mapping_data_;
68
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070069 Method* method_f_;
70 Method* method_g_;
71
72 private:
73 Class* my_klass_;
Shih-wei Liao2fb97532011-08-11 16:17:23 -070074};
75
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -070076TEST_F(ExceptionTest, FindCatchHandler) {
Brian Carlstrom33f741e2011-10-03 11:24:05 -070077 const DexFile::CodeItem* code_item = dex_->GetCodeItem(method_f_->GetCodeItemOffset());
Shih-wei Liao2fb97532011-08-11 16:17:23 -070078
79 ASSERT_TRUE(code_item != NULL);
80
81 ASSERT_EQ(2u, code_item->tries_size_);
Ian Rogersd81871c2011-10-03 13:57:23 -070082 ASSERT_NE(0u, code_item->insns_size_in_code_units_);
Shih-wei Liao2fb97532011-08-11 16:17:23 -070083
Elliott Hughes7b9d9962012-04-20 18:48:18 -070084 const DexFile::TryItem *t0, *t1;
Ian Rogers0571d352011-11-03 19:51:38 -070085 t0 = dex_->GetTryItems(*code_item, 0);
86 t1 = dex_->GetTryItems(*code_item, 1);
Shih-wei Liao2fb97532011-08-11 16:17:23 -070087 EXPECT_LE(t0->start_addr_, t1->start_addr_);
Ian Rogers0571d352011-11-03 19:51:38 -070088 {
89 CatchHandlerIterator iter(*code_item, 4 /* Dex PC in the first try block */);
90 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex()));
91 ASSERT_TRUE(iter.HasNext());
92 iter.Next();
93 EXPECT_STREQ("Ljava/lang/Exception;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex()));
94 ASSERT_TRUE(iter.HasNext());
95 iter.Next();
96 EXPECT_FALSE(iter.HasNext());
97 }
98 {
99 CatchHandlerIterator iter(*code_item, 8 /* Dex PC in the second try block */);
100 EXPECT_STREQ("Ljava/io/IOException;", dex_->StringByTypeIdx(iter.GetHandlerTypeIndex()));
101 ASSERT_TRUE(iter.HasNext());
102 iter.Next();
103 EXPECT_FALSE(iter.HasNext());
104 }
105 {
106 CatchHandlerIterator iter(*code_item, 11 /* Dex PC not in any try block */);
107 EXPECT_FALSE(iter.HasNext());
108 }
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700109}
110
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700111TEST_F(ExceptionTest, StackTraceElement) {
Brian Carlstrom25c33252011-09-18 15:58:35 -0700112 runtime_->Start();
113
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700114 std::vector<uintptr_t> fake_stack;
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700115 ASSERT_EQ(kStackAlignment, 16);
116 ASSERT_EQ(sizeof(uintptr_t), sizeof(uint32_t));
117
Shih-wei Liao02f01fe2012-03-26 12:58:11 -0700118#if !defined(ART_USE_LLVM_COMPILER)
Ian Rogersf57c47c2011-10-06 00:06:17 -0700119 // Create two fake stack frames with mapping data created in SetUp. We map offset 3 in the code
Ian Rogers1cb0a1d2011-10-06 15:24:35 -0700120 // to dex pc 3, however, we set the return pc to 5 as the stack walker always subtracts two
Ian Rogersf57c47c2011-10-06 00:06:17 -0700121 // from a return pc.
Elliott Hughesa43cb5e2011-10-07 11:37:59 -0700122 const uintptr_t pc_offset = 3 + 2;
Ian Rogersf57c47c2011-10-06 00:06:17 -0700123
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700124 // Create/push fake 16byte stack frame for method g
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700125 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_g_));
126 fake_stack.push_back(0);
127 fake_stack.push_back(0);
128 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_->GetCode()) + pc_offset); // return pc
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700129
130 // Create/push fake 16byte stack frame for method f
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700131 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_));
132 fake_stack.push_back(0);
133 fake_stack.push_back(0);
134 fake_stack.push_back(0xEBAD6070); // return pc
Ian Rogers0cfe1fb2011-08-26 03:29:44 -0700135
136 // Pull Method* of NULL to terminate the trace
Brian Carlstrom2e3d1b22012-01-09 18:01:56 -0800137 fake_stack.push_back(0);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700138
Ian Rogersbdb03912011-09-14 00:55:44 -0700139 // Set up thread to appear as if we called out of method_g_ at pc 3
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700140 Thread* thread = Thread::Current();
Elliott Hughes3b6baaa2011-10-14 19:13:56 -0700141 thread->SetTopOfStack(&fake_stack[0], reinterpret_cast<uintptr_t>(method_g_->GetCode()) + pc_offset); // return pc
Shih-wei Liao02f01fe2012-03-26 12:58:11 -0700142#else
143 // Create/push fake 20-byte shadow frame for method g
144 fake_stack.push_back(0);
145 fake_stack.push_back(0);
146 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_g_));
TDYa127c8dc1012012-04-19 07:03:33 -0700147 fake_stack.push_back(3);
Shih-wei Liao02f01fe2012-03-26 12:58:11 -0700148 fake_stack.push_back(0);
149
150 // Create/push fake 20-byte shadow frame for method f
151 fake_stack.push_back(0);
152 fake_stack.push_back(0);
153 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_));
TDYa127c8dc1012012-04-19 07:03:33 -0700154 fake_stack.push_back(3);
Shih-wei Liao02f01fe2012-03-26 12:58:11 -0700155 fake_stack.push_back(0);
156
157 Thread* thread = Thread::Current();
158 thread->PushShadowFrame(reinterpret_cast<ShadowFrame*>(&fake_stack[5]));
159 thread->PushShadowFrame(reinterpret_cast<ShadowFrame*>(&fake_stack[0]));
160#endif
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700161
Elliott Hughes01158d72011-09-19 19:47:10 -0700162 JNIEnv* env = thread->GetJniEnv();
163 jobject internal = thread->CreateInternalStackTrace(env);
Brian Carlstrom26736442012-02-16 18:24:26 -0800164 ASSERT_TRUE(internal != NULL);
Elliott Hughes01158d72011-09-19 19:47:10 -0700165 jobjectArray ste_array = Thread::InternalStackTraceToStackTraceElementArray(env, internal);
Brian Carlstrom26736442012-02-16 18:24:26 -0800166 ASSERT_TRUE(ste_array != NULL);
Ian Rogersaaa20802011-09-11 21:47:37 -0700167 ObjectArray<StackTraceElement>* trace_array =
Elliott Hughes01158d72011-09-19 19:47:10 -0700168 Decode<ObjectArray<StackTraceElement>*>(env, ste_array);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700169
Brian Carlstrom26736442012-02-16 18:24:26 -0800170 ASSERT_TRUE(trace_array != NULL);
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700171 ASSERT_TRUE(trace_array->Get(0) != NULL);
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700172 EXPECT_STREQ("ExceptionHandle",
Shih-wei Liao44175362011-08-28 16:59:17 -0700173 trace_array->Get(0)->GetDeclaringClass()->ToModifiedUtf8().c_str());
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700174 EXPECT_STREQ("ExceptionHandle.java", trace_array->Get(0)->GetFileName()->ToModifiedUtf8().c_str());
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700175 EXPECT_STREQ("g", trace_array->Get(0)->GetMethodName()->ToModifiedUtf8().c_str());
Brian Carlstrom06ed7392012-01-31 01:25:48 -0800176 EXPECT_EQ(37, trace_array->Get(0)->GetLineNumber());
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700177
178 ASSERT_TRUE(trace_array->Get(1) != NULL);
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700179 EXPECT_STREQ("ExceptionHandle",
Shih-wei Liao44175362011-08-28 16:59:17 -0700180 trace_array->Get(1)->GetDeclaringClass()->ToModifiedUtf8().c_str());
Brian Carlstrom33f741e2011-10-03 11:24:05 -0700181 EXPECT_STREQ("ExceptionHandle.java", trace_array->Get(1)->GetFileName()->ToModifiedUtf8().c_str());
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700182 EXPECT_STREQ("f", trace_array->Get(1)->GetMethodName()->ToModifiedUtf8().c_str());
Brian Carlstrom06ed7392012-01-31 01:25:48 -0800183 EXPECT_EQ(22, trace_array->Get(1)->GetLineNumber());
Elliott Hughesa43e0932012-03-27 18:35:33 -0700184
185#if !defined(ART_USE_LLVM_COMPILER)
186 thread->SetTopOfStack(NULL, 0); // Disarm the assertion that no code is running when we detach.
Ian Rogers0399dde2012-06-06 17:09:28 -0700187#else
188 thread->PopShadowFrame();
189 thread->PopShadowFrame();
Elliott Hughesa43e0932012-03-27 18:35:33 -0700190#endif
Shih-wei Liao55df06b2011-08-26 14:39:27 -0700191}
192
Shih-wei Liao2fb97532011-08-11 16:17:23 -0700193} // namespace art