Christopher Ferris | 7fb2287 | 2013-09-27 12:43:15 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013 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 | */ |
| 16 | |
Yabin Cui | 5d991bc | 2016-11-15 17:47:09 -0800 | [diff] [blame^] | 17 | #include <libunwind.h> |
Christopher Ferris | 17e91d4 | 2013-10-21 13:30:52 -0700 | [diff] [blame] | 18 | #include <stdio.h> |
Christopher Ferris | 7fb2287 | 2013-09-27 12:43:15 -0700 | [diff] [blame] | 19 | |
| 20 | int test_level_four(int one, int two, int three, int four, |
Christopher Ferris | 17e91d4 | 2013-10-21 13:30:52 -0700 | [diff] [blame] | 21 | void (*callback_func)(void*), void* data) { |
Christopher Ferris | 7fb2287 | 2013-09-27 12:43:15 -0700 | [diff] [blame] | 22 | if (callback_func != NULL) { |
Christopher Ferris | 17e91d4 | 2013-10-21 13:30:52 -0700 | [diff] [blame] | 23 | callback_func(data); |
Christopher Ferris | 7fb2287 | 2013-09-27 12:43:15 -0700 | [diff] [blame] | 24 | } else { |
| 25 | while (1) { |
| 26 | } |
| 27 | } |
| 28 | return one + two + three + four; |
| 29 | } |
| 30 | |
| 31 | int test_level_three(int one, int two, int three, int four, |
Christopher Ferris | 17e91d4 | 2013-10-21 13:30:52 -0700 | [diff] [blame] | 32 | void (*callback_func)(void*), void* data) { |
| 33 | return test_level_four(one+3, two+6, three+9, four+12, callback_func, data) + 3; |
Christopher Ferris | 7fb2287 | 2013-09-27 12:43:15 -0700 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | int test_level_two(int one, int two, int three, int four, |
Christopher Ferris | 17e91d4 | 2013-10-21 13:30:52 -0700 | [diff] [blame] | 37 | void (*callback_func)(void*), void* data) { |
| 38 | return test_level_three(one+2, two+4, three+6, four+8, callback_func, data) + 2; |
Christopher Ferris | 7fb2287 | 2013-09-27 12:43:15 -0700 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | int test_level_one(int one, int two, int three, int four, |
Christopher Ferris | 17e91d4 | 2013-10-21 13:30:52 -0700 | [diff] [blame] | 42 | void (*callback_func)(void*), void* data) { |
| 43 | return test_level_two(one+1, two+2, three+3, four+4, callback_func, data) + 1; |
Christopher Ferris | 7fb2287 | 2013-09-27 12:43:15 -0700 | [diff] [blame] | 44 | } |
| 45 | |
Christopher Ferris | 17e91d4 | 2013-10-21 13:30:52 -0700 | [diff] [blame] | 46 | int test_recursive_call(int level, void (*callback_func)(void*), void* data) { |
Christopher Ferris | 7fb2287 | 2013-09-27 12:43:15 -0700 | [diff] [blame] | 47 | if (level > 0) { |
Christopher Ferris | 17e91d4 | 2013-10-21 13:30:52 -0700 | [diff] [blame] | 48 | return test_recursive_call(level - 1, callback_func, data) + level; |
Christopher Ferris | 7fb2287 | 2013-09-27 12:43:15 -0700 | [diff] [blame] | 49 | } else if (callback_func != NULL) { |
Christopher Ferris | 17e91d4 | 2013-10-21 13:30:52 -0700 | [diff] [blame] | 50 | callback_func(data); |
Christopher Ferris | 7fb2287 | 2013-09-27 12:43:15 -0700 | [diff] [blame] | 51 | } else { |
| 52 | while (1) { |
| 53 | } |
| 54 | } |
| 55 | return 0; |
| 56 | } |
Yabin Cui | 5d991bc | 2016-11-15 17:47:09 -0800 | [diff] [blame^] | 57 | |
| 58 | typedef struct { |
| 59 | unw_context_t* unw_context; |
| 60 | volatile int* exit_flag; |
| 61 | } GetContextArg; |
| 62 | |
| 63 | static void GetContextAndExit(void* data) { |
| 64 | GetContextArg* arg = (GetContextArg*)data; |
| 65 | unw_getcontext(arg->unw_context); |
| 66 | // Don't touch the stack anymore. |
| 67 | while (*arg->exit_flag == 0) { |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | void test_get_context_and_wait(unw_context_t* unw_context, volatile int* exit_flag) { |
| 72 | GetContextArg arg; |
| 73 | arg.unw_context = unw_context; |
| 74 | arg.exit_flag = exit_flag; |
| 75 | test_level_one(1, 2, 3, 4, GetContextAndExit, &arg); |
| 76 | } |