Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | // This is a regression test on debug info to make sure that we can get a |
| 2 | // meaningful stack trace from a C++ program. |
Dan Gohman | 2b62af2 | 2009-12-05 00:02:37 +0000 | [diff] [blame] | 3 | // RUN: %llvmgcc -S -O0 -g %s -o - | \ |
Dan Gohman | 2d65d35 | 2009-08-25 15:38:29 +0000 | [diff] [blame] | 4 | // RUN: llc --disable-fp-elim -o %t.s -O0 -relocation-model=pic |
Chris Lattner | 670f451 | 2008-03-10 06:52:10 +0000 | [diff] [blame] | 5 | // RUN: %compile_c %t.s -o %t.o |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 6 | // RUN: %link %t.o -o %t.exe |
| 7 | // RUN: echo {break DeepStack::deepest\nrun 17\nwhere\n} > %t.in |
Chris Lattner | 25c0e78 | 2010-01-24 19:13:39 +0000 | [diff] [blame] | 8 | // RN: gdb -q -batch -n -x %t.in %t.exe | tee %t.out | \ |
| 9 | // RN: grep {#0 DeepStack::deepest.*(this=.*,.*x=33)} |
| 10 | // RN: gdb -q -batch -n -x %t.in %t.exe | \ |
| 11 | // RN: grep {#7 0x.* in main.*(argc=\[12\],.*argv=.*)} |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 12 | |
Daniel Dunbar | e275659 | 2009-08-07 20:50:58 +0000 | [diff] [blame] | 13 | // Only works on ppc (but not apple-darwin9), x86 and x86_64. Should |
| 14 | // generalize? |
Chris Lattner | 25c0e78 | 2010-01-24 19:13:39 +0000 | [diff] [blame] | 15 | // XAIL: alpha,arm,powerpc-apple-darwin9 |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 16 | |
| 17 | #include <stdlib.h> |
| 18 | |
| 19 | class DeepStack { |
| 20 | int seedVal; |
| 21 | public: |
| 22 | DeepStack(int seed) : seedVal(seed) {} |
| 23 | |
| 24 | int shallowest( int x ) { return shallower(x + 1); } |
| 25 | int shallower ( int x ) { return shallow(x + 2); } |
| 26 | int shallow ( int x ) { return deep(x + 3); } |
| 27 | int deep ( int x ) { return deeper(x + 4); } |
| 28 | int deeper ( int x ) { return deepest(x + 6); } |
| 29 | int deepest ( int x ) { return x + 7; } |
| 30 | |
| 31 | int runit() { return shallowest(seedVal); } |
| 32 | }; |
| 33 | |
| 34 | int main ( int argc, char** argv) { |
| 35 | |
| 36 | DeepStack DS9( (argc > 1 ? atoi(argv[1]) : 0) ); |
| 37 | return DS9.runit(); |
| 38 | } |