From 466aaa8194e06aab452b00f56efd5ddd8bcff311 Mon Sep 17 00:00:00 2001 From: Tolya Korniltsev Date: Fri, 3 Jan 2025 13:21:32 +0700 Subject: [PATCH] chore(otlp): add integration tests with fixtures (#3808) --- pkg/ingester/otlp/convert.go | 1 - pkg/ingester/otlp/ingest_handler_test.go | 78 +- ...fferentServiceNames_service_a_profile.json | 32 + ...fferentServiceNames_service_b_profile.json | 32 + ...DifferentServiceNames_unknown_profile.json | 32 + .../otlp/testdata/TestSampleAttributes.json | 53 + .../testdata/TestSymbolizedFunctionNames.json | 32 + pkg/og/convert/pprof/bench/utils.go | 2 - pkg/og/convert/pprof/strprofile/profile.go | 339 + pkg/test/integration/helper.go | 19 +- pkg/test/integration/ingest_otlp_test.go | 121 + pkg/test/integration/testdata/.gitignore | 1 + ...l-ebpf-profiler-pyrosymbolized-docker.json | 5144 ++++ ...-ebpf-profiler-pyrosymbolized-unknown.json | 8713 +++++++ .../otel-ebpf-profiler-pyrosymbolized.json | 19991 ++++++++++++++++ .../otel-ebpf-profiler-pyrosymbolized.pb.bin | Bin 0 -> 95526 bytes .../otel-ebpf-profiler-unsymbolized.json | 19079 +++++++++++++++ .../otel-ebpf-profiler-unsymbolized.pb.bin | Bin 0 -> 192471 bytes 18 files changed, 53624 insertions(+), 45 deletions(-) create mode 100644 pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_a_profile.json create mode 100644 pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_b_profile.json create mode 100644 pkg/ingester/otlp/testdata/TestDifferentServiceNames_unknown_profile.json create mode 100644 pkg/ingester/otlp/testdata/TestSampleAttributes.json create mode 100644 pkg/ingester/otlp/testdata/TestSymbolizedFunctionNames.json create mode 100644 pkg/og/convert/pprof/strprofile/profile.go create mode 100644 pkg/test/integration/ingest_otlp_test.go create mode 100644 pkg/test/integration/testdata/.gitignore create mode 100644 pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-docker.json create mode 100644 pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-unknown.json create mode 100644 pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized.json create mode 100644 pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized.pb.bin create mode 100644 pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.json create mode 100644 pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.pb.bin diff --git a/pkg/ingester/otlp/convert.go b/pkg/ingester/otlp/convert.go index 0a23adb9ca..47e3203d4d 100644 --- a/pkg/ingester/otlp/convert.go +++ b/pkg/ingester/otlp/convert.go @@ -244,7 +244,6 @@ func (p *profileBuilder) convertMappingBack(om *otelProfile.Mapping) uint64 { buildID := "" for _, attributeIndex := range om.AttributeIndices { attr := p.src.AttributeTable[attributeIndex] - fmt.Printf("%s %s\n", attr.Key, attr.Value.GetStringValue()) if attr.Key == "process.executable.build_id.gnu" { buildID = attr.Value.GetStringValue() } diff --git a/pkg/ingester/otlp/ingest_handler_test.go b/pkg/ingester/otlp/ingest_handler_test.go index 4d8943ddff..fef5e3b49d 100644 --- a/pkg/ingester/otlp/ingest_handler_test.go +++ b/pkg/ingester/otlp/ingest_handler_test.go @@ -2,10 +2,11 @@ package otlp import ( "context" - "fmt" - "strings" + "os" "testing" + phlaremodel "github.com/grafana/pyroscope/pkg/model" + "github.com/grafana/pyroscope/pkg/distributor/model" "github.com/prometheus/prometheus/util/testutil" @@ -14,7 +15,7 @@ import ( v1experimental2 "github.com/grafana/pyroscope/api/otlp/collector/profiles/v1development" v1experimental "github.com/grafana/pyroscope/api/otlp/profiles/v1development" - "github.com/grafana/pyroscope/pkg/og/convert/pprof/bench" + "github.com/grafana/pyroscope/pkg/og/convert/pprof/strprofile" "github.com/grafana/pyroscope/pkg/test/mocks/mockotlp" "github.com/stretchr/testify/assert" @@ -160,6 +161,12 @@ func TestAppendAttributesUnique(t *testing.T) { } } +func readJSONFile(t *testing.T, filename string) string { + data, err := os.ReadFile(filename) + require.NoError(t, err) + return string(data) +} + func TestSymbolizedFunctionNames(t *testing.T) { // Create two unsymbolized locations at 0x1e0 and 0x2f0 // Expect both of them to be present in the converted pprof @@ -191,6 +198,7 @@ func TestSymbolizedFunctionNames(t *testing.T) { LocationsLength: 2, Value: []int64{0xef}, }} + otlpb.profile.TimeNanos = 239 req := &v1experimental2.ExportProfilesServiceRequest{ ResourceProfiles: []*v1experimental.ResourceProfiles{{ ScopeProfiles: []*v1experimental.ScopeProfiles{{ @@ -201,17 +209,15 @@ func TestSymbolizedFunctionNames(t *testing.T) { h := NewOTLPIngestHandler(svc, logger, false) _, err := h.Export(context.Background(), req) assert.NoError(t, err) - require.Equal(t, 1, len(profiles)) + assert.Equal(t, 1, len(profiles)) gp := profiles[0].Series[0].Samples[0].Profile.Profile - ss := bench.StackCollapseProtoWithOptions(gp, bench.StackCollapseOptions{ - ValueIdx: 0, - Scale: 1, - WithLabels: true, - }) - require.Equal(t, 1, len(ss)) - require.Equal(t, " ||| file1.so 0x2f0;file1.so 0x1e0 239", ss[0]) + jsonStr, err := strprofile.Stringify(gp, strprofile.Options{}) + assert.NoError(t, err) + expectedJSON := readJSONFile(t, "testdata/TestSymbolizedFunctionNames.json") + assert.JSONEq(t, expectedJSON, jsonStr) + } func TestSampleAttributes(t *testing.T) { @@ -276,6 +282,7 @@ func TestSampleAttributes(t *testing.T) { }, }, }} + otlpb.profile.TimeNanos = 239 req := &v1experimental2.ExportProfilesServiceRequest{ ResourceProfiles: []*v1experimental.ResourceProfiles{{ ScopeProfiles: []*v1experimental.ScopeProfiles{{ @@ -299,15 +306,11 @@ func TestSampleAttributes(t *testing.T) { gp := profiles[0].Series[0].Samples[0].Profile.Profile - ss := bench.StackCollapseProtoWithOptions(gp, bench.StackCollapseOptions{ - ValueIdx: 0, - Scale: 1, - WithLabels: true, - }) - fmt.Printf("%s \n", strings.Join(ss, "\n")) - require.Equal(t, 2, len(ss)) - assert.Equal(t, "(process = chrome) ||| chrome.so 0x4e;chrome.so 0x3e 61423", ss[0]) - assert.Equal(t, "(process = firefox) ||| firefox.so 0x2e;firefox.so 0x1e 239", ss[1]) + jsonStr, err := strprofile.Stringify(gp, strprofile.Options{}) + assert.NoError(t, err) + expectedJSON := readJSONFile(t, "testdata/TestSampleAttributes.json") + assert.Equal(t, expectedJSON, jsonStr) + } func TestDifferentServiceNames(t *testing.T) { @@ -438,7 +441,7 @@ func TestDifferentServiceNames(t *testing.T) { UnitStrindex: otlpb.addstr("nanoseconds"), } otlpb.profile.Period = 10000000 // 10ms - + otlpb.profile.TimeNanos = 239 req := &v1experimental2.ExportProfilesServiceRequest{ ResourceProfiles: []*v1experimental.ResourceProfiles{{ ScopeProfiles: []*v1experimental.ScopeProfiles{{ @@ -453,22 +456,18 @@ func TestDifferentServiceNames(t *testing.T) { require.Equal(t, 3, len(profiles)) - expectedStacks := map[string]string{ - "service-a": " ||| serviceA_func2;serviceA_func1 1000000000", - "service-b": " ||| serviceB_func2;serviceB_func1 2000000000", - "unknown": " ||| serviceC_func3;serviceC_func3 7000000000", + expectedProfiles := map[string]string{ + "{__name__=\"process_cpu\", __delta__=\"false\", __otel__=\"true\", pyroscope_spy=\"unknown\", service_name=\"service-a\"}": "testdata/TestDifferentServiceNames_service_a_profile.json", + "{__name__=\"process_cpu\", __delta__=\"false\", __otel__=\"true\", pyroscope_spy=\"unknown\", service_name=\"service-b\"}": "testdata/TestDifferentServiceNames_service_b_profile.json", + "{__name__=\"process_cpu\", __delta__=\"false\", __otel__=\"true\", pyroscope_spy=\"unknown\", service_name=\"unknown\"}": "testdata/TestDifferentServiceNames_unknown_profile.json", } for _, p := range profiles { require.Equal(t, 1, len(p.Series)) - seriesLabelsMap := make(map[string]string) - for _, label := range p.Series[0].Labels { - seriesLabelsMap[label.Name] = label.Value - } - - serviceName := seriesLabelsMap["service_name"] - require.Contains(t, []string{"service-a", "service-b", "unknown"}, serviceName) - assert.NotContains(t, seriesLabelsMap, "service.name") + series := phlaremodel.Labels(p.Series[0].Labels).ToPrometheusLabels().String() + assert.Contains(t, expectedProfiles, series) + expectedJsonPath := expectedProfiles[series] + expectedJson := readJSONFile(t, expectedJsonPath) gp := p.Series[0].Samples[0].Profile.Profile @@ -481,14 +480,11 @@ func TestDifferentServiceNames(t *testing.T) { assert.Equal(t, "nanoseconds", gp.StringTable[gp.PeriodType.Unit]) assert.Equal(t, int64(10000000), gp.Period) - ss := bench.StackCollapseProtoWithOptions(gp, bench.StackCollapseOptions{ - ValueIdx: 0, - Scale: 1, - WithLabels: true, - }) - require.Equal(t, 1, len(ss)) - assert.Equal(t, expectedStacks[serviceName], ss[0]) - assert.NotContains(t, ss[0], "service.name") + jsonStr, err := strprofile.Stringify(gp, strprofile.Options{}) + assert.NoError(t, err) + assert.JSONEq(t, expectedJson, jsonStr) + assert.NotContains(t, jsonStr, "service.name") + } } diff --git a/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_a_profile.json b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_a_profile.json new file mode 100644 index 0000000000..df2c46afa6 --- /dev/null +++ b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_a_profile.json @@ -0,0 +1,32 @@ +{ + "sample_types": [ + { + "type": "cpu", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x1100", + "lines": [ + "serviceA_func1[serviceA_func1]@service_a.go:10" + ], + "mapping": "0x1000-0x2000@0x0 service-a.so()" + }, + { + "address": "0x1200", + "lines": [ + "serviceA_func2[serviceA_func2]@service_a.go:20" + ], + "mapping": "0x1000-0x2000@0x0 service-a.so()" + } + ], + "values": "1000000000" + } + ], + "time_nanos": "239", + "duration_nanos": "10000000000", + "period": "10000000" +} \ No newline at end of file diff --git a/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_b_profile.json b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_b_profile.json new file mode 100644 index 0000000000..514a2647ee --- /dev/null +++ b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_service_b_profile.json @@ -0,0 +1,32 @@ +{ + "sample_types": [ + { + "type": "cpu", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x2100", + "lines": [ + "serviceB_func1[serviceB_func1]@service_b.go:30" + ], + "mapping": "0x2000-0x3000@0x0 service-b.so()" + }, + { + "address": "0x2200", + "lines": [ + "serviceB_func2[serviceB_func2]@service_b.go:40" + ], + "mapping": "0x2000-0x3000@0x0 service-b.so()" + } + ], + "values": "2000000000" + } + ], + "time_nanos": "239", + "duration_nanos": "10000000000", + "period": "10000000" +} \ No newline at end of file diff --git a/pkg/ingester/otlp/testdata/TestDifferentServiceNames_unknown_profile.json b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_unknown_profile.json new file mode 100644 index 0000000000..cada8fe8bc --- /dev/null +++ b/pkg/ingester/otlp/testdata/TestDifferentServiceNames_unknown_profile.json @@ -0,0 +1,32 @@ +{ + "sample_types": [ + { + "type": "cpu", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0xef0", + "lines": [ + "serviceC_func3[serviceC_func3]@service_c.go:50" + ], + "mapping": "0x4000-0x5000@0x0 service-c.so()" + }, + { + "address": "0xef0", + "lines": [ + "serviceC_func3[serviceC_func3]@service_c.go:50" + ], + "mapping": "0x4000-0x5000@0x0 service-c.so()" + } + ], + "values": "7000000000" + } + ], + "time_nanos": "239", + "duration_nanos": "10000000000", + "period": "10000000" +} \ No newline at end of file diff --git a/pkg/ingester/otlp/testdata/TestSampleAttributes.json b/pkg/ingester/otlp/testdata/TestSampleAttributes.json new file mode 100644 index 0000000000..cc6eb49297 --- /dev/null +++ b/pkg/ingester/otlp/testdata/TestSampleAttributes.json @@ -0,0 +1,53 @@ +{ + "sample_types": [ + { + "type": "samples", + "unit": "ms" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x1e", + "lines": [ + "firefox.so 0x1e[]@:0" + ], + "mapping": "0x1000-0x1000@0x0 firefox.so()" + }, + { + "address": "0x2e", + "lines": [ + "firefox.so 0x2e[]@:0" + ], + "mapping": "0x1000-0x1000@0x0 firefox.so()" + } + ], + "values": "239", + "labels": "process=firefox" + }, + { + "locations": [ + { + "address": "0x3e", + "lines": [ + "chrome.so 0x3e[]@:0" + ], + "mapping": "0x1000-0x1000@0x0 chrome.so()" + }, + { + "address": "0x4e", + "lines": [ + "chrome.so 0x4e[]@:0" + ], + "mapping": "0x1000-0x1000@0x0 chrome.so()" + } + ], + "values": "61423", + "labels": "process=chrome" + } + ], + "time_nanos": "239", + "duration_nanos": "10000000000", + "period": "0" +} \ No newline at end of file diff --git a/pkg/ingester/otlp/testdata/TestSymbolizedFunctionNames.json b/pkg/ingester/otlp/testdata/TestSymbolizedFunctionNames.json new file mode 100644 index 0000000000..979b52da62 --- /dev/null +++ b/pkg/ingester/otlp/testdata/TestSymbolizedFunctionNames.json @@ -0,0 +1,32 @@ +{ + "sample_types": [ + { + "type": "samples", + "unit": "ms" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x1e0", + "lines": [ + "file1.so 0x1e0[]@:0" + ], + "mapping": "0x1000-0x1000@0x0 file1.so()" + }, + { + "address": "0x2f0", + "lines": [ + "file1.so 0x2f0[]@:0" + ], + "mapping": "0x1000-0x1000@0x0 file1.so()" + } + ], + "values": "239" + } + ], + "time_nanos": "239", + "duration_nanos": "10000000000", + "period": "0" +} \ No newline at end of file diff --git a/pkg/og/convert/pprof/bench/utils.go b/pkg/og/convert/pprof/bench/utils.go index c206f91d1f..2fd5a46352 100644 --- a/pkg/og/convert/pprof/bench/utils.go +++ b/pkg/og/convert/pprof/bench/utils.go @@ -22,7 +22,6 @@ func ReadGzipFile(f string) ([]byte, error) { return nil, err } return io.ReadAll(g) - } func WriteGzipFile(f string, data []byte) error { @@ -113,7 +112,6 @@ func StackCollapseProtoWithOptions(p *profilev1.Profile, opt StackCollapseOption continue } unique = append(unique, s) - } res := []string{} diff --git a/pkg/og/convert/pprof/strprofile/profile.go b/pkg/og/convert/pprof/strprofile/profile.go new file mode 100644 index 0000000000..ebe2403758 --- /dev/null +++ b/pkg/og/convert/pprof/strprofile/profile.go @@ -0,0 +1,339 @@ +package strprofile + +import ( + "encoding/json" + "fmt" + "sort" + "strconv" + "strings" + + profilev1 "github.com/grafana/pyroscope/api/gen/proto/go/google/v1" +) + +type Options struct { + NoPrettyPrint bool + NoDuration bool + NoTime bool + NoCompact bool + IncludeIDs bool +} + +type Location struct { + ID uint64 `json:"id,omitempty"` + Address string `json:"address,omitempty"` + Lines []Line `json:"lines,omitempty"` + Mapping *Mapping `json:"mapping,omitempty"` +} + +type Line struct { + Function *Function `json:"function"` + Line int64 `json:"line,omitempty"` +} + +type Function struct { + ID uint64 `json:"id,omitempty"` + Name string `json:"name"` + SystemName string `json:"system_name,omitempty"` + Filename string `json:"filename,omitempty"` + StartLine int64 `json:"start_line,omitempty"` +} + +type Mapping struct { + ID uint64 `json:"id,omitempty"` + Start string `json:"start"` + Limit string `json:"limit"` + Offset string `json:"offset,omitempty"` + Filename string `json:"filename,omitempty"` + BuildID string `json:"build_id,omitempty"` +} + +type SampleType struct { + Type string `json:"type"` + Unit string `json:"unit"` +} + +type Label struct { + Key string `json:"key"` + Value string `json:"value"` +} + +type Sample struct { + Locations []Location `json:"locations,omitempty"` + Values []int64 `json:"values"` + Labels []Label `json:"labels,omitempty"` +} + +type Profile struct { + SampleTypes []SampleType `json:"sample_types"` + Samples []Sample `json:"samples"` + TimeNanos string `json:"time_nanos,omitempty"` + DurationNanos string `json:"duration_nanos,omitempty"` + Period string `json:"period,omitempty"` +} + +type CompactLocation struct { + ID uint64 `json:"id,omitempty"` + Address string `json:"address,omitempty"` + Lines []string `json:"lines,omitempty"` + Mapping string `json:"mapping,omitempty"` +} + +type CompactSample struct { + Locations []CompactLocation `json:"locations,omitempty"` + Values string `json:"values"` + Labels string `json:"labels,omitempty"` +} + +type CompactProfile struct { + SampleTypes []SampleType `json:"sample_types"` + Samples []CompactSample `json:"samples"` + TimeNanos string `json:"time_nanos,omitempty"` + DurationNanos string `json:"duration_nanos,omitempty"` + Period string `json:"period,omitempty"` +} + +func Stringify(p *profilev1.Profile, opts Options) (string, error) { + var err error + var sp interface{} + + if !opts.NoCompact { + sp = ToCompactProfile(p, opts) + } else { + sp = ToDetailedProfile(p, opts) + } + + var jsonData []byte + if !opts.NoPrettyPrint { + jsonData, err = json.MarshalIndent(sp, "", " ") + } else { + jsonData, err = json.Marshal(sp) + } + if err != nil { + return "", err + } + + return string(jsonData), nil +} + +func ToDetailedProfile(p *profilev1.Profile, opts Options) Profile { + sp := Profile{ + Period: fmt.Sprintf("%d", p.Period), + } + if !opts.NoTime { + sp.TimeNanos = fmt.Sprintf("%d", p.TimeNanos) + } + if !opts.NoDuration { + sp.DurationNanos = fmt.Sprintf("%d", p.DurationNanos) + } + + for _, st := range p.SampleType { + sp.SampleTypes = append(sp.SampleTypes, SampleType{ + Type: p.StringTable[st.Type], + Unit: p.StringTable[st.Unit], + }) + } + + // Create maps for quick lookups + functionMap := make(map[uint64]*profilev1.Function) + for _, f := range p.Function { + functionMap[f.Id] = f + } + + mappingMap := make(map[uint64]*profilev1.Mapping) + for _, m := range p.Mapping { + mappingMap[m.Id] = m + } + + for _, sample := range p.Sample { + ss := Sample{ + Values: sample.Value, + } + + for _, locID := range sample.LocationId { + loc := findLocation(p.Location, locID) + if loc == nil { + continue + } + + sLoc := Location{ + Address: fmt.Sprintf("0x%x", loc.Address), + } + if opts.IncludeIDs { + sLoc.ID = loc.Id + } + + if loc.MappingId != 0 { + if mapping := mappingMap[loc.MappingId]; mapping != nil { + m := &Mapping{ + Start: fmt.Sprintf("0x%x", mapping.MemoryStart), + Limit: fmt.Sprintf("0x%x", mapping.MemoryLimit), + Offset: fmt.Sprintf("0x%x", mapping.FileOffset), + Filename: p.StringTable[mapping.Filename], + BuildID: p.StringTable[mapping.BuildId], + } + if opts.IncludeIDs { + m.ID = mapping.Id + } + sLoc.Mapping = m + } + } + + for _, line := range loc.Line { + if fn := functionMap[line.FunctionId]; fn != nil { + f := &Function{ + Name: p.StringTable[fn.Name], + SystemName: p.StringTable[fn.SystemName], + Filename: p.StringTable[fn.Filename], + StartLine: fn.StartLine, + } + if opts.IncludeIDs { + f.ID = fn.Id + } + sLine := Line{ + Function: f, + Line: line.Line, + } + sLoc.Lines = append(sLoc.Lines, sLine) + } + } + + ss.Locations = append(ss.Locations, sLoc) + } + + if len(sample.Label) > 0 { + ss.Labels = make([]Label, 0, len(sample.Label)) + for _, label := range sample.Label { + key := p.StringTable[label.Key] + var value string + if label.Str != 0 { + value = p.StringTable[label.Str] + } else { + value = strconv.FormatInt(label.Num, 10) + } + ss.Labels = append(ss.Labels, Label{ + Key: key, + Value: value, + }) + } + } + + sp.Samples = append(sp.Samples, ss) + } + return sp +} + +func ToCompactProfile(p *profilev1.Profile, opts Options) CompactProfile { + sp := CompactProfile{ + Period: fmt.Sprintf("%d", p.Period), + } + if !opts.NoTime { + sp.TimeNanos = fmt.Sprintf("%d", p.TimeNanos) + } + if !opts.NoDuration { + sp.DurationNanos = fmt.Sprintf("%d", p.DurationNanos) + } + + for _, st := range p.SampleType { + sp.SampleTypes = append(sp.SampleTypes, SampleType{ + Type: p.StringTable[st.Type], + Unit: p.StringTable[st.Unit], + }) + } + + functionMap := make(map[uint64]*profilev1.Function) + for _, f := range p.Function { + functionMap[f.Id] = f + } + + mappingMap := make(map[uint64]*profilev1.Mapping) + for _, m := range p.Mapping { + mappingMap[m.Id] = m + } + + for _, sample := range p.Sample { + values := make([]string, len(sample.Value)) + for i, v := range sample.Value { + values[i] = strconv.FormatInt(v, 10) + } + + ss := CompactSample{ + Values: strings.Join(values, ","), + } + + for _, locID := range sample.LocationId { + loc := findLocation(p.Location, locID) + if loc == nil { + continue + } + + sLoc := CompactLocation{ + Address: fmt.Sprintf("0x%x", loc.Address), + } + if opts.IncludeIDs { + sLoc.ID = loc.Id + } + + if loc.MappingId != 0 { + if mapping := mappingMap[loc.MappingId]; mapping != nil { + idStr := "" + if opts.IncludeIDs { + idStr = fmt.Sprintf("[id=%d]", mapping.Id) + } + sLoc.Mapping = fmt.Sprintf("0x%x-0x%x@0x%x %s(%s)%s", + mapping.MemoryStart, + mapping.MemoryLimit, + mapping.FileOffset, + p.StringTable[mapping.Filename], + p.StringTable[mapping.BuildId], + idStr) + } + } + + for _, line := range loc.Line { + if fn := functionMap[line.FunctionId]; fn != nil { + idStr := "" + if opts.IncludeIDs { + idStr = fmt.Sprintf("[id=%d]", fn.Id) + } + lineStr := fmt.Sprintf("%s[%s]@%s:%d%s", + p.StringTable[fn.Name], + p.StringTable[fn.SystemName], + p.StringTable[fn.Filename], + line.Line, + idStr) + sLoc.Lines = append(sLoc.Lines, lineStr) + } + } + + ss.Locations = append(ss.Locations, sLoc) + } + + if len(sample.Label) > 0 { + labels := make([]string, 0, len(sample.Label)) + for _, label := range sample.Label { + key := p.StringTable[label.Key] + var value string + if label.Str != 0 { + value = p.StringTable[label.Str] + } else { + value = strconv.FormatInt(label.Num, 10) + } + labels = append(labels, fmt.Sprintf("%s=%s", key, value)) + } + sort.Strings(labels) + ss.Labels = strings.Join(labels, ",") + } + + sp.Samples = append(sp.Samples, ss) + } + return sp +} + +func findLocation(locations []*profilev1.Location, id uint64) *profilev1.Location { + for _, loc := range locations { + if loc.Id == id { + return loc + } + } + return nil +} diff --git a/pkg/test/integration/helper.go b/pkg/test/integration/helper.go index 7771f936e5..7d572efbaf 100644 --- a/pkg/test/integration/helper.go +++ b/pkg/test/integration/helper.go @@ -24,12 +24,16 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + "google.golang.org/grpc" + "google.golang.org/grpc/credentials/insecure" + profilev1 "github.com/grafana/pyroscope/api/gen/proto/go/google/v1" pushv1 "github.com/grafana/pyroscope/api/gen/proto/go/push/v1" "github.com/grafana/pyroscope/api/gen/proto/go/push/v1/pushv1connect" querierv1 "github.com/grafana/pyroscope/api/gen/proto/go/querier/v1" "github.com/grafana/pyroscope/api/gen/proto/go/querier/v1/querierv1connect" typesv1 "github.com/grafana/pyroscope/api/gen/proto/go/types/v1" + profilesv1 "github.com/grafana/pyroscope/api/otlp/collector/profiles/v1development" connectapi "github.com/grafana/pyroscope/pkg/api/connect" "github.com/grafana/pyroscope/pkg/cfg" "github.com/grafana/pyroscope/pkg/og/structs/flamebearer" @@ -393,7 +397,10 @@ func (b *RequestBuilder) SelectMergeProfile(metric string, query map[string]stri cnt++ } selector.WriteString("{") - add("service_name", b.AppName) + if query["service_name"] == "" { + add("service_name", b.AppName) + } + for k, v := range query { add(k, v) } @@ -408,3 +415,13 @@ func (b *RequestBuilder) SelectMergeProfile(metric string, query map[string]stri require.NoError(b.t, err) return resp } + +func (b *RequestBuilder) OtelPushClient() profilesv1.ProfilesServiceClient { + grpcAddr := strings.TrimPrefix(b.url, "http://") + + conn, err := grpc.NewClient(grpcAddr, + grpc.WithTransportCredentials(insecure.NewCredentials())) + require.NoError(b.t, err) + + return profilesv1.NewProfilesServiceClient(conn) +} diff --git a/pkg/test/integration/ingest_otlp_test.go b/pkg/test/integration/ingest_otlp_test.go new file mode 100644 index 0000000000..1e15615334 --- /dev/null +++ b/pkg/test/integration/ingest_otlp_test.go @@ -0,0 +1,121 @@ +package integration + +import ( + "context" + "os" + "strings" + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + profilesv1 "github.com/grafana/pyroscope/api/otlp/collector/profiles/v1development" + commonv1 "github.com/grafana/pyroscope/api/otlp/common/v1" + "github.com/grafana/pyroscope/pkg/og/convert/pprof/strprofile" +) + +type otlpTestData struct { + name string + profilePath string + expectedMetrics []expectedProfile +} + +type expectedProfile struct { + metricName string + query map[string]string + expectedJsonPath string +} + +var otlpTestDatas = []otlpTestData{ + { + name: "unsymbolized profile from otel-ebpf-profiler", + profilePath: "testdata/otel-ebpf-profiler-unsymbolized.pb.bin", + expectedMetrics: []expectedProfile{ + { + "process_cpu:cpu:nanoseconds:cpu:nanoseconds", + map[string]string{"service_name": "unknown"}, + "testdata/otel-ebpf-profiler-unsymbolized.json", + }, + }, + }, + { + name: "symbolized (with some help from pyroscope-ebpf profiler) profile from otel-ebpf-profiler", + profilePath: "testdata/otel-ebpf-profiler-pyrosymbolized.pb.bin", + expectedMetrics: []expectedProfile{ + { + "process_cpu:cpu:nanoseconds:cpu:nanoseconds", + map[string]string{"service_name": "unknown"}, + "testdata/otel-ebpf-profiler-pyrosymbolized-unknown.json", + }, + { + "process_cpu:cpu:nanoseconds:cpu:nanoseconds", + map[string]string{"service_name": "otel-ebpf-docker//loving_robinson"}, + "testdata/otel-ebpf-profiler-pyrosymbolized-docker.json", + }, + }, + }, +} + +func TestIngestOTLP(t *testing.T) { + p := new(PyroscopeTest) + p.Start(t) + defer p.Stop(t) + + for _, td := range otlpTestDatas { + t.Run(td.name, func(t *testing.T) { + rb := p.NewRequestBuilder(t) + runNo := p.TempAppName() + + profileBytes, err := os.ReadFile(td.profilePath) + require.NoError(t, err) + var profile = new(profilesv1.ExportProfilesServiceRequest) + err = profile.Unmarshal(profileBytes) + require.NoError(t, err) + + for _, rp := range profile.ResourceProfiles { + for _, sp := range rp.ScopeProfiles { + sp.Scope.Attributes = append(sp.Scope.Attributes, commonv1.KeyValue{ + Key: "test_run_no", Value: commonv1.AnyValue{Value: &commonv1.AnyValue_StringValue{StringValue: runNo}}, + }) + } + } + + client := rb.OtelPushClient() + _, err = client.Export(context.Background(), profile) + require.NoError(t, err) + + for _, metric := range td.expectedMetrics { + + expectedBytes, err := os.ReadFile(metric.expectedJsonPath) + assert.NoError(t, err) + + query := make(map[string]string) + for k, v := range metric.query { + query[k] = v + } + query["test_run_no"] = runNo + + resp := rb.SelectMergeProfile(metric.metricName, query) + + assert.NotEmpty(t, resp.Msg.Sample) + assert.NotEmpty(t, resp.Msg.Function) + assert.NotEmpty(t, resp.Msg.Mapping) + assert.NotEmpty(t, resp.Msg.Location) + + actualStr, err := strprofile.Stringify(resp.Msg, strprofile.Options{ + NoTime: true, + NoDuration: true, + }) + assert.NoError(t, err) + + pprofDumpFileName := strings.ReplaceAll(metric.expectedJsonPath, ".json", ".pprof.pb.bin") // for debugging + pprof, err := resp.Msg.MarshalVT() + assert.NoError(t, err) + err = os.WriteFile(pprofDumpFileName, pprof, 0644) + assert.NoError(t, err) + + assert.Equal(t, string(expectedBytes), actualStr) + } + }) + } +} diff --git a/pkg/test/integration/testdata/.gitignore b/pkg/test/integration/testdata/.gitignore new file mode 100644 index 0000000000..5463c12e3e --- /dev/null +++ b/pkg/test/integration/testdata/.gitignore @@ -0,0 +1 @@ +*.pprof.pb.bin \ No newline at end of file diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-docker.json b/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-docker.json new file mode 100644 index 0000000000..3628597cbf --- /dev/null +++ b/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-docker.json @@ -0,0 +1,5144 @@ +{ + "sample_types": [ + { + "type": "cpu", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x86b901", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x85dd38", + "lines": [ + "_copy_to_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae8b", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b96b", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb3ae73", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b9b8", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b917", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x85dd41", + "lines": [ + "_copy_to_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae8b", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b8e4", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b8de", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b933", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b9d0", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x85dd49", + "lines": [ + "_copy_to_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae8b", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b8f4", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b977", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86ba05", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b962", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86bb1b", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86bb61", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b8a6", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x85dd4f", + "lines": [ + "_copy_to_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae8b", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b909", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86bb5d", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b9eb", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b8d7", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86ba08", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b8b8", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x85dda7", + "lines": [ + "_copy_to_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b8af", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b841", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x85dd47", + "lines": [ + "_copy_to_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae8b", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b8cc", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b9d9", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86ba17", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x85dcb0", + "lines": [ + "_copy_to_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1504103", + "lines": [ + "srso_alias_safe_ret[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b959", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b97a", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b9b3", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb3ae8e", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb3ae93", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86bb53", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b9bd", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b8c8", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b986", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b88b", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b921", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b956", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x86b9a7", + "lines": [ + "chacha_permute[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86bb50", + "lines": [ + "chacha_block_generic[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3ae70", + "lines": [ + "get_random_bytes_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3c9f8", + "lines": [ + "urandom_read_iter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e4d8e", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5ca2", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf735f", + "lines": [ + "read[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x405275", + "lines": [ + "cat 0x405275[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x402462", + "lines": [ + "cat 0x402462[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + }, + { + "address": "0x2083f", + "lines": [ + "__libc_start_main[]@/lib/x86_64-linux-gnu/libc-2.23.so:0" + ], + "mapping": "0x0-0x1c0000@0x7cf4f83a2000 libc-2.23.so(30773be8cf5bfed9d910c8473dd44eaab2e705ab)" + }, + { + "address": "0x4025d8", + "lines": [ + "cat 0x4025d8[]@:0" + ], + "mapping": "0x400000-0x40c000@0x0 cat(2efc66e3f4cae30a989532b37b1d5dc81026be68)" + } + ], + "values": "50000000" + } + ], + "period": "1000000000" +} \ No newline at end of file diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-unknown.json b/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-unknown.json new file mode 100644 index 0000000000..09fbe6f449 --- /dev/null +++ b/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized-unknown.json @@ -0,0 +1,8713 @@ +{ + "sample_types": [ + { + "type": "cpu", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x0", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@Merge.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.FlowValueWrapperInternalKt.emitInternal(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@FlowValueWrapperInternal.kt:39" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x181", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@SharedFlow.kt:392" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)[]@SharedFlow.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x61", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)[]@CoroutineScheduler.kt:1034" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)[]@CoroutineScheduler.kt:999" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:758" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.pollGlobalQueues()[]@CoroutineScheduler.kt:1040" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)[]@CoroutineScheduler.kt:1034" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)[]@CoroutineScheduler.kt:999" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:758" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x35", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugCoroutineInfoImpl.updateState$kotlinx_coroutines_core(java.lang.String, kotlin.coroutines.Continuation, boolean)[]@DebugCoroutineInfoImpl.kt:89" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@DebugProbesImpl.kt:454" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@DebugProbesImpl.kt:428" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@DebugProbesImpl.kt:419" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@DebugProbesKt.java:21" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:28" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xe", + "lines": [ + "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.CombinedContext.get(kotlin.coroutines.CoroutineContext$Key)[]@CoroutineContextImpl.kt:120" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "kotlinx.coroutines.UndispatchedCoroutine kotlinx.coroutines.CoroutineContextKt.updateUndispatchedCompletion(kotlin.coroutines.Continuation, kotlin.coroutines.CoroutineContext, java.lang.Object)[]@CoroutineContext.kt:145" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x65", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:224" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt$countAll$1.invoke(java.lang.Object, java.lang.Object)[]@ThreadContext.kt:31" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)[]@CoroutineContextImpl.kt:131" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)[]@CoroutineContextImpl.kt:131" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt.threadContextElements(kotlin.coroutines.CoroutineContext)[]@ThreadContext.kt:55" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void kotlinx.coroutines.internal.DispatchedContinuation.\u003cinit\u003e(kotlinx.coroutines.CoroutineDispatcher, kotlin.coroutines.Continuation)[]@DispatchedContinuation.kt:24" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "kotlin.coroutines.Continuation kotlinx.coroutines.CoroutineDispatcher.interceptContinuation(kotlin.coroutines.Continuation)[]@CoroutineDispatcher.kt:155" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "kotlin.coroutines.Continuation kotlin.coroutines.jvm.internal.ContinuationImpl.intercepted()[]@ContinuationImpl.kt:112" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "kotlin.coroutines.Continuation kotlin.coroutines.intrinsics.IntrinsicsKt__IntrinsicsJvmKt.intercepted(kotlin.coroutines.Continuation)[]@IntrinsicsJvm.kt:182" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.joinSuspend(kotlin.coroutines.Continuation)[]@JobSupport.kt:1536" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.join(kotlin.coroutines.Continuation)[]@JobSupport.kt:546" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9f", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@Merge.kt:26" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.FlowValueWrapperInternalKt.emitInternal(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@FlowValueWrapperInternal.kt:39" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x181", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@SharedFlow.kt:392" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)[]@SharedFlow.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1", + "lines": [ + "kotlin.coroutines.jvm.internal.CoroutineStackFrame kotlinx.coroutines.debug.internal.DebugProbesImpl.realCaller(kotlin.coroutines.jvm.internal.CoroutineStackFrame)[]@DebugProbesImpl.kt:461" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x73", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateRunningState(kotlin.coroutines.jvm.internal.CoroutineStackFrame, java.lang.String)[]@DebugProbesImpl.kt:456" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.updateState(kotlin.coroutines.Continuation, java.lang.String)[]@DebugProbesImpl.kt:428" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl.probeCoroutineResumed$kotlinx_coroutines_core(kotlin.coroutines.Continuation)[]@DebugProbesImpl.kt:419" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlin.coroutines.jvm.internal.DebugProbesKt.probeCoroutineResumed(kotlin.coroutines.Continuation)[]@DebugProbesKt.java:21" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:28" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13d", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:102" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "int kotlinx.coroutines.internal.LockFreeLinkedListNode.tryCondAddNext(kotlinx.coroutines.internal.LockFreeLinkedListNode, kotlinx.coroutines.internal.LockFreeLinkedListNode, kotlinx.coroutines.internal.LockFreeLinkedListNode$CondAddOp)[]@LockFreeLinkedList.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "boolean kotlinx.coroutines.JobSupport.addLastAtomic(java.lang.Object, kotlinx.coroutines.NodeList, kotlinx.coroutines.JobNode)[]@JobSupport.kt:1530" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x137", + "lines": [ + "kotlinx.coroutines.DisposableHandle kotlinx.coroutines.JobSupport.invokeOnCompletion(boolean, boolean, kotlin.jvm.functions.Function1)[]@JobSupport.kt:495" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "kotlinx.coroutines.DisposableHandle kotlinx.coroutines.Job$DefaultImpls.invokeOnCompletion$default(kotlinx.coroutines.Job, boolean, boolean, kotlin.jvm.functions.Function1, int, java.lang.Object)[]@Job.kt:353" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "kotlinx.coroutines.ChildHandle kotlinx.coroutines.JobSupport.attachChild(kotlinx.coroutines.ChildJob)[]@JobSupport.kt:971" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "void kotlinx.coroutines.JobSupport.initParentJob(kotlinx.coroutines.Job)[]@JobSupport.kt:149" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.\u003cinit\u003e(kotlin.coroutines.CoroutineContext, boolean, boolean)[]@AbstractCoroutine.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void kotlinx.coroutines.StandaloneCoroutine.\u003cinit\u003e(kotlin.coroutines.CoroutineContext, boolean)[]@Builders.common.kt:188" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt__Builders_commonKt.launch(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2)[]@Builders.common.kt:51" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt.launch(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt__Builders_commonKt.launch$default(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@Builders.common.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt.launch$default(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@Merge.kt:29" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.FlowValueWrapperInternalKt.emitInternal(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@FlowValueWrapperInternal.kt:39" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x181", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@SharedFlow.kt:392" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)[]@SharedFlow.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "java.lang.Object com.intellij.diagnostic.PerformanceWatcherImpl$1$1.invokeSuspend(java.lang.Object)[]@PerformanceWatcherImpl.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.diagnostic.PerformanceWatcherImpl$1$1.invoke(com.intellij.diagnostic.PerformanceWatcherImpl$FreezeCheckerTask, kotlin.coroutines.Continuation)[]@PerformanceWatcherImpl.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.diagnostic.PerformanceWatcherImpl$1$1.invoke(java.lang.Object, java.lang.Object)[]@PerformanceWatcherImpl.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(java.lang.Object)[]@Merge.kt:213" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@Merge.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@Merge.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(java.lang.Object)[]@Merge.kt:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@Merge.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invoke(java.lang.Object, java.lang.Object)[]@Merge.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x67", + "lines": [ + "void kotlinx.coroutines.intrinsics.UndispatchedKt.startCoroutineUndispatched(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@Undispatched.kt:27" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void kotlinx.coroutines.CoroutineStart.invoke(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@CoroutineStart.kt:90" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.start(kotlinx.coroutines.CoroutineStart, java.lang.Object, kotlin.jvm.functions.Function2)[]@AbstractCoroutine.kt:123" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt__Builders_commonKt.launch(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2)[]@Builders.common.kt:52" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt.launch(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt__Builders_commonKt.launch$default(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@Builders.common.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt.launch$default(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@Merge.kt:29" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.FlowValueWrapperInternalKt.emitInternal(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@FlowValueWrapperInternal.kt:39" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x181", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl.collect$suspendImpl(kotlinx.coroutines.flow.SharedFlowImpl, kotlinx.coroutines.flow.FlowCollector, kotlin.coroutines.Continuation)[]@SharedFlow.kt:392" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.SharedFlowImpl$collect$1.invokeSuspend(java.lang.Object)[]@SharedFlow.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x12495b0", + "lines": [ + "_raw_spin_unlock_irqrestore[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15eef6", + "lines": [ + "try_to_wake_up[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15f46f", + "lines": [ + "wake_up_q[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225ea6", + "lines": [ + "futex_wake[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22291d", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x223159", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55d0", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b05e", + "lines": [ + "__GI___pthread_cond_signal[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xfb2099", + "lines": [ + "Unsafe_Unpark[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@Unsafe.java:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@LockSupport.java:181" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "boolean kotlinx.coroutines.scheduling.CoroutineScheduler.tryUnpark()[]@CoroutineScheduler.kt:488" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.signalCpuWork()[]@CoroutineScheduler.kt:463" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb3", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch(java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean)[]@CoroutineScheduler.kt:439" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch$default(kotlinx.coroutines.scheduling.CoroutineScheduler, java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean, int, java.lang.Object)[]@CoroutineScheduler.kt:416" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void kotlinx.coroutines.scheduling.SchedulerCoroutineDispatcher.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)[]@Dispatcher.kt:118" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x69", + "lines": [ + "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)[]@DispatchedTask.kt:157" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)[]@CancellableContinuationImpl.kt:470" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void kotlinx.coroutines.CancellableContinuationImpl.completeResume(java.lang.Object)[]@CancellableContinuationImpl.kt:586" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@BufferedChannel.kt:2924" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannelKt.access$tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)[]@BufferedChannel.kt:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel$BufferedChannelIterator.tryResumeHasNext(java.lang.Object)[]@BufferedChannel.kt:1713" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)[]@BufferedChannel.kt:643" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.updateCellSend(kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@BufferedChannel.kt:459" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "int kotlinx.coroutines.channels.BufferedChannel.access$updateCellSend(kotlinx.coroutines.channels.BufferedChannel, kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)[]@BufferedChannel.kt:37" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8b", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send$suspendImpl(kotlinx.coroutines.channels.BufferedChannel, java.lang.Object, kotlin.coroutines.Continuation)[]@BufferedChannel.kt:3117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send(java.lang.Object, kotlin.coroutines.Continuation)[]@BufferedChannel.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.channels.ChannelCoroutine.send(java.lang.Object, kotlin.coroutines.Continuation)[]@ChannelCoroutine.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.SendingCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@SendingCollector.kt:15" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(java.lang.Object)[]@Merge.kt:213" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)[]@Merge.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)[]@Merge.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(java.lang.Object)[]@Merge.kt:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@Merge.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invoke(java.lang.Object, java.lang.Object)[]@Merge.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x67", + "lines": [ + "void kotlinx.coroutines.intrinsics.UndispatchedKt.startCoroutineUndispatched(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@Undispatched.kt:27" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void kotlinx.coroutines.CoroutineStart.invoke(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)[]@CoroutineStart.kt:90" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.start(kotlinx.coroutines.CoroutineStart, java.lang.Object, kotlin.jvm.functions.Function2)[]@AbstractCoroutine.kt:123" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt__Builders_commonKt.launch(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2)[]@Builders.common.kt:52" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt.launch(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt__Builders_commonKt.launch$default(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@Builders.common.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt.launch$default(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2, int, java.lang.Object)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf8", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)[]@Merge.kt:29" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$emit$1.invokeSuspend(java.lang.Object)[]@Merge.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1", + "lines": [ + "void javax.swing.SwingUtilities.invokeLater(java.lang.Runnable)[]@SwingUtilities.java:1421" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "java.lang.Void javax.swing.Timer$1.run()[]@Timer.java:617" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.Timer$1.run()[]@Timer.java:615" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void javax.swing.Timer.post()[]@Timer.java:615" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.TimerQueue.run()[]@TimerQueue.java:177" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@Thread.java:1596" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@Thread.java:1583" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xc7", + "lines": [ + "void sun.java2d.pipe.DrawImage.blitSurfaceData(sun.java2d.SunGraphics2D, sun.java2d.pipe.Region, sun.java2d.SurfaceData, sun.java2d.SurfaceData, int, int, int, int, int, int, java.awt.Color)[]@DrawImage.java:993" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.renderImageCopy(sun.java2d.SunGraphics2D, java.awt.Image, java.awt.Color, int, int, int, int, int, int)[]@DrawImage.java:590" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color)[]@DrawImage.java:88" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "boolean sun.java2d.pipe.DrawImage.copyImage(sun.java2d.SunGraphics2D, java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@DrawImage.java:1064" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "boolean sun.java2d.SunGraphics2D.copyImage(java.awt.Image, int, int, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@SunGraphics2D.java:3338" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.Color, java.awt.image.ImageObserver)[]@SunGraphics2D.java:3381" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean sun.java2d.SunGraphics2D.drawImage(java.awt.Image, int, int, int, int, java.awt.image.ImageObserver)[]@SunGraphics2D.java:3323" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf0", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.doDraw(java.awt.image.BufferedImageOp, java.awt.Image, java.awt.Graphics2D, boolean, int, int, java.awt.Rectangle, int, int, java.awt.Graphics, int, int, java.awt.image.ImageObserver, double)[]@StartupUiUtil.kt:436" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.drawImage(java.awt.Graphics, java.awt.Image, int, int, int, int, java.awt.Rectangle, java.awt.image.BufferedImageOp, java.awt.image.ImageObserver)[]@StartupUiUtil.kt:287" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "void com.intellij.util.ui.StartupUiUtilKt.drawImage$default(java.awt.Graphics, java.awt.Image, int, int, int, int, java.awt.Rectangle, java.awt.image.BufferedImageOp, java.awt.image.ImageObserver, int, java.lang.Object)[]@StartupUiUtil.kt:260" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.ui.icons.ScaledResultIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@ScaledIconCache.kt:105" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12a", + "lines": [ + "void com.intellij.ui.icons.CachedImageIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@CachedImageIcon.kt:145" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa0", + "lines": [ + "void com.intellij.ui.LayeredIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@LayeredIcon.kt:287" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa5", + "lines": [ + "void com.intellij.ui.RowIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@RowIcon.kt:110" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.util.IconUtil.paintSelectionAwareIcon(javax.swing.Icon, javax.swing.JComponent, java.awt.Graphics, int, int, boolean)[]@IconUtil.kt:251" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.paintIcon(java.awt.Graphics, javax.swing.Icon, int)[]@SimpleColoredComponent.java:1089" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.doPaintIcon(java.awt.Graphics2D, javax.swing.Icon, int)[]@SimpleColoredComponent.java:801" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.doPaint(java.awt.Graphics2D)[]@SimpleColoredComponent.java:761" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.paintComponent(java.awt.Graphics)[]@SimpleColoredComponent.java:745" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c", + "lines": [ + "void javax.swing.CellRendererPane.paintComponent(java.awt.Graphics, java.awt.Component, java.awt.Container, int, int, int, int, boolean)[]@CellRendererPane.java:170" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43e", + "lines": [ + "void com.intellij.ui.tree.ui.DefaultTreeUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@DefaultTreeUI.java:372" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@ComponentUI.java:161" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@JComponent.java:855" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.ui.treeStructure.Tree.paintComponent(java.awt.Graphics)[]@Tree.java:381" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ui.treeStructure.Tree.paint(java.awt.Graphics)[]@Tree.java:312" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@JViewport.java:736" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@JBViewport.java:240" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@JBScrollPane.java:243" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@JBScrollPane.java:231" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@JComponent.java:5319" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1680" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1655" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1592" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@BufferStrategyPaintManager.java:281" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1352" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@JComponent.java:5267" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@JComponent.java:5077" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@RepaintManager.java:887" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@RepaintManager.java:870" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@RepaintManager.java:870" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@RepaintManager.java:843" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@RepaintManager.java:789" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@RepaintManager.java:1921" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)[]@propagation.kt:107" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@ContextRunnable.java:27" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18e", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:355" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:354" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7f", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@IdeEventQueue.kt:349" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1cc", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:387" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRBackendNative.renderRectangle(int, byte, short, short, short, short, int, int, int, int)[]@XRBackendNative.java:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void sun.java2d.xr.XRBackendNative.renderRectangle(int, byte, sun.java2d.xr.XRColor, int, int, int, int)[]@XRBackendNative.java:142" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe7", + "lines": [ + "void sun.java2d.xr.MaskTileManager.compositeSingleTile(sun.java2d.xr.XRSurfaceData, sun.java2d.xr.MaskTile, sun.java2d.xr.DirtyRegion, boolean, int, int, sun.java2d.xr.XRColor)[]@MaskTileManager.java:198" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc8", + "lines": [ + "void sun.java2d.xr.MaskTileManager.fillMask(sun.java2d.xr.XRSurfaceData)[]@MaskTileManager.java:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)[]@XRRenderer.java:275" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@XRRenderer.java:349" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void sun.java2d.pipe.ValidatePipe.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@ValidatePipe.java:160" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)[]@SunGraphics2D.java:2532" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2.lambda$paint$0(java.awt.Graphics2D, java.awt.Shape)[]@RectanglePainter2D.java:211" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)[]@PaintUtil.java:402" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xde", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2.paint(java.awt.Graphics2D, double, double, double, double, java.lang.Double, com.intellij.ui.paint.LinePainter2D$StrokeType, double, java.lang.Object)[]@RectanglePainter2D.java:210" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint2D(com.intellij.ui.paint.RectanglePainter2D, java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@RectanglePainter.java:28" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@RectanglePainter.java:21" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@RectanglePainter.java:18" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint(java.awt.Graphics2D, int, int, int, int, int, java.awt.Paint, java.awt.Paint)[]@RectanglePainter.java:37" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x96", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)[]@ScrollBarPainter.java:253" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Thumb.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@ScrollBarPainter.java:216" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe9", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(com.intellij.ui.components.ScrollBarPainter, java.awt.Graphics2D, javax.swing.JComponent, boolean)[]@DefaultScrollBarUI.kt:150" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paintThumb$intellij_platform_ide(java.awt.Graphics2D, javax.swing.JComponent, com.intellij.ui.components.DefaultScrollbarUiInstalledState)[]@DefaultScrollBarUI.kt:119" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2bd", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@DefaultScrollBarUI.kt:318" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@ComponentUI.java:161" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@JComponent.java:855" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@JBScrollPane.java:243" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@JBScrollPane.java:231" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@JComponent.java:5319" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1680" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1655" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1592" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@BufferStrategyPaintManager.java:281" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1352" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@JComponent.java:5267" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@JComponent.java:5077" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@RepaintManager.java:887" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@RepaintManager.java:870" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@RepaintManager.java:870" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@RepaintManager.java:843" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@RepaintManager.java:789" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@RepaintManager.java:1921" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)[]@propagation.kt:107" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@ContextRunnable.java:27" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18e", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:355" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:354" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7f", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@IdeEventQueue.kt:349" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1cc", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:387" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x7a2d3a", + "lines": [ + "RegisterMap::RegisterMap(JavaThread*, RegisterMap::UpdateMap, RegisterMap::ProcessFrames, RegisterMap::WalkContinuation)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x680364", + "lines": [ + "vframeStream::vframeStream(JavaThread*, bool, bool, bool)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9f701d", + "lines": [ + "JVM_GetStackAccessControlContext[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()[]@AccessController.java:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getContext()[]@AccessController.java:1006" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:744" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18e", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:355" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:354" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7f", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@IdeEventQueue.kt:349" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1ff", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:395" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.lang.String.equals(java.lang.Object)[]@String.java:1858" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x12", + "lines": [ + "sun.java2d.loops.FontInfo sun.java2d.SunGraphics2D.getFontInfo()[]@SunGraphics2D.java:833" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void sun.java2d.pipe.GlyphListPipe.drawChars(sun.java2d.SunGraphics2D, char[], int, int, int, int)[]@GlyphListPipe.java:85" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "void sun.java2d.SunGraphics2D.drawChars(char[], int, int, int, int)[]@SunGraphics2D.java:3042" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment.lambda$draw$0(float, float, int, int, java.awt.Graphics2D)[]@SimpleTextFragment.java:46" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.openapi.editor.impl.view.SimpleTextFragment$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.lambda$paintTextWithEffects$4(java.util.function.Consumer)[]@EditorPainter.java:659" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.util.ArrayList.forEach(java.util.function.Consumer)[]@ArrayList.java:1596" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paintTextWithEffects()[]@EditorPainter.java:659" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter$Session.paint()[]@EditorPainter.java:199" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorPainter.paint(java.awt.Graphics2D)[]@EditorPainter.java:86" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.editor.impl.view.EditorView.paint(java.awt.Graphics2D)[]@EditorView.java:283" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.lambda$paint$49(java.awt.Graphics2D)[]@EditorImpl.java:2107" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$3(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:258" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:272" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:258" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@ApplicationImpl.java:853" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorImpl.paint(java.awt.Graphics2D)[]@EditorImpl.java:2097" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paintComponent(java.awt.Graphics)[]@EditorComponentImpl.java:275" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorComponentImpl.paint(java.awt.Graphics)[]@EditorComponentImpl.java:154" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@JViewport.java:736" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@JBViewport.java:240" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@JBScrollPane.java:243" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@JBScrollPane.java:231" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@JComponent.java:5319" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1680" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1655" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1592" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@BufferStrategyPaintManager.java:281" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1352" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@JComponent.java:5267" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@JComponent.java:5077" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@RepaintManager.java:887" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@RepaintManager.java:870" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@RepaintManager.java:870" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@RepaintManager.java:843" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@RepaintManager.java:789" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@RepaintManager.java:1921" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)[]@propagation.kt:107" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@ContextRunnable.java:27" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18e", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:355" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:354" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7f", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@IdeEventQueue.kt:349" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1cc", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:387" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x4d8baf", + "lines": [ + "syscall.Syscall6[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + }, + { + "address": "0x4d5b2f", + "lines": [ + "syscall.openat[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + }, + { + "address": "0x503f0a", + "lines": [ + "os.open[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + }, + { + "address": "0x504af1", + "lines": [ + "os.openFileNolog.func1[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + }, + { + "address": "0x50490d", + "lines": [ + "os.openFileNolog[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + }, + { + "address": "0x502e9d", + "lines": [ + "os.OpenFile[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + }, + { + "address": "0x1b68e78", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/process.(*systemProcess).GetMappings[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + }, + { + "address": "0x1c00e10", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/processmanager.(*ProcessManager).SynchronizeProcess[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + }, + { + "address": "0x1c07f24", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).processPIDEvents[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + }, + { + "address": "0x1c07d27", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/tracer.(*Tracer).StartPIDEventProcessor.gowrap1[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + }, + { + "address": "0x4801c0", + "lines": [ + "runtime.goexit[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x474ecd", + "lines": [ + "runtime.mapaccess2_fast64[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + }, + { + "address": "0x1b518cb", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.(*Pdata).setProfile[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + }, + { + "address": "0x1b4fd87", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter/internal/pdata.Pdata.Generate[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + }, + { + "address": "0x1b6e464", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).reportOTLPProfile[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + }, + { + "address": "0x1b6e2be", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*OTLPReporter).Start.func1[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + }, + { + "address": "0x1b6f81b", + "lines": [ + "go.opentelemetry.io/ebpf-profiler/reporter.(*runLoop).Start.func1[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + }, + { + "address": "0x4801c0", + "lines": [ + "runtime.goexit[]@/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler:0" + ], + "mapping": "0x402000-0x1c7e000@0x0 ___go_build_go_opentelemetry_io_ebpf_profiler(63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeRead()[]@AbstractChannelHandlerContext.java:827" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.read()[]@AbstractChannelHandlerContext.java:814" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.read()[]@DefaultChannelPipeline.java:1004" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.Channel io.grpc.netty.shaded.io.netty.channel.AbstractChannel.read()[]@AbstractChannel.java:290" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.readIfIsAutoRead()[]@DefaultChannelPipeline.java:1422" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline$HeadContext.channelReadComplete(io.grpc.netty.shaded.io.netty.channel.ChannelHandlerContext)[]@DefaultChannelPipeline.java:1417" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete()[]@AbstractChannelHandlerContext.java:482" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext.invokeChannelReadComplete(io.grpc.netty.shaded.io.netty.channel.AbstractChannelHandlerContext)[]@AbstractChannelHandlerContext.java:463" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "io.grpc.netty.shaded.io.netty.channel.ChannelPipeline io.grpc.netty.shaded.io.netty.channel.DefaultChannelPipeline.fireChannelReadComplete()[]@DefaultChannelPipeline.java:925" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10e", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady()[]@AbstractEpollStreamChannel.java:820" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x87", + "lines": [ + "boolean io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.processReady(io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventArray, int)[]@EpollEventLoop.java:509" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x174", + "lines": [ + "void io.grpc.netty.shaded.io.netty.channel.epoll.EpollEventLoop.run()[]@EpollEventLoop.java:407" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run()[]@SingleThreadEventExecutor.java:997" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run()[]@ThreadExecutorMap.java:74" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run()[]@FastThreadLocalRunnable.java:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@Thread.java:1596" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@Thread.java:1583" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "thread_entry(JavaThread*, JavaThread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "JavaThread::thread_main_inner()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "Thread::call_run()[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "thread_native_entry(Thread*)[]@/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so:0" + ], + "mapping": "0x2a3000-0x1118000@0x7e27b7c00000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "start_thread[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "__GI___clone3[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1249eb4", + "lines": [ + "_raw_spin_unlock_irq[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x241291", + "lines": [ + "cgroup_rstat_flush[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4b8575", + "lines": [ + "flush_memcg_stats_dwork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12bee7", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12d1c5", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x137d71", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68aa6", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x87cc4b", + "lines": [ + "ioread32[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9ef74", + "lines": [ + "nvkm_timer_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xac40b", + "lines": [ + "nvkm_udevice_mthd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xae89", + "lines": [ + "nvkm_object_mthd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x950c", + "lines": [ + "nvkm_ioctl_mthd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b94", + "lines": [ + "nvkm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11dcbd", + "lines": [ + "nvkm_client_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x468", + "lines": [ + "nvif_object_mthd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a5", + "lines": [ + "nvif_device_time[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47d4", + "lines": [ + "nvif_timer_wait_test[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x160554", + "lines": [ + "base507c_ntfy_wait_begun[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15df99", + "lines": [ + "nv50_wndw_wait_armed[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14f7b9", + "lines": [ + "nv50_disp_atomic_commit_tail[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14feb1", + "lines": [ + "nv50_disp_atomic_commit_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12bee7", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12d1c5", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x137d71", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68aa6", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "100000000" + }, + { + "locations": [ + { + "address": "0x87cc4b", + "lines": [ + "ioread32[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x160567", + "lines": [ + "base507c_ntfy_wait_begun[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15df99", + "lines": [ + "nv50_wndw_wait_armed[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14f7b9", + "lines": [ + "nv50_disp_atomic_commit_tail[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14feb1", + "lines": [ + "nv50_disp_atomic_commit_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12bee7", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12d1c5", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x137d71", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68aa6", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "100000000" + }, + { + "locations": [ + { + "address": "0x461a35", + "lines": [ + "build_detached_freelist[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x461cad", + "lines": [ + "kmem_cache_free_bulk.part.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x461fd2", + "lines": [ + "kmem_cache_free_bulk[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1dba61", + "lines": [ + "kvfree_rcu_bulk[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1dfddf", + "lines": [ + "kfree_rcu_monitor[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12bee7", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12d1c5", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x137d71", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68aa6", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x12406e0", + "lines": [ + "__schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124809b", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1248152", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1247d14", + "lines": [ + "usleep_range_state[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16054b", + "lines": [ + "base507c_ntfy_wait_begun[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15df99", + "lines": [ + "nv50_wndw_wait_armed[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14f7b9", + "lines": [ + "nv50_disp_atomic_commit_tail[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14feb1", + "lines": [ + "nv50_disp_atomic_commit_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12bee7", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12d1c5", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x137d71", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68aa6", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xa45571", + "lines": [ + "acpi_ns_search_one_scope[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa45a4c", + "lines": [ + "acpi_ns_search_and_enter[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3dcba", + "lines": [ + "acpi_ns_lookup[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa4920e", + "lines": [ + "acpi_ps_get_next_namepath[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa49e21", + "lines": [ + "acpi_ps_get_arguments.constprop.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa4a430", + "lines": [ + "acpi_ps_parse_loop[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa4c0f5", + "lines": [ + "acpi_ps_parse_aml[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa4d341", + "lines": [ + "acpi_ps_execute_method[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa40084", + "lines": [ + "acpi_ns_evaluate[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa47b61", + "lines": [ + "acpi_evaluate_object[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9ed06d", + "lines": [ + "acpi_evaluate_integer[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa73cdd", + "lines": [ + "acpi_thermal_get_temperature[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa73ed3", + "lines": [ + "thermal_get_temp[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe0d8a3", + "lines": [ + "__thermal_zone_get_temp[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe08587", + "lines": [ + "__thermal_zone_device_update.part.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe098d0", + "lines": [ + "thermal_zone_device_check[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12bee7", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12d1c5", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x137d71", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68aa6", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1249d1b", + "lines": [ + "_raw_spin_lock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca5fd8", + "lines": [ + "drm_gem_object_lookup[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1234c9", + "lines": [ + "validate_init[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124101", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x17ba6", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x18bf8", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14b73c", + "lines": [ + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x141792", + "lines": [ + "AddTraps[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x11e6f2", + "lines": [ + "set_placement_list[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1202b1", + "lines": [ + "nouveau_bo_placement_set[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228ac", + "lines": [ + "validate_list[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124120", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x17ba6", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x18bf8", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14b73c", + "lines": [ + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x141792", + "lines": [ + "AddTraps[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xc1f33b", + "lines": [ + "dma_resv_iter_first[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x167ab8", + "lines": [ + "nouveau_fence_sync[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228de", + "lines": [ + "validate_list[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124120", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x1d1d5", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14c9cf", + "lines": [ + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x275a2", + "lines": [ + "glamor_pixmap_exchange_fbos[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x2746c", + "lines": [ + "glamor_pixmap_exchange_fbos[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x140e6f", + "lines": [ + "AddTraps[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xc1fed8", + "lines": [ + "dma_resv_add_fence[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1214d5", + "lines": [ + "nouveau_bo_fence[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123249", + "lines": [ + "validate_fini_no_ticket[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124347", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x17ba6", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x18bf8", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14b73c", + "lines": [ + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x141792", + "lines": [ + "AddTraps[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1228bb", + "lines": [ + "validate_list[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124120", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x17ba6", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x18bf8", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14b73c", + "lines": [ + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x141792", + "lines": [ + "AddTraps[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x167b14", + "lines": [ + "nouveau_fence_sync[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228de", + "lines": [ + "validate_list[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124120", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x17ba6", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x18bf8", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14b73c", + "lines": [ + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x141792", + "lines": [ + "AddTraps[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x682f0", + "lines": [ + "_CallCallbacks[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x114b27", + "lines": [ + "XaceHookDispatch[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62b47", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x4e4db0", + "lines": [ + "vfs_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5cf8", + "lines": [ + "ksys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e5d58", + "lines": [ + "__x64_sys_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x70af", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11ba99", + "lines": [ + "__GI___libc_read[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1dfbb8", + "lines": [ + "AddClientOnOpenFD[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x1e2889", + "lines": [ + "OsCleanup[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x1db1f4", + "lines": [ + "WaitForSomething[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x627e9", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1eb1cd", + "lines": [ + "dma_sync_single_for_device[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1208e8", + "lines": [ + "nouveau_bo_sync_for_device[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120f7f", + "lines": [ + "nouveau_bo_validate[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228bb", + "lines": [ + "validate_list[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124120", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x17ba6", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x18bf8", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14b73c", + "lines": [ + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x141792", + "lines": [ + "AddTraps[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1249eb4", + "lines": [ + "_raw_spin_unlock_irq[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1675f3", + "lines": [ + "nouveau_fence_emit[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x167d6c", + "lines": [ + "nouveau_fence_new[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1242f2", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x1d1d5", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14c9cf", + "lines": [ + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x275a2", + "lines": [ + "glamor_pixmap_exchange_fbos[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x2746c", + "lines": [ + "glamor_pixmap_exchange_fbos[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x140e6f", + "lines": [ + "AddTraps[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x123db4", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x17ba6", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x18bf8", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14b73c", + "lines": [ + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x141792", + "lines": [ + "AddTraps[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x87cc4b", + "lines": [ + "ioread32[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x166a5a", + "lines": [ + "nouveau_dma_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124942", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa59b08", + "lines": [ + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x16f176", + "lines": [ + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0xa65c", + "lines": [ + "glamor_destroy_pixmap[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0xd23a", + "lines": [ + "modesetting_drv.so 0xd23a[]@:0" + ], + "mapping": "0x6000-0x18000@0x7846dffc2000 modesetting_drv.so(7db476841fbca1d8513fea7fef2b72c408a385b7)" + }, + { + "address": "0x678cc", + "lines": [ + "BlockHandler[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x1db1bf", + "lines": [ + "WaitForSomething[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x627e9", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x26f09", + "lines": [ + "glamor_pixmap_exchange_fbos[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x27145", + "lines": [ + "glamor_pixmap_exchange_fbos[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x140e6f", + "lines": [ + "AddTraps[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x87cc4b", + "lines": [ + "ioread32[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x166a5a", + "lines": [ + "nouveau_dma_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124942", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x17ba6", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x18bf8", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14b73c", + "lines": [ + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x141792", + "lines": [ + "AddTraps[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xd5bc8", + "lines": [ + "__virt_addr_valid[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d840b", + "lines": [ + "check_heap_object[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d8631", + "lines": [ + "__check_object_size.part.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d8742", + "lines": [ + "__check_object_size[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f1e43", + "lines": [ + "vmemdup_user[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123f2c", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x100ef", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14bb06", + "lines": [ + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x13f976", + "lines": [ + "AddTraps[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1236dd", + "lines": [ + "validate_init[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124101", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x17ba6", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x18bf8", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14b73c", + "lines": [ + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x141792", + "lines": [ + "AddTraps[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x45e17d", + "lines": [ + "___slab_alloc[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4608a9", + "lines": [ + "kmalloc_trace[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x167d58", + "lines": [ + "nouveau_fence_new[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1242f2", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "__GI___ioctl[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "drmIoctl[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "drmCommandWriteRead[]@/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0:0" + ], + "mapping": "0x5000-0x11000@0x7846e0c26000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "nouveau_pushbuf_data[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "nouveau_pushbuf_kick[]@/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0:0" + ], + "mapping": "0x2000-0x7000@0x7846dfd62000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_drm_screen_create[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "__driDriverGetExtensions_d3d12[]@/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so:0" + ], + "mapping": "0x97000-0x14ad000@0x7846dda00000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x100ef", + "lines": [ + "glamor_create_gc[]@/usr/lib/xorg/modules/libglamoregl.so:0" + ], + "mapping": "0x7000-0x29000@0x7846dff8b000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14bb06", + "lines": [ + "DamageRegionAppend[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x13f976", + "lines": [ + "AddTraps[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "SendErrorToClient[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "InitFonts[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "__libc_start_call_main[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "__libc_start_main_alias_2[]@/usr/lib/x86_64-linux-gnu/libc.so.6:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "_start[]@/usr/lib/xorg/Xorg:0" + ], + "mapping": "0x40000-0x1f2000@0x5f6beff44000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x74efc91", + "lines": [ + "libxul.so 0x74efc91[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74fe201", + "lines": [ + "libxul.so 0x74fe201[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3160740", + "lines": [ + "libxul.so 0x3160740[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74fd034", + "lines": [ + "libxul.so 0x74fd034[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74c80f0", + "lines": [ + "libxul.so 0x74c80f0[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bf9f6", + "lines": [ + "libxul.so 0x74bf9f6[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bd239", + "lines": [ + "libxul.so 0x74bd239[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74bc0a6", + "lines": [ + "libxul.so 0x74bc0a6[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x4b111ef", + "lines": [ + "libxul.so 0x4b111ef[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x491d7cf", + "lines": [ + "libxul.so 0x491d7cf[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x39892a2", + "lines": [ + "libxul.so 0x39892a2[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3989185", + "lines": [ + "libxul.so 0x3989185[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2b01713", + "lines": [ + "libxul.so 0x2b01713[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5e5a4", + "lines": [ + "libxul.so 0x2a5e5a4[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afb213", + "lines": [ + "libxul.so 0x2afb213[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2afaf19", + "lines": [ + "libxul.so 0x2afaf19[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2aff749", + "lines": [ + "libxul.so 0x2aff749[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2aff6b9", + "lines": [ + "libxul.so 0x2aff6b9[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x29ce05f", + "lines": [ + "libxul.so 0x29ce05f[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x53ff6", + "lines": [ + "firefox-bin 0x53ff6[]@:0" + ], + "mapping": "0x23000-0xdc000@0x626f0e70a000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2a1c9", + "lines": [ + "libc.so.6 0x2a1c9[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "libc.so.6 0x2a28a[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa43d6", + "lines": [ + "firefox-bin 0xa43d6[]@:0" + ], + "mapping": "0x23000-0xdc000@0x626f0e70a000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x74f0746", + "lines": [ + "libxul.so 0x74f0746[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x74fe201", + "lines": [ + "libxul.so 0x74fe201[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x3160740", + "lines": [ + "libxul.so 0x3160740[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x316019e", + "lines": [ + "libxul.so 0x316019e[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x315f14e", + "lines": [ + "libxul.so 0x315f14e[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x72bed80b2000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x626f0e70a000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129a33", + "lines": [ + "libc.so.6 0x129a33[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x11b2b3c", + "lines": [ + "__get_user_8[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b53d8", + "lines": [ + "rseq_ip_fixup[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b559a", + "lines": [ + "__rseq_handle_notify_resume[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1230cc8", + "lines": [ + "syscall_exit_to_user_mode[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228feb", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "libc.so.6 0x98d60[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "libc.so.6 0x9bc7d[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x93298", + "lines": [ + "firefox-bin 0x93298[]@:0" + ], + "mapping": "0x23000-0xdc000@0x626f0e70a000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2b07e36", + "lines": [ + "libxul.so 0x2b07e36[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d620", + "lines": [ + "libxul.so 0x2a5d620[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x72becba00000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x72bed80b2000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x626f0e70a000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x7e27b9600000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + } + ], + "period": "1000000000" +} \ No newline at end of file diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized.json b/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized.json new file mode 100644 index 0000000000..ae8972a5bd --- /dev/null +++ b/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized.json @@ -0,0 +1,19991 @@ +{ + "sample_types": [ + { + "type": "cpu", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x85dd41", + "lines": [ + { + "function": { + "name": "_copy_to_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xee7f07", + "lines": [ + { + "function": { + "name": "simple_copy_to_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xee7fba", + "lines": [ + { + "function": { + "name": "__skb_datagram_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xee82c6", + "lines": [ + { + "function": { + "name": "skb_copy_datagram_iter" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1081f2d", + "lines": [ + { + "function": { + "name": "unix_stream_read_actor" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1087d5e", + "lines": [ + { + "function": { + "name": "unix_stream_read_generic" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x108848c", + "lines": [ + { + "function": { + "name": "unix_stream_recvmsg" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xec9a60", + "lines": [ + { + "function": { + "name": "sock_recvmsg" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xec9c32", + "lines": [ + { + "function": { + "name": "____sys_recvmsg" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xeccee0", + "lines": [ + { + "function": { + "name": "___sys_recvmsg" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xecde01", + "lines": [ + { + "function": { + "name": "__sys_recvmsg" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xecde8c", + "lines": [ + { + "function": { + "name": "__x64_sys_recvmsg" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x774e", + "lines": [ + { + "function": { + "name": "x64_sys_call" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228fde", + "lines": [ + { + "function": { + "name": "do_syscall_64" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x140012f", + "lines": [ + { + "function": { + "name": "entry_SYSCALL_64_after_hwframe" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12be3a", + "lines": [ + { + "function": { + "name": "__libc_recvmsg", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x1e83e0", + "lines": [ + { + "function": { + "name": "os_move_fd", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x1e08d7", + "lines": [ + { + "function": { + "name": "ReadRequestFromClient", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x629ba", + "lines": [ + { + "function": { + "name": "SendErrorToClient", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "InitFonts", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "__libc_start_call_main", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "__libc_start_main_alias_2", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "_start", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xca5df5", + "lines": [ + { + "function": { + "name": "objects_lookup" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca5fd8", + "lines": [ + { + "function": { + "name": "drm_gem_object_lookup" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1234c9", + "lines": [ + { + "function": { + "name": "validate_init" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124101", + "lines": [ + { + "function": { + "name": "nouveau_gem_ioctl_pushbuf" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca7e2b", + "lines": [ + { + "function": { + "name": "drm_ioctl_kernel" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca8173", + "lines": [ + { + "function": { + "name": "drm_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11a2c0", + "lines": [ + { + "function": { + "name": "nouveau_drm_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x503812", + "lines": [ + { + "function": { + "name": "__x64_sys_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6762", + "lines": [ + { + "function": { + "name": "x64_sys_call" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228fde", + "lines": [ + { + "function": { + "name": "do_syscall_64" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x140012f", + "lines": [ + { + "function": { + "name": "entry_SYSCALL_64_after_hwframe" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124dec", + "lines": [ + { + "function": { + "name": "__GI___ioctl", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "drmIoctl", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x7846e0c26000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "drmCommandWriteRead", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x7846e0c26000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x51ee", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_data", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_data", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_kick", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa7103a", + "lines": [ + { + "function": { + "name": "nouveau_drm_screen_create", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x311bf7", + "lines": [ + { + "function": { + "name": "__driDriverGetExtensions_d3d12", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x100ef", + "lines": [ + { + "function": { + "name": "glamor_create_gc", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14bb06", + "lines": [ + { + "function": { + "name": "DamageRegionAppend", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x13f976", + "lines": [ + { + "function": { + "name": "AddTraps", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "SendErrorToClient", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "InitFonts", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "__libc_start_call_main", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "__libc_start_main_alias_2", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "_start", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x62e24a", + "lines": [ + { + "function": { + "name": "__driDriverGetExtensions_d3d12", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x3e96a7", + "lines": [ + { + "function": { + "name": "__driDriverGetExtensions_d3d12", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x178e52", + "lines": [ + { + "function": { + "name": "__driDriverGetExtensions_d3d12", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x311bd8", + "lines": [ + { + "function": { + "name": "__driDriverGetExtensions_d3d12", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x1d1d5", + "lines": [ + { + "function": { + "name": "glamor_create_gc", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14c9cf", + "lines": [ + { + "function": { + "name": "DamageRegionAppend", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x275a2", + "lines": [ + { + "function": { + "name": "glamor_pixmap_exchange_fbos", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x2746c", + "lines": [ + { + "function": { + "name": "glamor_pixmap_exchange_fbos", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x140e6f", + "lines": [ + { + "function": { + "name": "AddTraps", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "SendErrorToClient", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "InitFonts", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "__libc_start_call_main", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "__libc_start_main_alias_2", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "_start", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x123249a", + "lines": [ + { + "function": { + "name": "__memset" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x167d58", + "lines": [ + { + "function": { + "name": "nouveau_fence_new" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1242f2", + "lines": [ + { + "function": { + "name": "nouveau_gem_ioctl_pushbuf" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca7e2b", + "lines": [ + { + "function": { + "name": "drm_ioctl_kernel" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca8173", + "lines": [ + { + "function": { + "name": "drm_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11a2c0", + "lines": [ + { + "function": { + "name": "nouveau_drm_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x503812", + "lines": [ + { + "function": { + "name": "__x64_sys_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6762", + "lines": [ + { + "function": { + "name": "x64_sys_call" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228fde", + "lines": [ + { + "function": { + "name": "do_syscall_64" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x140012f", + "lines": [ + { + "function": { + "name": "entry_SYSCALL_64_after_hwframe" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124dec", + "lines": [ + { + "function": { + "name": "__GI___ioctl", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "drmIoctl", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x7846e0c26000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "drmCommandWriteRead", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x7846e0c26000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x51ee", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_data", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_data", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_kick", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa7103a", + "lines": [ + { + "function": { + "name": "nouveau_drm_screen_create", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x311bf7", + "lines": [ + { + "function": { + "name": "__driDriverGetExtensions_d3d12", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x1d1d5", + "lines": [ + { + "function": { + "name": "glamor_create_gc", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14c9cf", + "lines": [ + { + "function": { + "name": "DamageRegionAppend", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x275a2", + "lines": [ + { + "function": { + "name": "glamor_pixmap_exchange_fbos", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x2746c", + "lines": [ + { + "function": { + "name": "glamor_pixmap_exchange_fbos", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x140e6f", + "lines": [ + { + "function": { + "name": "AddTraps", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "SendErrorToClient", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "InitFonts", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "__libc_start_call_main", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "__libc_start_main_alias_2", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "_start", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xca7d87", + "lines": [ + { + "function": { + "name": "drm_ioctl_kernel" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca8173", + "lines": [ + { + "function": { + "name": "drm_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11a2c0", + "lines": [ + { + "function": { + "name": "nouveau_drm_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x503812", + "lines": [ + { + "function": { + "name": "__x64_sys_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6762", + "lines": [ + { + "function": { + "name": "x64_sys_call" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228fde", + "lines": [ + { + "function": { + "name": "do_syscall_64" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x140012f", + "lines": [ + { + "function": { + "name": "entry_SYSCALL_64_after_hwframe" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124dec", + "lines": [ + { + "function": { + "name": "__GI___ioctl", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "drmIoctl", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x7846e0c26000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "drmCommandWriteRead", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x7846e0c26000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x51ee", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_data", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_data", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_kick", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa7103a", + "lines": [ + { + "function": { + "name": "nouveau_drm_screen_create", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x311bf7", + "lines": [ + { + "function": { + "name": "__driDriverGetExtensions_d3d12", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x17ba6", + "lines": [ + { + "function": { + "name": "glamor_create_gc", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x18bf8", + "lines": [ + { + "function": { + "name": "glamor_create_gc", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14b73c", + "lines": [ + { + "function": { + "name": "DamageRegionAppend", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x141792", + "lines": [ + { + "function": { + "name": "AddTraps", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "SendErrorToClient", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "InitFonts", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "__libc_start_call_main", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "__libc_start_main_alias_2", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "_start", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x87cc4b", + "lines": [ + { + "function": { + "name": "ioread32" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x168f00", + "lines": [ + { + "function": { + "name": "nv84_fence_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x166bdd", + "lines": [ + { + "function": { + "name": "nouveau_fence_is_signaled" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc1ff03", + "lines": [ + { + "function": { + "name": "dma_resv_add_fence" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1214d5", + "lines": [ + { + "function": { + "name": "nouveau_bo_fence" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x123249", + "lines": [ + { + "function": { + "name": "validate_fini_no_ticket" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124347", + "lines": [ + { + "function": { + "name": "nouveau_gem_ioctl_pushbuf" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca7e2b", + "lines": [ + { + "function": { + "name": "drm_ioctl_kernel" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca8173", + "lines": [ + { + "function": { + "name": "drm_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11a2c0", + "lines": [ + { + "function": { + "name": "nouveau_drm_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x503812", + "lines": [ + { + "function": { + "name": "__x64_sys_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6762", + "lines": [ + { + "function": { + "name": "x64_sys_call" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228fde", + "lines": [ + { + "function": { + "name": "do_syscall_64" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x140012f", + "lines": [ + { + "function": { + "name": "entry_SYSCALL_64_after_hwframe" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124dec", + "lines": [ + { + "function": { + "name": "__GI___ioctl", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "drmIoctl", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x7846e0c26000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "drmCommandWriteRead", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x7846e0c26000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x51ee", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_data", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_data", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_kick", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa7103a", + "lines": [ + { + "function": { + "name": "nouveau_drm_screen_create", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x311bf7", + "lines": [ + { + "function": { + "name": "__driDriverGetExtensions_d3d12", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x17ba6", + "lines": [ + { + "function": { + "name": "glamor_create_gc", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x18bf8", + "lines": [ + { + "function": { + "name": "glamor_create_gc", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14b73c", + "lines": [ + { + "function": { + "name": "DamageRegionAppend", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x141792", + "lines": [ + { + "function": { + "name": "AddTraps", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "SendErrorToClient", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "InitFonts", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "__libc_start_call_main", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "__libc_start_main_alias_2", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "_start", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x1208bf", + "lines": [ + { + "function": { + "name": "nouveau_bo_sync_for_device" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x120f7f", + "lines": [ + { + "function": { + "name": "nouveau_bo_validate" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228bb", + "lines": [ + { + "function": { + "name": "validate_list" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124120", + "lines": [ + { + "function": { + "name": "nouveau_gem_ioctl_pushbuf" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca7e2b", + "lines": [ + { + "function": { + "name": "drm_ioctl_kernel" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca8173", + "lines": [ + { + "function": { + "name": "drm_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11a2c0", + "lines": [ + { + "function": { + "name": "nouveau_drm_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x503812", + "lines": [ + { + "function": { + "name": "__x64_sys_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6762", + "lines": [ + { + "function": { + "name": "x64_sys_call" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228fde", + "lines": [ + { + "function": { + "name": "do_syscall_64" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x140012f", + "lines": [ + { + "function": { + "name": "entry_SYSCALL_64_after_hwframe" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124dec", + "lines": [ + { + "function": { + "name": "__GI___ioctl", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "drmIoctl", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x7846e0c26000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "drmCommandWriteRead", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x7846e0c26000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x51ee", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_data", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_data", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_kick", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa7103a", + "lines": [ + { + "function": { + "name": "nouveau_drm_screen_create", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x311bf7", + "lines": [ + { + "function": { + "name": "__driDriverGetExtensions_d3d12", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x17ba6", + "lines": [ + { + "function": { + "name": "glamor_create_gc", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x18bf8", + "lines": [ + { + "function": { + "name": "glamor_create_gc", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14b73c", + "lines": [ + { + "function": { + "name": "DamageRegionAppend", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x141792", + "lines": [ + { + "function": { + "name": "AddTraps", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "SendErrorToClient", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "InitFonts", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "__libc_start_call_main", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "__libc_start_main_alias_2", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "_start", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x1249eb4", + "lines": [ + { + "function": { + "name": "_raw_spin_unlock_irq" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1675f3", + "lines": [ + { + "function": { + "name": "nouveau_fence_emit" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x167d6c", + "lines": [ + { + "function": { + "name": "nouveau_fence_new" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1242f2", + "lines": [ + { + "function": { + "name": "nouveau_gem_ioctl_pushbuf" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca7e2b", + "lines": [ + { + "function": { + "name": "drm_ioctl_kernel" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca8173", + "lines": [ + { + "function": { + "name": "drm_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11a2c0", + "lines": [ + { + "function": { + "name": "nouveau_drm_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x503812", + "lines": [ + { + "function": { + "name": "__x64_sys_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6762", + "lines": [ + { + "function": { + "name": "x64_sys_call" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228fde", + "lines": [ + { + "function": { + "name": "do_syscall_64" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x140012f", + "lines": [ + { + "function": { + "name": "entry_SYSCALL_64_after_hwframe" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124dec", + "lines": [ + { + "function": { + "name": "__GI___ioctl", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "drmIoctl", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x7846e0c26000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "drmCommandWriteRead", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x7846e0c26000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x51ee", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_data", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_data", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_kick", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa7103a", + "lines": [ + { + "function": { + "name": "nouveau_drm_screen_create", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x311bf7", + "lines": [ + { + "function": { + "name": "__driDriverGetExtensions_d3d12", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x17ba6", + "lines": [ + { + "function": { + "name": "glamor_create_gc", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x18bf8", + "lines": [ + { + "function": { + "name": "glamor_create_gc", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14b73c", + "lines": [ + { + "function": { + "name": "DamageRegionAppend", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x141792", + "lines": [ + { + "function": { + "name": "AddTraps", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "SendErrorToClient", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "InitFonts", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "__libc_start_call_main", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "__libc_start_main_alias_2", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "_start", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x15743d", + "lines": [ + { + "function": { + "name": "__driDriverGetExtensions_d3d12", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x15a7e8", + "lines": [ + { + "function": { + "name": "__driDriverGetExtensions_d3d12", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x136697", + "lines": [ + { + "function": { + "name": "__driDriverGetExtensions_d3d12", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x13689c", + "lines": [ + { + "function": { + "name": "__driDriverGetExtensions_d3d12", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x313145", + "lines": [ + { + "function": { + "name": "__driDriverGetExtensions_d3d12", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x1d1d5", + "lines": [ + { + "function": { + "name": "glamor_create_gc", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14c9cf", + "lines": [ + { + "function": { + "name": "DamageRegionAppend", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x275a2", + "lines": [ + { + "function": { + "name": "glamor_pixmap_exchange_fbos", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x2746c", + "lines": [ + { + "function": { + "name": "glamor_pixmap_exchange_fbos", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x140e6f", + "lines": [ + { + "function": { + "name": "AddTraps", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "SendErrorToClient", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "InitFonts", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "__libc_start_call_main", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "__libc_start_main_alias_2", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "_start", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x1eb1b8", + "lines": [ + { + "function": { + "name": "dma_sync_single_for_device" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1208e8", + "lines": [ + { + "function": { + "name": "nouveau_bo_sync_for_device" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x120f7f", + "lines": [ + { + "function": { + "name": "nouveau_bo_validate" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228bb", + "lines": [ + { + "function": { + "name": "validate_list" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124120", + "lines": [ + { + "function": { + "name": "nouveau_gem_ioctl_pushbuf" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca7e2b", + "lines": [ + { + "function": { + "name": "drm_ioctl_kernel" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xca8173", + "lines": [ + { + "function": { + "name": "drm_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11a2c0", + "lines": [ + { + "function": { + "name": "nouveau_drm_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x503812", + "lines": [ + { + "function": { + "name": "__x64_sys_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6762", + "lines": [ + { + "function": { + "name": "x64_sys_call" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228fde", + "lines": [ + { + "function": { + "name": "do_syscall_64" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x140012f", + "lines": [ + { + "function": { + "name": "entry_SYSCALL_64_after_hwframe" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x124dec", + "lines": [ + { + "function": { + "name": "__GI___ioctl", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x7aff", + "lines": [ + { + "function": { + "name": "drmIoctl", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x7846e0c26000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0xb02f", + "lines": [ + { + "function": { + "name": "drmCommandWriteRead", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0" + } + } + ], + "mapping": { + "start": "0x5000", + "limit": "0x11000", + "offset": "0x7846e0c26000", + "filename": "libdrm.so.2.4.0", + "build_id": "34b19924754a393989de6b867174cd1108abe3f7" + } + }, + { + "address": "0x51ee", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_data", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x53ba", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_data", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0x5a1b", + "lines": [ + { + "function": { + "name": "nouveau_pushbuf_kick", + "filename": "/usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0" + } + } + ], + "mapping": { + "start": "0x2000", + "limit": "0x7000", + "offset": "0x7846dfd62000", + "filename": "libdrm_nouveau.so.2.0.0", + "build_id": "42def7a1ff2c124b187af05cf638e5c19456fbbb" + } + }, + { + "address": "0xa7103a", + "lines": [ + { + "function": { + "name": "nouveau_drm_screen_create", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x311bf7", + "lines": [ + { + "function": { + "name": "__driDriverGetExtensions_d3d12", + "filename": "/usr/lib/x86_64-linux-gnu/dri/nouveau_dri.so" + } + } + ], + "mapping": { + "start": "0x97000", + "limit": "0x14ad000", + "offset": "0x7846dda00000", + "filename": "nouveau_dri.so", + "build_id": "a75ac6de0b3db77327a47716c42dd534d5177463" + } + }, + { + "address": "0x100ef", + "lines": [ + { + "function": { + "name": "glamor_create_gc", + "filename": "/usr/lib/xorg/modules/libglamoregl.so" + } + } + ], + "mapping": { + "start": "0x7000", + "limit": "0x29000", + "offset": "0x7846dff8b000", + "filename": "libglamoregl.so", + "build_id": "82e7b25a3fed294189acfc72fa8c7970f2d98ff3" + } + }, + { + "address": "0x14bb06", + "lines": [ + { + "function": { + "name": "DamageRegionAppend", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x13f976", + "lines": [ + { + "function": { + "name": "AddTraps", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x62ab3", + "lines": [ + { + "function": { + "name": "SendErrorToClient", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x66e51", + "lines": [ + { + "function": { + "name": "InitFonts", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + }, + { + "address": "0x2a1c9", + "lines": [ + { + "function": { + "name": "__libc_start_call_main", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x2a28a", + "lines": [ + { + "function": { + "name": "__libc_start_main_alias_2", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x4f394", + "lines": [ + { + "function": { + "name": "_start", + "filename": "/usr/lib/xorg/Xorg" + } + } + ], + "mapping": { + "start": "0x40000", + "limit": "0x1f2000", + "offset": "0x5f6beff44000", + "filename": "Xorg", + "build_id": "4087c9f785a98f4f4b70b189a2ff61d1de2d03c7" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x150f38", + "lines": [ + { + "function": { + "name": "finish_task_switch.isra.0" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1240963", + "lines": [ + { + "function": { + "name": "__schedule" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1240dd2", + "lines": [ + { + "function": { + "name": "schedule" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2262e3", + "lines": [ + { + "function": { + "name": "futex_wait_queue" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x226ac4", + "lines": [ + { + "function": { + "name": "__futex_wait" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x226bc3", + "lines": [ + { + "function": { + "name": "futex_wait" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x222894", + "lines": [ + { + "function": { + "name": "do_futex" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x223159", + "lines": [ + { + "function": { + "name": "__x64_sys_futex" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x55d0", + "lines": [ + { + "function": { + "name": "x64_sys_call" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228fde", + "lines": [ + { + "function": { + "name": "do_syscall_64" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x140012f", + "lines": [ + { + "function": { + "name": "entry_SYSCALL_64_after_hwframe" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x481fa2", + "lines": [ + { + "function": { + "name": "runtime.futex", + "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0x1c7e000", + "offset": "0x0", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" + } + }, + { + "address": "0x43a98f", + "lines": [ + { + "function": { + "name": "runtime.futexsleep", + "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0x1c7e000", + "offset": "0x0", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" + } + }, + { + "address": "0x411826", + "lines": [ + { + "function": { + "name": "runtime.notesleep", + "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0x1c7e000", + "offset": "0x0", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" + } + }, + { + "address": "0x44604b", + "lines": [ + { + "function": { + "name": "runtime.stopm", + "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0x1c7e000", + "offset": "0x0", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" + } + }, + { + "address": "0x447abb", + "lines": [ + { + "function": { + "name": "runtime.findRunnable", + "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0x1c7e000", + "offset": "0x0", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" + } + }, + { + "address": "0x448b90", + "lines": [ + { + "function": { + "name": "runtime.schedule", + "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0x1c7e000", + "offset": "0x0", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" + } + }, + { + "address": "0x448faa", + "lines": [ + { + "function": { + "name": "runtime.park_m", + "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0x1c7e000", + "offset": "0x0", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" + } + }, + { + "address": "0x47e18d", + "lines": [ + { + "function": { + "name": "runtime.mcall", + "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0x1c7e000", + "offset": "0x0", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x43cf52", + "lines": [ + { + "function": { + "name": "folio_remove_rmap_ptes" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x41d13c", + "lines": [ + { + "function": { + "name": "zap_pte_range" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x41d75f", + "lines": [ + { + "function": { + "name": "zap_pmd_range.isra.0" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x41e2d5", + "lines": [ + { + "function": { + "name": "unmap_page_range" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x41e598", + "lines": [ + { + "function": { + "name": "unmap_single_vma" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x41e747", + "lines": [ + { + "function": { + "name": "zap_page_range_single" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4663b8", + "lines": [ + { + "function": { + "name": "madvise_vma_behavior" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x463c63", + "lines": [ + { + "function": { + "name": "madvise_walk_vmas" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x466682", + "lines": [ + { + "function": { + "name": "do_madvise" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x46690b", + "lines": [ + { + "function": { + "name": "__x64_sys_madvise" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7307", + "lines": [ + { + "function": { + "name": "x64_sys_call" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228fde", + "lines": [ + { + "function": { + "name": "do_syscall_64" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x140012f", + "lines": [ + { + "function": { + "name": "entry_SYSCALL_64_after_hwframe" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x481f76", + "lines": [ + { + "function": { + "name": "runtime.madvise", + "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0x1c7e000", + "offset": "0x0", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" + } + }, + { + "address": "0x419ed5", + "lines": [ + { + "function": { + "name": "runtime.sysUnusedOS", + "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0x1c7e000", + "offset": "0x0", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" + } + }, + { + "address": "0x4273c8", + "lines": [ + { + "function": { + "name": "runtime.(*pageAlloc).scavengeOne", + "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0x1c7e000", + "offset": "0x0", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" + } + }, + { + "address": "0x426f8e", + "lines": [ + { + "function": { + "name": "runtime.(*pageAlloc).scavenge.func1", + "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0x1c7e000", + "offset": "0x0", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" + } + }, + { + "address": "0x47e209", + "lines": [ + { + "function": { + "name": "runtime.systemstack", + "filename": "/home/korniltsev/.cache/JetBrains/GoLand2024.3/tmp/GoLand/___go_build_go_opentelemetry_io_ebpf_profiler" + } + } + ], + "mapping": { + "start": "0x402000", + "limit": "0x1c7e000", + "offset": "0x0", + "filename": "___go_build_go_opentelemetry_io_ebpf_profiler", + "build_id": "63a1c7cfe6fa984a61f04febb4f6c93d8c9a67d9" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x65", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", + "filename": "CoroutineScheduler.kt" + }, + "line": 795 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", + "filename": "CoroutineScheduler.kt" + }, + "line": 750 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + { + "function": { + "name": "StubRoutines (initial stubs) [call_stub_return_address]" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x914b94", + "lines": [ + { + "function": { + "name": "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "thread_entry(JavaThread*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "JavaThread::thread_main_inner()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "Thread::call_run()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "thread_native_entry(Thread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "start_thread", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "__GI___clone3", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x1228fa4", + "lines": [ + { + "function": { + "name": "do_syscall_64" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x140012f", + "lines": [ + { + "function": { + "name": "entry_SYSCALL_64_after_hwframe" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9b05e", + "lines": [ + { + "function": { + "name": "__GI___pthread_cond_signal", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0xfb2099", + "lines": [ + { + "function": { + "name": "Unsafe_Unpark", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)", + "filename": "Unsafe.java" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x16", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)", + "filename": "LockSupport.java" + }, + "line": 181 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "boolean kotlinx.coroutines.scheduling.CoroutineScheduler.tryUnpark()", + "filename": "CoroutineScheduler.kt" + }, + "line": 488 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.signalCpuWork()", + "filename": "CoroutineScheduler.kt" + }, + "line": 463 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb3", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch(java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean)", + "filename": "CoroutineScheduler.kt" + }, + "line": 439 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x18", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.dispatch$default(kotlinx.coroutines.scheduling.CoroutineScheduler, java.lang.Runnable, kotlinx.coroutines.scheduling.TaskContext, boolean, int, java.lang.Object)", + "filename": "CoroutineScheduler.kt" + }, + "line": 416 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.SchedulerCoroutineDispatcher.dispatch(kotlin.coroutines.CoroutineContext, java.lang.Runnable)", + "filename": "Dispatcher.kt" + }, + "line": 118 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x69", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.DispatchedTaskKt.dispatch(kotlinx.coroutines.DispatchedTask, int)", + "filename": "DispatchedTask.kt" + }, + "line": 157 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.CancellableContinuationImpl.dispatchResume(int)", + "filename": "CancellableContinuationImpl.kt" + }, + "line": 470 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x24", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.CancellableContinuationImpl.completeResume(java.lang.Object)", + "filename": "CancellableContinuationImpl.kt" + }, + "line": 586 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "boolean kotlinx.coroutines.channels.BufferedChannelKt.tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)", + "filename": "BufferedChannel.kt" + }, + "line": 2924 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "boolean kotlinx.coroutines.channels.BufferedChannelKt.access$tryResume0(kotlinx.coroutines.CancellableContinuation, java.lang.Object, kotlin.jvm.functions.Function1)", + "filename": "BufferedChannel.kt" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x36", + "lines": [ + { + "function": { + "name": "boolean kotlinx.coroutines.channels.BufferedChannel$BufferedChannelIterator.tryResumeHasNext(java.lang.Object)", + "filename": "BufferedChannel.kt" + }, + "line": 1713 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x77", + "lines": [ + { + "function": { + "name": "boolean kotlinx.coroutines.channels.BufferedChannel.tryResumeReceiver(java.lang.Object, java.lang.Object)", + "filename": "BufferedChannel.kt" + }, + "line": 643 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x62", + "lines": [ + { + "function": { + "name": "int kotlinx.coroutines.channels.BufferedChannel.updateCellSend(kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)", + "filename": "BufferedChannel.kt" + }, + "line": 459 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "int kotlinx.coroutines.channels.BufferedChannel.access$updateCellSend(kotlinx.coroutines.channels.BufferedChannel, kotlinx.coroutines.channels.ChannelSegment, int, java.lang.Object, long, java.lang.Object, boolean)", + "filename": "BufferedChannel.kt" + }, + "line": 37 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8b", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send$suspendImpl(kotlinx.coroutines.channels.BufferedChannel, java.lang.Object, kotlin.coroutines.Continuation)", + "filename": "BufferedChannel.kt" + }, + "line": 3117 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.channels.BufferedChannel.send(java.lang.Object, kotlin.coroutines.Continuation)", + "filename": "BufferedChannel.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.channels.ChannelCoroutine.send(java.lang.Object, kotlin.coroutines.Continuation)", + "filename": "ChannelCoroutine.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.internal.SendingCollector.emit(java.lang.Object, kotlin.coroutines.Continuation)", + "filename": "SendingCollector.kt" + }, + "line": 15 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x76", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invokeSuspend(java.lang.Object)", + "filename": "Merge.kt" + }, + "line": 213 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1f", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invoke(kotlinx.coroutines.flow.FlowCollector, java.lang.Object, kotlin.coroutines.Continuation)", + "filename": "Merge.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.FlowKt__MergeKt$mapLatest$1.invoke(java.lang.Object, java.lang.Object, java.lang.Object)", + "filename": "Merge.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x39", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invokeSuspend(java.lang.Object)", + "filename": "Merge.kt" + }, + "line": 30 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", + "filename": "Merge.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$2.invoke(java.lang.Object, java.lang.Object)", + "filename": "Merge.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x67", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.intrinsics.UndispatchedKt.startCoroutineUndispatched(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)", + "filename": "Undispatched.kt" + }, + "line": 27 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x40", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.CoroutineStart.invoke(kotlin.jvm.functions.Function2, java.lang.Object, kotlin.coroutines.Continuation)", + "filename": "CoroutineStart.kt" + }, + "line": 90 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.AbstractCoroutine.start(kotlinx.coroutines.CoroutineStart, java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "AbstractCoroutine.kt" + }, + "line": 123 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x30", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt__Builders_commonKt.launch(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2)", + "filename": "Builders.common.kt" + }, + "line": 52 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt.launch(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2)", + "filename": "\u003cunknown\u003e" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt__Builders_commonKt.launch$default(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2, int, java.lang.Object)", + "filename": "Builders.common.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.Job kotlinx.coroutines.BuildersKt.launch$default(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.CoroutineContext, kotlinx.coroutines.CoroutineStart, kotlin.jvm.functions.Function2, int, java.lang.Object)", + "filename": "\u003cunknown\u003e" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf8", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1.emit(java.lang.Object, kotlin.coroutines.Continuation)", + "filename": "Merge.kt" + }, + "line": 29 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.flow.internal.ChannelFlowTransformLatest$flowCollect$3$1$emit$1.invokeSuspend(java.lang.Object)", + "filename": "Merge.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c", + "lines": [ + { + "function": { + "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", + "filename": "ContinuationImpl.kt" + }, + "line": 33 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x154", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.DispatchedTask.run()", + "filename": "DispatchedTask.kt" + }, + "line": 104 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", + "filename": "CoroutineScheduler.kt" + }, + "line": 608 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", + "filename": "CoroutineScheduler.kt" + }, + "line": 873 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", + "filename": "CoroutineScheduler.kt" + }, + "line": 763 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", + "filename": "CoroutineScheduler.kt" + }, + "line": 750 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + { + "function": { + "name": "StubRoutines (initial stubs) [call_stub_return_address]" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x914b94", + "lines": [ + { + "function": { + "name": "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "thread_entry(JavaThread*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "JavaThread::thread_main_inner()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "Thread::call_run()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "thread_native_entry(Thread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "start_thread", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "__GI___clone3", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x150f38", + "lines": [ + { + "function": { + "name": "finish_task_switch.isra.0" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1240963", + "lines": [ + { + "function": { + "name": "__schedule" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1240dd2", + "lines": [ + { + "function": { + "name": "schedule" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2262e3", + "lines": [ + { + "function": { + "name": "futex_wait_queue" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x226ac4", + "lines": [ + { + "function": { + "name": "__futex_wait" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x226bc3", + "lines": [ + { + "function": { + "name": "futex_wait" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x222894", + "lines": [ + { + "function": { + "name": "do_futex" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x223159", + "lines": [ + { + "function": { + "name": "__x64_sys_futex" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x55d0", + "lines": [ + { + "function": { + "name": "x64_sys_call" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1228fde", + "lines": [ + { + "function": { + "name": "do_syscall_64" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x140012f", + "lines": [ + { + "function": { + "name": "entry_SYSCALL_64_after_hwframe" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x98d60", + "lines": [ + { + "function": { + "name": "__GI___futex_abstimed_wait_cancelable64", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x9bc7d", + "lines": [ + { + "function": { + "name": "__GI___pthread_cond_timedwait", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0xd141d3", + "lines": [ + { + "function": { + "name": "Parker::park(bool, long)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xfb3d80", + "lines": [ + { + "function": { + "name": "Unsafe_Park", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "void jdk.internal.misc.Unsafe.park(boolean, long)", + "filename": "Unsafe.java" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1b", + "lines": [ + { + "function": { + "name": "void java.util.concurrent.locks.LockSupport.parkNanos(long)", + "filename": "LockSupport.java" + }, + "line": 410 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x56", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", + "filename": "CoroutineScheduler.kt" + }, + "line": 785 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", + "filename": "CoroutineScheduler.kt" + }, + "line": 750 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + { + "function": { + "name": "StubRoutines (initial stubs) [call_stub_return_address]" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x914b94", + "lines": [ + { + "function": { + "name": "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "thread_entry(JavaThread*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "JavaThread::thread_main_inner()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "Thread::call_run()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "thread_native_entry(Thread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "start_thread", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "__GI___clone3", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + { + "function": { + "name": "vtable chunks" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x47", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.DispatchedTask.run()", + "filename": "DispatchedTask.kt" + }, + "line": 220 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", + "filename": "CoroutineScheduler.kt" + }, + "line": 608 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", + "filename": "CoroutineScheduler.kt" + }, + "line": 873 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", + "filename": "CoroutineScheduler.kt" + }, + "line": 763 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", + "filename": "CoroutineScheduler.kt" + }, + "line": 750 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + { + "function": { + "name": "StubRoutines (initial stubs) [call_stub_return_address]" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x914b94", + "lines": [ + { + "function": { + "name": "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "thread_entry(JavaThread*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "JavaThread::thread_main_inner()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "Thread::call_run()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "thread_native_entry(Thread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "start_thread", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "__GI___clone3", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.actionSystem.AnAction com.intellij.openapi.actionSystem.impl.ActionManagerImpl.getAction(java.lang.String)", + "filename": "ActionManagerImpl.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.actionSystem.AnAction[] com.intellij.execution.ui.RunToolbarTopLevelExecutorActionGroup.getChildren(com.intellij.openapi.actionSystem.AnActionEvent)", + "filename": "RedesignedRunWidget.kt" + }, + "line": 181 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.actionSystem.AnAction[] com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1$1.invoke()", + "filename": "ActionUpdater.kt" + }, + "line": 332 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1$1.invoke()", + "filename": "ActionUpdater.kt" + }, + "line": 331 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$callAction$2$1.invoke()", + "filename": "ActionUpdater.kt" + }, + "line": 145 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()", + "filename": "InternalReadAction.kt" + }, + "line": 114 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable$lambda$4(com.intellij.openapi.application.rw.InternalReadAction)", + "filename": "InternalReadAction.kt" + }, + "line": 104 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2$lambda$1(kotlinx.coroutines.CompletableJob, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)", + "filename": "cancellableReadAction.kt" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x71", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 351 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)", + "filename": "ApplicationImpl.java" + }, + "line": 971 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2(kotlinx.coroutines.CompletableJob, com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)", + "filename": "cancellableReadAction.kt" + }, + "line": 30 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4d", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)", + "filename": "ProgressIndicatorUtilService.java" + }, + "line": 66 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x21", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)", + "filename": "ProgressIndicatorUtils.java" + }, + "line": 157 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x72", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)", + "filename": "cancellableReadAction.kt" + }, + "line": 28 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 103 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xf", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 87 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xdc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 74 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 16 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x31", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$3.invokeSuspend(java.lang.Object)", + "filename": "InternalReadAction.kt" + }, + "line": 36 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$3.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$3.invoke(java.lang.Object, java.lang.Object)", + "filename": "InternalReadAction.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4f", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "Undispatched.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.CoroutineScopeKt.coroutineScope(kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)", + "filename": "CoroutineScope.kt" + }, + "line": 261 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x57", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)", + "filename": "InternalReadAction.kt" + }, + "line": 35 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.rw.PlatformReadWriteActionSupport.executeReadAction(java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "PlatformReadWriteActionSupport.kt" + }, + "line": 38 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x29", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.ReadWriteActionSupport.executeReadAction$default(com.intellij.openapi.application.ReadWriteActionSupport, java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation, int, java.lang.Object)", + "filename": "ReadWriteActionSupport.kt" + }, + "line": 15 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadActionUndispatched(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 86 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readActionUndispatched(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 73 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6a", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$callAction$$inlined$useWithScope$1.invokeSuspend(java.lang.Object)", + "filename": "trace.kt" + }, + "line": 61 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$callAction$$inlined$useWithScope$1.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", + "filename": "trace.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$callAction$$inlined$useWithScope$1.invoke(java.lang.Object, java.lang.Object)", + "filename": "trace.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4f", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "Undispatched.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9e", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)", + "filename": "Builders.common.kt" + }, + "line": 163 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)", + "filename": "\u003cunknown\u003e" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x187", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.callAction(com.intellij.openapi.actionSystem.impl.OpElement, com.intellij.openapi.actionSystem.ActionUpdateThread, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + }, + "line": 882 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.access$callAction(com.intellij.openapi.actionSystem.impl.ActionUpdater, com.intellij.openapi.actionSystem.impl.OpElement, com.intellij.openapi.actionSystem.ActionUpdateThread, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + }, + "line": 77 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x54", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1.invokeSuspend(java.lang.Object)", + "filename": "ActionUpdater.kt" + }, + "line": 331 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1.invoke(kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1.invoke(java.lang.Object)", + "filename": "ActionUpdater.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8e", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$$inlined$retryOnAwaitSharedData$1.invokeSuspend(java.lang.Object)", + "filename": "ActionUpdater.kt" + }, + "line": 831 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$$inlined$retryOnAwaitSharedData$1.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$$inlined$retryOnAwaitSharedData$1.invoke(java.lang.Object, java.lang.Object)", + "filename": "ActionUpdater.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4f", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "Undispatched.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9e", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)", + "filename": "Builders.common.kt" + }, + "line": 163 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)", + "filename": "\u003cunknown\u003e" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x128", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.getGroupChildren(com.intellij.openapi.actionSystem.ActionGroup, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + }, + "line": 910 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.access$getGroupChildren(com.intellij.openapi.actionSystem.impl.ActionUpdater, com.intellij.openapi.actionSystem.ActionGroup, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + }, + "line": 77 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$doExpandActionGroup$2.invokeSuspend(java.lang.Object)", + "filename": "ActionUpdater.kt" + }, + "line": 268 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$doExpandActionGroup$2.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$doExpandActionGroup$2.invoke(java.lang.Object, java.lang.Object)", + "filename": "ActionUpdater.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4f", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "Undispatched.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9e", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)", + "filename": "Builders.common.kt" + }, + "line": 163 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)", + "filename": "\u003cunknown\u003e" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xff", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.doExpandActionGroup(com.intellij.openapi.actionSystem.ActionGroup, boolean, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + }, + "line": 261 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3ea", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.expandGroupChild(com.intellij.openapi.actionSystem.AnAction, boolean, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + }, + "line": 400 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.access$expandGroupChild(com.intellij.openapi.actionSystem.impl.ActionUpdater, com.intellij.openapi.actionSystem.AnAction, boolean, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + }, + "line": 77 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x39", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$doExpandActionGroup$2$expandResult$1$1.invokeSuspend(java.lang.Object)", + "filename": "ActionUpdater.kt" + }, + "line": 274 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c", + "lines": [ + { + "function": { + "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", + "filename": "ContinuationImpl.kt" + }, + "line": 33 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x154", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.DispatchedTask.run()", + "filename": "DispatchedTask.kt" + }, + "line": 104 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.internal.LimitedDispatcher$Worker.run()", + "filename": "LimitedDispatcher.kt" + }, + "line": 111 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.TaskImpl.run()", + "filename": "Tasks.kt" + }, + "line": 99 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", + "filename": "CoroutineScheduler.kt" + }, + "line": 608 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", + "filename": "CoroutineScheduler.kt" + }, + "line": 873 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", + "filename": "CoroutineScheduler.kt" + }, + "line": 763 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", + "filename": "CoroutineScheduler.kt" + }, + "line": 750 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + { + "function": { + "name": "StubRoutines (initial stubs) [call_stub_return_address]" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x914b94", + "lines": [ + { + "function": { + "name": "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "thread_entry(JavaThread*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "JavaThread::thread_main_inner()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "Thread::call_run()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "thread_native_entry(Thread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "start_thread", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "__GI___clone3", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.ContinuationInterceptor$DefaultImpls.get(kotlin.coroutines.ContinuationInterceptor, kotlin.coroutines.CoroutineContext$Key)", + "filename": "ContinuationInterceptor.kt" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "kotlin.coroutines.CoroutineContext$Element kotlinx.coroutines.CoroutineDispatcher.get(kotlin.coroutines.CoroutineContext$Key)", + "filename": "CoroutineDispatcher.kt" + }, + "line": 27 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "kotlin.coroutines.CoroutineContext$Element kotlin.coroutines.CombinedContext.get(kotlin.coroutines.CoroutineContext$Key)", + "filename": "CoroutineContextImpl.kt" + }, + "line": 120 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3c", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.UndispatchedCoroutine.\u003cinit\u003e(kotlin.coroutines.CoroutineContext, kotlin.coroutines.Continuation)", + "filename": "CoroutineContext.kt" + }, + "line": 243 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x60", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)", + "filename": "Builders.common.kt" + }, + "line": 160 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)", + "filename": "\u003cunknown\u003e" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x187", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.callAction(com.intellij.openapi.actionSystem.impl.OpElement, com.intellij.openapi.actionSystem.ActionUpdateThread, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + }, + "line": 882 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.access$callAction(com.intellij.openapi.actionSystem.impl.ActionUpdater, com.intellij.openapi.actionSystem.impl.OpElement, com.intellij.openapi.actionSystem.ActionUpdateThread, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + }, + "line": 77 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x54", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1.invokeSuspend(java.lang.Object)", + "filename": "ActionUpdater.kt" + }, + "line": 331 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1.invoke(kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$children$1$1.invoke(java.lang.Object)", + "filename": "ActionUpdater.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8e", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$$inlined$retryOnAwaitSharedData$1.invokeSuspend(java.lang.Object)", + "filename": "ActionUpdater.kt" + }, + "line": 831 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$$inlined$retryOnAwaitSharedData$1.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$getGroupChildren$$inlined$retryOnAwaitSharedData$1.invoke(java.lang.Object, java.lang.Object)", + "filename": "ActionUpdater.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4f", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "Undispatched.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9e", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)", + "filename": "Builders.common.kt" + }, + "line": 163 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)", + "filename": "\u003cunknown\u003e" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x128", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.getGroupChildren(com.intellij.openapi.actionSystem.ActionGroup, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + }, + "line": 910 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.access$getGroupChildren(com.intellij.openapi.actionSystem.impl.ActionUpdater, com.intellij.openapi.actionSystem.ActionGroup, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + }, + "line": 77 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc6", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$doExpandActionGroup$2.invokeSuspend(java.lang.Object)", + "filename": "ActionUpdater.kt" + }, + "line": 268 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$doExpandActionGroup$2.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$doExpandActionGroup$2.invoke(java.lang.Object, java.lang.Object)", + "filename": "ActionUpdater.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4f", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "Undispatched.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9e", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)", + "filename": "Builders.common.kt" + }, + "line": 163 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)", + "filename": "\u003cunknown\u003e" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xff", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.doExpandActionGroup(com.intellij.openapi.actionSystem.ActionGroup, boolean, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + }, + "line": 261 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3ea", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.expandGroupChild(com.intellij.openapi.actionSystem.AnAction, boolean, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + }, + "line": 400 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.access$expandGroupChild(com.intellij.openapi.actionSystem.impl.ActionUpdater, com.intellij.openapi.actionSystem.AnAction, boolean, kotlin.coroutines.Continuation)", + "filename": "ActionUpdater.kt" + }, + "line": 77 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x39", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$doExpandActionGroup$2$expandResult$1$1.invokeSuspend(java.lang.Object)", + "filename": "ActionUpdater.kt" + }, + "line": 274 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c", + "lines": [ + { + "function": { + "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", + "filename": "ContinuationImpl.kt" + }, + "line": 33 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x154", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.DispatchedTask.run()", + "filename": "DispatchedTask.kt" + }, + "line": 104 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.internal.LimitedDispatcher$Worker.run()", + "filename": "LimitedDispatcher.kt" + }, + "line": 111 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.TaskImpl.run()", + "filename": "Tasks.kt" + }, + "line": 99 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)", + "filename": "CoroutineScheduler.kt" + }, + "line": 608 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)", + "filename": "CoroutineScheduler.kt" + }, + "line": 873 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()", + "filename": "CoroutineScheduler.kt" + }, + "line": 763 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()", + "filename": "CoroutineScheduler.kt" + }, + "line": 750 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + { + "function": { + "name": "StubRoutines (initial stubs) [call_stub_return_address]" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x914b94", + "lines": [ + { + "function": { + "name": "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "thread_entry(JavaThread*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "JavaThread::thread_main_inner()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "Thread::call_run()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "thread_native_entry(Thread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "start_thread", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "__GI___clone3", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x36", + "lines": [ + { + "function": { + "name": "java.lang.Object javax.swing.UIDefaults.getFromResourceBundle(java.lang.Object, java.util.Locale)", + "filename": "UIDefaults.java" + }, + "line": 298 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11", + "lines": [ + { + "function": { + "name": "java.lang.Object javax.swing.UIDefaults.get(java.lang.Object)", + "filename": "UIDefaults.java" + }, + "line": 172 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2d", + "lines": [ + { + "function": { + "name": "java.lang.Object javax.swing.MultiUIDefaults.get(java.lang.Object)", + "filename": "MultiUIDefaults.java" + }, + "line": 65 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object javax.swing.UIManager.get(java.lang.Object)", + "filename": "UIManager.java" + }, + "line": 1014 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x18", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.ui.JBColor.calculateColorOrNull(java.lang.String)", + "filename": "JBColor.java" + }, + "line": 143 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.ui.JBColor.calculateColor(java.lang.String, java.awt.Color)", + "filename": "JBColor.java" + }, + "line": 131 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c", + "lines": [ + { + "function": { + "name": "java.awt.Color com.intellij.ui.JBColor.getColor()", + "filename": "JBColor.java" + }, + "line": 201 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "int com.intellij.ui.JBColor.getRGB()", + "filename": "JBColor.java" + }, + "line": 254 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "boolean java.awt.Color.equals(java.lang.Object)", + "filename": "Color.java" + }, + "line": 701 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "boolean com.intellij.ui.JBColor.equals(java.lang.Object)", + "filename": "JBColor.java" + }, + "line": 291 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "boolean com.intellij.ui.JBColor.equals(java.lang.Object)", + "filename": "JBColor.java" + }, + "line": 291 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4c", + "lines": [ + { + "function": { + "name": "boolean com.intellij.openapi.util.Comparing.equal(java.lang.Object, java.lang.Object)", + "filename": "Comparing.java" + }, + "line": 32 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "boolean com.intellij.ui.SimpleColoredComponent.isSelection()", + "filename": "SimpleColoredComponent.java" + }, + "line": 1096 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x39", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.SimpleColoredComponent.paintIcon(java.awt.Graphics, javax.swing.Icon, int)", + "filename": "SimpleColoredComponent.java" + }, + "line": 1089 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x86", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.SimpleColoredComponent.doPaintIcon(java.awt.Graphics2D, javax.swing.Icon, int)", + "filename": "SimpleColoredComponent.java" + }, + "line": 801 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.SimpleColoredComponent.doPaint(java.awt.Graphics2D)", + "filename": "SimpleColoredComponent.java" + }, + "line": 761 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.SimpleColoredComponent.paintComponent(java.awt.Graphics)", + "filename": "SimpleColoredComponent.java" + }, + "line": 745 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x100", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1124 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7c", + "lines": [ + { + "function": { + "name": "void javax.swing.CellRendererPane.paintComponent(java.awt.Graphics, java.awt.Component, java.awt.Container, int, int, int, int, boolean)", + "filename": "CellRendererPane.java" + }, + "line": 170 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x43e", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.tree.ui.DefaultTreeUI.paint(java.awt.Graphics, javax.swing.JComponent)", + "filename": "DefaultTreeUI.java" + }, + "line": 372 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)", + "filename": "ComponentUI.java" + }, + "line": 161 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintComponent(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 855 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x41", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.treeStructure.Tree.paintComponent(java.awt.Graphics)", + "filename": "Tree.java" + }, + "line": 381 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x100", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1124 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.treeStructure.Tree.paint(java.awt.Graphics)", + "filename": "Tree.java" + }, + "line": 312 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x204", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 964 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x120", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1133 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xcd", + "lines": [ + { + "function": { + "name": "void javax.swing.JViewport.paint(java.awt.Graphics)", + "filename": "JViewport.java" + }, + "line": 736 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)", + "filename": "JBViewport.java" + }, + "line": 240 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x204", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 964 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)", + "filename": "JBScrollPane.java" + }, + "line": 243 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x120", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1133 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)", + "filename": "JBScrollPane.java" + }, + "line": 231 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x29", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)", + "filename": "JComponent.java" + }, + "line": 5319 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa3", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)", + "filename": "RepaintManager.java" + }, + "line": 1680 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)", + "filename": "RepaintManager.java" + }, + "line": 1655 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x80", + "lines": [ + { + "function": { + "name": "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)", + "filename": "RepaintManager.java" + }, + "line": 1592 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19a", + "lines": [ + { + "function": { + "name": "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)", + "filename": "BufferStrategyPaintManager.java" + }, + "line": 281 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x34", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)", + "filename": "RepaintManager.java" + }, + "line": 1352 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2ab", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent._paintImmediately(int, int, int, int)", + "filename": "JComponent.java" + }, + "line": 5267 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8a", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintImmediately(int, int, int, int)", + "filename": "JComponent.java" + }, + "line": 5077 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "java.lang.Void javax.swing.RepaintManager$4.run()", + "filename": "RepaintManager.java" + }, + "line": 887 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object javax.swing.RepaintManager$4.run()", + "filename": "RepaintManager.java" + }, + "line": 870 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)", + "filename": "AccessController.java" + }, + "line": 778 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", + "filename": "AccessController.java" + }, + "line": 400 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)", + "filename": "ProtectionDomain.java" + }, + "line": 87 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)", + "filename": "RepaintManager.java" + }, + "line": 870 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager.paintDirtyRegions()", + "filename": "RepaintManager.java" + }, + "line": 843 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x49", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager.prePaintDirtyRegions()", + "filename": "RepaintManager.java" + }, + "line": 789 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager$ProcessingRunnable.run()", + "filename": "RepaintManager.java" + }, + "line": 1921 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", + "filename": "propagation.kt" + }, + "line": 101 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", + "filename": "propagation.kt" + }, + "line": 101 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x26", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)", + "filename": "propagation.kt" + }, + "line": 107 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)", + "filename": "propagation.kt" + }, + "line": 101 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.ContextRunnable.run()", + "filename": "ContextRunnable.java" + }, + "line": 27 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2f", + "lines": [ + { + "function": { + "name": "void java.awt.event.InvocationEvent.dispatch()", + "filename": "InvocationEvent.java" + }, + "line": 318 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", + "filename": "EventQueue.java" + }, + "line": 781 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "java.lang.Void java.awt.EventQueue$4.run()", + "filename": "EventQueue.java" + }, + "line": 728 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object java.awt.EventQueue$4.run()", + "filename": "EventQueue.java" + }, + "line": 722 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)", + "filename": "AccessController.java" + }, + "line": 778 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", + "filename": "AccessController.java" + }, + "line": 400 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)", + "filename": "ProtectionDomain.java" + }, + "line": 87 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "EventQueue.java" + }, + "line": 750 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5c", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 675 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x18e", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 573 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 355 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3b", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)", + "filename": "CoreProgressManager.java" + }, + "line": 857 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 354 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1045 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 24 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x60", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 128 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "ApplicationImpl.java" + }, + "line": 916 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 55 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 23 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1045 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1054 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 109 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7f", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1054 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x48", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)", + "filename": "IdeEventQueue.kt" + }, + "line": 349 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1cc", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 387 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", + "filename": "EventDispatchThread.java" + }, + "line": 207 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", + "filename": "EventDispatchThread.java" + }, + "line": 128 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", + "filename": "EventDispatchThread.java" + }, + "line": 117 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", + "filename": "EventDispatchThread.java" + }, + "line": 113 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", + "filename": "EventDispatchThread.java" + }, + "line": 105 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.run()", + "filename": "EventDispatchThread.java" + }, + "line": 92 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + { + "function": { + "name": "StubRoutines (initial stubs) [call_stub_return_address]" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x914b94", + "lines": [ + { + "function": { + "name": "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "thread_entry(JavaThread*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "JavaThread::thread_main_inner()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "Thread::call_run()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "thread_native_entry(Thread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "start_thread", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "__GI___clone3", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x91", + "lines": [ + { + "function": { + "name": "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)", + "filename": "HashMap.java" + }, + "line": 587 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object java.util.HashMap.get(java.lang.Object)", + "filename": "HashMap.java" + }, + "line": 564 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "com.intellij.ui.tree.ui.DefaultTreeLayoutCache$Node com.intellij.ui.tree.ui.DefaultTreeLayoutCache.getNode(javax.swing.tree.TreePath)", + "filename": "DefaultTreeLayoutCache.kt" + }, + "line": 367 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.awt.Rectangle com.intellij.ui.tree.ui.DefaultTreeLayoutCache.getBounds(javax.swing.tree.TreePath, java.awt.Rectangle)", + "filename": "DefaultTreeLayoutCache.kt" + }, + "line": 197 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8d", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.tree.ui.DefaultTreeUI.paint(java.awt.Graphics, javax.swing.JComponent)", + "filename": "DefaultTreeUI.java" + }, + "line": 273 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)", + "filename": "ComponentUI.java" + }, + "line": 161 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintComponent(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 855 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x41", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.treeStructure.Tree.paintComponent(java.awt.Graphics)", + "filename": "Tree.java" + }, + "line": 381 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x100", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1124 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.treeStructure.Tree.paint(java.awt.Graphics)", + "filename": "Tree.java" + }, + "line": 312 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x204", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 964 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x120", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1133 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xcd", + "lines": [ + { + "function": { + "name": "void javax.swing.JViewport.paint(java.awt.Graphics)", + "filename": "JViewport.java" + }, + "line": 736 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)", + "filename": "JBViewport.java" + }, + "line": 240 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x204", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 964 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)", + "filename": "JBScrollPane.java" + }, + "line": 243 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x120", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1133 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)", + "filename": "JBScrollPane.java" + }, + "line": 231 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x204", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 964 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x120", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1133 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x204", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 964 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x120", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1133 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x204", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 964 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x120", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1133 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x204", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 964 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x120", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1133 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x204", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 964 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x120", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1133 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x29", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)", + "filename": "JComponent.java" + }, + "line": 5319 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa3", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)", + "filename": "RepaintManager.java" + }, + "line": 1680 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)", + "filename": "RepaintManager.java" + }, + "line": 1655 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x80", + "lines": [ + { + "function": { + "name": "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)", + "filename": "RepaintManager.java" + }, + "line": 1592 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19a", + "lines": [ + { + "function": { + "name": "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)", + "filename": "BufferStrategyPaintManager.java" + }, + "line": 281 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x34", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)", + "filename": "RepaintManager.java" + }, + "line": 1352 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2ab", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent._paintImmediately(int, int, int, int)", + "filename": "JComponent.java" + }, + "line": 5267 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8a", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintImmediately(int, int, int, int)", + "filename": "JComponent.java" + }, + "line": 5077 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "java.lang.Void javax.swing.RepaintManager$4.run()", + "filename": "RepaintManager.java" + }, + "line": 887 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object javax.swing.RepaintManager$4.run()", + "filename": "RepaintManager.java" + }, + "line": 870 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)", + "filename": "AccessController.java" + }, + "line": 778 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", + "filename": "AccessController.java" + }, + "line": 400 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)", + "filename": "ProtectionDomain.java" + }, + "line": 87 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)", + "filename": "RepaintManager.java" + }, + "line": 870 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager.paintDirtyRegions()", + "filename": "RepaintManager.java" + }, + "line": 843 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x49", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager.prePaintDirtyRegions()", + "filename": "RepaintManager.java" + }, + "line": 789 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager$ProcessingRunnable.run()", + "filename": "RepaintManager.java" + }, + "line": 1921 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", + "filename": "propagation.kt" + }, + "line": 101 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", + "filename": "propagation.kt" + }, + "line": 101 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x26", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)", + "filename": "propagation.kt" + }, + "line": 107 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)", + "filename": "propagation.kt" + }, + "line": 101 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.ContextRunnable.run()", + "filename": "ContextRunnable.java" + }, + "line": 27 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2f", + "lines": [ + { + "function": { + "name": "void java.awt.event.InvocationEvent.dispatch()", + "filename": "InvocationEvent.java" + }, + "line": 318 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", + "filename": "EventQueue.java" + }, + "line": 781 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "java.lang.Void java.awt.EventQueue$4.run()", + "filename": "EventQueue.java" + }, + "line": 728 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object java.awt.EventQueue$4.run()", + "filename": "EventQueue.java" + }, + "line": 722 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)", + "filename": "AccessController.java" + }, + "line": 778 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", + "filename": "AccessController.java" + }, + "line": 400 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)", + "filename": "ProtectionDomain.java" + }, + "line": 87 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "EventQueue.java" + }, + "line": 750 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5c", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 675 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x18e", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 573 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 355 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3b", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)", + "filename": "CoreProgressManager.java" + }, + "line": 857 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 354 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1045 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 24 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x60", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 128 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "ApplicationImpl.java" + }, + "line": 916 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 55 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 23 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1045 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1054 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 109 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7f", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1054 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x48", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)", + "filename": "IdeEventQueue.kt" + }, + "line": 349 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1cc", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 387 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", + "filename": "EventDispatchThread.java" + }, + "line": 207 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", + "filename": "EventDispatchThread.java" + }, + "line": 128 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", + "filename": "EventDispatchThread.java" + }, + "line": 117 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", + "filename": "EventDispatchThread.java" + }, + "line": 113 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", + "filename": "EventDispatchThread.java" + }, + "line": 105 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.run()", + "filename": "EventDispatchThread.java" + }, + "line": 92 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + { + "function": { + "name": "StubRoutines (initial stubs) [call_stub_return_address]" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x914b94", + "lines": [ + { + "function": { + "name": "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "thread_entry(JavaThread*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "JavaThread::thread_main_inner()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "Thread::call_run()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "thread_native_entry(Thread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "start_thread", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "__GI___clone3", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "boolean java.lang.String.equals(java.lang.Object)", + "filename": "String.java" + }, + "line": 1858 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2d", + "lines": [ + { + "function": { + "name": "java.lang.Object java.util.Hashtable.get(java.lang.Object)", + "filename": "Hashtable.java" + }, + "line": 384 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object javax.swing.UIDefaults.getFromHashtable(java.lang.Object)", + "filename": "UIDefaults.java" + }, + "line": 183 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "java.lang.Object javax.swing.UIDefaults.get(java.lang.Object)", + "filename": "UIDefaults.java" + }, + "line": 171 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "boolean javax.swing.UIDefaults.getBoolean(java.lang.Object)", + "filename": "UIDefaults.java" + }, + "line": 604 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.ui.StartupUiUtil.isDarkTheme()", + "filename": "StartupUiUtil.kt" + }, + "line": 51 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "boolean com.intellij.util.ui.StartupUiUtil.isUnderDarcula()", + "filename": "StartupUiUtil.kt" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "javax.swing.Icon com.intellij.ide.util.treeView.NodeRenderer.fixIconIfNeeded(javax.swing.Icon, boolean, boolean)", + "filename": "NodeRenderer.java" + }, + "line": 33 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6c", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.treeView.NodeRenderer.customizeLegacyRenderer(javax.swing.JTree, java.lang.Object, boolean, boolean, boolean, int, boolean)", + "filename": "NodeRenderer.java" + }, + "line": 73 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x32", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.util.treeView.NodeRenderer.customizeCellRenderer(javax.swing.JTree, java.lang.Object, boolean, boolean, boolean, int, boolean)", + "filename": "NodeRenderer.java" + }, + "line": 45 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xdf", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.ColoredTreeCellRenderer.rendererComponentInner(javax.swing.JTree, java.lang.Object, boolean, boolean, boolean, int, boolean)", + "filename": "ColoredTreeCellRenderer.java" + }, + "line": 125 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.awt.Component com.intellij.ui.ColoredTreeCellRenderer.getTreeCellRendererComponent(javax.swing.JTree, java.lang.Object, boolean, boolean, boolean, int, boolean)", + "filename": "ColoredTreeCellRenderer.java" + }, + "line": 57 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3a", + "lines": [ + { + "function": { + "name": "java.awt.Component com.intellij.ui.tree.ui.DefaultTreeUI.getRenderer(javax.swing.JTree, java.lang.Object, boolean, boolean, boolean, int, boolean)", + "filename": "DefaultTreeUI.java" + }, + "line": 208 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x36d", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.tree.ui.DefaultTreeUI.paint(java.awt.Graphics, javax.swing.JComponent)", + "filename": "DefaultTreeUI.java" + }, + "line": 347 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)", + "filename": "ComponentUI.java" + }, + "line": 161 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintComponent(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 855 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x41", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.treeStructure.Tree.paintComponent(java.awt.Graphics)", + "filename": "Tree.java" + }, + "line": 381 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x100", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1124 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.treeStructure.Tree.paint(java.awt.Graphics)", + "filename": "Tree.java" + }, + "line": 312 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x204", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 964 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x120", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1133 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xcd", + "lines": [ + { + "function": { + "name": "void javax.swing.JViewport.paint(java.awt.Graphics)", + "filename": "JViewport.java" + }, + "line": 736 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)", + "filename": "JBViewport.java" + }, + "line": 240 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x204", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 964 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)", + "filename": "JBScrollPane.java" + }, + "line": 243 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x120", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1133 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)", + "filename": "JBScrollPane.java" + }, + "line": 231 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x29", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)", + "filename": "JComponent.java" + }, + "line": 5319 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa3", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)", + "filename": "RepaintManager.java" + }, + "line": 1680 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)", + "filename": "RepaintManager.java" + }, + "line": 1655 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x80", + "lines": [ + { + "function": { + "name": "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)", + "filename": "RepaintManager.java" + }, + "line": 1592 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19a", + "lines": [ + { + "function": { + "name": "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)", + "filename": "BufferStrategyPaintManager.java" + }, + "line": 281 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x34", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)", + "filename": "RepaintManager.java" + }, + "line": 1352 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2ab", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent._paintImmediately(int, int, int, int)", + "filename": "JComponent.java" + }, + "line": 5267 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8a", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintImmediately(int, int, int, int)", + "filename": "JComponent.java" + }, + "line": 5077 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "java.lang.Void javax.swing.RepaintManager$4.run()", + "filename": "RepaintManager.java" + }, + "line": 887 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object javax.swing.RepaintManager$4.run()", + "filename": "RepaintManager.java" + }, + "line": 870 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)", + "filename": "AccessController.java" + }, + "line": 778 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", + "filename": "AccessController.java" + }, + "line": 400 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)", + "filename": "ProtectionDomain.java" + }, + "line": 87 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)", + "filename": "RepaintManager.java" + }, + "line": 870 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager.paintDirtyRegions()", + "filename": "RepaintManager.java" + }, + "line": 843 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x49", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager.prePaintDirtyRegions()", + "filename": "RepaintManager.java" + }, + "line": 789 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager$ProcessingRunnable.run()", + "filename": "RepaintManager.java" + }, + "line": 1921 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", + "filename": "propagation.kt" + }, + "line": 101 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", + "filename": "propagation.kt" + }, + "line": 101 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x26", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)", + "filename": "propagation.kt" + }, + "line": 107 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)", + "filename": "propagation.kt" + }, + "line": 101 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.ContextRunnable.run()", + "filename": "ContextRunnable.java" + }, + "line": 27 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2f", + "lines": [ + { + "function": { + "name": "void java.awt.event.InvocationEvent.dispatch()", + "filename": "InvocationEvent.java" + }, + "line": 318 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", + "filename": "EventQueue.java" + }, + "line": 781 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "java.lang.Void java.awt.EventQueue$4.run()", + "filename": "EventQueue.java" + }, + "line": 728 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object java.awt.EventQueue$4.run()", + "filename": "EventQueue.java" + }, + "line": 722 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)", + "filename": "AccessController.java" + }, + "line": 778 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", + "filename": "AccessController.java" + }, + "line": 400 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)", + "filename": "ProtectionDomain.java" + }, + "line": 87 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "EventQueue.java" + }, + "line": 750 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5c", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 675 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x18e", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 573 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 355 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3b", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)", + "filename": "CoreProgressManager.java" + }, + "line": 857 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 354 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1045 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 24 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x60", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 128 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "ApplicationImpl.java" + }, + "line": 916 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 55 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 23 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1045 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1054 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 109 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7f", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1054 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x48", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)", + "filename": "IdeEventQueue.kt" + }, + "line": 349 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1cc", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 387 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", + "filename": "EventDispatchThread.java" + }, + "line": 207 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", + "filename": "EventDispatchThread.java" + }, + "line": 128 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", + "filename": "EventDispatchThread.java" + }, + "line": 117 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", + "filename": "EventDispatchThread.java" + }, + "line": 113 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", + "filename": "EventDispatchThread.java" + }, + "line": 105 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.run()", + "filename": "EventDispatchThread.java" + }, + "line": 92 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + { + "function": { + "name": "StubRoutines (initial stubs) [call_stub_return_address]" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x914b94", + "lines": [ + { + "function": { + "name": "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "thread_entry(JavaThread*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "JavaThread::thread_main_inner()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "Thread::call_run()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "thread_native_entry(Thread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "start_thread", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "__GI___clone3", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "kotlinx.coroutines.internal.ThreadSafeHeapNode kotlinx.coroutines.internal.ThreadSafeHeap.removeAtImpl(int)", + "filename": "ThreadSafeHeap.kt" + }, + "line": 88 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x45", + "lines": [ + { + "function": { + "name": "boolean kotlinx.coroutines.internal.ThreadSafeHeap.remove(kotlinx.coroutines.internal.ThreadSafeHeapNode)", + "filename": "ThreadSafeHeap.kt" + }, + "line": 78 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x37", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.EventLoopImplBase$DelayedTask.dispose()", + "filename": "EventLoop.common.kt" + }, + "line": 479 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.DisposeOnCancel.invoke(java.lang.Throwable)", + "filename": "CancellableContinuation.kt" + }, + "line": 379 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.CancellableContinuationImpl.callCancelHandler(kotlinx.coroutines.CancelHandler, java.lang.Throwable)", + "filename": "CancellableContinuationImpl.kt" + }, + "line": 245 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x61", + "lines": [ + { + "function": { + "name": "boolean kotlinx.coroutines.CancellableContinuationImpl.cancel(java.lang.Throwable)", + "filename": "CancellableContinuationImpl.kt" + }, + "line": 208 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.CancellableContinuationImpl.parentCancelled$kotlinx_coroutines_core(java.lang.Throwable)", + "filename": "CancellableContinuationImpl.kt" + }, + "line": 220 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.ChildContinuation.invoke(java.lang.Throwable)", + "filename": "JobSupport.kt" + }, + "line": 1447 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x47", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.JobSupport.notifyCancelling(kotlinx.coroutines.NodeList, java.lang.Throwable)", + "filename": "JobSupport.kt" + }, + "line": 1473 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x63", + "lines": [ + { + "function": { + "name": "boolean kotlinx.coroutines.JobSupport.tryMakeCancelling(kotlinx.coroutines.Incomplete, java.lang.Throwable)", + "filename": "JobSupport.kt" + }, + "line": 796 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x112", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.JobSupport.makeCancelling(java.lang.Object)", + "filename": "JobSupport.kt" + }, + "line": 756 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "boolean kotlinx.coroutines.JobSupport.cancelImpl$kotlinx_coroutines_core(java.lang.Object)", + "filename": "JobSupport.kt" + }, + "line": 672 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.JobSupport.cancelInternal(java.lang.Throwable)", + "filename": "JobSupport.kt" + }, + "line": 633 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x24", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.JobSupport.cancel(java.util.concurrent.CancellationException)", + "filename": "JobSupport.kt" + }, + "line": 618 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.JobKt__JobKt.cancel(kotlinx.coroutines.Job, java.lang.String, java.lang.Throwable)", + "filename": "Job.kt" + }, + "line": 607 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.JobKt.cancel(kotlinx.coroutines.Job, java.lang.String, java.lang.Throwable)", + "filename": "\u003cunknown\u003e" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.JobKt__JobKt.cancel$default(kotlinx.coroutines.Job, java.lang.String, java.lang.Throwable, int, java.lang.Object)", + "filename": "Job.kt" + }, + "line": 607 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x6", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.JobKt.cancel$default(kotlinx.coroutines.Job, java.lang.String, java.lang.Throwable, int, java.lang.Object)", + "filename": "\u003cunknown\u003e" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x17", + "lines": [ + { + "function": { + "name": "void com.intellij.diagnostic.ThreadDumpService$start$1.close()", + "filename": "ThreadDumpService.kt" + }, + "line": 55 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "void kotlin.jdk7.AutoCloseableKt.closeFinally(java.lang.AutoCloseable, java.lang.Throwable)", + "filename": "AutoCloseableJVM.kt" + }, + "line": 48 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x142", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater.computeOnEdt$lambda$9(com.intellij.openapi.actionSystem.impl.ActionUpdater, long, kotlin.jvm.internal.Ref$LongRef, java.lang.String, boolean, kotlin.jvm.functions.Function0, kotlin.jvm.internal.Ref$LongRef, kotlin.jvm.internal.Ref$ObjectRef)", + "filename": "ActionUpdater.kt" + }, + "line": 954 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$computeOnEdt$deferred$1.invokeSuspend$lambda$0(kotlin.jvm.functions.Function0)", + "filename": "ActionUpdater.kt" + }, + "line": 428 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$computeOnEdt$deferred$1$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.writeIntentReadAction$lambda$1$lambda$0(kotlin.jvm.functions.Function0)", + "filename": "coroutines.kt" + }, + "line": 329 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x60", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 128 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "ApplicationImpl.java" + }, + "line": 916 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.writeIntentReadAction$lambda$1(kotlin.jvm.functions.Function0)", + "filename": "coroutines.kt" + }, + "line": 329 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.CoroutinesKt.blockingContextInner(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)", + "filename": "coroutines.kt" + }, + "line": 341 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x32", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.CoroutinesKt$blockingContext$2.invokeSuspend(java.lang.Object)", + "filename": "coroutines.kt" + }, + "line": 233 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.CoroutinesKt$blockingContext$2.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.CoroutinesKt$blockingContext$2.invoke(java.lang.Object, java.lang.Object)", + "filename": "coroutines.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4f", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)", + "filename": "Undispatched.kt" + }, + "line": 62 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "java.lang.Object kotlinx.coroutines.CoroutineScopeKt.coroutineScope(kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)", + "filename": "CoroutineScope.kt" + }, + "line": 261 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.CoroutinesKt.blockingContext(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 232 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.CoroutinesKt.writeIntentReadAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)", + "filename": "coroutines.kt" + }, + "line": 328 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x36", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionUpdater$computeOnEdt$deferred$1.invokeSuspend(java.lang.Object)", + "filename": "ActionUpdater.kt" + }, + "line": 427 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c", + "lines": [ + { + "function": { + "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", + "filename": "ContinuationImpl.kt" + }, + "line": 33 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x154", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.DispatchedTask.run()", + "filename": "DispatchedTask.kt" + }, + "line": 104 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.EdtCoroutineDispatcher$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl$2.run()", + "filename": "TransactionGuardImpl.java" + }, + "line": 221 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo)", + "filename": "FlushQueue.java" + }, + "line": 117 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x31", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.FlushQueue.flushNow()", + "filename": "FlushQueue.java" + }, + "line": 43 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2f", + "lines": [ + { + "function": { + "name": "void java.awt.event.InvocationEvent.dispatch()", + "filename": "InvocationEvent.java" + }, + "line": 318 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", + "filename": "EventQueue.java" + }, + "line": 781 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "java.lang.Void java.awt.EventQueue$4.run()", + "filename": "EventQueue.java" + }, + "line": 728 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object java.awt.EventQueue$4.run()", + "filename": "EventQueue.java" + }, + "line": 722 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)", + "filename": "AccessController.java" + }, + "line": 778 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", + "filename": "AccessController.java" + }, + "line": 400 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)", + "filename": "ProtectionDomain.java" + }, + "line": 87 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "EventQueue.java" + }, + "line": 750 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5c", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 675 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x18e", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 573 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 355 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3b", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)", + "filename": "CoreProgressManager.java" + }, + "line": 857 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 354 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1045 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 24 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x60", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 128 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "ApplicationImpl.java" + }, + "line": 916 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 55 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 23 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1045 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1054 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 109 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7f", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1054 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x48", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)", + "filename": "IdeEventQueue.kt" + }, + "line": 349 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1ff", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 395 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", + "filename": "EventDispatchThread.java" + }, + "line": 207 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", + "filename": "EventDispatchThread.java" + }, + "line": 128 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", + "filename": "EventDispatchThread.java" + }, + "line": 117 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", + "filename": "EventDispatchThread.java" + }, + "line": 113 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", + "filename": "EventDispatchThread.java" + }, + "line": 105 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.run()", + "filename": "EventDispatchThread.java" + }, + "line": 92 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + { + "function": { + "name": "StubRoutines (initial stubs) [call_stub_return_address]" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x914b94", + "lines": [ + { + "function": { + "name": "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "thread_entry(JavaThread*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "JavaThread::thread_main_inner()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "Thread::call_run()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "thread_native_entry(Thread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "start_thread", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "__GI___clone3", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.awt.Window javax.swing.SwingUtilities.getWindowAncestor(java.awt.Component)", + "filename": "SwingUtilities.java" + }, + "line": 146 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x17", + "lines": [ + { + "function": { + "name": "java.awt.Window com.intellij.ui.ComponentUtil.getWindow(java.awt.Component)", + "filename": "ComponentUtil.java" + }, + "line": 76 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.application.ModalityState com.intellij.openapi.application.impl.ApplicationImpl.getModalityStateForComponent(java.awt.Component)", + "filename": "ApplicationImpl.java" + }, + "line": 456 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.application.ModalityState com.intellij.openapi.application.ModalityState.stateForComponent(java.awt.Component)", + "filename": "ModalityState.java" + }, + "line": 87 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.application.ModalityState com.intellij.openapi.actionSystem.impl.ToolbarUpdater$MyTimerListener.getModalityState()", + "filename": "ToolbarUpdater.java" + }, + "line": 126 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "com.intellij.openapi.application.ModalityState com.intellij.openapi.actionSystem.impl.CapturingListener.getModalityState()", + "filename": "ActionManagerImpl.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.actionSystem.impl.ActionManagerImplKt.runListenerAction(com.intellij.openapi.actionSystem.TimerListener)", + "filename": "ActionManagerImpl.kt" + }, + "line": 1417 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.actionSystem.impl.ActionManagerImplKt.access$runListenerAction(com.intellij.openapi.actionSystem.TimerListener)", + "filename": "ActionManagerImpl.kt" + }, + "line": 1 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5a", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.actionSystem.impl.ActionManagerImpl$MyTimer.tick()", + "filename": "ActionManagerImpl.kt" + }, + "line": 1309 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.actionSystem.impl.ActionManagerImpl$MyTimer.access$tick(com.intellij.openapi.actionSystem.impl.ActionManagerImpl$MyTimer)", + "filename": "ActionManagerImpl.kt" + }, + "line": 1255 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x24", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.actionSystem.impl.ActionManagerImpl$MyTimer$2$1$1.invokeSuspend(java.lang.Object)", + "filename": "ActionManagerImpl.kt" + }, + "line": 1284 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2c", + "lines": [ + { + "function": { + "name": "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)", + "filename": "ContinuationImpl.kt" + }, + "line": 33 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x154", + "lines": [ + { + "function": { + "name": "void kotlinx.coroutines.DispatchedTask.run()", + "filename": "DispatchedTask.kt" + }, + "line": 104 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2f", + "lines": [ + { + "function": { + "name": "void java.awt.event.InvocationEvent.dispatch()", + "filename": "InvocationEvent.java" + }, + "line": 318 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", + "filename": "EventQueue.java" + }, + "line": 781 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "java.lang.Void java.awt.EventQueue$4.run()", + "filename": "EventQueue.java" + }, + "line": 728 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object java.awt.EventQueue$4.run()", + "filename": "EventQueue.java" + }, + "line": 722 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)", + "filename": "AccessController.java" + }, + "line": 778 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", + "filename": "AccessController.java" + }, + "line": 400 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)", + "filename": "ProtectionDomain.java" + }, + "line": 87 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "EventQueue.java" + }, + "line": 750 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5c", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 675 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x18e", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 573 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 355 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3b", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)", + "filename": "CoreProgressManager.java" + }, + "line": 857 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 354 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1045 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 24 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x60", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 128 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "ApplicationImpl.java" + }, + "line": 916 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 55 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 23 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1045 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1054 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 109 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7f", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1054 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x48", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)", + "filename": "IdeEventQueue.kt" + }, + "line": 349 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1ff", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 395 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", + "filename": "EventDispatchThread.java" + }, + "line": 207 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", + "filename": "EventDispatchThread.java" + }, + "line": 128 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", + "filename": "EventDispatchThread.java" + }, + "line": 117 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", + "filename": "EventDispatchThread.java" + }, + "line": 113 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", + "filename": "EventDispatchThread.java" + }, + "line": 105 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.run()", + "filename": "EventDispatchThread.java" + }, + "line": 92 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + { + "function": { + "name": "StubRoutines (initial stubs) [call_stub_return_address]" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x914b94", + "lines": [ + { + "function": { + "name": "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "thread_entry(JavaThread*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "JavaThread::thread_main_inner()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "Thread::call_run()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "thread_native_entry(Thread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "start_thread", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "__GI___clone3", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "void java.util.HashMap.putMapEntries(java.util.Map, boolean)", + "filename": "HashMap.java" + }, + "line": 503 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1c", + "lines": [ + { + "function": { + "name": "java.lang.Object java.util.HashMap.clone()", + "filename": "HashMap.java" + }, + "line": 1473 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "java.lang.Object java.awt.RenderingHints.clone()", + "filename": "RenderingHints.java" + }, + "line": 1333 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5f", + "lines": [ + { + "function": { + "name": "java.lang.Object java.awt.Toolkit.getDesktopProperty(java.lang.String)", + "filename": "Toolkit.java" + }, + "line": 1568 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19", + "lines": [ + { + "function": { + "name": "int com.intellij.util.ui.StartupUiUtil.doGetLcdContrastValueForSplash(boolean)", + "filename": "StartupUiUtil.kt" + }, + "line": 78 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x24", + "lines": [ + { + "function": { + "name": "int com.intellij.util.ui.StartupUiUtil.getLcdContrastValue()", + "filename": "StartupUiUtil.kt" + }, + "line": 65 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x0", + "lines": [ + { + "function": { + "name": "int com.intellij.util.ui.UIUtil.getLcdContrastValue()", + "filename": "UIUtil.java" + }, + "line": 2521 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.ui.UISettings$Companion.setupAntialiasing(java.awt.Graphics)", + "filename": "UISettings.kt" + }, + "line": 668 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.ui.UISettings.setupAntialiasing(java.awt.Graphics)", + "filename": "UISettings.kt" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.SimpleColoredComponent.applyAdditionalHints(java.awt.Graphics2D)", + "filename": "SimpleColoredComponent.java" + }, + "line": 1100 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x47", + "lines": [ + { + "function": { + "name": "int com.intellij.ui.SimpleColoredComponent.doPaintText(java.awt.Graphics2D, int, boolean)", + "filename": "SimpleColoredComponent.java" + }, + "line": 836 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x54", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.SimpleColoredComponent.doPaint(java.awt.Graphics2D)", + "filename": "SimpleColoredComponent.java" + }, + "line": 766 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.SimpleColoredComponent.paintComponent(java.awt.Graphics)", + "filename": "SimpleColoredComponent.java" + }, + "line": 745 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x100", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1124 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7c", + "lines": [ + { + "function": { + "name": "void javax.swing.CellRendererPane.paintComponent(java.awt.Graphics, java.awt.Component, java.awt.Container, int, int, int, int, boolean)", + "filename": "CellRendererPane.java" + }, + "line": 170 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x43e", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.tree.ui.DefaultTreeUI.paint(java.awt.Graphics, javax.swing.JComponent)", + "filename": "DefaultTreeUI.java" + }, + "line": 372 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)", + "filename": "ComponentUI.java" + }, + "line": 161 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1a", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintComponent(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 855 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x41", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.treeStructure.Tree.paintComponent(java.awt.Graphics)", + "filename": "Tree.java" + }, + "line": 381 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x100", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1124 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.treeStructure.Tree.paint(java.awt.Graphics)", + "filename": "Tree.java" + }, + "line": 312 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x204", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 964 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x120", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1133 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xcd", + "lines": [ + { + "function": { + "name": "void javax.swing.JViewport.paint(java.awt.Graphics)", + "filename": "JViewport.java" + }, + "line": 736 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)", + "filename": "JBViewport.java" + }, + "line": 240 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x204", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintChildren(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 964 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)", + "filename": "JBScrollPane.java" + }, + "line": 243 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x120", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paint(java.awt.Graphics)", + "filename": "JComponent.java" + }, + "line": 1133 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)", + "filename": "JBScrollPane.java" + }, + "line": 231 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x29", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)", + "filename": "JComponent.java" + }, + "line": 5319 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xa3", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)", + "filename": "RepaintManager.java" + }, + "line": 1680 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)", + "filename": "RepaintManager.java" + }, + "line": 1655 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x80", + "lines": [ + { + "function": { + "name": "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)", + "filename": "RepaintManager.java" + }, + "line": 1592 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x19a", + "lines": [ + { + "function": { + "name": "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)", + "filename": "BufferStrategyPaintManager.java" + }, + "line": 281 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x34", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)", + "filename": "RepaintManager.java" + }, + "line": 1352 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2ab", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent._paintImmediately(int, int, int, int)", + "filename": "JComponent.java" + }, + "line": 5267 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8a", + "lines": [ + { + "function": { + "name": "void javax.swing.JComponent.paintImmediately(int, int, int, int)", + "filename": "JComponent.java" + }, + "line": 5077 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "java.lang.Void javax.swing.RepaintManager$4.run()", + "filename": "RepaintManager.java" + }, + "line": 887 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object javax.swing.RepaintManager$4.run()", + "filename": "RepaintManager.java" + }, + "line": 870 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)", + "filename": "AccessController.java" + }, + "line": 778 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", + "filename": "AccessController.java" + }, + "line": 400 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)", + "filename": "ProtectionDomain.java" + }, + "line": 87 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9a", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)", + "filename": "RepaintManager.java" + }, + "line": 870 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager.paintDirtyRegions()", + "filename": "RepaintManager.java" + }, + "line": 843 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x49", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager.prePaintDirtyRegions()", + "filename": "RepaintManager.java" + }, + "line": 789 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x25", + "lines": [ + { + "function": { + "name": "void javax.swing.RepaintManager$ProcessingRunnable.run()", + "filename": "RepaintManager.java" + }, + "line": 1921 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", + "filename": "propagation.kt" + }, + "line": 101 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()", + "filename": "propagation.kt" + }, + "line": 101 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x26", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)", + "filename": "propagation.kt" + }, + "line": 107 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x13", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)", + "filename": "propagation.kt" + }, + "line": 101 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "void com.intellij.util.concurrency.ContextRunnable.run()", + "filename": "ContextRunnable.java" + }, + "line": 27 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2f", + "lines": [ + { + "function": { + "name": "void java.awt.event.InvocationEvent.dispatch()", + "filename": "InvocationEvent.java" + }, + "line": 318 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)", + "filename": "EventQueue.java" + }, + "line": 781 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "java.lang.Void java.awt.EventQueue$4.run()", + "filename": "EventQueue.java" + }, + "line": 728 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object java.awt.EventQueue$4.run()", + "filename": "EventQueue.java" + }, + "line": 722 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1d", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)", + "filename": "AccessController.java" + }, + "line": 778 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)", + "filename": "AccessController.java" + }, + "line": 400 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)", + "filename": "ProtectionDomain.java" + }, + "line": 87 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e", + "lines": [ + { + "function": { + "name": "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "EventQueue.java" + }, + "line": 750 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x5c", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 675 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x18e", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 573 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 355 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x8", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3b", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)", + "filename": "CoreProgressManager.java" + }, + "line": 857 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 354 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1045 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 24 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x60", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "AnyThreadWriteThreadingSupport.kt" + }, + "line": 128 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xd", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)", + "filename": "ApplicationImpl.java" + }, + "line": 916 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xc", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 55 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xe", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)", + "filename": "WriteIntentReadAction.java" + }, + "line": 23 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1045 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1054 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2a", + "lines": [ + { + "function": { + "name": "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)", + "filename": "TransactionGuardImpl.java" + }, + "line": 109 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x7f", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)", + "filename": "IdeEventQueue.kt" + }, + "line": 1054 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x48", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)", + "filename": "IdeEventQueue.kt" + }, + "line": 349 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x20", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()", + "filename": "\u003cunknown\u003e" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1cc", + "lines": [ + { + "function": { + "name": "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)", + "filename": "IdeEventQueue.kt" + }, + "line": 387 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x51", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)", + "filename": "EventDispatchThread.java" + }, + "line": 207 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x23", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)", + "filename": "EventDispatchThread.java" + }, + "line": 128 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xb", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)", + "filename": "EventDispatchThread.java" + }, + "line": 117 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x4", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)", + "filename": "EventDispatchThread.java" + }, + "line": 113 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x3", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)", + "filename": "EventDispatchThread.java" + }, + "line": 105 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12", + "lines": [ + { + "function": { + "name": "void java.awt.EventDispatchThread.run()", + "filename": "EventDispatchThread.java" + }, + "line": 92 + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + { + "function": { + "name": "StubRoutines (initial stubs) [call_stub_return_address]" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x914b94", + "lines": [ + { + "function": { + "name": "JavaCalls::call_helper(JavaValue*, methodHandle const\u0026, JavaCallArguments*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9164da", + "lines": [ + { + "function": { + "name": "JavaCalls::call_virtual(JavaValue*, Handle, Klass*, Symbol*, Symbol*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9e65b9", + "lines": [ + { + "function": { + "name": "thread_entry(JavaThread*, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "JavaThread::thread_main_inner()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "Thread::call_run()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "thread_native_entry(Thread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "start_thread", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "__GI___clone3", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x8e1a40", + "lines": [ + { + "function": { + "name": "InstanceKlass::uncached_lookup_method(Symbol const*, Symbol const*, Klass::OverpassLookupMode, Klass::PrivateLookupMode) const", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xb8adcb", + "lines": [ + { + "function": { + "name": "LinkResolver::lookup_method_in_klasses(LinkInfo const\u0026, bool, bool)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xb8cb22", + "lines": [ + { + "function": { + "name": "LinkResolver::resolve_method(LinkInfo const\u0026, Bytecodes::Code, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xb9153c", + "lines": [ + { + "function": { + "name": "LinkResolver::resolve_static_call(CallInfo\u0026, LinkInfo const\u0026, bool, JavaThread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xb91a01", + "lines": [ + { + "function": { + "name": "LinkResolver::resolve_static_call_or_null(LinkInfo const\u0026)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x5cf038", + "lines": [ + { + "function": { + "name": "ciEnv::lookup_method(ciInstanceKlass*, ciKlass*, Symbol*, Symbol*, Bytecodes::Code, constantTag)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x5cf2ab", + "lines": [ + { + "function": { + "name": "ciEnv::get_method_by_index_impl(constantPoolHandle const\u0026, int, Bytecodes::Code, ciInstanceKlass*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x5ffe37", + "lines": [ + { + "function": { + "name": "ciBytecodeStream::get_method(bool\u0026, ciSignature**)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x60374e", + "lines": [ + { + "function": { + "name": "ciTypeFlow::StateVector::do_invoke(ciBytecodeStream*, bool)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x603c3a", + "lines": [ + { + "function": { + "name": "ciTypeFlow::StateVector::apply_one_bytecode(ciBytecodeStream*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x608e65", + "lines": [ + { + "function": { + "name": "ciTypeFlow::flow_block(ciTypeFlow::Block*, ciTypeFlow::StateVector*, ciTypeFlow::JsrSet*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x6098a0", + "lines": [ + { + "function": { + "name": "ciTypeFlow::df_flow_types(ciTypeFlow::Block*, bool, ciTypeFlow::StateVector*, ciTypeFlow::JsrSet*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x60a598", + "lines": [ + { + "function": { + "name": "ciTypeFlow::flow_types()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x60a6a1", + "lines": [ + { + "function": { + "name": "ciTypeFlow::do_flow()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x5dfa11", + "lines": [ + { + "function": { + "name": "ciMethod::get_flow_analysis()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4d98aa", + "lines": [ + { + "function": { + "name": "InlineTree::ok_to_inline(ciMethod*, JVMState*, ciCallProfile\u0026, bool\u0026)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765351", + "lines": [ + { + "function": { + "name": "Compile::call_generator(ciMethod*, int, bool, JVMState*, bool, float, ciKlass*, bool)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765ced", + "lines": [ + { + "function": { + "name": "Parse::do_call()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "Parse::do_one_block()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "Parse::do_all_blocks()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "Parse::Parse(JVMState*, ciMethod*, float)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "ParseGenerator::generate(JVMState*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "PredictedCallGenerator::generate(JVMState*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "PredictedCallGenerator::generate(JVMState*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "Parse::do_call()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "Parse::do_one_block()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "Parse::do_all_blocks()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "Parse::Parse(JVMState*, ciMethod*, float)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "ParseGenerator::generate(JVMState*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "PredictedCallGenerator::generate(JVMState*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "PredictedCallGenerator::generate(JVMState*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e05d", + "lines": [ + { + "function": { + "name": "PredictedCallGenerator::generate(JVMState*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "Parse::do_call()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "Parse::do_one_block()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "Parse::do_all_blocks()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "Parse::Parse(JVMState*, ciMethod*, float)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "ParseGenerator::generate(JVMState*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59e148", + "lines": [ + { + "function": { + "name": "PredictedCallGenerator::generate(JVMState*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x765d47", + "lines": [ + { + "function": { + "name": "Parse::do_call()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd34374", + "lines": [ + { + "function": { + "name": "Parse::do_one_block()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd347b4", + "lines": [ + { + "function": { + "name": "Parse::do_all_blocks()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd36f34", + "lines": [ + { + "function": { + "name": "Parse::Parse(JVMState*, ciMethod*, float)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59c77a", + "lines": [ + { + "function": { + "name": "ParseGenerator::generate(JVMState*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x675d45", + "lines": [ + { + "function": { + "name": "Compile::Compile(ciEnv*, ciMethod*, int, Options, DirectiveSet*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x59b62e", + "lines": [ + { + "function": { + "name": "C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "CompileBroker::invoke_compiler_on_method(CompileTask*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "CompileBroker::compiler_thread_loop()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "JavaThread::thread_main_inner()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "Thread::call_run()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "thread_native_entry(Thread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "start_thread", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "__GI___clone3", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0xd13d46", + "lines": [ + { + "function": { + "name": "PlatformMonitor::wait(unsigned long)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xcbad68", + "lines": [ + { + "function": { + "name": "Monitor::wait_without_safepoint_check(unsigned long)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xcd398c", + "lines": [ + { + "function": { + "name": "WatcherThread::sleep() const", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xcd3a90", + "lines": [ + { + "function": { + "name": "WatcherThread::run()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "Thread::call_run()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "thread_native_entry(Thread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "start_thread", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "__GI___clone3", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x6e535e", + "lines": [ + { + "function": { + "name": "Dependencies::assert_evol_method(ciMethod*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4eccac", + "lines": [ + { + "function": { + "name": "Compilation::compile_method()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4ecfe7", + "lines": [ + { + "function": { + "name": "Compilation::Compilation(AbstractCompiler*, ciEnv*, ciMethod*, int, BufferBlob*, bool, DirectiveSet*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x4edd4b", + "lines": [ + { + "function": { + "name": "Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67c233", + "lines": [ + { + "function": { + "name": "CompileBroker::invoke_compiler_on_method(CompileTask*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x67f1a3", + "lines": [ + { + "function": { + "name": "CompileBroker::compiler_thread_loop()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x92b50e", + "lines": [ + { + "function": { + "name": "JavaThread::thread_main_inner()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xf7b717", + "lines": [ + { + "function": { + "name": "Thread::call_run()", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0xd075c9", + "lines": [ + { + "function": { + "name": "thread_native_entry(Thread*)", + "filename": "/home/korniltsev/.local/share/JetBrains/Toolbox/apps/goland/jbr/lib/server/libjvm.so" + } + } + ], + "mapping": { + "start": "0x2a3000", + "limit": "0x1118000", + "offset": "0x7e27b7c00000", + "filename": "libjvm.so", + "build_id": "6fde8df3515ff5211ba4da5fa3aa19407c460932" + } + }, + { + "address": "0x9ca93", + "lines": [ + { + "function": { + "name": "start_thread", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + }, + { + "address": "0x129c3b", + "lines": [ + { + "function": { + "name": "__GI___clone3", + "filename": "/usr/lib/x86_64-linux-gnu/libc.so.6" + } + } + ], + "mapping": { + "start": "0x28000", + "limit": "0x1b0000", + "offset": "0x7846e0600000", + "filename": "libc.so.6", + "build_id": "6d64b17fbac799e68da7ebd9985ddf9b5cb375e6" + } + } + ], + "values": [ + 50000000 + ] + }, + { + "locations": [ + { + "address": "0x87cc4b", + "lines": [ + { + "function": { + "name": "ioread32" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9ef74", + "lines": [ + { + "function": { + "name": "nvkm_timer_read" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xac40b", + "lines": [ + { + "function": { + "name": "nvkm_udevice_mthd" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0xae89", + "lines": [ + { + "function": { + "name": "nvkm_object_mthd" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x950c", + "lines": [ + { + "function": { + "name": "nvkm_ioctl_mthd" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x9b94", + "lines": [ + { + "function": { + "name": "nvkm_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11dcbd", + "lines": [ + { + "function": { + "name": "nvkm_client_ioctl" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x468", + "lines": [ + { + "function": { + "name": "nvif_object_mthd" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x11a5", + "lines": [ + { + "function": { + "name": "nvif_device_time" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x47d4", + "lines": [ + { + "function": { + "name": "nvif_timer_wait_test" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x160554", + "lines": [ + { + "function": { + "name": "base507c_ntfy_wait_begun" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15df99", + "lines": [ + { + "function": { + "name": "nv50_wndw_wait_armed" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14f7b9", + "lines": [ + { + "function": { + "name": "nv50_disp_atomic_commit_tail" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14feb1", + "lines": [ + { + "function": { + "name": "nv50_disp_atomic_commit_work" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12bee7", + "lines": [ + { + "function": { + "name": "process_one_work" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12d1c5", + "lines": [ + { + "function": { + "name": "worker_thread" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x137d71", + "lines": [ + { + "function": { + "name": "kthread" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x68aa6", + "lines": [ + { + "function": { + "name": "ret_from_fork" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x547a", + "lines": [ + { + "function": { + "name": "ret_from_fork_asm" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + } + ], + "values": [ + 150000000 + ] + }, + { + "locations": [ + { + "address": "0x87cc4b", + "lines": [ + { + "function": { + "name": "ioread32" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x160567", + "lines": [ + { + "function": { + "name": "base507c_ntfy_wait_begun" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x15df99", + "lines": [ + { + "function": { + "name": "nv50_wndw_wait_armed" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14f7b9", + "lines": [ + { + "function": { + "name": "nv50_disp_atomic_commit_tail" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x14feb1", + "lines": [ + { + "function": { + "name": "nv50_disp_atomic_commit_work" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12bee7", + "lines": [ + { + "function": { + "name": "process_one_work" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12d1c5", + "lines": [ + { + "function": { + "name": "worker_thread" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x137d71", + "lines": [ + { + "function": { + "name": "kthread" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x68aa6", + "lines": [ + { + "function": { + "name": "ret_from_fork" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x547a", + "lines": [ + { + "function": { + "name": "ret_from_fork_asm" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + } + ], + "values": [ + 150000000 + ] + }, + { + "locations": [ + { + "address": "0x150f38", + "lines": [ + { + "function": { + "name": "finish_task_switch.isra.0" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1240963", + "lines": [ + { + "function": { + "name": "__schedule" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x1240dd2", + "lines": [ + { + "function": { + "name": "schedule" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x12d095", + "lines": [ + { + "function": { + "name": "worker_thread" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x137d71", + "lines": [ + { + "function": { + "name": "kthread" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x68aa6", + "lines": [ + { + "function": { + "name": "ret_from_fork" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + }, + { + "address": "0x547a", + "lines": [ + { + "function": { + "name": "ret_from_fork_asm" + } + } + ], + "mapping": { + "start": "0x0", + "limit": "0x0", + "offset": "0x0" + } + } + ], + "values": [ + 100000000 + ] + }, + { + "locations": [ + { + "address": "0x1ddc8", + "lines": [ + { + "function": { + "name": "XGetGeometry", + "filename": "/usr/lib/x86_64-linux-gnu/libX11.so.6.4.0" + } + } + ], + "mapping": { + "start": "0x19000", + "limit": "0xa9000", + "offset": "0x7350c06c3000", + "filename": "libX11.so.6.4.0", + "build_id": "4cb55b1a3e1fcb63bde78cbab338d576fc43e330" + } + } + ], + "values": [ + 50000000 + ] + } + ], + "period": "1000000000" +} \ No newline at end of file diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized.pb.bin b/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized.pb.bin new file mode 100644 index 0000000000000000000000000000000000000000..ccf6a68454d47e4997a1c39fee7e04cd878bdef7 GIT binary patch literal 95526 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%0D{xf7-+Wsn&e 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 Au>b%7 literal 0 HcmV?d00001 diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.json b/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.json new file mode 100644 index 0000000000..b185432e51 --- /dev/null +++ b/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.json @@ -0,0 +1,19079 @@ +{ + "sample_types": [ + { + "type": "cpu", + "unit": "nanoseconds" + } + ], + "samples": [ + { + "locations": [ + { + "address": "0x4e", + "lines": [ + "java.util.Set com.intellij.openapi.fileEditor.impl.FileEditorManagerImplKt.getEditorTypeIds(com.intellij.openapi.fileEditor.impl.EditorComposite)[]@FileEditorManagerImpl.kt:2522" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.util.Set com.intellij.openapi.fileEditor.impl.FileEditorManagerImplKt.access$getEditorTypeIds(com.intellij.openapi.fileEditor.impl.EditorComposite)[]@FileEditorManagerImpl.kt:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd7", + "lines": [ + "java.lang.Object com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl.dumbModeFinished(com.intellij.openapi.project.Project, com.intellij.openapi.fileEditor.ex.FileEditorProviderManager, kotlin.coroutines.Continuation)[]@FileEditorManagerImpl.kt:447" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl.access$dumbModeFinished(com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl, com.intellij.openapi.project.Project, com.intellij.openapi.fileEditor.ex.FileEditorProviderManager, kotlin.coroutines.Continuation)[]@FileEditorManagerImpl.kt:118" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "java.lang.Object com.intellij.openapi.fileEditor.impl.FileEditorManagerImpl$dumbModeFinished$1.invokeSuspend(java.lang.Object)[]@FileEditorManagerImpl.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xcc3a29", + "lines": [ + "libjvm.so 0xcc3a29[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x685b45", + "lines": [ + "libjvm.so 0x685b45[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xdb21d0", + "lines": [ + "libjvm.so 0xdb21d0[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xdb24bc", + "lines": [ + "libjvm.so 0xdb24bc[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x6a88bb72f03b51a0", + "lines": [ + "ExceptionBlob[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13d", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:102" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x6f6353f7de2420d8", + "lines": [ + "StubRoutines (final stubs) [arrayof_jbyte_disjoint_arraycopy][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:13" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.CompositeDecoder$DefaultImpls.decodeSerializableElement$default(kotlinx.serialization.encoding.CompositeDecoder, kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object, int, java.lang.Object)[]@Decoding.kt:538" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:80" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)[]@CollectionSerializers.kt:51" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.CompositeDecoder$DefaultImpls.decodeSerializableElement$default(kotlinx.serialization.encoding.CompositeDecoder, kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object, int, java.lang.Object)[]@Decoding.kt:538" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd1", + "lines": [ + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)[]@CollectionSerializers.kt:111" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:84" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)[]@CollectionSerializers.kt:51" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])[]@Cbor.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)[]@InternalStateStorageService.kt:58" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@LocalSettingsController.kt:34" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:37" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.platform.settings.SettingImpl.get()[]@SettingDescriptorImpl.kt:115" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc5", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsData com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsStateService$ExtensionDataProvider.requestExtensionData$intellij_platform_ide_impl(java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@State.kt:191" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider$AdvertiserSuggestion com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProviderKt.getSuggestionData(com.intellij.openapi.project.Project, java.lang.String, java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@PluginAdvertiserEditorNotificationProvider.kt:293" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc2", + "lines": [ + "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)[]@PluginAdvertiserEditorNotificationProvider.kt:57" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.util.Optional com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend$lambda$1(com.intellij.openapi.vfs.VirtualFile, com.intellij.ui.EditorNotificationsImpl, com.intellij.ui.EditorNotificationProvider)[]@EditorNotificationsImpl.kt:244" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable$lambda$4(com.intellij.openapi.application.rw.InternalReadAction)[]@InternalReadAction.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2$lambda$1(kotlinx.coroutines.CompletableJob, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2(kotlinx.coroutines.CompletableJob, com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.PlatformReadWriteActionSupport.executeReadAction(java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@PlatformReadWriteActionSupport.kt:38" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadWriteActionSupport.executeReadAction$default(com.intellij.openapi.application.ReadWriteActionSupport, java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation, int, java.lang.Object)[]@ReadWriteActionSupport.kt:15" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x189", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@LockSupport.java:410" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x56", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:785" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x98d61", + "lines": [ + "libc.so.6 0x98d61[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "libc.so.6 0x9bc7d[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd141d3", + "lines": [ + "libjvm.so 0xd141d3[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xfb3d80", + "lines": [ + "libjvm.so 0xfb3d80[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@Unsafe.java:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@LockSupport.java:410" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x56", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:785" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1228fa4", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "libc.so.6 0x98d60[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "libc.so.6 0x9bc7d[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd141d3", + "lines": [ + "libjvm.so 0xd141d3[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xfb3d80", + "lines": [ + "libjvm.so 0xfb3d80[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@Unsafe.java:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@LockSupport.java:410" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x56", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:785" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt$countAll$1.invoke(java.lang.Object, java.lang.Object)[]@ThreadContext.kt:31" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)[]@CoroutineContextImpl.kt:131" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)[]@CoroutineContextImpl.kt:131" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)[]@CoroutineContextImpl.kt:131" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object kotlin.coroutines.CombinedContext.fold(java.lang.Object, kotlin.jvm.functions.Function2)[]@CoroutineContextImpl.kt:131" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt.threadContextElements(kotlin.coroutines.CoroutineContext)[]@ThreadContext.kt:55" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "java.lang.Object kotlinx.coroutines.internal.ThreadContextKt.updateThreadContext(kotlin.coroutines.CoroutineContext, java.lang.Object)[]@ThreadContext.kt:61" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:270" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.PlatformReadWriteActionSupport.executeReadAction(java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@PlatformReadWriteActionSupport.kt:38" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadWriteActionSupport.executeReadAction$default(com.intellij.openapi.application.ReadWriteActionSupport, java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation, int, java.lang.Object)[]@ReadWriteActionSupport.kt:15" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x189", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x4b", + "lines": [ + "java.lang.Object kotlinx.serialization.json.internal.StreamingJsonDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@StreamingJsonDecoder.kt:171" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.CompositeDecoder$DefaultImpls.decodeSerializableElement$default(kotlinx.serialization.encoding.CompositeDecoder, kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object, int, java.lang.Object)[]@Decoding.kt:538" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd1", + "lines": [ + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)[]@CollectionSerializers.kt:111" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:84" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)[]@CollectionSerializers.kt:51" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])[]@Cbor.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)[]@InternalStateStorageService.kt:58" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@LocalSettingsController.kt:34" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:37" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.platform.settings.SettingImpl.get()[]@SettingDescriptorImpl.kt:115" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc5", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsData com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsStateService$ExtensionDataProvider.requestExtensionData$intellij_platform_ide_impl(java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@State.kt:191" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider$AdvertiserSuggestion com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProviderKt.getSuggestionData(com.intellij.openapi.project.Project, java.lang.String, java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@PluginAdvertiserEditorNotificationProvider.kt:293" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc2", + "lines": [ + "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)[]@PluginAdvertiserEditorNotificationProvider.kt:57" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.util.Optional com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend$lambda$1(com.intellij.openapi.vfs.VirtualFile, com.intellij.ui.EditorNotificationsImpl, com.intellij.ui.EditorNotificationProvider)[]@EditorNotificationsImpl.kt:244" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable$lambda$4(com.intellij.openapi.application.rw.InternalReadAction)[]@InternalReadAction.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2$lambda$1(kotlinx.coroutines.CompletableJob, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2(kotlinx.coroutines.CompletableJob, com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.PlatformReadWriteActionSupport.executeReadAction(java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@PlatformReadWriteActionSupport.kt:38" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadWriteActionSupport.executeReadAction$default(com.intellij.openapi.application.ReadWriteActionSupport, java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation, int, java.lang.Object)[]@ReadWriteActionSupport.kt:15" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x189", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser._finishAndReturnString()[]@UTF8StreamJsonParser.java:2496" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.String com.fasterxml.jackson.core.json.UTF8StreamJsonParser.getValueAsString()[]@UTF8StreamJsonParser.java:337" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.fasterxml.jackson.databind.deser.std.StdDeserializer._deserializeFromString(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)[]@StdDeserializer.java:262" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45", + "lines": [ + "java.lang.Object com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromString(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)[]@BeanDeserializerBase.java:1588" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "java.lang.Object com.fasterxml.jackson.databind.deser.BeanDeserializer._deserializeOther(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext, com.fasterxml.jackson.core.JsonToken)[]@BeanDeserializer.java:197" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)[]@BeanDeserializer.java:187" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "java.util.Collection com.fasterxml.jackson.databind.deser.std.CollectionDeserializer._deserializeFromArray(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext, java.util.Collection)[]@CollectionDeserializer.java:361" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2b", + "lines": [ + "java.util.Collection com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)[]@CollectionDeserializer.java:246" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.DeserializationContext)[]@CollectionDeserializer.java:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.Object com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.readRootValue(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.JavaType, com.fasterxml.jackson.databind.JsonDeserializer, java.lang.Object)[]@DefaultDeserializationContext.java:342" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x57", + "lines": [ + "java.lang.Object com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(com.fasterxml.jackson.core.JsonParser, com.fasterxml.jackson.databind.JavaType)[]@ObjectMapper.java:4905" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "java.lang.Object com.fasterxml.jackson.databind.ObjectMapper.readValue(java.io.InputStream, com.fasterxml.jackson.core.type.TypeReference)[]@ObjectMapper.java:3893" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.util.Set com.intellij.ide.plugins.marketplace.MarketplaceRequests.parseXmlIds(java.io.InputStream)[]@MarketplaceRequests.kt:697" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.util.Set com.intellij.ide.plugins.marketplace.MarketplaceRequests.loadCachedJBPlugins()[]@MarketplaceRequests.kt:624" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider$AdvertiserSuggestion com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProviderKt.getSuggestionData(com.intellij.openapi.project.Project, com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsData, java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@PluginAdvertiserEditorNotificationProvider.kt:308" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8d", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider$AdvertiserSuggestion com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProviderKt.getSuggestionData(com.intellij.openapi.project.Project, java.lang.String, java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@PluginAdvertiserEditorNotificationProvider.kt:294" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc2", + "lines": [ + "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)[]@PluginAdvertiserEditorNotificationProvider.kt:57" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.util.Optional com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend$lambda$1(com.intellij.openapi.vfs.VirtualFile, com.intellij.ui.EditorNotificationsImpl, com.intellij.ui.EditorNotificationProvider)[]@EditorNotificationsImpl.kt:244" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable$lambda$4(com.intellij.openapi.application.rw.InternalReadAction)[]@InternalReadAction.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2$lambda$1(kotlinx.coroutines.CompletableJob, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2(kotlinx.coroutines.CompletableJob, com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.PlatformReadWriteActionSupport.executeReadAction(java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@PlatformReadWriteActionSupport.kt:38" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadWriteActionSupport.executeReadAction$default(com.intellij.openapi.application.ReadWriteActionSupport, java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation, int, java.lang.Object)[]@ReadWriteActionSupport.kt:15" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x189", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean java.lang.String.equals(java.lang.Object)[]@String.java:1858" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "java.util.HashMap$Node java.util.HashMap.getNode(java.lang.Object)[]@HashMap.java:585" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object java.util.HashMap.get(java.lang.Object)[]@HashMap.java:564" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.impl.ExtensionsAreaImpl.getExtensionPointIfRegistered(java.lang.String)[]@ExtensionsAreaImpl.kt:278" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.impl.ExtensionsAreaImpl.getExtensionPoint(java.lang.String)[]@ExtensionsAreaImpl.kt:272" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x37", + "lines": [ + "com.intellij.openapi.extensions.impl.ExtensionPointImpl com.intellij.openapi.extensions.BaseExtensionPointName.getPointImpl$intellij_platform_extensions(com.intellij.openapi.extensions.AreaInstance)[]@BaseExtensionPointName.kt:18" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Iterable com.intellij.openapi.extensions.ExtensionPointName.getIterable()[]@ExtensionPointName.kt:134" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "boolean com.intellij.psi.search.scope.packageSet.CustomScopesProvider.lambda$getFilteredScopes$0(com.intellij.psi.search.scope.packageSet.NamedScope)[]@CustomScopesProvider.java:18" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "boolean com.intellij.psi.search.scope.packageSet.CustomScopesProvider$$Lambda+\u003chidden\u003e.value(java.lang.Object)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "java.util.List com.intellij.util.containers.ContainerUtil.findAll(java.util.Collection, com.intellij.openapi.util.Condition)[]@ContainerUtil.java:1031" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "java.util.List com.intellij.util.containers.ContainerUtil.filter(java.util.Collection, com.intellij.openapi.util.Condition)[]@ContainerUtil.java:1006" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.util.List com.intellij.psi.search.scope.packageSet.CustomScopesProvider.getFilteredScopes()[]@CustomScopesProvider.java:17" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getPredefinedScope(java.lang.String)[]@DependencyValidationManagerImpl.java:69" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.psi.search.scope.packageSet.NamedScopesHolder.getScope(java.lang.String)[]@NamedScopesHolder.java:172" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getScope(java.lang.String, com.intellij.packageDependencies.DependencyValidationManagerImpl$State)[]@DependencyValidationManagerImpl.java:253" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "com.intellij.psi.search.scope.packageSet.NamedScope com.intellij.packageDependencies.DependencyValidationManagerImpl.getScope(java.lang.String)[]@DependencyValidationManagerImpl.java:249" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "com.intellij.psi.search.scope.packageSet.NamedScopesHolder com.intellij.psi.search.scope.packageSet.NamedScopesHolder.getHolder(com.intellij.openapi.project.Project, java.lang.String, com.intellij.psi.search.scope.packageSet.NamedScopesHolder)[]@NamedScopesHolder.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "com.intellij.ui.tabs.FileColorConfiguration com.intellij.ui.tabs.FileColorsModel.findConfiguration(com.intellij.openapi.vfs.VirtualFile)[]@FileColorsModel.java:240" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.String com.intellij.ui.tabs.FileColorsModel.lambda$getColor$0(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.project.Project)[]@FileColorsModel.java:210" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ui.tabs.FileColorsModel$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:272" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:262" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:863" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@ReadAction.java:66" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "java.lang.String com.intellij.ui.tabs.FileColorsModel.getColor(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.project.Project)[]@FileColorsModel.java:209" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "java.awt.Color com.intellij.ui.tabs.FileColorManagerImpl.getFileColor(com.intellij.openapi.vfs.VirtualFile)[]@FileColorManagerImpl.java:153" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "java.awt.Color com.intellij.ui.tabs.EditorTabColorProviderImpl.getProjectViewColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)[]@EditorTabColorProviderImpl.java:31" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.awt.Color com.intellij.openapi.fileEditor.impl.EditorTabPresentationUtil.getFileBackgroundColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)[]@EditorTabPresentationUtil.kt:88" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "java.awt.Color com.intellij.openapi.vfs.newvfs.VfsPresentationUtil.getFileBackgroundColor(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)[]@VfsPresentationUtil.java:41" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "java.awt.Color com.intellij.presentation.impl.FilePresentationServiceImpl.getFileBackgroundColor(com.intellij.openapi.vfs.VirtualFile)[]@FilePresentationServiceImpl.kt:21" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "java.awt.Color com.intellij.presentation.impl.FilePresentationServiceImpl.getFileBackgroundColor(com.intellij.psi.PsiElement)[]@FilePresentationServiceImpl.kt:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.awt.Color com.intellij.ide.util.treeView.AbstractTreeNode.computeBackgroundColor()[]@AbstractTreeNode.java:290" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.awt.Color com.intellij.ide.projectView.ProjectViewNode.computeBackgroundColor()[]@ProjectViewNode.java:361" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "com.intellij.ide.projectView.PresentationData com.intellij.ide.util.treeView.PresentableNodeDescriptor.getUpdatedPresentation()[]@PresentableNodeDescriptor.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.ide.util.treeView.PresentableNodeDescriptor.update()[]@PresentableNodeDescriptor.java:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "boolean com.intellij.ui.tree.StructureTreeModel$Node.update()[]@StructureTreeModel.java:540" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8d", + "lines": [ + "javax.swing.tree.TreePath com.intellij.ui.tree.StructureTreeModel.invalidateInternal(com.intellij.ui.tree.StructureTreeModel$Node, boolean)[]@StructureTreeModel.java:247" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "javax.swing.tree.TreePath com.intellij.ui.tree.StructureTreeModel.lambda$invalidate$5(boolean, com.intellij.ui.tree.StructureTreeModel$Node)[]@StructureTreeModel.java:211" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.apply(java.lang.Object)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "java.lang.Object com.intellij.ui.tree.StructureTreeModel.lambda$onValidThread$2(com.intellij.ui.tree.StructureTreeModel$Node, java.util.function.Function, com.intellij.ide.util.treeView.AbstractTreeStructure)[]@StructureTreeModel.java:146" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.apply(java.lang.Object)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ui.tree.StructureTreeModel.lambda$onValidThread$1(java.util.function.Function, java.util.concurrent.CompletableFuture)[]@StructureTreeModel.java:124" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ui.tree.StructureTreeModel$$Lambda+\u003chidden\u003e.get()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.util.concurrency.Invoker$Task.run()[]@Invoker.java:361" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.util.concurrency.CoroutineInvokerDelegate.run(java.lang.Runnable, org.jetbrains.concurrency.AsyncPromise)[]@CoroutineInvokerDelegate.kt:38" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void com.intellij.util.concurrency.Invoker.invokeSafely(com.intellij.util.concurrency.Invoker$Task, int)[]@Invoker.java:189" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.util.concurrency.Invoker.lambda$offerSafely$0(com.intellij.util.concurrency.Invoker$Task, int)[]@Invoker.java:173" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.util.concurrency.Invoker$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void com.intellij.util.concurrency.Invoker$Background.lambda$offer$0(java.lang.Runnable)[]@Invoker.java:470" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.util.concurrency.Invoker$Background$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.CoroutineInvokerDelegate.offer$lambda$2(java.lang.Runnable, com.intellij.util.concurrency.CoroutineInvokerDelegate)[]@CoroutineInvokerDelegate.kt:27" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.CoroutineInvokerDelegate$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1.invokeSuspend$lambda$1$lambda$0(kotlin.jvm.functions.Function0)[]@CoroutineInvokerDelegate.kt:97" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "kotlin.Unit com.intellij.util.concurrency.BgtCoroutineInvokerDelegate.withProperContext$lambda$0(kotlin.jvm.functions.Function0)[]@CoroutineInvokerDelegate.kt:73" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.BgtCoroutineInvokerDelegate$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable$lambda$4(com.intellij.openapi.application.rw.InternalReadAction)[]@InternalReadAction.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2$lambda$1(kotlinx.coroutines.CompletableJob, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2(kotlinx.coroutines.CompletableJob, com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.PlatformReadWriteActionSupport.executeReadAction(java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@PlatformReadWriteActionSupport.kt:38" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadWriteActionSupport.executeReadAction$default(com.intellij.openapi.application.ReadWriteActionSupport, java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation, int, java.lang.Object)[]@ReadWriteActionSupport.kt:15" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.BgtCoroutineInvokerDelegate.withProperContext(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@CoroutineInvokerDelegate.kt:72" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.SequentialBgtCoroutineInvokerDelegate$doLaunch$1.invokeSuspend(java.lang.Object)[]@CoroutineInvokerDelegate.kt:96" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xb933f9da77f680a", + "lines": [ + "vtable chunks[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.CompositeDecoder$DefaultImpls.decodeSerializableElement$default(kotlinx.serialization.encoding.CompositeDecoder, kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object, int, java.lang.Object)[]@Decoding.kt:538" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:80" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)[]@CollectionSerializers.kt:51" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.CompositeDecoder$DefaultImpls.decodeSerializableElement$default(kotlinx.serialization.encoding.CompositeDecoder, kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object, int, java.lang.Object)[]@Decoding.kt:538" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd1", + "lines": [ + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)[]@CollectionSerializers.kt:111" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:84" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)[]@CollectionSerializers.kt:51" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])[]@Cbor.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)[]@InternalStateStorageService.kt:58" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@LocalSettingsController.kt:34" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:37" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.platform.settings.SettingImpl.get()[]@SettingDescriptorImpl.kt:115" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc5", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsData com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsStateService$ExtensionDataProvider.requestExtensionData$intellij_platform_ide_impl(java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@State.kt:191" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider$AdvertiserSuggestion com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProviderKt.getSuggestionData(com.intellij.openapi.project.Project, java.lang.String, java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@PluginAdvertiserEditorNotificationProvider.kt:293" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc2", + "lines": [ + "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)[]@PluginAdvertiserEditorNotificationProvider.kt:57" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.util.Optional com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend$lambda$1(com.intellij.openapi.vfs.VirtualFile, com.intellij.ui.EditorNotificationsImpl, com.intellij.ui.EditorNotificationProvider)[]@EditorNotificationsImpl.kt:244" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable$lambda$4(com.intellij.openapi.application.rw.InternalReadAction)[]@InternalReadAction.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2$lambda$1(kotlinx.coroutines.CompletableJob, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2(kotlinx.coroutines.CompletableJob, com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.PlatformReadWriteActionSupport.executeReadAction(java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@PlatformReadWriteActionSupport.kt:38" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadWriteActionSupport.executeReadAction$default(com.intellij.openapi.application.ReadWriteActionSupport, java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation, int, java.lang.Object)[]@ReadWriteActionSupport.kt:15" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x189", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x150f38", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1240963", + "lines": [ + "__schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1240dd2", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2262e3", + "lines": [ + "futex_wait_queue[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x226ac4", + "lines": [ + "__futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x226bc3", + "lines": [ + "futex_wait[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x222894", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x223159", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55d0", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98d60", + "lines": [ + "libc.so.6 0x98d60[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x9bc7d", + "lines": [ + "libc.so.6 0x9bc7d[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xd141d3", + "lines": [ + "libjvm.so 0xd141d3[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xfb3d80", + "lines": [ + "libjvm.so 0xfb3d80[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.park(boolean, long)[]@Unsafe.java:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void java.util.concurrent.locks.LockSupport.parkNanos(long)[]@LockSupport.java:410" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.park()[]@CoroutineScheduler.kt:924" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.tryPark()[]@CoroutineScheduler.kt:860" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x62", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:795" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xc", + "lines": [ + "void java.lang.String.\u003cinit\u003e(byte[], java.nio.charset.Charset)[]@String.java:1425" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.String kotlin.text.StringsKt__StringsJVMKt.decodeToString(byte[])[]@StringsJVM.kt:217" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()[]@Encoding.kt:384" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()[]@Encoding.kt:288" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "java.lang.String kotlinx.serialization.internal.StringSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@Primitives.kt:160" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.StringSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@Primitives.kt:156" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.CompositeDecoder$DefaultImpls.decodeSerializableElement$default(kotlinx.serialization.encoding.CompositeDecoder, kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object, int, java.lang.Object)[]@Decoding.kt:538" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)[]@CollectionSerializers.kt:100" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:84" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)[]@CollectionSerializers.kt:51" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])[]@Cbor.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)[]@InternalStateStorageService.kt:58" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@LocalSettingsController.kt:34" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:37" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.platform.settings.SettingImpl.get()[]@SettingDescriptorImpl.kt:115" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc5", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsData com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsStateService$ExtensionDataProvider.requestExtensionData$intellij_platform_ide_impl(java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@State.kt:191" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider$AdvertiserSuggestion com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProviderKt.getSuggestionData(com.intellij.openapi.project.Project, java.lang.String, java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@PluginAdvertiserEditorNotificationProvider.kt:293" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc2", + "lines": [ + "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)[]@PluginAdvertiserEditorNotificationProvider.kt:57" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.util.Optional com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend$lambda$1(com.intellij.openapi.vfs.VirtualFile, com.intellij.ui.EditorNotificationsImpl, com.intellij.ui.EditorNotificationProvider)[]@EditorNotificationsImpl.kt:244" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable$lambda$4(com.intellij.openapi.application.rw.InternalReadAction)[]@InternalReadAction.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2$lambda$1(kotlinx.coroutines.CompletableJob, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2(kotlinx.coroutines.CompletableJob, com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.PlatformReadWriteActionSupport.executeReadAction(java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@PlatformReadWriteActionSupport.kt:38" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadWriteActionSupport.executeReadAction$default(com.intellij.openapi.application.ReadWriteActionSupport, java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation, int, java.lang.Object)[]@ReadWriteActionSupport.kt:15" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x189", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "void java.lang.String.\u003cinit\u003e(java.nio.charset.Charset, byte[], int, int)[]@String.java:532" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void java.lang.String.\u003cinit\u003e(byte[], java.nio.charset.Charset)[]@String.java:1425" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.String kotlin.text.StringsKt__StringsJVMKt.decodeToString(byte[])[]@StringsJVM.kt:217" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()[]@Encoding.kt:384" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()[]@Encoding.kt:288" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "java.lang.String kotlinx.serialization.encoding.AbstractDecoder.decodeStringElement(kotlinx.serialization.descriptors.SerialDescriptor, int)[]@AbstractDecoder.kt:58" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbd", + "lines": [ + "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:13" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:13" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.CompositeDecoder$DefaultImpls.decodeSerializableElement$default(kotlinx.serialization.encoding.CompositeDecoder, kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object, int, java.lang.Object)[]@Decoding.kt:538" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:80" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)[]@CollectionSerializers.kt:51" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.CompositeDecoder$DefaultImpls.decodeSerializableElement$default(kotlinx.serialization.encoding.CompositeDecoder, kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object, int, java.lang.Object)[]@Decoding.kt:538" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd1", + "lines": [ + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)[]@CollectionSerializers.kt:111" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:84" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)[]@CollectionSerializers.kt:51" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])[]@Cbor.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)[]@InternalStateStorageService.kt:58" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@LocalSettingsController.kt:34" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:37" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.platform.settings.SettingImpl.get()[]@SettingDescriptorImpl.kt:115" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc5", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsData com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsStateService$ExtensionDataProvider.requestExtensionData$intellij_platform_ide_impl(java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@State.kt:191" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider$AdvertiserSuggestion com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProviderKt.getSuggestionData(com.intellij.openapi.project.Project, java.lang.String, java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@PluginAdvertiserEditorNotificationProvider.kt:293" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc2", + "lines": [ + "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)[]@PluginAdvertiserEditorNotificationProvider.kt:57" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.util.Optional com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend$lambda$1(com.intellij.openapi.vfs.VirtualFile, com.intellij.ui.EditorNotificationsImpl, com.intellij.ui.EditorNotificationProvider)[]@EditorNotificationsImpl.kt:244" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable$lambda$4(com.intellij.openapi.application.rw.InternalReadAction)[]@InternalReadAction.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2$lambda$1(kotlinx.coroutines.CompletableJob, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2(kotlinx.coroutines.CompletableJob, com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.PlatformReadWriteActionSupport.executeReadAction(java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@PlatformReadWriteActionSupport.kt:38" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadWriteActionSupport.executeReadAction$default(com.intellij.openapi.application.ReadWriteActionSupport, java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation, int, java.lang.Object)[]@ReadWriteActionSupport.kt:15" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x189", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "int kotlinx.serialization.cbor.internal.CborListReader.decodeElementIndex(kotlinx.serialization.descriptors.SerialDescriptor)[]@Encoding.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:34" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.CompositeDecoder$DefaultImpls.decodeSerializableElement$default(kotlinx.serialization.encoding.CompositeDecoder, kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object, int, java.lang.Object)[]@Decoding.kt:538" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd1", + "lines": [ + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)[]@CollectionSerializers.kt:111" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:84" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)[]@CollectionSerializers.kt:51" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])[]@Cbor.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)[]@InternalStateStorageService.kt:58" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@LocalSettingsController.kt:34" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:37" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.platform.settings.SettingImpl.get()[]@SettingDescriptorImpl.kt:115" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc5", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsData com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsStateService$ExtensionDataProvider.requestExtensionData$intellij_platform_ide_impl(java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@State.kt:191" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider$AdvertiserSuggestion com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProviderKt.getSuggestionData(com.intellij.openapi.project.Project, java.lang.String, java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@PluginAdvertiserEditorNotificationProvider.kt:293" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc2", + "lines": [ + "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)[]@PluginAdvertiserEditorNotificationProvider.kt:57" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.util.Optional com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend$lambda$1(com.intellij.openapi.vfs.VirtualFile, com.intellij.ui.EditorNotificationsImpl, com.intellij.ui.EditorNotificationProvider)[]@EditorNotificationsImpl.kt:244" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable$lambda$4(com.intellij.openapi.application.rw.InternalReadAction)[]@InternalReadAction.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2$lambda$1(kotlinx.coroutines.CompletableJob, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2(kotlinx.coroutines.CompletableJob, com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.PlatformReadWriteActionSupport.executeReadAction(java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@PlatformReadWriteActionSupport.kt:38" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadWriteActionSupport.executeReadAction$default(com.intellij.openapi.application.ReadWriteActionSupport, java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation, int, java.lang.Object)[]@ReadWriteActionSupport.kt:15" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x189", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x6f6353f7de2420d8", + "lines": [ + "StubRoutines (final stubs) [arrayof_jbyte_disjoint_arraycopy][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "long kotlinx.serialization.cbor.internal.CborDecoder.readExact(kotlinx.serialization.cbor.internal.ByteArrayInput, int)[]@Encoding.kt:432" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68", + "lines": [ + "long kotlinx.serialization.cbor.internal.CborDecoder.readNumber()[]@Encoding.kt:426" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "byte[] kotlinx.serialization.cbor.internal.CborDecoder.readBytes()[]@Encoding.kt:394" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.lang.String kotlinx.serialization.cbor.internal.CborDecoder.nextString()[]@Encoding.kt:383" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.String kotlinx.serialization.cbor.internal.CborReader.decodeString()[]@Encoding.kt:288" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "java.lang.String kotlinx.serialization.encoding.AbstractDecoder.decodeStringElement(kotlinx.serialization.descriptors.SerialDescriptor, int)[]@AbstractDecoder.kt:58" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbd", + "lines": [ + "com.intellij.ide.plugins.advertiser.PluginData com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:13" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginData$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:13" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.CompositeDecoder$DefaultImpls.decodeSerializableElement$default(kotlinx.serialization.encoding.CompositeDecoder, kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object, int, java.lang.Object)[]@Decoding.kt:538" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void kotlinx.serialization.internal.CollectionLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:80" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)[]@CollectionSerializers.kt:51" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "com.intellij.ide.plugins.advertiser.PluginDataSet com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginDataSet$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:45" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.CompositeDecoder$DefaultImpls.decodeSerializableElement$default(kotlinx.serialization.encoding.CompositeDecoder, kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object, int, java.lang.Object)[]@Decoding.kt:538" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd1", + "lines": [ + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)[]@CollectionSerializers.kt:111" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:84" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)[]@CollectionSerializers.kt:51" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])[]@Cbor.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)[]@InternalStateStorageService.kt:58" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@LocalSettingsController.kt:34" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:37" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.platform.settings.SettingImpl.get()[]@SettingDescriptorImpl.kt:115" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc5", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsData com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsStateService$ExtensionDataProvider.requestExtensionData$intellij_platform_ide_impl(java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@State.kt:191" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider$AdvertiserSuggestion com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProviderKt.getSuggestionData(com.intellij.openapi.project.Project, java.lang.String, java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@PluginAdvertiserEditorNotificationProvider.kt:293" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc2", + "lines": [ + "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)[]@PluginAdvertiserEditorNotificationProvider.kt:57" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.util.Optional com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend$lambda$1(com.intellij.openapi.vfs.VirtualFile, com.intellij.ui.EditorNotificationsImpl, com.intellij.ui.EditorNotificationProvider)[]@EditorNotificationsImpl.kt:244" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable$lambda$4(com.intellij.openapi.application.rw.InternalReadAction)[]@InternalReadAction.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2$lambda$1(kotlinx.coroutines.CompletableJob, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2(kotlinx.coroutines.CompletableJob, com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.PlatformReadWriteActionSupport.executeReadAction(java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@PlatformReadWriteActionSupport.kt:38" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadWriteActionSupport.executeReadAction$default(com.intellij.openapi.application.ReadWriteActionSupport, java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation, int, java.lang.Object)[]@ReadWriteActionSupport.kt:15" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x189", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x61", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findAnyTask(boolean)[]@CoroutineScheduler.kt:1034" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "kotlinx.coroutines.scheduling.Task kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.findTask(boolean)[]@CoroutineScheduler.kt:999" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:758" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xfd", + "lines": [ + "java.lang.Object java.util.HashMap.putVal(int, java.lang.Object, java.lang.Object, boolean, boolean)[]@HashMap.java:663" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object java.util.HashMap.put(java.lang.Object, java.lang.Object)[]@HashMap.java:618" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdb", + "lines": [ + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.util.Map, boolean)[]@CollectionSerializers.kt:113" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void kotlinx.serialization.internal.MapLikeSerializer.readElement(kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean)[]@CollectionSerializers.kt:84" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void kotlinx.serialization.internal.AbstractCollectionSerializer.readElement$default(kotlinx.serialization.internal.AbstractCollectionSerializer, kotlinx.serialization.encoding.CompositeDecoder, int, java.lang.Object, boolean, int, java.lang.Object)[]@CollectionSerializers.kt:51" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.merge(kotlinx.serialization.encoding.Decoder, java.lang.Object)[]@CollectionSerializers.kt:36" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object kotlinx.serialization.internal.AbstractCollectionSerializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@CollectionSerializers.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableElement(kotlinx.serialization.descriptors.SerialDescriptor, int, kotlinx.serialization.DeserializationStrategy, java.lang.Object)[]@AbstractDecoder.kt:70" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "com.intellij.ide.plugins.advertiser.PluginFeatureMap com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.ide.plugins.advertiser.PluginFeatureMap$$serializer.deserialize(kotlinx.serialization.encoding.Decoder)[]@data.kt:48" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.Decoder$DefaultImpls.decodeSerializableValue(kotlinx.serialization.encoding.Decoder, kotlinx.serialization.DeserializationStrategy)[]@Decoding.kt:257" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object kotlinx.serialization.encoding.AbstractDecoder.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@AbstractDecoder.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4c", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.internal.CborReader.decodeSerializableValue(kotlinx.serialization.DeserializationStrategy)[]@Encoding.kt:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.lang.Object kotlinx.serialization.cbor.Cbor.decodeFromByteArray(kotlinx.serialization.DeserializationStrategy, byte[])[]@Cbor.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x81", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.InternalStateStorageService.getValue(java.lang.String, com.intellij.platform.settings.SettingSerializerDescriptor, com.intellij.openapi.extensions.PluginId)[]@InternalStateStorageService.kt:58" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.LocalSettingsController.getItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@LocalSettingsController.kt:34" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.doGetItem-fgh0x1k(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:37" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.platform.settings.local.SettingsControllerMediator.getItem(com.intellij.platform.settings.SettingDescriptor)[]@SettingsControllerMediator.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.platform.settings.SettingImpl.get()[]@SettingDescriptorImpl.kt:115" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc5", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsData com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserExtensionsStateService$ExtensionDataProvider.requestExtensionData$intellij_platform_ide_impl(java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@State.kt:191" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x77", + "lines": [ + "com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider$AdvertiserSuggestion com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProviderKt.getSuggestionData(com.intellij.openapi.project.Project, java.lang.String, java.lang.String, com.intellij.openapi.fileTypes.FileType)[]@PluginAdvertiserEditorNotificationProvider.kt:293" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc2", + "lines": [ + "java.util.function.Function com.intellij.openapi.updateSettings.impl.pluginsAdvertisement.PluginAdvertiserEditorNotificationProvider.collectNotificationData(com.intellij.openapi.project.Project, com.intellij.openapi.vfs.VirtualFile)[]@PluginAdvertiserEditorNotificationProvider.kt:57" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.util.Optional com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend$lambda$1(com.intellij.openapi.vfs.VirtualFile, com.intellij.ui.EditorNotificationsImpl, com.intellij.ui.EditorNotificationProvider)[]@EditorNotificationsImpl.kt:244" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.insideReadAction()[]@InternalReadAction.kt:114" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "com.intellij.openapi.application.rw.ReadResult com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable$lambda$4(com.intellij.openapi.application.rw.InternalReadAction)[]@InternalReadAction.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2$lambda$1(kotlinx.coroutines.CompletableJob, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$3$lambda$2(kotlinx.coroutines.CompletableJob, com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, kotlin.jvm.internal.Ref$ObjectRef, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.application.rw.CancellableReadActionKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x72", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@cancellableReadAction.kt:28" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:103" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.readLoop(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:74" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(com.intellij.openapi.application.rw.InternalReadAction, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:16" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(java.lang.Object)[]@InternalReadAction.kt:53" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(java.lang.Object, java.lang.Object)[]@InternalReadAction.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@Builders.common.kt:163" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Object kotlinx.coroutines.BuildersKt.withContext(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@\u003cunknown\u003e:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.InternalReadAction.runReadAction(kotlin.coroutines.Continuation)[]@InternalReadAction.kt:49" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.rw.PlatformReadWriteActionSupport.executeReadAction(java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@PlatformReadWriteActionSupport.kt:38" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ReadWriteActionSupport.executeReadAction$default(com.intellij.openapi.application.ReadWriteActionSupport, java.util.List, boolean, boolean, kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation, int, java.lang.Object)[]@ReadWriteActionSupport.kt:15" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(com.intellij.openapi.application.ReadConstraint[], kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.readAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:29" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x189", + "lines": [ + "java.lang.Object com.intellij.ui.EditorNotificationsImpl$updateEditors$job$1.invokeSuspend(java.lang.Object)[]@EditorNotificationsImpl.kt:241" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)[]@AbstractCoroutine.kt:97" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void kotlinx.coroutines.debug.internal.DebugProbesImpl$CoroutineOwner.resumeWith(java.lang.Object)[]@DebugProbesImpl.kt:545" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:46" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13d", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:102" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:608" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(kotlinx.coroutines.scheduling.Task)[]@CoroutineScheduler.kt:873" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker()[]@CoroutineScheduler.kt:763" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run()[]@CoroutineScheduler.kt:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xad644", + "lines": [ + "libc.so.6 0xad644[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2f3db", + "lines": [ + "libawt_xawt.so 0x2f3db[]@:0" + ], + "mapping": "0x13000-0x5d000@0x13000 libawt_xawt.so(134d9e7faf72035d5f259dcf73c8774bb044da7a)" + }, + { + "address": "0x0", + "lines": [ + "void sun.java2d.xr.XRBackendNative.XRenderRectanglesNative(int, byte, short, short, short, short, int[], int)[]@XRBackendNative.java:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void sun.java2d.xr.XRBackendNative.renderRectangles(int, byte, sun.java2d.xr.XRColor, sun.java2d.xr.GrowableRectArray)[]@XRBackendNative.java:217" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "void sun.java2d.xr.MaskTileManager.compositeSingleTile(sun.java2d.xr.XRSurfaceData, sun.java2d.xr.MaskTile, sun.java2d.xr.DirtyRegion, boolean, int, int, sun.java2d.xr.XRColor)[]@MaskTileManager.java:183" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc8", + "lines": [ + "void sun.java2d.xr.MaskTileManager.fillMask(sun.java2d.xr.XRSurfaceData)[]@MaskTileManager.java:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void sun.java2d.xr.XRRenderer.fillPath(sun.java2d.SunGraphics2D, java.awt.geom.Path2D$Float, int, int)[]@XRRenderer.java:275" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void sun.java2d.xr.XRRenderer.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@XRRenderer.java:349" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void sun.java2d.pipe.ValidatePipe.fill(sun.java2d.SunGraphics2D, java.awt.Shape)[]@ValidatePipe.java:160" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void sun.java2d.SunGraphics2D.fill(java.awt.Shape)[]@SunGraphics2D.java:2532" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2.lambda$paint$0(java.awt.Graphics2D, java.awt.Shape)[]@RectanglePainter2D.java:211" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.paint.PaintUtil.paintWithAA(java.awt.Graphics2D, java.lang.Object, java.lang.Runnable)[]@PaintUtil.java:402" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xde", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter2D$2.paint(java.awt.Graphics2D, double, double, double, double, java.lang.Double, com.intellij.ui.paint.LinePainter2D$StrokeType, double, java.lang.Object)[]@RectanglePainter2D.java:210" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter.paint2D(com.intellij.ui.paint.RectanglePainter2D, java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@RectanglePainter.java:28" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Integer)[]@RectanglePainter.java:21" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.paint.RectanglePainter$2.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@RectanglePainter.java:18" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Track.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Float)[]@ScrollBarPainter.java:212" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.ui.components.ScrollBarPainter$Track.paint(java.awt.Graphics2D, int, int, int, int, java.lang.Object)[]@ScrollBarPainter.java:192" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe9", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(com.intellij.ui.components.ScrollBarPainter, java.awt.Graphics2D, javax.swing.JComponent, boolean)[]@DefaultScrollBarUI.kt:150" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paintTrack(java.awt.Graphics2D, javax.swing.JComponent)[]@DefaultScrollBarUI.kt:115" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x240", + "lines": [ + "void com.intellij.ui.components.DefaultScrollBarUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@DefaultScrollBarUI.kt:309" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@ComponentUI.java:161" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@JComponent.java:855" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@JBScrollPane.java:243" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@JBScrollPane.java:231" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@JComponent.java:5319" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1680" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1655" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1592" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@BufferStrategyPaintManager.java:281" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1352" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@JComponent.java:5267" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@JComponent.java:5077" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@RepaintManager.java:887" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@RepaintManager.java:870" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@RepaintManager.java:870" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@RepaintManager.java:843" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@RepaintManager.java:789" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@RepaintManager.java:1921" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)[]@propagation.kt:107" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@ContextRunnable.java:27" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18e", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:355" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:354" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7f", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@IdeEventQueue.kt:349" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1cc", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:387" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x324", + "lines": [ + "void sun.font.XRTextRenderer.drawGlyphList(sun.java2d.SunGraphics2D, sun.font.GlyphList)[]@XRTextRenderer.java:95" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa5", + "lines": [ + "void sun.java2d.pipe.GlyphListPipe.drawString(sun.java2d.SunGraphics2D, java.lang.String, double, double)[]@GlyphListPipe.java:71" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void sun.java2d.pipe.ValidatePipe.drawString(sun.java2d.SunGraphics2D, java.lang.String, double, double)[]@ValidatePipe.java:165" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42", + "lines": [ + "void sun.java2d.SunGraphics2D.drawString(java.lang.String, float, float)[]@SunGraphics2D.java:2962" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent$SimpleTextRenderer.draw(java.awt.Graphics2D, int, float, float)[]@SimpleColoredComponent.java:1500" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.doDrawString(java.awt.Graphics2D, com.intellij.ui.SimpleColoredComponent$ColoredFragment, int, float, float)[]@SimpleColoredComponent.java:536" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1ea", + "lines": [ + "int com.intellij.ui.SimpleColoredComponent.doPaintText(java.awt.Graphics2D, int, boolean)[]@SimpleColoredComponent.java:895" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x54", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.doPaint(java.awt.Graphics2D)[]@SimpleColoredComponent.java:766" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.paintComponent(java.awt.Graphics)[]@SimpleColoredComponent.java:745" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c", + "lines": [ + "void javax.swing.CellRendererPane.paintComponent(java.awt.Graphics, java.awt.Component, java.awt.Container, int, int, int, int, boolean)[]@CellRendererPane.java:170" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43e", + "lines": [ + "void com.intellij.ui.tree.ui.DefaultTreeUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@DefaultTreeUI.java:372" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@ComponentUI.java:161" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@JComponent.java:855" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.ui.treeStructure.Tree.paintComponent(java.awt.Graphics)[]@Tree.java:381" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ui.treeStructure.Tree.paint(java.awt.Graphics)[]@Tree.java:312" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@JViewport.java:736" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@JBViewport.java:240" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@JBScrollPane.java:243" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@JBScrollPane.java:231" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@JComponent.java:5319" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1680" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1655" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1592" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@BufferStrategyPaintManager.java:281" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1352" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@JComponent.java:5267" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@JComponent.java:5077" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@RepaintManager.java:887" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@RepaintManager.java:870" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@RepaintManager.java:870" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@RepaintManager.java:843" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@RepaintManager.java:789" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@RepaintManager.java:1921" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)[]@propagation.kt:107" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@ContextRunnable.java:27" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18e", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:355" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:354" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7f", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@IdeEventQueue.kt:349" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1cc", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:387" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x15eefa", + "lines": [ + "try_to_wake_up[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15f46f", + "lines": [ + "wake_up_q[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x225ea6", + "lines": [ + "futex_wake[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22291d", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x223159", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55d0", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b05e", + "lines": [ + "libc.so.6 0x9b05e[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xfb2099", + "lines": [ + "libjvm.so 0xfb2099[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x0", + "lines": [ + "void jdk.internal.misc.Unsafe.unpark(java.lang.Object)[]@Unsafe.java:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)[]@LockSupport.java:181" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void java.util.concurrent.locks.AbstractQueuedSynchronizer.signalNext(java.util.concurrent.locks.AbstractQueuedSynchronizer$Node)[]@AbstractQueuedSynchronizer.java:645" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "boolean java.util.concurrent.locks.AbstractQueuedSynchronizer.release(int)[]@AbstractQueuedSynchronizer.java:1060" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.locks.ReentrantLock.unlock()[]@ReentrantLock.java:494" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void sun.awt.SunToolkit.awtUnlock()[]@SunToolkit.java:271" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void sun.awt.X11.XComponentPeer.pSetCursor(java.awt.Cursor, boolean)[]@XComponentPeer.java:726" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.X11.XComponentPeer.pSetCursor(java.awt.Cursor)[]@XComponentPeer.java:699" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void sun.awt.X11.XGlobalCursorManager.updateGrabbedCursor(java.awt.Cursor)[]@XGlobalCursorManager.java:107" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x89", + "lines": [ + "void sun.awt.X11.XGlobalCursorManager.setCursor(java.awt.Component, java.awt.Cursor, boolean)[]@XGlobalCursorManager.java:94" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9c", + "lines": [ + "void sun.awt.GlobalCursorManager._updateCursor(boolean)[]@GlobalCursorManager.java:205" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "void sun.awt.GlobalCursorManager.updateCursorImmediately()[]@GlobalCursorManager.java:95" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void sun.awt.X11.XComponentPeer.updateCursorImmediately()[]@XComponentPeer.java:695" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void java.awt.Component.updateCursorImmediately()[]@Component.java:3262" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void java.awt.Component.show()[]@Component.java:1730" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x30", + "lines": [ + "void java.awt.Window.show()[]@Window.java:1078" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void javax.swing.Popup$HeavyWeightWindow.show()[]@Popup.java:270" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void javax.swing.Popup.show()[]@Popup.java:112" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ui.popup.HeavyWeightPopup.show()[]@HeavyWeightPopup.java:21" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x61", + "lines": [ + "void javax.swing.JPopupMenu.showPopup()[]@JPopupMenu.java:886" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "void javax.swing.JPopupMenu.setVisible(boolean)[]@JPopupMenu.java:829" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.actionSystem.impl.ActionPopupMenuImpl$MyMenu.setVisible(boolean)[]@ActionPopupMenuImpl.java:164" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9e", + "lines": [ + "void javax.swing.JPopupMenu.show(java.awt.Component, int, int)[]@JPopupMenu.java:1003" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.ui.JBPopupMenu.show(java.awt.Component, int, int)[]@JBPopupMenu.java:54" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x135", + "lines": [ + "void com.intellij.openapi.actionSystem.impl.ActionPopupMenuImpl$MyMenu.show(java.awt.Component, int, int)[]@ActionPopupMenuImpl.java:146" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5f", + "lines": [ + "void com.intellij.ui.PopupHandler$2.invokePopup(java.awt.Component, int, int)[]@PopupHandler.java:132" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.ui.PopupHandler.mousePressed(java.awt.event.MouseEvent)[]@PopupHandler.java:47" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.AWTEventMulticaster.mousePressed(java.awt.event.MouseEvent)[]@AWTEventMulticaster.java:288" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void java.awt.AWTEventMulticaster.mousePressed(java.awt.event.MouseEvent)[]@AWTEventMulticaster.java:287" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x36", + "lines": [ + "void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent)[]@Component.java:6659" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void javax.swing.JComponent.processMouseEvent(java.awt.event.MouseEvent)[]@JComponent.java:3394" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void com.intellij.ui.treeStructure.Tree.processMouseEvent(java.awt.event.MouseEvent)[]@Tree.java:479" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.ide.dnd.aware.DnDAwareTree.processMouseEvent(java.awt.event.MouseEvent)[]@DnDAwareTree.java:46" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.Component.processEvent(java.awt.AWTEvent)[]@Component.java:6427" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.Container.processEvent(java.awt.AWTEvent)[]@Container.java:2266" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x228", + "lines": [ + "void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)[]@Component.java:5032" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)[]@Container.java:2324" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)[]@Component.java:4860" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a1", + "lines": [ + "void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)[]@Container.java:4963" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x90", + "lines": [ + "boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)[]@Container.java:4574" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)[]@Container.java:4518" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)[]@Container.java:2310" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)[]@Window.java:2810" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)[]@Component.java:4860" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:783" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext)[]@ProtectionDomain.java:98" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.lang.Void java.awt.EventQueue$5.run()[]@EventQueue.java:755" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$5.run()[]@EventQueue.java:753" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:752" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchMouseEvent(java.awt.event.MouseEvent)[]@IdeEventQueue.kt:621" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$21(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:564" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x115", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:564" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:355" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:354" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7f", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@IdeEventQueue.kt:349" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1ff", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:395" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x7", + "lines": [ + "java.util.Set kotlin.collections.SetsKt__SetsJVMKt.setOf(java.lang.Object)[]@SetsJVM.kt:20" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "kotlinx.coroutines.Job com.intellij.ui.DeferredIconImpl.scheduleEvaluation(java.awt.Component, int, int)[]@DeferredIconImpl.kt:200" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4e", + "lines": [ + "void com.intellij.ui.DeferredIconImpl.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@DeferredIconImpl.kt:163" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa5", + "lines": [ + "void com.intellij.ui.RowIcon.paintIcon(java.awt.Component, java.awt.Graphics, int, int)[]@RowIcon.kt:110" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.util.IconUtil.paintSelectionAwareIcon(javax.swing.Icon, javax.swing.JComponent, java.awt.Graphics, int, int, boolean)[]@IconUtil.kt:251" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.paintIcon(java.awt.Graphics, javax.swing.Icon, int)[]@SimpleColoredComponent.java:1089" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x86", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.doPaintIcon(java.awt.Graphics2D, javax.swing.Icon, int)[]@SimpleColoredComponent.java:801" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.doPaint(java.awt.Graphics2D)[]@SimpleColoredComponent.java:761" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.ui.SimpleColoredComponent.paintComponent(java.awt.Graphics)[]@SimpleColoredComponent.java:745" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c", + "lines": [ + "void javax.swing.CellRendererPane.paintComponent(java.awt.Graphics, java.awt.Component, java.awt.Container, int, int, int, int, boolean)[]@CellRendererPane.java:170" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43e", + "lines": [ + "void com.intellij.ui.tree.ui.DefaultTreeUI.paint(java.awt.Graphics, javax.swing.JComponent)[]@DefaultTreeUI.java:372" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void javax.swing.plaf.ComponentUI.update(java.awt.Graphics, javax.swing.JComponent)[]@ComponentUI.java:161" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void javax.swing.JComponent.paintComponent(java.awt.Graphics)[]@JComponent.java:855" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void com.intellij.ui.treeStructure.Tree.paintComponent(java.awt.Graphics)[]@Tree.java:381" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x100", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1124" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ui.treeStructure.Tree.paint(java.awt.Graphics)[]@Tree.java:312" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcd", + "lines": [ + "void javax.swing.JViewport.paint(java.awt.Graphics)[]@JViewport.java:736" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.ui.components.JBViewport.paint(java.awt.Graphics)[]@JBViewport.java:240" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x204", + "lines": [ + "void javax.swing.JComponent.paintChildren(java.awt.Graphics)[]@JComponent.java:964" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paintChildren(java.awt.Graphics)[]@JBScrollPane.java:243" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120", + "lines": [ + "void javax.swing.JComponent.paint(java.awt.Graphics)[]@JComponent.java:1133" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.ui.components.JBScrollPane.paint(java.awt.Graphics)[]@JBScrollPane.java:231" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void javax.swing.JComponent.paintToOffscreen(java.awt.Graphics, int, int, int, int, int, int)[]@JComponent.java:5319" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBufferedImpl(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1680" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(javax.swing.JComponent, java.awt.Image, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1655" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x80", + "lines": [ + "boolean javax.swing.RepaintManager$PaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1592" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19a", + "lines": [ + "boolean javax.swing.BufferStrategyPaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@BufferStrategyPaintManager.java:281" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x34", + "lines": [ + "void javax.swing.RepaintManager.paint(javax.swing.JComponent, javax.swing.JComponent, java.awt.Graphics, int, int, int, int)[]@RepaintManager.java:1352" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2ab", + "lines": [ + "void javax.swing.JComponent._paintImmediately(int, int, int, int)[]@JComponent.java:5267" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8a", + "lines": [ + "void javax.swing.JComponent.paintImmediately(int, int, int, int)[]@JComponent.java:5077" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "java.lang.Void javax.swing.RepaintManager$4.run()[]@RepaintManager.java:887" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object javax.swing.RepaintManager$4.run()[]@RepaintManager.java:870" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9a", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions(java.util.Map)[]@RepaintManager.java:870" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void javax.swing.RepaintManager.paintDirtyRegions()[]@RepaintManager.java:843" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void javax.swing.RepaintManager.prePaintDirtyRegions()[]@RepaintManager.java:789" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void javax.swing.RepaintManager$ProcessingRunnable.run()[]@RepaintManager.java:1921" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)[]@propagation.kt:107" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@ContextRunnable.java:27" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18e", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:355" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:354" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7f", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@IdeEventQueue.kt:349" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1cc", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:387" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)[]@SunToolkit.java:2088" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43", + "lines": [ + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)[]@SunToolkit.java:2099" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43", + "lines": [ + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)[]@SunToolkit.java:2099" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43", + "lines": [ + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)[]@SunToolkit.java:2099" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43", + "lines": [ + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Class, java.lang.String)[]@SunToolkit.java:2099" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "boolean sun.awt.SunToolkit.isInstanceOf(java.lang.Object, java.lang.String)[]@SunToolkit.java:2084" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void javax.swing.LookAndFeel.installProperty(javax.swing.JComponent, java.lang.String, java.lang.Object)[]@LookAndFeel.java:280" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void javax.swing.plaf.basic.BasicLabelUI.installDefaults(javax.swing.JLabel)[]@BasicLabelUI.java:369" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void javax.swing.plaf.basic.BasicLabelUI.installUI(javax.swing.JComponent)[]@BasicLabelUI.java:348" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41", + "lines": [ + "void javax.swing.JComponent.setUI(javax.swing.plaf.ComponentUI)[]@JComponent.java:743" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void javax.swing.JLabel.setUI(javax.swing.plaf.LabelUI)[]@JLabel.java:274" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void javax.swing.JLabel.updateUI()[]@JLabel.java:288" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "void javax.swing.JLabel.\u003cinit\u003e(java.lang.String, javax.swing.Icon, int)[]@JLabel.java:180" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void javax.swing.JLabel.\u003cinit\u003e()[]@JLabel.java:251" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10d", + "lines": [ + "void com.intellij.openapi.wm.impl.status.PresentationModeProgressPanel.$$$setupUI$$$()[]@PresentationModeProgressPanel.java:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.wm.impl.status.PresentationModeProgressPanel.\u003cinit\u003e(com.intellij.openapi.wm.impl.status.InfoAndProgressPanel$MyInlineProgressIndicator)[]@PresentationModeProgressPanel.java:35" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "void com.intellij.openapi.wm.impl.status.ProcessBalloon.show(javax.swing.JRootPane)[]@ProcessBalloon.kt:63" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.openapi.wm.impl.status.ProcessBalloon.addIndicator(javax.swing.JRootPane, com.intellij.openapi.wm.impl.status.InfoAndProgressPanel$MyInlineProgressIndicator)[]@ProcessBalloon.kt:36" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "void com.intellij.openapi.wm.impl.status.InfoAndProgressPanel.addProgress(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)[]@InfoAndProgressPanel.kt:248" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x59", + "lines": [ + "void com.intellij.openapi.wm.impl.status.IdeStatusBarImpl.addProgressImpl$intellij_platform_ide_impl(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)[]@IdeStatusBarImpl.kt:541" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "void com.intellij.openapi.wm.impl.status.IdeStatusBarImpl.addProgress(com.intellij.openapi.wm.ex.ProgressIndicatorEx, com.intellij.openapi.progress.TaskInfo)[]@IdeStatusBarImpl.kt:464" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.doBackground(com.intellij.openapi.wm.ex.StatusBarEx)[]@BackgroundableProcessIndicator.java:163" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.initializeStatusBar()[]@BackgroundableProcessIndicator.java:94" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.util.ui.EdtInvocationManager.invokeLaterIfNeeded(java.lang.Runnable)[]@EdtInvocationManager.java:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.\u003cinit\u003e(com.intellij.openapi.project.Project, com.intellij.openapi.progress.TaskInfo, com.intellij.openapi.wm.ex.StatusBarEx)[]@BackgroundableProcessIndicator.java:68" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.\u003cinit\u003e(com.intellij.openapi.project.Project, com.intellij.openapi.progress.TaskInfo)[]@BackgroundableProcessIndicator.java:56" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.progress.impl.BackgroundableProcessIndicator.\u003cinit\u003e(com.intellij.openapi.progress.Task$Backgroundable)[]@BackgroundableProcessIndicator.java:41" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "com.intellij.openapi.progress.ProgressIndicator com.intellij.openapi.progress.impl.ProgressManagerImpl.createDefaultAsynchronousProgressIndicator(com.intellij.openapi.progress.Task$Backgroundable)[]@ProgressManagerImpl.java:149" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.util.concurrent.Future com.intellij.openapi.progress.impl.CoreProgressManager.runProcessWithProgressAsynchronously(com.intellij.openapi.progress.Task$Backgroundable)[]@CoreProgressManager.java:476" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runAsynchronously(com.intellij.openapi.progress.Task$Backgroundable)[]@CoreProgressManager.java:453" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5f", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.run(com.intellij.openapi.progress.Task)[]@CoreProgressManager.java:436" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "void com.intellij.openapi.project.MergingQueueGuiExecutor.startInBackgroundWithVisibleOrInvisibleProgress(kotlin.jvm.functions.Function1)[]@MergingQueueGuiExecutor.kt:205" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void com.intellij.openapi.project.MergingQueueGuiExecutor.startBackgroundProcess$lambda$6(com.intellij.openapi.project.MergingQueueGuiExecutor, kotlin.jvm.functions.Function0, com.intellij.openapi.project.SingleTaskExecutor$AutoclosableProgressive)[]@MergingQueueGuiExecutor.kt:153" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.project.MergingQueueGuiExecutor$$Lambda+\u003chidden\u003e.accept(java.lang.Object)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa3", + "lines": [ + "boolean com.intellij.openapi.project.SingleTaskExecutor.tryStartProcess(java.util.function.Consumer)[]@SingleTaskExecutor.kt:105" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "void com.intellij.openapi.project.MergingQueueGuiExecutor.startBackgroundProcess(kotlin.jvm.functions.Function0)[]@MergingQueueGuiExecutor.kt:148" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher.launch()[]@DumbServiceImpl.kt:116" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$queueTaskOnEdt$1.invokeSuspend(java.lang.Object)[]@DumbServiceImpl.kt:433" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "void com.intellij.openapi.application.impl.DispatchedRunnable.run()[]@DispatchedRunnable.kt:44" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.runWithWritingAllowed(java.lang.Runnable)[]@TransactionGuardImpl.java:236" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.access$100(com.intellij.openapi.application.TransactionGuardImpl, java.lang.Runnable)[]@TransactionGuardImpl.java:25" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$2.run()[]@TransactionGuardImpl.java:218" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo)[]@FlushQueue.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@FlushQueue.java:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18e", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:355" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:354" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7f", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@IdeEventQueue.kt:349" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1ff", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:395" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x67", + "lines": [ + "com.intellij.openapi.vfs.AsyncFileListener$ChangeApplier com.intellij.workspaceModel.ide.impl.WorkspaceModelRootWatcher.prepareChange(java.util.List)[]@WorkspaceModelRootWatcher.kt:18" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport.lambda$runAsyncListeners$0(java.util.List, com.intellij.openapi.vfs.AsyncFileListener, java.util.List)[]@AsyncEventSupport.java:90" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$3(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:258" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:272" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:258" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(java.lang.Runnable)[]@ApplicationImpl.java:853" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7c", + "lines": [ + "java.util.List com.intellij.openapi.vfs.newvfs.AsyncEventSupport.runAsyncListeners(java.util.List)[]@AsyncEventSupport.java:90" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void com.intellij.openapi.vfs.newvfs.AsyncEventSupport$1.before(java.util.List)[]@AsyncEventSupport.java:54" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void java.lang.invoke.LambdaForm$DMH+0x00007e27444a4000.invokeInterface(java.lang.Object, java.lang.Object, java.lang.Object)[]@LambdaForm$DMH:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x37", + "lines": [ + "void java.lang.invoke.LambdaForm$MH+0x00007e27445ec000.invoke(java.lang.Object, java.lang.Object)[]@LambdaForm$MH:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.invoke.LambdaForm$MH+0x00007e27445ec400.invokeExact_MT(java.lang.Object, java.lang.Object, java.lang.Object)[]@LambdaForm$MH:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)[]@MessageBusImpl.kt:768" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "java.lang.Throwable com.intellij.util.messages.impl.MessageBusImplKt.invokeListener(java.lang.invoke.MethodHandle, java.lang.String, java.lang.Object[], com.intellij.util.messages.Topic, java.lang.Object, java.util.Set, java.lang.Throwable)[]@MessageBusImpl.kt:708" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x66", + "lines": [ + "java.lang.Throwable com.intellij.util.messages.impl.MessageBusImplKt.executeOrAddToQueue(com.intellij.util.messages.Topic, java.lang.reflect.Method, java.lang.Object[], java.lang.Object[], com.intellij.util.messages.impl.MessageQueue, java.lang.Throwable, com.intellij.util.messages.impl.MessageBusImpl)[]@MessageBusImpl.kt:533" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6a", + "lines": [ + "boolean com.intellij.util.messages.impl.ToDirectChildrenMessagePublisher.publish$intellij_platform_core(java.lang.reflect.Method, java.lang.Object[], com.intellij.util.messages.impl.MessageQueue)[]@CompositeMessageBus.kt:281" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x37", + "lines": [ + "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])[]@MessageBusImpl.kt:481" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void jdk.proxy2.$Proxy156.before(java.util.List)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.lambda$fireBeforeEvents$20(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)[]@PersistentFSImpl.java:1483" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.runSuppressing(java.lang.Runnable, java.lang.Runnable, java.lang.Runnable)[]@PersistentFSImpl.java:1107" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x24", + "lines": [ + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.fireBeforeEvents(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)[]@PersistentFSImpl.java:1482" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.lambda$processEvent$11(com.intellij.openapi.vfs.newvfs.BulkFileListener, java.util.List)[]@PersistentFSImpl.java:1088" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.runSuppressing(java.lang.Runnable, java.lang.Runnable, java.lang.Runnable)[]@PersistentFSImpl.java:1107" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x63", + "lines": [ + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.processEvent(com.intellij.openapi.vfs.newvfs.events.VFileEvent)[]@PersistentFSImpl.java:1087" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.deleteFile(java.lang.Object, com.intellij.openapi.vfs.VirtualFile)[]@PersistentFSImpl.java:762" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.vfs.newvfs.impl.VirtualFileSystemEntry.delete(java.lang.Object)[]@VirtualFileSystemEntry.java:302" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "void com.intellij.psi.impl.file.PsiFileImplUtil.doDelete(com.intellij.psi.PsiFile)[]@PsiFileImplUtil.java:92" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.psi.impl.file.PsiBinaryFileImpl.delete()[]@PsiBinaryFileImpl.java:209" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1e", + "lines": [ + "void com.intellij.ide.util.DeleteHandler.lambda$doDeleteFiles$5(com.intellij.ide.util.DeleteHandler$LocalFilesDeleteTask, com.intellij.openapi.project.Project)[]@DeleteHandler.java:335" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction$lambda$5(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:379" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:389" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:379" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(java.lang.Runnable)[]@ApplicationImpl.java:896" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xcc", + "lines": [ + "void com.intellij.ide.util.DeleteHandler.doDeleteFiles(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])[]@DeleteHandler.java:332" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x46", + "lines": [ + "void com.intellij.ide.util.DeleteHandler.lambda$deleteInCommand$0(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])[]@DeleteHandler.java:225" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.fileEditor.impl.NonProjectFileWritingAccessProvider.disableChecksDuring(java.lang.Runnable)[]@NonProjectFileWritingAccessProvider.java:172" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.ide.util.DeleteHandler.lambda$deleteInCommand$1(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])[]@DeleteHandler.java:212" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.ide.util.DeleteHandler$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdd", + "lines": [ + "void com.intellij.openapi.command.impl.CoreCommandProcessor.executeCommand(com.intellij.openapi.project.Project, java.lang.Runnable, java.lang.String, java.lang.Object, com.intellij.openapi.command.UndoConfirmationPolicy, boolean, com.intellij.openapi.editor.Document)[]@CoreCommandProcessor.java:226" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.openapi.command.impl.CoreCommandProcessor.executeCommand(com.intellij.openapi.project.Project, java.lang.Runnable, java.lang.String, java.lang.Object, com.intellij.openapi.command.UndoConfirmationPolicy, com.intellij.openapi.editor.Document)[]@CoreCommandProcessor.java:178" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.openapi.command.impl.CoreCommandProcessor.executeCommand(com.intellij.openapi.project.Project, java.lang.Runnable, java.lang.String, java.lang.Object, com.intellij.openapi.command.UndoConfirmationPolicy)[]@CoreCommandProcessor.java:168" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.command.impl.CoreCommandProcessor.executeCommand(com.intellij.openapi.project.Project, java.lang.Runnable, java.lang.String, java.lang.Object)[]@CoreCommandProcessor.java:154" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "void com.intellij.ide.util.DeleteHandler.deleteInCommand(com.intellij.openapi.project.Project, com.intellij.psi.PsiElement[])[]@DeleteHandler.java:212" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15a", + "lines": [ + "void com.intellij.ide.util.DeleteHandler.deletePsiElement(com.intellij.psi.PsiElement[], com.intellij.openapi.project.Project, boolean)[]@DeleteHandler.java:197" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.ide.util.DeleteHandler.deletePsiElement(com.intellij.psi.PsiElement[], com.intellij.openapi.project.Project)[]@DeleteHandler.java:124" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "void com.intellij.ide.projectView.impl.ProjectViewDeleteElementProvider.deleteElement(com.intellij.openapi.actionSystem.DataContext)[]@ProjectViewDeleteElementProvider.java:60" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "void com.intellij.ide.actions.DeleteAction.actionPerformed(com.intellij.openapi.actionSystem.AnActionEvent)[]@DeleteAction.java:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa1", + "lines": [ + "void com.intellij.openapi.actionSystem.ex.ActionUtil.doPerformActionOrShowPopup(com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent, java.util.function.Consumer)[]@ActionUtil.kt:374" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.keymap.impl.ActionProcessor.performAction(java.awt.event.InputEvent, com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent)[]@ActionProcessor.java:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher$actionProcessor$1.performAction(java.awt.event.InputEvent, com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent)[]@IdeKeyEventDispatcher.kt:499" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcherKt.doPerformActionInner$lambda$8$lambda$7(com.intellij.openapi.keymap.impl.ActionProcessor, java.awt.event.InputEvent, com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent)[]@IdeKeyEventDispatcher.kt:850" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcherKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performUserActivity(java.lang.Runnable)[]@TransactionGuardImpl.java:98" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcherKt.doPerformActionInner$lambda$8(int, com.intellij.openapi.keymap.impl.ActionProcessor, java.awt.event.InputEvent, com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent)[]@IdeKeyEventDispatcher.kt:850" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcherKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1ca", + "lines": [ + "void com.intellij.openapi.actionSystem.impl.ActionManagerImpl.performWithActionCallbacks(com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent, java.lang.Runnable)[]@ActionManagerImpl.kt:1173" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "void com.intellij.openapi.actionSystem.ex.ActionUtil.performDumbAwareWithCallbacks(com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent, java.lang.Runnable)[]@ActionUtil.kt:396" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcherKt.doPerformActionInner(java.awt.event.InputEvent, com.intellij.openapi.keymap.impl.ActionProcessor, com.intellij.openapi.actionSystem.DataContext, com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent)[]@IdeKeyEventDispatcher.kt:848" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.openapi.keymap.impl.IdeKeyEventDispatcherKt.access$doPerformActionInner(java.awt.event.InputEvent, com.intellij.openapi.keymap.impl.ActionProcessor, com.intellij.openapi.actionSystem.DataContext, com.intellij.openapi.actionSystem.AnAction, com.intellij.openapi.actionSystem.AnActionEvent)[]@IdeKeyEventDispatcher.kt:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x185", + "lines": [ + "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.processAction(java.awt.event.InputEvent, java.lang.String, com.intellij.openapi.actionSystem.DataContext, java.util.List, com.intellij.openapi.keymap.impl.ActionProcessor, com.intellij.openapi.actionSystem.impl.PresentationFactory, com.intellij.openapi.actionSystem.Shortcut)[]@IdeKeyEventDispatcher.kt:577" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.processAction(java.awt.event.InputEvent, com.intellij.openapi.keymap.impl.ActionProcessor)[]@IdeKeyEventDispatcher.kt:512" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.processActionOrWaitSecondStroke(javax.swing.KeyStroke)[]@IdeKeyEventDispatcher.kt:451" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x146", + "lines": [ + "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.inInitState()[]@IdeKeyEventDispatcher.kt:444" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c9", + "lines": [ + "boolean com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.dispatchKeyEvent(java.awt.event.KeyEvent)[]@IdeKeyEventDispatcher.kt:306" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchKeyEvent(java.awt.event.KeyEvent)[]@IdeEventQueue.kt:606" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$22(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:565" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x130", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:565" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:355" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:354" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7f", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@IdeEventQueue.kt:349" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1ff", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:395" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x40f84", + "lines": [ + "libX11.so.6.4.0 0x40f84[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x46148", + "lines": [ + "libX11.so.6.4.0 0x46148[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x2b478", + "lines": [ + "libX11.so.6.4.0 0x2b478[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x737aa", + "lines": [ + "libX11.so.6.4.0 0x737aa[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x74e94", + "lines": [ + "libX11.so.6.4.0 0x74e94[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x78b39", + "lines": [ + "libX11.so.6.4.0 0x78b39[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x632d6", + "lines": [ + "libX11.so.6.4.0 0x632d6[]@:0" + ], + "mapping": "0x19000-0xa9000@0x19000 libX11.so.6.4.0(4cb55b1a3e1fcb63bde78cbab338d576fc43e330)" + }, + { + "address": "0x3f999", + "lines": [ + "libawt_xawt.so 0x3f999[]@:0" + ], + "mapping": "0x13000-0x5d000@0x13000 libawt_xawt.so(134d9e7faf72035d5f259dcf73c8774bb044da7a)" + }, + { + "address": "0x0", + "lines": [ + "java.lang.String sun.awt.X11InputMethodBase.resetXIC()[]@X11InputMethodBase.java:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "java.lang.String sun.awt.X11InputMethodBase.invokeResetXIC()[]@X11InputMethodBase.java:802" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void sun.awt.X11.XInputMethod.endComposition()[]@XInputMethod.java:135" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void sun.awt.X11.XInputMethod.dispatchEvent(java.awt.AWTEvent)[]@XInputMethod.java:115" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa7", + "lines": [ + "void sun.awt.im.InputContext.dispatchEvent(java.awt.AWTEvent)[]@InputContext.java:263" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "void sun.awt.im.InputMethodContext.dispatchEvent(java.awt.AWTEvent)[]@InputMethodContext.java:197" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16d", + "lines": [ + "void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)[]@Component.java:4974" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)[]@Container.java:2324" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)[]@Component.java:4860" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a1", + "lines": [ + "void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)[]@Container.java:4963" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x90", + "lines": [ + "boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)[]@Container.java:4574" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)[]@Container.java:4518" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)[]@Container.java:2310" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)[]@Window.java:2810" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void java.awt.Component.dispatchEvent(java.awt.AWTEvent)[]@Component.java:4860" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:783" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext)[]@ProtectionDomain.java:98" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.lang.Void java.awt.EventQueue$5.run()[]@EventQueue.java:755" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$5.run()[]@EventQueue.java:753" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:752" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x43", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchMouseEvent(java.awt.event.MouseEvent)[]@IdeEventQueue.kt:621" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$21(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:564" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x115", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:564" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:355" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:354" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7f", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@IdeEventQueue.kt:349" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1ff", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:395" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x3f", + "lines": [ + "int java.util.Arrays.binarySearch0(int[], int, int, int)[]@Arrays.java:1717" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int java.util.Arrays.binarySearch(int[], int)[]@Arrays.java:1660" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55", + "lines": [ + "int com.intellij.openapi.editor.impl.LineSet.findLineIndex(int)[]@LineSet.java:169" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "int com.intellij.openapi.editor.impl.DocumentImpl.getLineNumber(int)[]@DocumentImpl.java:1034" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x53", + "lines": [ + "int com.intellij.openapi.editor.impl.RangeHighlighterImpl.getAffectedAreaStartOffset()[]@RangeHighlighterImpl.java:384" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "int com.intellij.openapi.editor.ex.RangeHighlighterEx$$Lambda+\u003chidden\u003e.applyAsInt(java.lang.Object)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "int java.util.Comparator.lambda$comparingInt$7b0bb60$1(java.util.function.ToIntFunction, java.lang.Object, java.lang.Object)[]@Comparator.java:494" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "int java.util.Comparator$$Lambda+\u003chidden\u003e.compare(java.lang.Object, java.lang.Object)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "com.intellij.openapi.editor.ex.MarkupIterator com.intellij.openapi.editor.ex.MarkupIterator$2.choose()[]@MarkupIterator.java:71" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.ex.MarkupIterator$2.peek()[]@MarkupIterator.java:82" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.FilteringMarkupIterator.peek()[]@FilteringMarkupIterator.java:29" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.editor.impl.FilteringMarkupIterator.skipUnrelated()[]@FilteringMarkupIterator.java:45" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "java.lang.Object com.intellij.openapi.editor.impl.FilteringMarkupIterator.next()[]@FilteringMarkupIterator.java:40" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.processRangeHighlighters(int, int, com.intellij.openapi.editor.impl.EditorGutterComponentImpl$RangeHighlighterProcessor)[]@EditorGutterComponentImpl.java:877" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x25", + "lines": [ + "it.unimi.dsi.fastutil.ints.Int2ObjectMap com.intellij.openapi.editor.impl.EditorGutterComponentImpl.buildGutterRenderersCache()[]@EditorGutterComponentImpl.java:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "it.unimi.dsi.fastutil.objects.ObjectIterable com.intellij.openapi.editor.impl.EditorGutterComponentImpl.processGutterRenderers()[]@EditorGutterComponentImpl.java:1199" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x96", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.calcLineMarkerAreaWidth(boolean)[]@EditorGutterComponentImpl.java:1129" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.updateSize(boolean, boolean)[]@EditorGutterComponentImpl.java:954" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl.updateSize()[]@EditorGutterComponentImpl.java:944" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.editor.impl.EditorGutterComponentImpl$1.exitDumbMode()[]@EditorGutterComponentImpl.java:234" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)[]@LambdaForm$DMH:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)[]@LambdaForm$MH:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)[]@LambdaForm$MH:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)[]@MessageBusImpl.kt:765" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "java.lang.Throwable com.intellij.util.messages.impl.MessageBusImplKt.invokeListener(java.lang.invoke.MethodHandle, java.lang.String, java.lang.Object[], com.intellij.util.messages.Topic, java.lang.Object, java.util.Set, java.lang.Throwable)[]@MessageBusImpl.kt:712" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "java.lang.Throwable com.intellij.util.messages.impl.MessageBusImplKt.deliverMessage(com.intellij.util.messages.impl.Message, com.intellij.util.messages.impl.MessageQueue, java.lang.Throwable)[]@MessageBusImpl.kt:451" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45", + "lines": [ + "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)[]@MessageBusImpl.kt:420" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)[]@MessageBusImpl.kt:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])[]@MessageBusImpl.kt:487" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void jdk.proxy2.$Proxy225.handle(com.intellij.execution.services.ServiceEventListener$ServiceEvent)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.platform.execution.dashboard.RunDashboardManagerImpl.updateDashboard(boolean)[]@RunDashboardManagerImpl.java:464" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.platform.execution.dashboard.RunDashboardManagerImpl$8.exitDumbMode()[]@RunDashboardManagerImpl.java:229" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)[]@LambdaForm$DMH:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)[]@LambdaForm$MH:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)[]@LambdaForm$MH:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)[]@MessageBusImpl.kt:765" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "java.lang.Throwable com.intellij.util.messages.impl.MessageBusImplKt.invokeListener(java.lang.invoke.MethodHandle, java.lang.String, java.lang.Object[], com.intellij.util.messages.Topic, java.lang.Object, java.util.Set, java.lang.Throwable)[]@MessageBusImpl.kt:712" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "java.lang.Throwable com.intellij.util.messages.impl.MessageBusImplKt.deliverMessage(com.intellij.util.messages.impl.Message, com.intellij.util.messages.impl.MessageQueue, java.lang.Throwable)[]@MessageBusImpl.kt:451" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x45", + "lines": [ + "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)[]@MessageBusImpl.kt:420" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)[]@MessageBusImpl.kt:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68", + "lines": [ + "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])[]@MessageBusImpl.kt:493" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void jdk.proxy2.$Proxy139.beforePsiChanged(boolean)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.psi.impl.PsiManagerImpl.beforeChange(boolean)[]@PsiManagerImpl.java:434" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void com.intellij.psi.impl.PsiManagerImpl.beforePropertyChange(com.intellij.psi.impl.PsiTreeChangeEventImpl)[]@PsiManagerImpl.java:252" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18", + "lines": [ + "void com.intellij.psi.impl.file.impl.FileManagerImpl.lambda$processFileTypesChanged$3(boolean)[]@FileManagerImpl.java:305" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.psi.impl.file.impl.FileManagerImpl$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "kotlin.Unit com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction$lambda$5(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:379" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:389" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:379" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "void com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(java.lang.Runnable)[]@ApplicationImpl.java:896" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.psi.impl.file.impl.FileManagerImpl.lambda$processFileTypesChanged$4(boolean)[]@FileManagerImpl.java:302" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.psi.impl.file.impl.FileManagerImpl$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.psi.impl.DebugUtil.performPsiModification(java.lang.String, com.intellij.util.ThrowableRunnable)[]@DebugUtil.java:534" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void com.intellij.psi.impl.file.impl.FileManagerImpl.processFileTypesChanged(boolean)[]@FileManagerImpl.java:300" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.psi.impl.file.impl.FileManagerImpl$1.exitDumbMode()[]@FileManagerImpl.java:81" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.lang.invoke.LambdaForm$DMH+0x00007e2744210c00.invokeInterface(java.lang.Object, java.lang.Object)[]@LambdaForm$DMH:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "void java.lang.invoke.LambdaForm$MH+0x00007e27472a0000.invoke(java.lang.Object, java.lang.Object)[]@LambdaForm$MH:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.lang.invoke.LambdaForm$MH+0x00007e2744212400.invoke_MT(java.lang.Object, java.lang.Object, java.lang.Object)[]@LambdaForm$MH:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(java.lang.Object, java.lang.Object[], java.lang.invoke.MethodHandle)[]@MessageBusImpl.kt:765" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47", + "lines": [ + "java.lang.Throwable com.intellij.util.messages.impl.MessageBusImplKt.invokeListener(java.lang.invoke.MethodHandle, java.lang.String, java.lang.Object[], com.intellij.util.messages.Topic, java.lang.Object, java.util.Set, java.lang.Throwable)[]@MessageBusImpl.kt:712" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "java.lang.Throwable com.intellij.util.messages.impl.MessageBusImplKt.deliverMessage(com.intellij.util.messages.impl.Message, com.intellij.util.messages.impl.MessageQueue, java.lang.Throwable)[]@MessageBusImpl.kt:451" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x97", + "lines": [ + "void com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(com.intellij.util.messages.impl.MessageQueue)[]@MessageBusImpl.kt:430" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(com.intellij.util.messages.impl.MessageQueue)[]@MessageBusImpl.kt:1" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68", + "lines": [ + "java.lang.Object com.intellij.util.messages.impl.MessagePublisher.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])[]@MessageBusImpl.kt:493" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void jdk.proxy2.$Proxy75.exitDumbMode()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent$lambda$12$lambda$11(com.intellij.openapi.project.DumbServiceImpl)[]@DumbServiceImpl.kt:359" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.project.DumbServiceImpl$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent$lambda$12(com.intellij.openapi.project.DumbServiceImpl)[]@DumbServiceImpl.kt:359" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.project.DumbServiceImpl$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.project.DumbServiceImpl$Companion.runCatchingIgnorePCE(java.lang.Runnable)[]@DumbServiceImpl.kt:753" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.project.DumbServiceImpl$Companion.access$runCatchingIgnorePCE(com.intellij.openapi.project.DumbServiceImpl$Companion, java.lang.Runnable)[]@DumbServiceImpl.kt:740" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5f", + "lines": [ + "void com.intellij.openapi.project.DumbServiceImpl.publishDumbModeChangedEvent()[]@DumbServiceImpl.kt:359" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6b", + "lines": [ + "void com.intellij.openapi.project.DumbServiceImpl.decrementDumbCounter()[]@DumbServiceImpl.kt:337" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.project.DumbServiceImpl.access$decrementDumbCounter(com.intellij.openapi.project.DumbServiceImpl)[]@DumbServiceImpl.kt:57" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "kotlin.Unit com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$1.invokeSuspend$lambda$0(com.intellij.openapi.project.DumbServiceImpl, com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher)[]@DumbServiceImpl.kt:103" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$1$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.writeIntentReadAction$lambda$1$lambda$0(kotlin.jvm.functions.Function0)[]@coroutines.kt:329" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.writeIntentReadAction$lambda$1(kotlin.jvm.functions.Function0)[]@coroutines.kt:329" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.CoroutinesKt.blockingContextInner(kotlin.coroutines.CoroutineContext, kotlin.jvm.functions.Function0)[]@coroutines.kt:341" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x32", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.CoroutinesKt$blockingContext$2.invokeSuspend(java.lang.Object)[]@coroutines.kt:233" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.CoroutinesKt$blockingContext$2.invoke(kotlinx.coroutines.CoroutineScope, kotlin.coroutines.Continuation)[]@coroutines.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.CoroutinesKt$blockingContext$2.invoke(java.lang.Object, java.lang.Object)[]@coroutines.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4f", + "lines": [ + "java.lang.Object kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(kotlinx.coroutines.internal.ScopeCoroutine, java.lang.Object, kotlin.jvm.functions.Function2)[]@Undispatched.kt:62" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1a", + "lines": [ + "java.lang.Object kotlinx.coroutines.CoroutineScopeKt.coroutineScope(kotlin.jvm.functions.Function2, kotlin.coroutines.Continuation)[]@CoroutineScope.kt:261" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.CoroutinesKt.blockingContext(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:232" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "java.lang.Object com.intellij.openapi.application.CoroutinesKt.writeIntentReadAction(kotlin.jvm.functions.Function0, kotlin.coroutines.Continuation)[]@coroutines.kt:328" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3a", + "lines": [ + "java.lang.Object com.intellij.openapi.project.DumbServiceImpl$DumbTaskLauncher$close$1.invokeSuspend(java.lang.Object)[]@DumbServiceImpl.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x33", + "lines": [ + "void com.intellij.openapi.application.impl.DispatchedRunnable.run()[]@DispatchedRunnable.kt:44" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.runWithWritingAllowed(java.lang.Runnable)[]@TransactionGuardImpl.java:236" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.access$100(com.intellij.openapi.application.TransactionGuardImpl, java.lang.Runnable)[]@TransactionGuardImpl.java:25" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$2.run()[]@TransactionGuardImpl.java:218" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo)[]@FlushQueue.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@FlushQueue.java:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18e", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:355" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:354" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7f", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@IdeEventQueue.kt:349" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1ff", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:395" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "void kotlinx.coroutines.JobSupport.onCancelling(java.lang.Throwable)[]@JobSupport.kt:999" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x58", + "lines": [ + "boolean kotlinx.coroutines.JobSupport.tryFinalizeSimpleState(kotlinx.coroutines.Incomplete, java.lang.Object)[]@JobSupport.kt:292" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.tryMakeCompleting(java.lang.Object, java.lang.Object)[]@JobSupport.kt:857" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object kotlinx.coroutines.JobSupport.makeCompletingOnce$kotlinx_coroutines_core(java.lang.Object)[]@JobSupport.kt:829" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void kotlinx.coroutines.AbstractCoroutine.resumeWith(java.lang.Object)[]@AbstractCoroutine.kt:97" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x76", + "lines": [ + "void kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(java.lang.Object)[]@ContinuationImpl.kt:46" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x154", + "lines": [ + "void kotlinx.coroutines.DispatchedTask.run()[]@DispatchedTask.kt:104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.EdtCoroutineDispatcher$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl$2.run()[]@TransactionGuardImpl.java:221" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.runNextEvent(com.intellij.openapi.application.impl.FlushQueue$RunnableInfo)[]@FlushQueue.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x31", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue.flushNow()[]@FlushQueue.java:43" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.FlushQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void java.awt.event.InvocationEvent.dispatch()[]@InvocationEvent.java:318" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15", + "lines": [ + "void java.awt.EventQueue.dispatchEventImpl(java.awt.AWTEvent, java.lang.Object)[]@EventQueue.java:781" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "java.lang.Void java.awt.EventQueue$4.run()[]@EventQueue.java:728" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.awt.EventQueue$4.run()[]@EventQueue.java:722" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "java.lang.Object java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(java.security.PrivilegedAction, java.security.AccessControlContext, java.security.AccessControlContext)[]@ProtectionDomain.java:87" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)[]@EventQueue.java:750" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void com.intellij.ide.IdeEventQueue.defaultDispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:675" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x18e", + "lines": [ + "void com.intellij.ide.IdeEventQueue._dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:573" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16$lambda$15(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:355" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3b", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:857" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18$lambda$17$lambda$16(com.intellij.openapi.progress.ProgressManager, com.intellij.ide.IdeEventQueue, java.awt.AWTEvent)[]@IdeEventQueue.kt:354" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2$lambda$1(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.lambda$run$0(java.lang.Runnable)[]@WriteIntentReadAction.java:24" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runWriteIntentReadAction(com.intellij.openapi.util.ThrowableComputable)[]@ApplicationImpl.java:916" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.application.WriteIntentReadAction.compute(com.intellij.openapi.util.ThrowableComputable)[]@WriteIntentReadAction.java:55" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "void com.intellij.openapi.application.WriteIntentReadAction.run(java.lang.Runnable)[]@WriteIntentReadAction.java:23" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "kotlin.Unit com.intellij.ide.IdeEventQueueKt.performActivity$lambda$2(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1045" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity$lambda$3(kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2a", + "lines": [ + "void com.intellij.openapi.application.TransactionGuardImpl.performActivity(boolean, java.lang.Runnable)[]@TransactionGuardImpl.java:109" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7f", + "lines": [ + "void com.intellij.ide.IdeEventQueueKt.performActivity(java.awt.AWTEvent, boolean, kotlin.jvm.functions.Function0)[]@IdeEventQueue.kt:1054" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$18(com.intellij.ide.IdeEventQueue, java.awt.AWTEvent, boolean, java.awt.AWTEvent, com.intellij.diagnostic.EventWatcher, java.lang.Runnable, java.lang.Class, long)[]@IdeEventQueue.kt:349" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x20", + "lines": [ + "void com.intellij.ide.IdeEventQueue$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1ff", + "lines": [ + "void com.intellij.ide.IdeEventQueue.dispatchEvent(java.awt.AWTEvent)[]@IdeEventQueue.kt:395" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x51", + "lines": [ + "void java.awt.EventDispatchThread.pumpOneEventForFilters(int)[]@EventDispatchThread.java:207" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForFilter(int, java.awt.Conditional, java.awt.EventFilter)[]@EventDispatchThread.java:128" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.EventDispatchThread.pumpEventsForHierarchy(int, java.awt.Conditional, java.awt.Component)[]@EventDispatchThread.java:117" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(int, java.awt.Conditional)[]@EventDispatchThread.java:113" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)[]@EventDispatchThread.java:105" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "void java.awt.EventDispatchThread.run()[]@EventDispatchThread.java:92" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x4801eb", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x4801eb[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0x41771a", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x41771a[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0x4197c7", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x4197c7[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0x419604", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x419604[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0x418c32", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x418c32[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0x4128c4", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x4128c4[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0x471c2c", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x471c2c[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0x471444", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x471444[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0xb04536", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0xb04536[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0xb07b07", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0xb07b07[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0xb070b0", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0xb070b0[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0xb05324", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0xb05324[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0xb227bb", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0xb227bb[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0xb2261e", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0xb2261e[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0xb23b5b", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0xb23b5b[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0x47f4c0", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x47f4c0[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x34de0a", + "lines": [ + "htab_map_get_next_key[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3100d0", + "lines": [ + "map_get_next_key[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x316752", + "lines": [ + "__sys_bpf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x316e99", + "lines": [ + "__x64_sys_bpf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6e57", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48414d", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x48414d[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0x4d282c", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d282c[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0x4d2885", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d2885[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0x4d33ed", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x4d33ed[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0x6241b3", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x6241b3[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0x69a5ec", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x69a5ec[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0x69a33c", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x69a33c[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0xbc14ac", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0xbc14ac[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0xbc25a4", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0xbc25a4[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0xb1f974", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0xb1f974[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + }, + { + "address": "0x47f4c0", + "lines": [ + "___go_build_go_opentelemetry_io_ebpf_profiler 0x47f4c0[]@:0" + ], + "mapping": "0x402000-0xc32000@0x2000 ___go_build_go_opentelemetry_io_ebpf_profiler(11e18b2cee9cdd6011fde7596c45f90e4a428c0f)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xcd2f48", + "lines": [ + "libjvm.so 0xcd2f48[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xc53067", + "lines": [ + "libjvm.so 0xc53067[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xc562d7", + "lines": [ + "libjvm.so 0xc562d7[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x6720b1", + "lines": [ + "libjvm.so 0x6720b1[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x676529", + "lines": [ + "libjvm.so 0x676529[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59b62e", + "lines": [ + "libjvm.so 0x59b62e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67c233", + "lines": [ + "libjvm.so 0x67c233[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67f1a3", + "lines": [ + "libjvm.so 0x67f1a3[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xd5788c", + "lines": [ + "libjvm.so 0xd5788c[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd549a8", + "lines": [ + "libjvm.so 0xd549a8[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x673fb9", + "lines": [ + "libjvm.so 0x673fb9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x675f01", + "lines": [ + "libjvm.so 0x675f01[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59b62e", + "lines": [ + "libjvm.so 0x59b62e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67c233", + "lines": [ + "libjvm.so 0x67c233[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67f1a3", + "lines": [ + "libjvm.so 0x67f1a3[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xca29b1", + "lines": [ + "libjvm.so 0xca29b1[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xca4241", + "lines": [ + "libjvm.so 0xca4241[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x5dfc34", + "lines": [ + "libjvm.so 0x5dfc34[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x88e8b5", + "lines": [ + "libjvm.so 0x88e8b5[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xb965c3", + "lines": [ + "libjvm.so 0xb965c3[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd34374", + "lines": [ + "libjvm.so 0xd34374[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd347b4", + "lines": [ + "libjvm.so 0xd347b4[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd36f34", + "lines": [ + "libjvm.so 0xd36f34[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59c77a", + "lines": [ + "libjvm.so 0x59c77a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59e148", + "lines": [ + "libjvm.so 0x59e148[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x765d47", + "lines": [ + "libjvm.so 0x765d47[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd34374", + "lines": [ + "libjvm.so 0xd34374[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd347b4", + "lines": [ + "libjvm.so 0xd347b4[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd36f34", + "lines": [ + "libjvm.so 0xd36f34[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59c77a", + "lines": [ + "libjvm.so 0x59c77a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x765d47", + "lines": [ + "libjvm.so 0x765d47[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd34374", + "lines": [ + "libjvm.so 0xd34374[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd347b4", + "lines": [ + "libjvm.so 0xd347b4[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd36f34", + "lines": [ + "libjvm.so 0xd36f34[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59c77a", + "lines": [ + "libjvm.so 0x59c77a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x765d47", + "lines": [ + "libjvm.so 0x765d47[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd34374", + "lines": [ + "libjvm.so 0xd34374[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd347b4", + "lines": [ + "libjvm.so 0xd347b4[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd36f34", + "lines": [ + "libjvm.so 0xd36f34[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59c77a", + "lines": [ + "libjvm.so 0x59c77a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x765d47", + "lines": [ + "libjvm.so 0x765d47[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd34374", + "lines": [ + "libjvm.so 0xd34374[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd347b4", + "lines": [ + "libjvm.so 0xd347b4[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd36f34", + "lines": [ + "libjvm.so 0xd36f34[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59c77a", + "lines": [ + "libjvm.so 0x59c77a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59e148", + "lines": [ + "libjvm.so 0x59e148[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x765d47", + "lines": [ + "libjvm.so 0x765d47[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd34374", + "lines": [ + "libjvm.so 0xd34374[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd347b4", + "lines": [ + "libjvm.so 0xd347b4[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd36f34", + "lines": [ + "libjvm.so 0xd36f34[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59c77a", + "lines": [ + "libjvm.so 0x59c77a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x765d47", + "lines": [ + "libjvm.so 0x765d47[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd34374", + "lines": [ + "libjvm.so 0xd34374[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd347b4", + "lines": [ + "libjvm.so 0xd347b4[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd36f34", + "lines": [ + "libjvm.so 0xd36f34[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59c77a", + "lines": [ + "libjvm.so 0x59c77a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x765d47", + "lines": [ + "libjvm.so 0x765d47[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd34374", + "lines": [ + "libjvm.so 0xd34374[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd347b4", + "lines": [ + "libjvm.so 0xd347b4[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd36f34", + "lines": [ + "libjvm.so 0xd36f34[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59c77a", + "lines": [ + "libjvm.so 0x59c77a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x675d45", + "lines": [ + "libjvm.so 0x675d45[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59b62e", + "lines": [ + "libjvm.so 0x59b62e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67c233", + "lines": [ + "libjvm.so 0x67c233[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67f1a3", + "lines": [ + "libjvm.so 0x67f1a3[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xf8e0c6", + "lines": [ + "libjvm.so 0xf8e0c6[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf8cb60", + "lines": [ + "libjvm.so 0xf8cb60[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x752b0b", + "lines": [ + "libjvm.so 0x752b0b[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf8ea8a", + "lines": [ + "libjvm.so 0xf8ea8a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x666ddb", + "lines": [ + "libjvm.so 0x666ddb[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x6673d8", + "lines": [ + "libjvm.so 0x6673d8[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xc63596", + "lines": [ + "libjvm.so 0xc63596[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xc6de6d", + "lines": [ + "libjvm.so 0xc6de6d[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd56aca", + "lines": [ + "libjvm.so 0xd56aca[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xc647db", + "lines": [ + "libjvm.so 0xc647db[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x890bbe", + "lines": [ + "libjvm.so 0x890bbe[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4b7167", + "lines": [ + "libjvm.so 0x4b7167[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4b82d5", + "lines": [ + "libjvm.so 0x4b82d5[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x89f571", + "lines": [ + "libjvm.so 0x89f571[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd45a4e", + "lines": [ + "libjvm.so 0xd45a4e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd46502", + "lines": [ + "libjvm.so 0xd46502[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd34374", + "lines": [ + "libjvm.so 0xd34374[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd347b4", + "lines": [ + "libjvm.so 0xd347b4[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd36f34", + "lines": [ + "libjvm.so 0xd36f34[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59c77a", + "lines": [ + "libjvm.so 0x59c77a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x675d45", + "lines": [ + "libjvm.so 0x675d45[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59b62e", + "lines": [ + "libjvm.so 0x59b62e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67c233", + "lines": [ + "libjvm.so 0x67c233[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67f1a3", + "lines": [ + "libjvm.so 0x67f1a3[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xd5c0c2", + "lines": [ + "libjvm.so 0xd5c0c2[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x5c9e9a", + "lines": [ + "libjvm.so 0x5c9e9a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x672338", + "lines": [ + "libjvm.so 0x672338[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x676529", + "lines": [ + "libjvm.so 0x676529[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59b62e", + "lines": [ + "libjvm.so 0x59b62e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67c233", + "lines": [ + "libjvm.so 0x67c233[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67f1a3", + "lines": [ + "libjvm.so 0x67f1a3[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xf991cc", + "lines": [ + "libjvm.so 0xf991cc[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf99930", + "lines": [ + "libjvm.so 0xf99930[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf99ea6", + "lines": [ + "libjvm.so 0xf99ea6[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf9a2fb", + "lines": [ + "libjvm.so 0xf9a2fb[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x892f2e", + "lines": [ + "libjvm.so 0x892f2e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x765d0f", + "lines": [ + "libjvm.so 0x765d0f[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd34374", + "lines": [ + "libjvm.so 0xd34374[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd347b4", + "lines": [ + "libjvm.so 0xd347b4[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd36f34", + "lines": [ + "libjvm.so 0xd36f34[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59c77a", + "lines": [ + "libjvm.so 0x59c77a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x765d47", + "lines": [ + "libjvm.so 0x765d47[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd34374", + "lines": [ + "libjvm.so 0xd34374[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd347b4", + "lines": [ + "libjvm.so 0xd347b4[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd36f34", + "lines": [ + "libjvm.so 0xd36f34[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59c77a", + "lines": [ + "libjvm.so 0x59c77a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x765d47", + "lines": [ + "libjvm.so 0x765d47[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd34374", + "lines": [ + "libjvm.so 0xd34374[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd347b4", + "lines": [ + "libjvm.so 0xd347b4[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd36f34", + "lines": [ + "libjvm.so 0xd36f34[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59c77a", + "lines": [ + "libjvm.so 0x59c77a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59e148", + "lines": [ + "libjvm.so 0x59e148[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x765d47", + "lines": [ + "libjvm.so 0x765d47[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd34374", + "lines": [ + "libjvm.so 0xd34374[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd347b4", + "lines": [ + "libjvm.so 0xd347b4[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd36f34", + "lines": [ + "libjvm.so 0xd36f34[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59c77a", + "lines": [ + "libjvm.so 0x59c77a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59e148", + "lines": [ + "libjvm.so 0x59e148[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x765d47", + "lines": [ + "libjvm.so 0x765d47[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd34374", + "lines": [ + "libjvm.so 0xd34374[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd347b4", + "lines": [ + "libjvm.so 0xd347b4[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd36f34", + "lines": [ + "libjvm.so 0xd36f34[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59c77a", + "lines": [ + "libjvm.so 0x59c77a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59e148", + "lines": [ + "libjvm.so 0x59e148[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59e148", + "lines": [ + "libjvm.so 0x59e148[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x765d47", + "lines": [ + "libjvm.so 0x765d47[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd34374", + "lines": [ + "libjvm.so 0xd34374[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd347b4", + "lines": [ + "libjvm.so 0xd347b4[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd36f34", + "lines": [ + "libjvm.so 0xd36f34[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59c77a", + "lines": [ + "libjvm.so 0x59c77a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x675d45", + "lines": [ + "libjvm.so 0x675d45[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x59b62e", + "lines": [ + "libjvm.so 0x59b62e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67c233", + "lines": [ + "libjvm.so 0x67c233[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67f1a3", + "lines": [ + "libjvm.so 0x67f1a3[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0xad7b4", + "lines": [ + "libc.so.6 0xad7b4[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xcfc1af", + "lines": [ + "libjvm.so 0xcfc1af[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x432d9e", + "lines": [ + "libjvm.so 0x432d9e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xcf350a", + "lines": [ + "libjvm.so 0xcf350a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x63fbf0", + "lines": [ + "libjvm.so 0x63fbf0[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x6856e1", + "lines": [ + "libjvm.so 0x6856e1[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xcc7df4", + "lines": [ + "libjvm.so 0xcc7df4[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xcc84e2", + "lines": [ + "libjvm.so 0xcc84e2[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x5d2745", + "lines": [ + "libjvm.so 0x5d2745[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4eb59b", + "lines": [ + "libjvm.so 0x4eb59b[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4ecd89", + "lines": [ + "libjvm.so 0x4ecd89[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4ecfe7", + "lines": [ + "libjvm.so 0x4ecfe7[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4edd4b", + "lines": [ + "libjvm.so 0x4edd4b[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67c233", + "lines": [ + "libjvm.so 0x67c233[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67f1a3", + "lines": [ + "libjvm.so 0x67f1a3[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x6c4a6e", + "lines": [ + "libjvm.so 0x6c4a6e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x6c5c47", + "lines": [ + "libjvm.so 0x6c5c47[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x50e19d", + "lines": [ + "libjvm.so 0x50e19d[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x51c370", + "lines": [ + "libjvm.so 0x51c370[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x528811", + "lines": [ + "libjvm.so 0x528811[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x51c840", + "lines": [ + "libjvm.so 0x51c840[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x51c53e", + "lines": [ + "libjvm.so 0x51c53e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x51c70a", + "lines": [ + "libjvm.so 0x51c70a[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4ec547", + "lines": [ + "libjvm.so 0x4ec547[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4ec9e8", + "lines": [ + "libjvm.so 0x4ec9e8[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4ecc19", + "lines": [ + "libjvm.so 0x4ecc19[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4ecfe7", + "lines": [ + "libjvm.so 0x4ecfe7[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4edd4b", + "lines": [ + "libjvm.so 0x4edd4b[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67c233", + "lines": [ + "libjvm.so 0x67c233[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67f1a3", + "lines": [ + "libjvm.so 0x67f1a3[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x559925", + "lines": [ + "libjvm.so 0x559925[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x5625ba", + "lines": [ + "libjvm.so 0x5625ba[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x562e27", + "lines": [ + "libjvm.so 0x562e27[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x564b15", + "lines": [ + "libjvm.so 0x564b15[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4ebfec", + "lines": [ + "libjvm.so 0x4ebfec[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4ec90f", + "lines": [ + "libjvm.so 0x4ec90f[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4ecc19", + "lines": [ + "libjvm.so 0x4ecc19[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4ecfe7", + "lines": [ + "libjvm.so 0x4ecfe7[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4edd4b", + "lines": [ + "libjvm.so 0x4edd4b[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67c233", + "lines": [ + "libjvm.so 0x67c233[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67f1a3", + "lines": [ + "libjvm.so 0x67f1a3[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x55be84", + "lines": [ + "libjvm.so 0x55be84[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x564a47", + "lines": [ + "libjvm.so 0x564a47[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4ebfec", + "lines": [ + "libjvm.so 0x4ebfec[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4ec90f", + "lines": [ + "libjvm.so 0x4ec90f[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4ecc19", + "lines": [ + "libjvm.so 0x4ecc19[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4ecfe7", + "lines": [ + "libjvm.so 0x4ecfe7[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x4edd4b", + "lines": [ + "libjvm.so 0x4edd4b[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67c233", + "lines": [ + "libjvm.so 0x67c233[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x67f1a3", + "lines": [ + "libjvm.so 0x67f1a3[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x67fc1b", + "lines": [ + "libjvm.so 0x67fc1b[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9f705e", + "lines": [ + "libjvm.so 0x9f705e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getStackAccessControlContext()[]@AccessController.java:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x0", + "lines": [ + "java.security.AccessControlContext java.security.AccessController.getContext()[]@AccessController.java:1006" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "void java.awt.AWTEvent.\u003cinit\u003e(java.lang.Object, int)[]@AWTEvent.java:120" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, int, java.lang.Runnable, java.lang.Object, java.lang.Runnable, boolean)[]@InvocationEvent.java:291" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "void java.awt.event.InvocationEvent.\u003cinit\u003e(java.lang.Object, java.lang.Runnable)[]@InvocationEvent.java:177" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x10", + "lines": [ + "void sun.awt.GlobalCursorManager.updateCursorLater(java.awt.Component)[]@GlobalCursorManager.java:120" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void sun.awt.X11.XGlobalCursorManager.nativeUpdateCursor(java.awt.Component)[]@XGlobalCursorManager.java:60" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xbc", + "lines": [ + "void sun.awt.X11.XWindow.handleXCrossingEvent(sun.awt.X11.XEvent)[]@XWindow.java:1104" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void sun.awt.X11.XComponentPeer.handleXCrossingEvent(sun.awt.X11.XEvent)[]@XComponentPeer.java:74" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x88", + "lines": [ + "void sun.awt.X11.XWindowPeer.handleXCrossingEvent(sun.awt.X11.XEvent)[]@XWindowPeer.java:2364" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf6", + "lines": [ + "void sun.awt.X11.XBaseWindow.dispatchEvent(sun.awt.X11.XEvent)[]@XBaseWindow.java:1220" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x82", + "lines": [ + "void sun.awt.X11.XWindowPeer.handleXCrossingEvent(sun.awt.X11.XEvent)[]@XWindowPeer.java:2360" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf6", + "lines": [ + "void sun.awt.X11.XBaseWindow.dispatchEvent(sun.awt.X11.XEvent)[]@XBaseWindow.java:1220" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x54", + "lines": [ + "void sun.awt.X11.XBaseWindow.dispatchToWindow(sun.awt.X11.XEvent)[]@XBaseWindow.java:1178" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "void sun.awt.X11.XToolkit.dispatchEvent(sun.awt.X11.XEvent)[]@XToolkit.java:917" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x218", + "lines": [ + "void sun.awt.X11.XToolkit.run(boolean)[]@XToolkit.java:1064" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void sun.awt.X11.XToolkit.run()[]@XToolkit.java:946" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@Thread.java:1596" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@Thread.java:1583" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x73", + "lines": [ + "boolean com.intellij.openapi.util.text.StringUtilRt.equal(java.lang.CharSequence, java.lang.CharSequence, boolean)[]@StringUtilRt.java:35" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6", + "lines": [ + "boolean com.intellij.util.containers.CharSequenceHashingStrategy.equals(java.lang.CharSequence, java.lang.CharSequence)[]@HashingStrategy.java:52" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "boolean com.intellij.util.containers.CharSequenceHashingStrategy.equals(java.lang.Object, java.lang.Object)[]@HashingStrategy.java:36" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "boolean com.intellij.concurrency.ConcurrentHashMap.isEqual(java.lang.Object, java.lang.Object, com.intellij.util.containers.HashingStrategy)[]@ConcurrentHashMap.java:6253" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe", + "lines": [ + "boolean com.intellij.concurrency.ConcurrentHashMap.isEqual(java.lang.Object, java.lang.Object)[]@ConcurrentHashMap.java:6249" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x48", + "lines": [ + "java.lang.Object com.intellij.concurrency.ConcurrentHashMap.get(java.lang.Object)[]@ConcurrentHashMap.java:917" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x37", + "lines": [ + "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeAssocTable.findAssociatedFileType(java.lang.CharSequence)[]@FileTypeAssocTable.java:156" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl$FileTypeWithDescriptor com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.lambda$getFileTypeByFileName$12(java.lang.CharSequence)[]@FileTypeManagerImpl.java:720" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.util.ConcurrencyUtil.withLock(java.util.concurrent.locks.Lock, com.intellij.openapi.util.ThrowableComputable)[]@ConcurrencyUtil.java:246" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "java.lang.Object com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.withReadLock(com.intellij.openapi.util.ThrowableComputable)[]@FileTypeManagerImpl.java:1816" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2d", + "lines": [ + "com.intellij.openapi.fileTypes.FileType com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.getFileTypeByFileName(java.lang.CharSequence)[]@FileTypeManagerImpl.java:720" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "com.intellij.openapi.fileTypes.FileType com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.getFileTypeByFileName(java.lang.String)[]@FileTypeManagerImpl.java:711" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3d", + "lines": [ + "boolean com.goide.vgo.project.VgoLibraryRootsProvider$VgoDependenciesLibrary.shouldExclude(boolean, java.lang.String, java.util.function.BooleanSupplier, java.util.function.BooleanSupplier, java.util.function.BooleanSupplier)[]@VgoLibraryRootsProvider.java:114" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "boolean com.goide.vgo.project.workspaceModel.roots.VgoDependencyWorkspaceFileIndexContributor$$Lambda+\u003chidden\u003e.shouldExclude(boolean, java.lang.String, java.util.function.BooleanSupplier, java.util.function.BooleanSupplier, java.util.function.BooleanSupplier)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "boolean com.intellij.openapi.roots.SyntheticLibrary$ExcludeFileCondition.lambda$transformToCondition$3(java.util.Collection, com.intellij.openapi.vfs.VirtualFile)[]@SyntheticLibrary.java:236" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "boolean com.intellij.openapi.roots.SyntheticLibrary$ExcludeFileCondition$$Lambda+\u003chidden\u003e.value(java.lang.Object)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "boolean com.goide.vgo.project.workspaceModel.roots.VgoDependencyWorkspaceFileIndexContributor.registerFileSets$lambda$2(com.intellij.openapi.util.Condition, com.intellij.openapi.vfs.VirtualFile)[]@VgoDependencyWorkspaceFileIndexContributor.kt:34" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.goide.vgo.project.workspaceModel.roots.VgoDependencyWorkspaceFileIndexContributor$$Lambda+\u003chidden\u003e.invoke(java.lang.Object)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "boolean com.intellij.workspaceModel.core.fileIndex.impl.ExcludedFileSet$ByCondition.isExcluded(com.intellij.openapi.vfs.VirtualFile)[]@workspaceFileSets.kt:328" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "int com.intellij.workspaceModel.core.fileIndex.impl.ExcludedFileSet$ByCondition.computeMasks(int, com.intellij.openapi.project.Project, boolean, com.intellij.openapi.vfs.VirtualFile)[]@workspaceFileSets.kt:338" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x39", + "lines": [ + "int com.intellij.workspaceModel.core.fileIndex.impl.MultipleStoredWorkspaceFileSets.computeMasks(int, com.intellij.openapi.project.Project, boolean, com.intellij.openapi.vfs.VirtualFile)[]@workspaceFileSets.kt:212" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf4", + "lines": [ + "com.intellij.workspaceModel.core.fileIndex.impl.WorkspaceFileInternalInfo com.intellij.workspaceModel.core.fileIndex.impl.WorkspaceFileIndexDataImpl.getFileInfo(com.intellij.openapi.vfs.VirtualFile, boolean, boolean, boolean, boolean, boolean)[]@WorkspaceFileIndexDataImpl.kt:113" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3e", + "lines": [ + "com.intellij.workspaceModel.core.fileIndex.impl.WorkspaceFileInternalInfo com.intellij.workspaceModel.core.fileIndex.impl.WorkspaceFileIndexImpl.getFileInfo(com.intellij.openapi.vfs.VirtualFile, boolean, boolean, boolean, boolean, boolean)[]@WorkspaceFileIndexImpl.kt:267" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "boolean com.intellij.openapi.roots.impl.ProjectFileIndexImpl.isExcluded(com.intellij.openapi.vfs.VirtualFile)[]@ProjectFileIndexImpl.java:67" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.shouldIndexFile$lambda$2(com.intellij.openapi.roots.ProjectFileIndex, com.intellij.openapi.vfs.VirtualFile)[]@IndexableFilesIterationMethods.kt:98" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.util.indexing.roots.IndexableFilesIterationMethods$$Lambda+\u003chidden\u003e.invoke()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ActionsKt.runReadAction$lambda$3(kotlin.jvm.functions.Function0)[]@actions.kt:28" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ActionsKt$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction$lambda$4(com.intellij.openapi.util.Computable)[]@AnyThreadWriteThreadingSupport.kt:260" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe9", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(java.lang.Class, com.intellij.openapi.util.ThrowableComputable)[]@AnyThreadWriteThreadingSupport.kt:314" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.runReadAction(com.intellij.openapi.util.Computable)[]@AnyThreadWriteThreadingSupport.kt:260" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(com.intellij.openapi.util.Computable)[]@ApplicationImpl.java:858" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "java.lang.Object com.intellij.openapi.application.ActionsKt.runReadAction(kotlin.jvm.functions.Function0)[]@actions.kt:28" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x75", + "lines": [ + "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.shouldIndexFile(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.roots.ProjectFileIndex, java.util.Set, boolean)[]@IndexableFilesIterationMethods.kt:98" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.iterateRoots$lambda$0(com.intellij.openapi.roots.ProjectFileIndex, java.util.Set, boolean, com.intellij.openapi.vfs.VirtualFile)[]@IndexableFilesIterationMethods.kt:32" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods$$Lambda+\u003chidden\u003e.accept(com.intellij.openapi.vfs.VirtualFile)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "boolean com.intellij.openapi.vfs.VirtualFileFilter.lambda$and$0(com.intellij.openapi.vfs.VirtualFileFilter, com.intellij.openapi.vfs.VirtualFile)[]@VirtualFileFilter.java:35" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9", + "lines": [ + "boolean com.intellij.openapi.vfs.VirtualFileFilter$$Lambda+\u003chidden\u003e.accept(com.intellij.openapi.vfs.VirtualFile)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore$1.visitFileEx(com.intellij.openapi.vfs.VirtualFile)[]@VfsUtilCore.java:287" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)[]@VfsUtilCore.java:303" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13c", + "lines": [ + "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)[]@VfsUtilCore.java:335" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13c", + "lines": [ + "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)[]@VfsUtilCore.java:335" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13c", + "lines": [ + "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)[]@VfsUtilCore.java:335" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13c", + "lines": [ + "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)[]@VfsUtilCore.java:335" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13c", + "lines": [ + "com.intellij.openapi.vfs.VirtualFileVisitor$Result com.intellij.openapi.vfs.VfsUtilCore.visitChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileVisitor)[]@VfsUtilCore.java:335" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "boolean com.intellij.openapi.vfs.VfsUtilCore.iterateChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileFilter, com.intellij.openapi.roots.ContentIterator, com.intellij.openapi.vfs.VirtualFileVisitor$Option[])[]@VfsUtilCore.java:284" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "boolean com.intellij.openapi.vfs.VfsUtilCore.iterateChildrenRecursively(com.intellij.openapi.vfs.VirtualFile, com.intellij.openapi.vfs.VirtualFileFilter, com.intellij.openapi.roots.ContentIterator)[]@VfsUtilCore.java:277" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9d", + "lines": [ + "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.iterateRoots(com.intellij.openapi.project.Project, java.lang.Iterable, com.intellij.openapi.roots.ContentIterator, com.intellij.openapi.vfs.VirtualFileFilter, boolean)[]@IndexableFilesIterationMethods.kt:34" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3c", + "lines": [ + "boolean com.intellij.util.indexing.roots.IndexableFilesIterationMethods.iterateRoots(com.intellij.openapi.project.Project, com.intellij.util.indexing.roots.origin.IndexingSourceRootHolder, com.intellij.openapi.roots.ContentIterator, com.intellij.openapi.vfs.VirtualFileFilter, boolean)[]@IndexableFilesIterationMethods.kt:71" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x23", + "lines": [ + "boolean com.intellij.util.indexing.roots.SourceRootHolderIteratorBase.iterateFiles(com.intellij.openapi.project.Project, com.intellij.openapi.roots.ContentIterator, com.intellij.openapi.vfs.VirtualFileFilter)[]@SourceRootHolderIteratorBase.java:45" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "void com.intellij.util.indexing.FileBasedIndexEx.iterateIndexableFiles(com.intellij.openapi.roots.ContentIterator, com.intellij.openapi.project.Project, com.intellij.openapi.progress.ProgressIndicator)[]@FileBasedIndexEx.java:530" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1f", + "lines": [ + "com.goide.stubs.index.GoIdFilter com.goide.stubs.index.GoIdFilter.lambda$createIdFilter$3(com.intellij.openapi.project.Project, com.intellij.openapi.util.Condition)[]@GoIdFilter.java:92" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.goide.stubs.index.GoIdFilter$$Lambda+\u003chidden\u003e.call()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x27", + "lines": [ + "void java.util.concurrent.FutureTask.run()[]@FutureTask.java:317" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x7", + "lines": [ + "void com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke()[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x26", + "lines": [ + "java.lang.Object com.intellij.util.concurrency.ChildContext.runInChildContext(boolean, kotlin.jvm.functions.Function0)[]@propagation.kt:107" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void com.intellij.util.concurrency.ChildContext.runInChildContext(java.lang.Runnable)[]@propagation.kt:101" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.util.concurrency.ContextRunnable.run()[]@ContextRunnable.java:27" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@BoundedTaskExecutor.java:249" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@BoundedTaskExecutor.java:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@BoundedTaskExecutor.java:227" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@BoundedTaskExecutor.java:215" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@ThreadPoolExecutor.java:1144" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@ThreadPoolExecutor.java:642" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@Executors.java:735" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@Executors.java:732" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@Executors.java:732" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@Thread.java:1596" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@Thread.java:1583" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x0", + "lines": [ + "boolean kotlin.text.StringsKt__StringsKt.contains(java.lang.CharSequence, char, boolean)[]@Strings.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xb", + "lines": [ + "boolean kotlin.text.StringsKt__StringsKt.contains$default(java.lang.CharSequence, char, boolean, int, java.lang.Object)[]@Strings.kt:1170" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.util.List org.intellij.markdown.flavours.gfm.table.GitHubTableMarkerProvider.createMarkerBlocks(org.intellij.markdown.parser.LookaheadText$Position, org.intellij.markdown.parser.ProductionHolder, org.intellij.markdown.parser.MarkerProcessor$StateInfo)[]@GitHubTableMarkerProvider.kt:20" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x60", + "lines": [ + "java.util.List org.intellij.markdown.parser.MarkerProcessor.createNewMarkerBlocks(org.intellij.markdown.parser.LookaheadText$Position, org.intellij.markdown.parser.ProductionHolder)[]@MarkerProcessor.kt:47" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1c", + "lines": [ + "java.util.List org.intellij.markdown.flavours.commonmark.CommonMarkMarkerProcessor.createNewMarkerBlocks(org.intellij.markdown.parser.LookaheadText$Position, org.intellij.markdown.parser.ProductionHolder)[]@CommonMarkMarkerProcessor.kt:79" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5a", + "lines": [ + "org.intellij.markdown.parser.LookaheadText$Position org.intellij.markdown.parser.MarkerProcessor.processPosition(org.intellij.markdown.parser.LookaheadText$Position)[]@MarkerProcessor.kt:75" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x52", + "lines": [ + "org.intellij.markdown.ast.ASTNode org.intellij.markdown.parser.MarkdownParser.doParse(org.intellij.markdown.IElementType, java.lang.String, boolean)[]@MarkdownParser.kt:67" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "org.intellij.markdown.ast.ASTNode org.intellij.markdown.parser.MarkdownParser.parse(org.intellij.markdown.IElementType, java.lang.String, boolean)[]@MarkdownParser.kt:33" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x49", + "lines": [ + "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager.performParsing(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)[]@MarkdownParserManager.kt:42" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1b", + "lines": [ + "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager.parse(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)[]@MarkdownParserManager.kt:34" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12", + "lines": [ + "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager$Companion.parseContent(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)[]@MarkdownParserManager.kt:71" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "org.intellij.markdown.ast.ASTNode org.intellij.plugins.markdown.lang.parser.MarkdownParserManager.parseContent(java.lang.CharSequence, org.intellij.markdown.flavours.MarkdownFlavourDescriptor)[]@MarkdownParserManager.kt:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4a", + "lines": [ + "void org.intellij.plugins.markdown.lang.lexer.MarkdownToplevelLexer.start(java.lang.CharSequence, int, int, int)[]@MarkdownToplevelLexer.java:52" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.lexer.DelegateLexer.start(java.lang.CharSequence, int, int, int)[]@DelegateLexer.java:25" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2f", + "lines": [ + "void com.intellij.lexer.LayeredLexer.start(java.lang.CharSequence, int, int, int)[]@LayeredLexer.java:75" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.editor.ex.util.ValidatingLexerWrapper.start(java.lang.CharSequence, int, int, int)[]@ValidatingLexerWrapper.java:38" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5f", + "lines": [ + "void com.intellij.openapi.editor.ex.util.LexerEditorHighlighter.doSetText(java.lang.CharSequence)[]@LexerEditorHighlighter.java:432" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void com.intellij.openapi.editor.ex.util.LexerEditorHighlighter.setText(java.lang.CharSequence)[]@LexerEditorHighlighter.java:413" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x42", + "lines": [ + "com.intellij.openapi.editor.highlighter.EditorHighlighter com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater.createHighlighter(boolean)[]@EditorHighlighterUpdater.kt:154" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "com.intellij.openapi.editor.highlighter.EditorHighlighter com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater.updateHighlighters$lambda$0(com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater)[]@EditorHighlighterUpdater.kt:139" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.fileEditor.impl.text.EditorHighlighterUpdater$$Lambda+\u003chidden\u003e.call()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor.callWrapped(java.util.concurrent.Callable)[]@NonBlockingReadActionImpl.java:857" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.application.impl.NonBlockingReadActionImpl$OTelMonitor$MonitoredComputation.call()[]@NonBlockingReadActionImpl.java:889" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x38", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.insideReadAction(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@NonBlockingReadActionImpl.java:618" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$attemptComputation$4(com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.Ref)[]@NonBlockingReadActionImpl.java:581" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x71", + "lines": [ + "boolean com.intellij.openapi.application.impl.AnyThreadWriteThreadingSupport.tryRunReadAction(java.lang.Runnable)[]@AnyThreadWriteThreadingSupport.kt:351" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "boolean com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(java.lang.Runnable)[]@ApplicationImpl.java:971" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runInReadActionWithWriteActionPriority$0(java.util.concurrent.atomic.AtomicBoolean, java.lang.Runnable)[]@ProgressIndicatorUtils.java:95" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4d", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtilService.java:66" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x21", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:157" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3", + "lines": [ + "java.lang.Boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.lambda$runWithWriteActionPriority$1(com.intellij.openapi.application.ex.ApplicationEx, java.lang.Runnable, java.lang.Runnable)[]@ProgressIndicatorUtils.java:140" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.util.ProgressIndicatorUtils$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(com.intellij.openapi.util.Ref, com.intellij.openapi.util.Computable)[]@ProgressManager.java:98" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.ProgressManager$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$1(java.lang.Runnable, io.opentelemetry.api.trace.Span)[]@CoreProgressManager.java:223" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.invoke(java.lang.Object)[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x35", + "lines": [ + "java.lang.Object com.intellij.platform.diagnostic.telemetry.helpers.TraceKt.use(io.opentelemetry.api.trace.Span, kotlin.jvm.functions.Function1)[]@trace.kt:45" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x44", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(com.intellij.openapi.progress.ProgressIndicator, java.lang.Runnable)[]@CoreProgressManager.java:222" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$14(java.lang.Runnable)[]@CoreProgressManager.java:674" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager$$Lambda+\u003chidden\u003e.compute()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd8", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(com.intellij.openapi.progress.ProgressIndicator, java.lang.Thread, com.intellij.openapi.progress.ProgressIndicator, com.intellij.openapi.util.ThrowableComputable)[]@CoreProgressManager.java:749" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(com.intellij.openapi.util.ThrowableComputable, com.intellij.openapi.progress.ProgressIndicator)[]@CoreProgressManager.java:705" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@CoreProgressManager.java:673" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2c", + "lines": [ + "void com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@ProgressManagerImpl.java:79" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "void com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@CoreProgressManager.java:203" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x19", + "lines": [ + "java.lang.Object com.intellij.openapi.progress.ProgressManager.runProcess(com.intellij.openapi.util.Computable, com.intellij.openapi.progress.ProgressIndicator)[]@ProgressManager.java:98" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x3f", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@ProgressIndicatorUtils.java:137" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x29", + "lines": [ + "boolean com.intellij.openapi.progress.util.ProgressIndicatorUtils.runInReadActionWithWriteActionPriority(java.lang.Runnable, com.intellij.openapi.progress.ProgressIndicator)[]@ProgressIndicatorUtils.java:95" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x92", + "lines": [ + "boolean com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.attemptComputation()[]@NonBlockingReadActionImpl.java:581" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x28", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$1()[]@NonBlockingReadActionImpl.java:480" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission.lambda$transferToBgThread$2(java.lang.Runnable)[]@NonBlockingReadActionImpl.java:495" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4", + "lines": [ + "void com.intellij.openapi.application.impl.NonBlockingReadActionImpl$Submission$$Lambda+\u003chidden\u003e.run()[]@\u003cunknown\u003e:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xa", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.doRun(java.lang.Runnable)[]@BoundedTaskExecutor.java:249" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor.access$200(java.lang.Runnable)[]@BoundedTaskExecutor.java:30" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue()[]@BoundedTaskExecutor.java:227" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e", + "lines": [ + "void com.intellij.util.concurrency.BoundedTaskExecutor$1.run()[]@BoundedTaskExecutor.java:215" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5c", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor.runWorker(java.util.concurrent.ThreadPoolExecutor$Worker)[]@ThreadPoolExecutor.java:1144" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.util.concurrent.ThreadPoolExecutor$Worker.run()[]@ThreadPoolExecutor.java:642" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x17", + "lines": [ + "java.lang.Void java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@Executors.java:735" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1", + "lines": [ + "java.lang.Object java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run()[]@Executors.java:732" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1d", + "lines": [ + "java.lang.Object java.security.AccessController.executePrivileged(java.security.PrivilegedAction, java.security.AccessControlContext, java.lang.Class)[]@AccessController.java:778" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xd", + "lines": [ + "java.lang.Object java.security.AccessController.doPrivileged(java.security.PrivilegedAction, java.security.AccessControlContext)[]@AccessController.java:400" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xf", + "lines": [ + "void java.util.concurrent.Executors$PrivilegedThreadFactory$1.run()[]@Executors.java:732" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x5", + "lines": [ + "void java.lang.Thread.runWith(java.lang.Object, java.lang.Runnable)[]@Thread.java:1596" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x13", + "lines": [ + "void java.lang.Thread.run()[]@Thread.java:1583" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2e6a730ee9809163", + "lines": [ + "StubRoutines (initial stubs) [call_stub_return_address][]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x914b94", + "lines": [ + "libjvm.so 0x914b94[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9164da", + "lines": [ + "libjvm.so 0x9164da[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9e65b9", + "lines": [ + "libjvm.so 0x9e65b9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x92b50e", + "lines": [ + "libjvm.so 0x92b50e[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xf7b717", + "lines": [ + "libjvm.so 0xf7b717[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0xd075c9", + "lines": [ + "libjvm.so 0xd075c9[]@:0" + ], + "mapping": "0x2a3000-0x1118000@0x2a3000 libjvm.so(6fde8df3515ff5211ba4da5fa3aa19407c460932)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x87cc4b", + "lines": [ + "ioread32[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9ef74", + "lines": [ + "nvkm_timer_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xac40b", + "lines": [ + "nvkm_udevice_mthd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xae89", + "lines": [ + "nvkm_object_mthd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x950c", + "lines": [ + "nvkm_ioctl_mthd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b94", + "lines": [ + "nvkm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11dcbd", + "lines": [ + "nvkm_client_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x468", + "lines": [ + "nvif_object_mthd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a5", + "lines": [ + "nvif_device_time[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x47d4", + "lines": [ + "nvif_timer_wait_test[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x160554", + "lines": [ + "base507c_ntfy_wait_begun[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15df99", + "lines": [ + "nv50_wndw_wait_armed[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14f7b9", + "lines": [ + "nv50_disp_atomic_commit_tail[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14feb1", + "lines": [ + "nv50_disp_atomic_commit_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12bee7", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12d1c5", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x137d71", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68aa6", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "100000000" + }, + { + "locations": [ + { + "address": "0x87cc4b", + "lines": [ + "ioread32[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x160567", + "lines": [ + "base507c_ntfy_wait_begun[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15df99", + "lines": [ + "nv50_wndw_wait_armed[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14f7b9", + "lines": [ + "nv50_disp_atomic_commit_tail[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14feb1", + "lines": [ + "nv50_disp_atomic_commit_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12bee7", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12d1c5", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x137d71", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68aa6", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "100000000" + }, + { + "locations": [ + { + "address": "0x12495b0", + "lines": [ + "_raw_spin_unlock_irqrestore[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2066db", + "lines": [ + "hrtimer_start_range_ns[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124808f", + "lines": [ + "schedule_hrtimeout_range_clock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1248152", + "lines": [ + "schedule_hrtimeout_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1247d14", + "lines": [ + "usleep_range_state[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x16054b", + "lines": [ + "base507c_ntfy_wait_begun[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x15df99", + "lines": [ + "nv50_wndw_wait_armed[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14f7b9", + "lines": [ + "nv50_disp_atomic_commit_tail[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x14feb1", + "lines": [ + "nv50_disp_atomic_commit_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12bee7", + "lines": [ + "process_one_work[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12d1c5", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x137d71", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68aa6", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x150f38", + "lines": [ + "finish_task_switch.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1240963", + "lines": [ + "__schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1240dd2", + "lines": [ + "schedule[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x12d095", + "lines": [ + "worker_thread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x137d71", + "lines": [ + "kthread[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x68aa6", + "lines": [ + "ret_from_fork[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x547a", + "lines": [ + "ret_from_fork_asm[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x11e6fe", + "lines": [ + "set_placement_list[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1202b1", + "lines": [ + "nouveau_bo_placement_set[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228ac", + "lines": [ + "validate_list[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124120", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "libc.so.6 0x124dec[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "libdrm.so.2.4.0 0x7aff[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "libdrm.so.2.4.0 0xb02f[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x51ee[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x53ba[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x5a1b[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_dri.so 0xa7103a[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "nouveau_dri.so 0x311bf7[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x1d1d5", + "lines": [ + "libglamoregl.so 0x1d1d5[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14c9cf", + "lines": [ + "Xorg 0x14c9cf[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x275a2", + "lines": [ + "libglamoregl.so 0x275a2[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x2746c", + "lines": [ + "libglamoregl.so 0x2746c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x140e6f", + "lines": [ + "Xorg 0x140e6f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "libc.so.6 0x2a1c9[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "libc.so.6 0x2a28a[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "Xorg 0x4f394[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x87cc4b", + "lines": [ + "ioread32[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x168f00", + "lines": [ + "nv84_fence_read[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x166bdd", + "lines": [ + "nouveau_fence_is_signaled[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xc1ff03", + "lines": [ + "dma_resv_add_fence[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1214d5", + "lines": [ + "nouveau_bo_fence[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123249", + "lines": [ + "validate_fini_no_ticket[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124347", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "libc.so.6 0x124dec[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "libdrm.so.2.4.0 0x7aff[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "libdrm.so.2.4.0 0xb02f[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x51ee[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x53ba[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x5a1b[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_dri.so 0xa7103a[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "nouveau_dri.so 0x311bf7[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x100ef", + "lines": [ + "libglamoregl.so 0x100ef[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14bb06", + "lines": [ + "Xorg 0x14bb06[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "libc.so.6 0x2a1c9[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "libc.so.6 0x2a28a[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "Xorg 0x4f394[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1249eb4", + "lines": [ + "_raw_spin_unlock_irq[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x218ff0", + "lines": [ + "do_setitimer[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2197aa", + "lines": [ + "__x64_sys_setitimer[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6648", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xe29da", + "lines": [ + "libc.so.6 0xe29da[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x1e4a68", + "lines": [ + "Xorg 0x1e4a68[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x1db31e", + "lines": [ + "Xorg 0x1db31e[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x627e9", + "lines": [ + "Xorg 0x627e9[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "libc.so.6 0x2a1c9[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "libc.so.6 0x2a28a[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "Xorg 0x4f394[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x28414", + "lines": [ + "libc.so.6 0x28414[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x274ff", + "lines": [ + "libglamoregl.so 0x274ff[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x2746c", + "lines": [ + "libglamoregl.so 0x2746c[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x140e6f", + "lines": [ + "Xorg 0x140e6f[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "libc.so.6 0x2a1c9[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "libc.so.6 0x2a28a[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "Xorg 0x4f394[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1228fa4", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "libc.so.6 0x124dec[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "libdrm.so.2.4.0 0x7aff[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "libdrm.so.2.4.0 0xb02f[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x51ee[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x53ba[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x5a1b[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_dri.so 0xa7103a[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "nouveau_dri.so 0x311bf7[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x17ba6", + "lines": [ + "libglamoregl.so 0x17ba6[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x18bf8", + "lines": [ + "libglamoregl.so 0x18bf8[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14b73c", + "lines": [ + "Xorg 0x14b73c[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x141792", + "lines": [ + "Xorg 0x141792[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "libc.so.6 0x2a1c9[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "libc.so.6 0x2a28a[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "Xorg 0x4f394[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1208bf", + "lines": [ + "nouveau_bo_sync_for_device[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x120f7f", + "lines": [ + "nouveau_bo_validate[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228bb", + "lines": [ + "validate_list[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124120", + "lines": [ + "nouveau_gem_ioctl_pushbuf[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "libc.so.6 0x124dec[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "libdrm.so.2.4.0 0x7aff[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "libdrm.so.2.4.0 0xb02f[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x51ee", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x51ee[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x53ba[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x5a1b[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa7103a", + "lines": [ + "nouveau_dri.so 0xa7103a[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x311bf7", + "lines": [ + "nouveau_dri.so 0x311bf7[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x100ef", + "lines": [ + "libglamoregl.so 0x100ef[]@:0" + ], + "mapping": "0x7000-0x29000@0x7000 libglamoregl.so(82e7b25a3fed294189acfc72fa8c7970f2d98ff3)" + }, + { + "address": "0x14bb06", + "lines": [ + "Xorg 0x14bb06[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x13f976", + "lines": [ + "Xorg 0x13f976[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x62ab3", + "lines": [ + "Xorg 0x62ab3[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x66e51", + "lines": [ + "Xorg 0x66e51[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + }, + { + "address": "0x2a1c9", + "lines": [ + "libc.so.6 0x2a1c9[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "libc.so.6 0x2a28a[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x4f394", + "lines": [ + "Xorg 0x4f394[]@:0" + ], + "mapping": "0x40000-0x1f2000@0x40000 Xorg(4087c9f785a98f4f4b70b189a2ff61d1de2d03c7)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x1243691", + "lines": [ + "mutex_lock[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8d5a9", + "lines": [ + "gf100_vmm_invalidate[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8d7ce", + "lines": [ + "gf100_vmm_flush[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x85937", + "lines": [ + "nvkm_vmm_iter.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x8642e", + "lines": [ + "nvkm_vmm_ptes_get_map[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x866a4", + "lines": [ + "nvkm_vmm_map_locked[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x885dd", + "lines": [ + "nvkm_vmm_map[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x837d6", + "lines": [ + "nvkm_mem_map_dma[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9107c", + "lines": [ + "nvkm_uvmm_mthd_map.isra.0[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x91e26", + "lines": [ + "nvkm_uvmm_mthd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xae89", + "lines": [ + "nvkm_object_mthd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x950c", + "lines": [ + "nvkm_ioctl_mthd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x9b94", + "lines": [ + "nvkm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11dcbd", + "lines": [ + "nvkm_client_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x468", + "lines": [ + "nvif_object_mthd[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x4a1e", + "lines": [ + "nvif_vmm_map[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124f2b", + "lines": [ + "nouveau_mem_map[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x126a83", + "lines": [ + "nouveau_vma_new[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1231a4", + "lines": [ + "nouveau_gem_object_open[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca6c96", + "lines": [ + "drm_gem_handle_create_tail[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca6da4", + "lines": [ + "drm_gem_handle_create[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123d0c", + "lines": [ + "nouveau_gem_ioctl_new[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "libc.so.6 0x124dec[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "libdrm.so.2.4.0 0x7aff[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "libdrm.so.2.4.0 0xb02f[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x433a", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x433a[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa0ecf1", + "lines": [ + "nouveau_dri.so 0xa0ecf1[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0xa593e4", + "lines": [ + "nouveau_dri.so 0xa593e4[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x5120", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x5120[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x53ba[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x5a1b[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa59b08", + "lines": [ + "nouveau_dri.so 0xa59b08[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x3baaa1", + "lines": [ + "nouveau_dri.so 0x3baaa1[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x171ff", + "lines": [ + "libkwinglutils.so.5.27.11 0x171ff[]@:0" + ], + "mapping": "0xa000-0x1d000@0xa000 libkwinglutils.so.5.27.11(b79e87745522e8a9559a65a18dc70d96dafcb154)" + }, + { + "address": "0x270304", + "lines": [ + "libkwin.so.5.27.11 0x270304[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x284412", + "lines": [ + "libkwin.so.5.27.11 0x284412[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x275ea0", + "lines": [ + "libkwin.so.5.27.11 0x275ea0[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1be5b7", + "lines": [ + "libkwin.so.5.27.11 0x1be5b7[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c3052", + "lines": [ + "libkwin.so.5.27.11 0x1c3052[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c33bc", + "lines": [ + "libkwin.so.5.27.11 0x1c33bc[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x172323", + "lines": [ + "libkwin.so.5.27.11 0x172323[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x1c912e", + "lines": [ + "libkwin.so.5.27.11 0x1c912e[]@:0" + ], + "mapping": "0x158000-0x496000@0x158000 libkwin.so.5.27.11(2d206eca5fdc7f5e92587e95fd932a564148c745)" + }, + { + "address": "0x312e15", + "lines": [ + "libQt5Core.so.5.15.13 0x312e15[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x31710c", + "lines": [ + "libQt5Core.so.5.15.13 0x31710c[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x30624a", + "lines": [ + "libQt5Core.so.5.15.13 0x30624a[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x16bd44", + "lines": [ + "libQt5Widgets.so.5.15.13 0x16bd44[]@:0" + ], + "mapping": "0x14e000-0x545000@0x14e000 libQt5Widgets.so.5.15.13(bfe07edc9e95f586e665ab542d433386d87d6409)" + }, + { + "address": "0x2d8117", + "lines": [ + "libQt5Core.so.5.15.13 0x2d8117[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x3345aa", + "lines": [ + "libQt5Core.so.5.15.13 0x3345aa[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x334ed8", + "lines": [ + "libQt5Core.so.5.15.13 0x334ed8[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x5d5b4", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5d5b4[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0xbc716", + "lines": [ + "libglib-2.0.so.0.8000.0 0xbc716[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x5ca52", + "lines": [ + "libglib-2.0.so.0.8000.0 0x5ca52[]@:0" + ], + "mapping": "0x1e000-0xbe000@0x1e000 libglib-2.0.so.0.8000.0(461eff2b4df472ba9c32b2358ae9ba018a59a8c5)" + }, + { + "address": "0x335278", + "lines": [ + "libQt5Core.so.5.15.13 0x335278[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2d6a7a", + "lines": [ + "libQt5Core.so.5.15.13 0x2d6a7a[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x2df3e7", + "lines": [ + "libQt5Core.so.5.15.13 0x2df3e7[]@:0" + ], + "mapping": "0x8e000-0x3c4000@0x8e000 libQt5Core.so.5.15.13(0fb7b71b7cd236a3ac7fefcc17069ec1f5a93d5f)" + }, + { + "address": "0x47ba0", + "lines": [ + "kwin_x11 0x47ba0[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + }, + { + "address": "0x2a1c9", + "lines": [ + "libc.so.6 0x2a1c9[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x2a28a", + "lines": [ + "libc.so.6 0x2a28a[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x490e4", + "lines": [ + "kwin_x11 0x490e4[]@:0" + ], + "mapping": "0x3e000-0xef000@0x3e000 kwin_x11(84633cbbb2a365047193fc8ec67f254e0170246b)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x225dd3", + "lines": [ + "futex_wake[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x22291d", + "lines": [ + "do_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x223159", + "lines": [ + "__x64_sys_futex[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x55d0", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x98fc6", + "lines": [ + "libc.so.6 0x98fc6[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0xa1ac1", + "lines": [ + "libc.so.6 0xa1ac1[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x6a2a5", + "lines": [ + "firefox-bin 0x6a2a5[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x2b07a52", + "lines": [ + "libxul.so 0x2b07a52[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5ecf8", + "lines": [ + "libxul.so 0x2a5ecf8[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a5d620", + "lines": [ + "libxul.so 0x2a5d620[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x2a83c8d", + "lines": [ + "libxul.so 0x2a83c8d[]@:0" + ], + "mapping": "0x2995000-0x8ddb000@0x2994000 libxul.so(ed82595fe72c9215b49e7e2cb2f85ea9269c1a61)" + }, + { + "address": "0x197a1", + "lines": [ + "libnspr4.so 0x197a1[]@:0" + ], + "mapping": "0x12000-0x35000@0x11000 libnspr4.so(caa869f624148b1ec093de72d7992781a5411334)" + }, + { + "address": "0x5dd1f", + "lines": [ + "firefox-bin 0x5dd1f[]@:0" + ], + "mapping": "0x23000-0xdc000@0x22000 firefox-bin(97e2d250255a9735edaa1ab1a4a1d125ec2f7d26)" + }, + { + "address": "0x9ca93", + "lines": [ + "libc.so.6 0x9ca93[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x129c3b", + "lines": [ + "libc.so.6 0x129c3b[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + } + ], + "values": "50000000" + }, + { + "locations": [ + { + "address": "0x40ca45", + "lines": [ + "vma_interval_tree_subtree_search[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x40d2b9", + "lines": [ + "vma_interval_tree_iter_first[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x41ea8e", + "lines": [ + "unmap_mapping_range[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xdc4", + "lines": [ + "ttm_bo_unmap_virtual[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1762", + "lines": [ + "ttm_bo_handle_move_mem[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2361", + "lines": [ + "ttm_bo_validate[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x2532", + "lines": [ + "ttm_bo_init_reserved[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1204a4", + "lines": [ + "nouveau_bo_init[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123b6c", + "lines": [ + "nouveau_gem_new[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x123cbc", + "lines": [ + "nouveau_gem_ioctl_new[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca7e2b", + "lines": [ + "drm_ioctl_kernel[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0xca8173", + "lines": [ + "drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x11a2c0", + "lines": [ + "nouveau_drm_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x503812", + "lines": [ + "__x64_sys_ioctl[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x6762", + "lines": [ + "x64_sys_call[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x1228fde", + "lines": [ + "do_syscall_64[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x140012f", + "lines": [ + "entry_SYSCALL_64_after_hwframe[]@:0" + ], + "mapping": "0x0-0x0@0x0 ()" + }, + { + "address": "0x124dec", + "lines": [ + "libc.so.6 0x124dec[]@:0" + ], + "mapping": "0x28000-0x1b0000@0x28000 libc.so.6(6d64b17fbac799e68da7ebd9985ddf9b5cb375e6)" + }, + { + "address": "0x7aff", + "lines": [ + "libdrm.so.2.4.0 0x7aff[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0xb02f", + "lines": [ + "libdrm.so.2.4.0 0xb02f[]@:0" + ], + "mapping": "0x5000-0x11000@0x5000 libdrm.so.2.4.0(34b19924754a393989de6b867174cd1108abe3f7)" + }, + { + "address": "0x433a", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x433a[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0xa0ecf1", + "lines": [ + "nouveau_dri.so 0xa0ecf1[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0xa593e4", + "lines": [ + "nouveau_dri.so 0xa593e4[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x5120", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x5120[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x53ba", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x53ba[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x5a1b", + "lines": [ + "libdrm_nouveau.so.2.0.0 0x5a1b[]@:0" + ], + "mapping": "0x2000-0x7000@0x2000 libdrm_nouveau.so.2.0.0(42def7a1ff2c124b187af05cf638e5c19456fbbb)" + }, + { + "address": "0x9fb761", + "lines": [ + "nouveau_dri.so 0x9fb761[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + }, + { + "address": "0x3eeb41", + "lines": [ + "nouveau_dri.so 0x3eeb41[]@:0" + ], + "mapping": "0x97000-0x14ad000@0x97000 nouveau_dri.so(a75ac6de0b3db77327a47716c42dd534d5177463)" + } + ], + "values": "50000000" + } + ], + "period": "1000000000" +} \ No newline at end of file diff --git a/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.pb.bin b/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.pb.bin new file mode 100644 index 0000000000000000000000000000000000000000..103eb6e8b464bb16932df9689dd631a5beb53343 GIT binary patch literal 192471 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 literal 0 HcmV?d00001