-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathstacktraces.go
59 lines (48 loc) · 898 Bytes
/
stacktraces.go
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
52
53
54
55
56
57
58
59
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2016-present Datadog, Inc.
package sample
import "fmt"
//nolint:all
//go:noinline
func stack_A() {
stack_B()
}
//nolint:all
//go:noinline
func stack_B() {
stack_C()
}
//nolint:all
//go:noinline
func stack_C() string {
return fmt.Sprintf("hello %d!", 1)
}
//nolint:all
//go:noinline
func call_inlined_func_chain() {
inline_me_1()
}
//nolint:all
func inline_me_1() {
inline_me_2()
}
//nolint:all
func inline_me_2() {
inline_me_3()
}
//nolint:all
func inline_me_3() {
not_inlined()
}
//nolint:all
//go:noinline
func not_inlined() string {
return fmt.Sprintf("hello %d!", 42)
}
//nolint:all
func ExecuteStackAndInlining() {
stack_A()
call_inlined_func_chain()
}