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 0000000000..ccf6a68454 Binary files /dev/null and b/pkg/test/integration/testdata/otel-ebpf-profiler-pyrosymbolized.pb.bin differ 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 0000000000..103eb6e8b4 Binary files /dev/null and b/pkg/test/integration/testdata/otel-ebpf-profiler-unsymbolized.pb.bin differ