FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
lpython/src/lpython/tests/test_stacktrace.cpp at main · PriyanshuGarg26/lpython · GitHub
PriyanshuGarg26
/
lpython
Public
forked from
lcompilers/lpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
lpython
/
src
/
lpython
/
tests
/
test_stacktrace.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
51 lines (43 loc) · 1.1 KB
Breadcrumbs
lpython
/
src
/
lpython
/
tests
/
test_stacktrace.cpp
Copy path
File metadata and controls
51 lines (43 loc) · 1.1 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#
include
<
iostream
>
#
include
<
libasr/config.h
>
#
include
<
libasr/stacktrace.h
>
int
h
()
{
LFortran::show_stacktrace
();
std::vector<LFortran::StacktraceItem> d =
LFortran::get_stacktrace_addresses
();
LFortran::get_local_addresses
(d);
LFortran::get_local_info
(d);
for
(
size_t
i =
0
; i < d.
size
(); i++) {
std::cout << i <<
"
"
;
std::cout <<
"
pc:
"
<< (
void
*) d[i].
pc
<<
"
"
;
std::cout <<
"
local_pc:
"
<< (
void
*) d[i].
local_pc
<<
"
"
;
std::cout <<
"
binary:
"
<< d[i].
binary_filename
<<
"
"
;
std::cout <<
"
fn:
"
<< d[i].
function_name
<<
"
"
;
std::cout <<
"
line:
"
<< d[i].
line_number
<<
"
"
;
std::cout <<
"
source:
"
<< d[i].
source_filename
<<
"
"
;
std::cout << std::endl;
}
return
42
;
}
int
compare
(
const
void
* a,
const
void
* b)
{
h
();
return
( *(
int
*)a - *(
int
*)b );
}
int
g
()
{
std::vector<
int
> values = {
50
,
40
};
qsort
(&values[
0
], values.
size
(),
sizeof
(
int
), compare);
return
values[
0
];
}
int
f
()
{
return
g
();
}
int
main
()
{
int
r;
r =
f
();
std::cout << r << std::endl;
return
0
;
}
Back
|
FazBrowse Home
|
New Git URL